Creating an efficient front-end working environment-tmuxinator

Preface _Although tmux makes it easy for us to organize our working environment, every time we reopen a session we need to manually re-create windows, panes and execute various programs. Can we save windows, panes and program information in project units like VS?tmuxinator is just the answer to our need! Installation and Configuration _Install ...

Posted by dsoftnet on Wed, 03 Jul 2019 18:42:24 +0200

Implementation of System Log Recording Management by Spring AOP Custom Annotation

Preface Recently, I'm a little busy. I haven't blogged for a long time. I'm a little ashamed. A few days ago, there was a requirement: to record the log of the operation of the management platform (PC side). Today, I just have time to sort out the records for you to study and discuss. bug Many examples on the Internet are similar, the author ...

Posted by dwees on Tue, 02 Jul 2019 22:35:43 +0200

Interesting HTML5 Web Storage

HTML5 web storage, a better local storage than cookie s. What is HTML5 Web Storage? HTML5 enables users to store browsing data locally. Earlier, cookie s were used for local storage. But Web storage needs to be more secure and fast. These data will not be saved on the server, but they are only used for users to request website data. It can also ...

Posted by FlyingIsFun1217 on Tue, 02 Jul 2019 21:08:56 +0200

mysql binlog event type

In fact, all operations recorded by MySQL binlog have corresponding event types. For example, DML operations in STATEMENT format correspond to QUERY_EVENT type, and DML operations in ROW format correspond to ROWS_EVENT type. QUERY_EVENT QUERY_EVENT records the operation of a transaction in the form of text. Events of type QUERY_EVENT are usu ...

Posted by contra10 on Mon, 01 Jul 2019 22:50:29 +0200

Bluetooth module of android uses hexadecimal data to send

A Bluetooth module looks small, but it's still a bit complicated. I found a sample code from the Internet, http://blog.csdn.net/vnanyesheshou/article/details/51554852, but it can't be used directly. It needs to be read, understood and modified by myself before it can be used. First paste a homemade uml map: It is not difficult to see from t ...

Posted by jwmessiah on Mon, 01 Jul 2019 21:48:19 +0200

Common Problems about SDWebImage Source Code

SDWebImage.png analysis Some time ago, I talked to a young man who asked me:Boy: "What modification does NSString use when declaring attributes?"Me: "copy"Boy: "Why copy? What's wrong with strong?"Me: "If you use strong modifier, you just make a shallow copy of the string. When an object holds this property, ...

Posted by grandeclectus on Sun, 30 Jun 2019 01:38:08 +0200

TensorFlow Learning Notes (10): CIFAR-10

1. CIFAR-10 Cifar-10 is a data set collected by Alex Krizhevsky and Ilya Sutskever, two disciples of Hinton, for universal object recognition. Cifar is an advanced science project institute led by the Canadian government. Hinton, Bengio and his students received a small amount of money from Cifar in 2004 to build neurocomputing and ada ...

Posted by beanwebb on Thu, 27 Jun 2019 20:37:29 +0200

Struts 2 value stack learning

1: Simply put, the value stack is a lightweight data storage center corresponding to each request object, where data is managed uniformly for other parts of Struts 2 such as Action, Result, Interceptor and so on, so that data is managed centrally without clutter. Simply put, the value stack can provide a common data access service for each req ...

Posted by roach on Wed, 26 Jun 2019 23:25:20 +0200

Mac Installs zookeeper Pseudo Cluster

Original address: http://blog.csdn.net/u013673245/article/details/49331607 Catalogue I. Configuration 2. Start all servers of zookeeper pseudocluster 3. Access Client IV. Writing startup scripts I. Configuration zookeeper Download Address: http://mirrors.cnnic.cn/apache/zookeeper/zookeeper-3.4.6/  Deploy three servers on a m ...

Posted by wcl99 on Mon, 24 Jun 2019 01:15:20 +0200

A detailed summary of Hibernate's hql query statements

Hql, Hibernate Query Language, is an object-oriented query language, which is based on objects, not tables and fields in the database. 1. Preparation Firstly, there are two classes: TBook class and Category class. There is a many-to-one relationship between them. Two classes correspond to two tables. Let's save some data first. @Test p ...

Posted by nrerup on Sun, 23 Jun 2019 21:05:46 +0200