Multi-file compilation and connection of c/c++ based on Linux and Windows
Sometimes writing small programs, but do not want to start 2013, vscode has become my first choice. When I first came into contact with vscode, I was able to compile C/C++ by configuring a lot of things on the internet, but when it comes to many files, I had to open vs2013 obediently. The other day when I was configuring ...
Posted by dennyx on Fri, 21 Dec 2018 23:33:05 -0800
Change the installation directory of sublime's package and the use of Sublime REPL. Sublime runs node
Change the package installation path
By default, the sublime installation package is in the C: Users user_name AppData Roaming Sublime Text 3 directory. To change, just create a new Data folder in the sublime installation directory, restart sublime, and then install the packages under Data.
This is under the Data file after r ...
Posted by JustinM01 on Fri, 21 Dec 2018 17:57:05 -0800
Leaflet Quick Start Guide API
Tip: This tutorial is based on Leaflet's official tutorial, adding some comments and links to help readers learn Leaflet better. There are some inaccuracies or areas to be improved. You are welcome to comment.
Leaflet
an open-source JavaScript library for mobile-friendly interactive maps
Leaflet Quick Start Guide
This t ...
Posted by Ghulam Yaseen on Fri, 21 Dec 2018 06:54:05 -0800
Efficiency comparison of C++ Xml parsing (Qt/TinyXml 2/RapidXml)
Efficiency comparison of C++ Xml parsing (Qt/TinyXml 2/RapidXml)
Efficiency comparison of C Xml parsing with QtTinyXml 2 RapidXml
Background of problem
testing environment
Qt - QDomDocument
TinyXml-2
RapidXml
summary
Usually when we initialize or save configurations of some software, we will encounter operations on XML files, in ...
Posted by mvidberg on Fri, 21 Dec 2018 06:45:06 -0800
IntelliJ IDEA 2017.2.5 Cracking Process [Detailed Steps] (Mac OS & Windows)
Cracking steps
1. Enter first https://www.jetbrains.com Official website for download.
I download version information:
Version: 2017.2.5
Build: 172.4343.14
Released: September 26, 2017
Note: Recent comments indicate that the update of the official website has changed. Since I have not cracked the latest version of 2017.3, in order to ens ...
Posted by mr_zhang on Wed, 19 Dec 2018 20:09:05 -0800
SQL Server calculates tempdb size incorrectly using sys.master_files
sys.master_files have been used to calculate the size and usage of tempdb databases, but it is found that sys.master_files can not accurately calculate the size of tempdb databases. As follows:
SELECT database_id AS DataBaseId
,DB_NAME(database_id) AS DataBaseName
...
Posted by itisme on Tue, 18 Dec 2018 14:48:06 -0800
[25] Windows Power Shell DSC Learning Series - How to replace DSC Pull server database as Access database?
As we know, the default database of PowerShell DSC is ESENT file database, or Access database in oleDB form (database file suffix: mdb).
Under the default installation mode, if the Pull server is installed with xDscWebService DSC resources, the default mode is ESENT file database; how to change the storage database of the Pull server into Acces ...
Posted by rrhody on Tue, 18 Dec 2018 01:54:04 -0800
Androider studies C/C++-(2) Entering the world of c++, hello, data types, variables, constants
Or helloworld
#include<iostream> //Introduction of header file in c + + language
using namespace std; //Namespace cout functions depend on this namespace
int main()
{
cout << " WTF " << endl; //Fill in our opening Hello here.
system("pause");//System functions to keep black windows from ...
Posted by tbales on Sun, 16 Dec 2018 15:03:04 -0800
Windows Practice_Dll&Hook_message hook
Dll
Dll is what we usually call Dynamic Link Library. It is essentially the same as an application. It is also an executable file. They all have the same PE structure.
However, there are some differences between the two applications. Dll generally acts as a complement to exe applications. It is a module that is used to load exe files.
In Wi ...
Posted by eyespark on Sun, 16 Dec 2018 13:30:04 -0800
DirectX11 With Windows SDK-13 Abandons FX11 and Preliminary Implementation of BasicManager Class
Preface
DirectX11 With Windows SDK complete directory: http://www.cnblogs.com/X-Jun/p/9028764.html
So far, none of the tutorial projects has used the Effects11 framework class to draw scenes. Because in the D3D Compile API (#47) version, if you try to compile the fx_5_0 effect file, you will receive such a warning:X4717: Effects deprecated for ...
Posted by yasir_memon on Fri, 14 Dec 2018 14:12:03 -0800