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
IntelliJ IDEA activation code sharing, available through January 2020
After the reflection server that cracked Jetbrains' family barrel was blocked, the IDE activated by lanyu's activation code will expire in May this year. Developers accustomed to the convenience brought by JB will be very embarrassed on youth day if they don't plan early. However, many people will be deterred by the charges of the original v ...
Posted by liquidchild_au on Fri, 06 Dec 2019 08:55:21 +0100
First use of Retrofit
Rxprofile library is a well written network framework library, which is imported into its own project as a local Module first.
1. Most of its initialization operations are completed in user-defined application s, such as:
public class App extends Application {
@Override
public void onCreate() {
super.onCreate();
...
Posted by SFDonovan on Thu, 05 Dec 2019 21:51:52 +0100
Deploy LVS-DR and preserved cluster (actual combat!!!)
keepalived overview
The function of Keepalived is to detect the state of the server. If a web server goes down or fails to work, Keepalived will detect it and remove the failed server from the system. At the same time, other servers will be used to replace the server's work. When the server works normally, Keepalived will automatically add the ...
Posted by papa on Wed, 04 Dec 2019 11:14:07 +0100
Android project practice: judge whether the network connection is wired (tv Project adaptation)
Generally, for android phones, we can judge the network situation through the method provided by sdk
/**
* Get the current network status: no network - 0: WIFI network 1: 4G Network - 4: 3G network - 3: 2G network - 2
* custom
*
* @param context
* @return
*/
public static int getAPNType(Context context) ...
Posted by rinjani on Tue, 03 Dec 2019 15:31:51 +0100
MySQL is highly available. MySQL is master-slave + maintained.
1. Environment: centos7.5 MySQL 5.7192.168.3.222 master192.168.3.158 slave192.168.3.223 VIPTwo: first, make two mastersTo operate both machines2.1: domain name resolution:
###vim /etc/hosts (both)
192.168.3.222 master
192.168.3.158 slave
2.2: Download MySQL 5.7
### wget http://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm
### rpm - ...
Posted by blufish on Mon, 02 Dec 2019 16:52:41 +0100
[novice must learn] multithreading practice of Python crawler
PrefaceThe text and pictures of this article are from the Internet, only for learning and communication, not for any commercial purpose. The copyright belongs to the original author. If you have any questions, please contact us in time for handling. Author: Clear wind turns evil spirit_ text
Note to novice: if you can't find a solution to t ...
Posted by keefe007 on Mon, 02 Dec 2019 16:19:53 +0100
Basic management of kvm virtual machine
Deploy KVM virtual machine
a.kvm installation
Environment: centos7, cpu supports virtualization, close selinux, close firewalld
yum install libvirt virt-install qemu-kvm -y
libvirt service: managing the life cycle of kvm virtual machine
Virt install tool: create and install virtual machine
QEMU KVM tool: using QEMU img to provide disk ...
Posted by bios on Sun, 01 Dec 2019 08:30:47 +0100
K8S upgrade V1.14.0
1. View the container image version of this version:
kubeadm config images list The output is as follows:
~# kubeadm config images list
k8s.gcr.io/kube-apiserver:v1.14.0
k8s.gcr.io/kube-controller-manager:v1.14.0
k8s.gcr.io/kube-scheduler:v1.14.0
k8s.gcr.io/kube-proxy:v1.14.0
k8s.gcr.io/pause:3.1
k8s.gcr.io/etcd:3.3.10
k8s.gcr.io/coredns:1.3.1 ...
Posted by rishiraj on Sat, 30 Nov 2019 21:40:51 +0100
Some brief introduction of using Kafka: 1 clustering 2 Principle 3 terminology
[TOC]
Section I Kafka cluster
Before inheriting
If you are a developer and are not interested in building kafka cluster, you can skip this chapter and look at tomorrow's content directly
If you think it's no harm to know more, please keep reading.
As a reminder, there are many figures in this chapter
Kafka cluster construction
Summary
The ...
Posted by swallace on Thu, 28 Nov 2019 12:09:26 +0100