Website access QQ login Tencent open platform

Complete developer certification Apply for Tencent open platform Use qq login to complete the realName authentication, click to create application Create site app Fill in relevant information It is very important to fill in the callback field. If you fill in the wrong code, you will see 100010[QQ login] login common error code Front end This is ...

Posted by nostradamus on Fri, 06 Dec 2019 09:50:56 +0100

A multi page application configuration based on react+webpack

Brief introduction First of all, this article will not explain the web pack code, all of its configuration can be found on the documentation. I usually write some multi page applications in my work. Because I am used to the development mode of react, I write a simple configuration to share with you. If you like it, it will be helpful for your d ...

Posted by John Rowe on Fri, 06 Dec 2019 09:44:55 +0100

Build your own git server with Gogs

1. Configure the environment required by Gogs Install nginx sudo apt-get install nginx Install git sudo apt-get install git Install MySQL sudo apt-get install mysql-server # Install mysql mysql -u root -p # Connect to database SET GLOBAL storage_engine = 'InnoDB'; # Set the database mode to InnoDB CREATE DATABASE gogs CHARACTER SET utf ...

Posted by yonta on Thu, 05 Dec 2019 01:50:22 +0100

A case of gesture sliding card in wechat applet

Recently, there is a project to use wechat applet technology for development, one of which has been bothering me for a long time. Card sliding and gesture recognition. After some research and reference, the results are now shown. Record the pit you stepped on. If you need it, it can also help you. Design sketch: First, the implementation of ca ...

Posted by Dongowarrior on Wed, 04 Dec 2019 20:49:21 +0100

hexo combined with git to build blog Foundation

background How to own your own blog without spending money (server, domain name)? gitpage+hexo, realize your wish Preparation Install git client by yourself Self registration of git account Install npm and node.js by yourself Operation steps Building database Create a new one named( Your user name.github.io )For exampl ...

Posted by tomboy78 on Wed, 04 Dec 2019 11:40:45 +0100

CMake install grpc to generate gRPCTargets.cmake file

The following are the installation statements: cd grpc_folder git submodule update --init cmake .. make -j 4 sudo make install However, when writing a program that depends on gRPC, it is found that the CMake file of gRPC cannot be called. The error prompt is as follows: include could not find load file: /usr/local/lib/cmake/grpc/gRPCTarg ...

Posted by Vertical3 on Wed, 04 Dec 2019 09:41:09 +0100

git branch of Jenkins continuous integration

What is a branch The method of starting a separate development line in software project Why git 1. It can avoid the problem of version compatibility development and the interaction between different versions. 2. Encapsulate a development phase. 3. When solving a bug, create a new branch to study the bug. Branch related commands in git git bra ...

Posted by tzikis on Mon, 02 Dec 2019 22:43:47 +0100

Reverse agent software ngrok

Reverse agent software: ngrok 1.7 (not open source after 2.0)Function: through the construction of ngrok intranet penetration server, you can realize the localization of web server, tcp, udp forwarding, simply speaking, you can make your local serviceExposed on the Internet, accessible through the InternetEnvironment: CentOS Linux release 7.4. ...

Posted by tex1820 on Mon, 02 Dec 2019 12:50:36 +0100

Introduction and use of generics in Java

Introduction: Recently Mobai has made a blog of his own, with git + hexo + node.js as the technical point. I will give a blog tutorial in a few days. Interested partners can try to make their own blog when they come. I put the link of my blog in the end of reading the original text. Interested partners can visit it, because there are many cont ...

Posted by sockit2em on Mon, 02 Dec 2019 01:13:31 +0100

When golang compiles, it assigns values to variables in the package to print version number and commit

Many command-line programs can output version information, commit, operating system and other information through the version parameter. Here is a method to print the version number of the command line program compiled by golang. Version information printed by docker: $ ~ docker version Client: Docker Engine - Community Version: 18.0 ...

Posted by MitchEvans on Fri, 29 Nov 2019 17:15:07 +0100