Infinite dimensional array C + + template class implementation, source sharing
This is an infinite dimensional array template of any object, which can realize multiple functions and do many things. The explicit dynamic construction or analysis of the generic instantiated object has a micro memory recycling method that can be used to efficiently multi-dimensional operations, such a ...
Posted by mmcb on Thu, 30 Jan 2020 16:58:58 +0100
Memo Mode C++.
Memento
Memento Pattern holds a state of an object so that it can be restored at the appropriate time.The memo mode is behavioral.
introduce
Intention: Capture the internal state of an object without destroying its encapsulation and save the state outside the object.
Main Solution: The so-called ...
Posted by PHPslide on Thu, 30 Jan 2020 03:26:17 +0100
Application of SMB in Java
Catalog
SMB Service Operation
Introduction to_SMB
II SMB Configuration
2.1 Windows SMB
III Add SMB Dependency
IV Path Format
V Operation Sharing
VI Logon Verification
SMB Service Operation
Introduction to_SMB
SMB (full name Server Message Block) is a pro ...
Posted by The Wise One on Tue, 28 Jan 2020 05:42:22 +0100
Detailed steps of configuring MySQL master slave for Windows server 2012 R2
title: Windows configures mysql master-slave replication
date: 2019-09-21 08:45:18
tags: MySQL
Environmental Science:
mysql 8.0.17
windows 10
1. Install two mysql on the same machine
Install slightly...
Here are different ports, 33063307
2. master configuration:
1. Configure my.ini
my.ini pro ...
Posted by foamypup on Mon, 27 Jan 2020 15:57:17 +0100
C ා devexpress gridcontrol paging control control production
The implementation of this small function is a little complicated. Paging is controlled by a single user control, which results in the separation of query paging and gridcontrol pages. Generally, girdcontrol is notified to query through paging events
Sometimes query all, sometimes a month, or some o ...
Posted by nomis on Sun, 26 Jan 2020 18:42:25 +0100
[Python crawler instance learning chapter] - 4. Super detailed video of climbing bilibili bili
[Python crawler instance learning chapter] - 4. Super detailed video of climbing bilibili bili
Because I often study on station B, but I can't help but my home network is too poor, and my online viewing is seriously jammed, so I got the idea of downloading videos (if you just want to download videos, ...
Posted by gacon on Tue, 21 Jan 2020 14:21:11 +0100
java obtains server cpu, memory and other data through sigar
First, introduce the sigar package
implementation 'org.fusesource:sigar:1.6.4'
Secondly,
Under windows environment, put the three files of sign-amd64-winnt.dll, sign-x86-winnt.dll and sign-x86-winnt.lib in the bin directory of jdk
Or configuration under Windows: select sign-amd64-winnt.dll or ...
Posted by sfarid on Mon, 20 Jan 2020 17:18:10 +0100
JNI introduction series I, the first JNI program
First, write a simple class, which contains a native method
public class JNI{
static{
// Load the dynamic link library, which we will create below
System.loadLibrary("hello_jni");
}
public native void hello();
public static void main(String[] args){
JNI jni = new JNI();
jni.hello();
}
}
...
Posted by GreenMarch on Sun, 19 Jan 2020 11:52:11 +0100
After the webpack is packed, it cannot be called. Instead, use uglifyjs to pack and compress
Background:
The project is based on native js and does not use any scaffolding or framework, but it also needs to be packaged and compressed.
Some global variables are declared in the js of the project for other js to call.
At this time, if we use the web pack, based on the web Pack feature, we will nest a layer of large functions, which will t ...
Posted by jwmessiah on Fri, 17 Jan 2020 14:01:51 +0100
You should not call base in this method Xamarin Forms Renderer
Recently, I am working on Xamarin Forms project. I believe you are unfamiliar with Xamarin. In fact, it is also a cross platform technology. Please refer to the following official document to understand.
What is Xamarin.Forms?
Xamarin.Forms is an open-source UI framework. Xamarin.Forms allows deve ...
Posted by jeremuck on Wed, 15 Jan 2020 10:25:47 +0100