C × WinForm custom control - rotor

Official website http://www.hzhcontrols.com/ premise It's been 7 or 8 years since I started, I always want to make a set of beautiful custom controls, so I have this series of articles. GitHub: https://github.com/kwwwvagaa/NetWinformControl Code cloud: https://gitee.com/kwwwvagaa/net_winform_custom_control.git If you think it's OK, pleas ...

Posted by kaeRock on Sun, 17 May 2020 08:38:32 -0700

Linux CentOS springboot jenkins+maven+git for sustainable automatic package deployment

jdk environment: 1.8 linux version: CentOS 6.10 git version: 2.1.1 maven version: 3.5.4 Prepare jdk in advance (omitted) 1, Install and deploy jenkins 1. Download rpm file: 2. Upload to server and install 3. Modify jenkins port (default 8080) 4. Start and restart jenkins 5. Visit jenkins 6. Install plug-ins and create users ...

Posted by vandana on Sun, 17 May 2020 01:03:52 -0700

Spring Cloud cognitive learning: the use of Spring Cloud Config in configuration center

catalog Spring Cloud Config effect: Simple example Create configuration center Pull configuration test Add: 💡 In the previous article, we introduced a new component Zuul, which is a gateway component. It receives Api requests uniformly. Based on the gateway, we can process all requests, log records, request authorization and other ope ...

Posted by pradeepss on Fri, 15 May 2020 02:28:10 -0700

Installing Chinese community version of Gitlab for docker under centos7 Linux

catalog 1, Environment 2, Installation procedure 3, Use 4, 500 problem solving 1, Environment linux: centos7 docker:18.06.3-ce gitlab: twang2218/gitlab-ce-zh(Sinicized GitLab Community Edition) 2, Installation procedure To configure the image accelerator (skip this step if you have already configured it), open the / etc/docker/daemon.j ...

Posted by jdavila28 on Thu, 14 May 2020 22:47:02 -0700

manjaro Configuration Overview

1 Source Arrange the speed of Chinese mirrors, select one. sudo pacman-mirrors -i -c China -m rank /etc/pacman.conf plus: [archlinuxcn] SigLevel=Optional TrustedOnly Server=https://mirrors.ustc.edu.cn/archlinuxcn/$arch To update: sudo pacman -Syy && sudo pacman -S archlinuxcn-keyring 2 Input Method sudo pacman -S fcitx-im fcitx-confi ...

Posted by geroido on Sat, 09 May 2020 19:53:15 -0700

Teach you how to configure WinDbg on windows, lldb on linux, this is enough to go inside clr

One: Background 1. Storytelling After reading a few articles in the Public Number the other day, one of my brothers was ready to try it out with windbg. As a result, the match took several days. (_) I think a lot of friends who are eager to try will definitely encounter problems like this and that when configuring it, so I think it's necessary ...

Posted by Morbius on Fri, 08 May 2020 09:28:11 -0700

Jenkins+maven+gitlab+Tomcat auto deployment version update and rollback

Implementation effect of this blog: combined with maven+gitlab, you can use Jenkins to implement version iterative update and version rollback operations for tomcat servers in different environments (test and online environments). After deployment, you only need to click a few times. 1, Environmental preparation system IP host name Running s ...

Posted by John Rowe on Tue, 05 May 2020 19:45:51 -0700

Kubernetes RBAC permission problem

Kubernetes RBAC permission problem The following problem occurs in configuring Ingress, which is caused by RBAC configuration. RBAC starts referencing at kubernetes 1.6. The API version is also different, so you need to pay attention when configuring the yaml file. Here we use an example to solve the problem of RBAC. ...

Posted by JayBachatero on Mon, 04 May 2020 16:58:37 -0700

List of common Git commands

Git has dozens of hundreds of commands, but we often use only a few basic commands. If you want to be proficient in using git, you need to remember many commands Common basic 6 commands Workspace: workspace Index / Stage: staging area Repository: warehouse area (or local warehouse) Remote: remote warehouse 1, New code base # Create a Gi ...

Posted by soadlink on Mon, 04 May 2020 09:34:51 -0700

Multithreading and concurrent library application 7 - data sharing between threads 2

In the last two articles, we talked about the way of data sharing. This article focuses on one small topic to consolidate it Suppose there are four threads, two to add 1 to j and two to subtract 1 from J Two ways of thread data sharing 1. Encapsulate the shared data in another object, and then pass this object to eac ...

Posted by dookie on Sun, 03 May 2020 09:19:54 -0700