MySQL Installation Configuration
Linux version: CentOS 6.5 64-bit
1. Download MySQL
wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.20-1.el6.x86_64.rpm-bundle.tar
2. Decompression
mkdir mysql
cd mysql
[root@localhost mysql]# tar -xvf mysql-5.7.20-1.el6.x86_64.rpm-bundle.tar
mysql-community-embedded-devel-5.7.20-1.el6.x86_64.rpm
mys ...
Posted by phpMitch on Fri, 03 Jul 2020 17:18:54 +0200
Learning and using fdbus
1: fdbus address
https://github.com/jeremyczhen/fdbus
2: build fdbus (ubuntu environment)
cd ~/workspace
git clone https://github.com/jeremyczhen/fdbus.git #get fdbus source code
cd fdbus;mkdir -p build/install;cd build #create directory for out-of-source build
cmake -DCMAKE_INSTALL_PREFIX=install ...
Posted by Scriptor on Tue, 30 Jun 2020 06:48:29 +0200
Spring cloud Part 6: Spring Cloud Config Github
As distributed projects get bigger and bigger, hardworking programmers will begin to face a challenge, and configuration files will become more and more complicated, although spring provides a chicken rib solution, spring.profiles.active In the large-scale distributed project system, it's better than nothing. The pain of manual maintenance of c ...
Posted by michealholding on Mon, 29 Jun 2020 06:15:03 +0200
[SpringCloud Learning Notes 6] Getting Started and Using Config
Getting started with Config and using it
1. Introduction and Introduction to Config
SpringCloud Config provides centralized external configuration support for microservices in the microservice architecture, and Configuration Server provides a centralized external configuration for all environments o ...
Posted by Cobby on Sat, 27 Jun 2020 02:42:32 +0200
git usage record
In short, it's not very appropriate to talk about several git partitions
Workspace: all the files you currently see are actually workspaces
Staging area: after running git add, the changes to the working area will arrive at the staging area
Version area: after running git commit, changes to the staging area will arrive at the version area
Re ...
Posted by j4ymf on Wed, 24 Jun 2020 05:38:18 +0200
X86_Function Call Procedures under 64 Assemblies
stores reserve
Start by handwriting a simple C program: main.c
#include <stdio.h>
void empty();
int add(int i, int j);
void myPrint(int num);
void testParams(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j, int k);
int main()
{
// Testing empty functions
empty();
// T ...
Posted by tkm on Sun, 21 Jun 2020 03:49:09 +0200
Developing websites from scratch
In the last search function, some fans mentioned whether it can be set as optional search criteria. Naturally, the answer is yes, so I added a drop-down option based on the previous week
Effect display
Here I implement the function of drop-down item based on the two ways of select tag and a tag.
...
Posted by dominicd on Sat, 20 Jun 2020 05:38:10 +0200
Common branch operations of Git
catalog
Branch Management
1. Create and merge branches
1.2switch
2. conflict resolution
3. Branch management strategy
4. Branch strategy
5.Bug branch
6.Feature branch
7. Multi person cooperation
8. Push branch
9. Grab branch
10.Rebase
Branch Management
The branch is the parallel universe in sc ...
Posted by TecBrat on Sat, 20 Jun 2020 05:20:03 +0200
The implementation of custom command for uploading image in Typora
Typora is a mark down editor that I like very much. Usually, I write notes in typora before I post them on my blog. At this time, the pictures in md need to be copied one by one. In order to reduce these tedious operations, typora also supports the function of drawing bed, so we decided to operate it.
T ...
Posted by lucasw on Mon, 15 Jun 2020 07:31:19 +0200
Learn the overall structure of redux source code and deeply understand the principle of redux and its Middleware
1. Preface
Hello, I am Ruokawa . This is the eighth part of the whole learning source architecture series. The word "overall architecture" seems to be a little big. Let alone the overall structure of the source code. The main thing is to learn the overall structure of the code without going into the implementation of other specific f ...
Posted by drfate on Mon, 15 Jun 2020 04:06:57 +0200