Jenkins Builds All Applications on a Server

1. Background In order to save costs, the test environment is deployed on the PC of the office environment, more than 200 web applications or other applications, 10 + centos servers, and then automatically deployed through the jenkins + shell script. However, because there is no computer room and no special cabinet, it often leads to an unexpe ...

Posted by claire on Thu, 18 Apr 2019 09:12:33 -0700

Data Structure - Sorting Algorithms (Selective Sorting && Selective Sorting)

Today we will summarize the sorting algorithms in the data structure. Data structure Sorting Algorithm part1:Direct insertion sort: Thought: When inserting the I (i >= 1) element, the preceding array[0],array[1],... array[i-1] has been arranged In this case, the sequence code of array[i] and array[i-1],array[i-2],... Compare the ranking o ...

Posted by nvidia on Thu, 18 Apr 2019 03:48:33 -0700

One Linux command per day (20): exec of find command

Links: http://www.cnblogs.com/peida/archive/2012/11/14/2769248.html Find is a common Linux command, but we usually find out not only to look at it, but also to have further operations, at this time the role of exec appears. Exc explains: - The exec parameter is followed by the command command, whose termination is marked by; so the sem ...

Posted by piersk on Wed, 17 Apr 2019 21:00:34 -0700

Notes on Starting Linux Kernel Analysis from start_kernel to init Process

Notes on Starting Linux Kernel Analysis from start_kernel to init Process The use of GDB Before entering the GDB debugging, first master the most commonly used commands of GDB, in order to facilitate the completion of tracking. B [reak] line number: add breakpoints s[tep]: Step-in n[ext]: One-step skip c[ontinue]: Continue execution r[un ...

Posted by Beauford on Wed, 17 Apr 2019 11:06:33 -0700

OpenGL (I) OpenGL Pipeline and Programmable Pipeline Flow

Since OpenGL is a pure rendering core, to write OpenGL programs, you need to build a shell program first. There are different implementations of shell programs under different platforms. This series of articles are all carried out on win32 platform. Specific implementation, the Internet can find many, so this is not the focus of this article. T ...

Posted by plinares on Sun, 14 Apr 2019 23:00:32 -0700

npm script command learning notes

What is npm script? In the package.json file, script commands defined using scripts fields { // ... "scripts": { "build": "node build.js" } } How to execute npm scripts? $ npm run build # Equivalent to implementation $ node build.js Do you know any npm scripts? #View all npm script commands for the current project #(Actually, you can ...

Posted by GameMusic on Sun, 14 Apr 2019 12:45:32 -0700

MySQL Master Master Data Synchronization

Links to the original text: http://blog.csdn.net/xyang81/article/details/52562571 MySQL The principle of master-slave synchronization is the same as that of master-slave synchronization, but both sides are master-slave roles. Environmental Science operating system Version: CentOS 7 64 bits MySQL version: MySQL 5.6.33 Node 1IP: 192.1 ...

Posted by bweekly on Sat, 13 Apr 2019 17:21:32 -0700

Android apk encryption plus shell technology

ABSTRACT: The usage of Chinese fetching doctrine is very good. In order to prevent their apk from being brought, here is a kind of technology to teach you! I have been working on android framework for nearly three years. Now the company wants to do some research on android apk security, so I am looking for a lot of information to learn on ...

Posted by rosy on Fri, 12 Apr 2019 21:00:33 -0700

Method of Heroku Connecting MongoDB in Cloud

Previously, we have simply deployed the web application under development on Heroku. Now our application will use the MongoDB database. How can we deploy a MongoDB connection in the cloud? Further, our ultimate goal is to connect different databases in production and development environments. This article will describe the whole process. R ...

Posted by skylert on Fri, 12 Apr 2019 18:45:31 -0700

Application of python multithreading in penetration testing

Difficulty degree: Reading point: python; web security; Author: xiaoye Source: i Spring and Autumn Period Key words: network penetration technology Prefacepython is a simple and easy language to learn. Powerful third-party libraries enable us to multiply our programming efforts with half the effort. Today, let's talk about python multi ...

Posted by Daniel Mott on Thu, 11 Apr 2019 10:33:32 -0700