Unity/C_Basic Review

Reference material [1] Unity 3D scripting using C # language to develop cross-platform games [2]@Zhang Ziyang [Delegation and Event in C # - Part.1] http://www.tracefact.net/tech/009.html [3]@Zhang Ziyang [Delegation and Event in C # - Part.2], http://www.tracefact.net/tech/029.html [4]@Mao Nebula [Effective C [5] Robert Nystrom, Game Programm ...

Posted by lancey10 on Thu, 29 Aug 2019 11:59:46 +0200

Spring declarative transaction @Transaction annotation -- isolation level and propagation characteristics

Isolation level Define how much a transaction is affected by other concurrent transactions. Problems caused by transaction concurrency Dirty Reading: One transaction reads data modified by another transaction that has not yet been submitted ...

Posted by khr2003 on Thu, 29 Aug 2019 09:37:55 +0200

java Basic Learning 16 (List)

Collective system:-------------- | Collection singleton set's root interface If a List is a collection class that implements the List interface, it has the characteristics of orderliness and repeatability. The bottom layer of the -------------------- ...

Posted by nethnet on Thu, 29 Aug 2019 07:55:54 +0200

Brief Analysis of Linux File Log File Explanation

Functions of logs Used to record all kinds of events occurring in the running of system and program Reading logs helps to diagnose and solve system failures Classification of log files Kernel and System Log:It is managed by syslog system service, and the log format is basically similar. User logs:Record system user login and exit informa ...

Posted by trazan on Wed, 28 Aug 2019 15:14:10 +0200

Data Structure-Linear Table-Monotone Queue

Articles Catalogue Learning materials Example Consolidated fruit Analysis Code sliding window Analysis Code Finding the Minimum Value in m Interval Analysis Code Cut the cake Analysis Code Largest Rectangle in a Histogram Analysis Code ...

Posted by richierich on Tue, 27 Aug 2019 13:54:14 +0200

MySQL Single Query

Syntax of form queries and priority of keyword execution Form Query Syntax SELECT DISTINCT Field 1,Field 2... FROM Table Name WHERE condition GROUP BY field HAVING screen ORDER BY field LIMIT Limi ...

Posted by atitthaker on Tue, 27 Aug 2019 03:41:16 +0200

Dubbo Operating Principle

I. SOA PatternsA brief introduction to the SOA pattern is helpful for us to understand Dubbo later. What is the SOA model? SQA (Service-Oriented Architecture) is a service-oriented architecture that splits different functional units of an application (understood here as services). Under this architecture, the project does not interact directly ...

Posted by bslevin on Mon, 26 Aug 2019 08:23:42 +0200

RateLimiter Source Analysis (Guava and entinel implementations)

Author javadoop, Senior Java Engineer.This article has been authorized to be published by the author.Text Link https://www.javadoop.com/post... This paper mainly introduces two parts about flow control. The first part introduces the source code of RateLimiter in Guava, including its two modes. Most articles on the Internet now only analyze sim ...

Posted by mjdamato on Sun, 25 Aug 2019 05:17:54 +0200

Beautiful HTML 5 page special effects learning notes ink animation

Effect Mouse touch button, appear ink style animation Screen adaptation An html file, a css file, no javascript, easy to use Welcome to my blog to read this article: http://clatterrr.com/archives... Source code Demonstration address: https://clatterrr.github.io/i... Source code: https://github.com/clatterrr/... note :root This CSS pseud ...

Posted by gateway69 on Sat, 24 Aug 2019 07:08:23 +0200

Method Integration of Arrays and Strings

Arrays and strings in js are a bit similar, not essentially, but when traversing and getting them.From an identity point of view, you can see that one is an array and the other is a string; however, when traversal is used, the two are inadvertently confused, resulting in an incorrect method.At the same time, there are several methods that are t ...

Posted by Chris-the dude on Sat, 24 Aug 2019 05:49:21 +0200