NodeJs concise tutorial
NodeJs concise tutorial will start from scratch to learn about NodeJs and help JS developers build a full stack development technology stack!
Focus on getting more NodeJs articles
This article is the ninth chapter of NodeJs concise tutorial. It will introduce the basic operation of NodeJs net module (TCP server/client).
What is TCP?
Transmissio ...
Posted by cicibo on Wed, 24 Jul 2019 06:09:41 +0200
Qt Writing Custom Control 36-Picture Browser
I. Preface
This control is mainly used as a simple picture browser. It can turn pages up and down to display pictures. Pictures can also turn on excessive effects such as transparency gradient, application scenarios such as viewing alarm pictures and running pictures. This control is not my original, from the network, I just revised a lot of BU ...
Posted by Xianoth on Tue, 23 Jul 2019 17:05:30 +0200
Node+mongo+vue Development and Management Platform Deployed to Aliyun Server
Introduction: Using vue+element-ui to develop the front-end, node.js+express+mongodb to develop the back-end, deployed to the Ali cloud server (mirror information Node.js).
1. Apply for Aliyun Server
You can apply for the cheapest one to practice. CentOS is selected for system image and Node.js is selected for application image (version 4.8.4, ...
Posted by wama_tech on Tue, 23 Jul 2019 13:38:54 +0200
Elasticsearch 7.2 Cluster Installation Important Node Records
1. Configuration file
[root@es1 ~]# grep '^[a-zA-Z]' /etc/elasticsearch/elasticsearch.yml
cluster.name: xing-application
node.name: node-1
path.data: /var/lib/elasticsearch
path.logs: /var/log/elasticsearch
network.host: 0.0.0.0
cluster.initial_master_nodes: ["node-1"]
http.cors.enabled: true
http.cors.allow-origin: "*"
discovery.seed_hosts: ...
Posted by s_ainley87 on Tue, 23 Jul 2019 12:34:21 +0200
Java Foundation 1-String Details
overview
1. Class declarations
String is declared final, so it cannot be inherited.
Before Java 8, char arrays were used internally to store data.
public final class String
implements java.io.Serializable, Comparable<String>, CharSequence {
/** The value is used for character storage. */
private final char value[];
}
In Java 9 ...
Posted by gabe on Tue, 23 Jul 2019 11:08:19 +0200
Coding and Decoding of Netty Source Code Analysis
Coding class MessageToByteEncoder
This time, we use ObjectEncoder as an example. When we need to write messages to the network channel, we need to encode the messages to determine whether the message type meets the requirements. Generally, we use type matching to configure the message in the gene ...
Posted by coowboy on Tue, 23 Jul 2019 04:15:33 +0200
Introduction to Python Crawler [9]: Graphic worm network multithreaded crawling
Graphics Worm Network - Write in front
After a crackling operation, I finally wrote my blog to the 10th article. Later, it will gradually involve more crawler modules. Someone asked scrapy when to start using it. I expect it to be 30 articles later. The following routine is still slow, so don't worry. ...
Posted by plasmahba on Mon, 22 Jul 2019 16:21:17 +0200
Lao Meng DB2 V9.7 ESE product deployment based on centOS 6.4
Links to the original text: http://www.cnblogs.com/riasky/p/3429107.html
This article installs system CENTOS 6.4 DB2 64 digits
Installation involves directory locations that you can define by yourselves
For security and performance cons ...
Posted by jaysmyhero on Mon, 22 Jul 2019 10:59:37 +0200
Front End Engine: From bind to curry
Preface
It has not been updated for a long time. On the one hand, I am busy with my work, on the other hand, I am in the process of learning. Next, it should gradually return to a stable state of renewal, sharing some interesting points of knowledge and my personal thinking. Interested friends can pay attention to it!
If there is something wron ...
Posted by jim.davidson on Mon, 22 Jul 2019 05:34:47 +0200
Flutter Learning Notes--Component Widget
If you need to reproduce it, please indicate the source: Flutter Learning Notes (9) --Component Widget
In Flutter, all displays are Widgets, Widgets are the basis of everything. We can set data by modifying the data, and then use setState() to notify the framework. The framework will call the State's construction method again to update the use ...
Posted by williamg on Sun, 21 Jul 2019 19:46:01 +0200