JD sliding verification code cracking of selenium and PIL

Single layer graph slide verification code of selenium and PIL How to crack the slide verification code preparation in advance Code operation How to crack the slide verification code There are various mechanisms of anti climbing on the market, among which the sliding verification code is divided into two-layer graph ...

Posted by Kev on Sun, 10 May 2020 01:54:26 -0700

Getting Started with React and Learning Notes

React builds JavaScript libraries for user interfaces, primarily for building UI interfaces.Instagram, Open Source, 2013. Characteristic: Declarative design Efficient, uses virtual DOM to render DOM, minimizing DOM operations. Flexible to use with other libraries. JSX, commonly known as JS, writes HTML inside, an extension of JavaScri ...

Posted by TabLeft on Fri, 08 May 2020 10:00:37 -0700

Deepin configuration notes

Recently, Deepin system has been installed, so it's hard to avoid some trouble. Record the process for future reference & help children's shoes with the same problems. System installation 1. Download Image file and Make startup disk2. The main board is in UEFI mode, enter BIOS and close SecureBoot. The first boot item is set as boot disk3 ...

Posted by aladin13 on Mon, 04 May 2020 18:06:51 -0700

node review express create project

express installation npm install express -g //Initialize project node init  //Install express npm install express After that, create a new app.js file with the following contents var express = require('express'); var app = express(); app.get('/', function (req, res) { res.send('Hello World!'); }); var server = app.listen(3000, funct ...

Posted by kevdotbadger on Sun, 03 May 2020 16:56:14 -0700

ES6 learning note 2 - build tool script

The build tool script is in the es6/tasks / directory Installed package: ~ / ES6 $NPM install gulp gulp if gulp concat webpack webpack stream vinyl named gulp liverload gulp plumber gulp rename gulp uglify gulp util yargs -- save dev ------------------------------------------------------------------------------------------------------ gulp.t ...

Posted by JoWiGo on Sat, 02 May 2020 05:12:51 -0700

react combined with d3.js and svg to draw bar statistical chart

Recently, I learned D3 and wrote a small demo based on others' cases. I encountered some problems. Here's the record: 1. Some pits encountered: (1) V3 and V4 versions in d3.js are quite different, so we must pay attention to the version; (2) when referencing the JS library file of D3.js, you should install it through ...

Posted by jaydeesmalls on Sat, 02 May 2020 00:38:09 -0700

React Native SVG Animated

From: Real native SVG stroke animation stroke property Stroke defines the stroke color stroke="#0078ff" strokeWidth defines the width of the stroke strokeWidth="3" Properties used to create dashes: strokeDasharray creating dashed lines // Suppose a space of 5 pixels, a space of 5 pixels strokeDasharray="5" // What we can see is a 5-pixel ...

Posted by keakathleen on Fri, 01 May 2020 10:53:07 -0700

Open STF installation (linux)

The first method relies on the following: The basic commands depend on the following (the following are debian linux like commands) sudo apt-get update sudo apt-get install -y git sudo apt-get install -y curl sudo apt-get install -y android-tools-adb sudo apt-get install -y python sudo apt-get install -y autoco ...

Posted by john-formby on Thu, 30 Apr 2020 03:09:32 -0700

Getting started with Vue.js -- binding of form input (6)

Full case demo <html> <head> <title>form input binding</title> <meta charset="UTF-8"> <script src="https://cdn.jsdelivr.net/npm/vue"></script> </head> <body> <div id="app"> //Add a favorite star: <input @keyup.13="addStar" v-model="star"> ...

Posted by djot on Wed, 29 Apr 2020 22:41:15 -0700

Dockerfile used in work

Dockerfile customized in work java:8.0 jenkins-slave:8.0 nodejs:v10.15.0 maven:8.0 httpd:7.5 newman:5.0.0 sonar:6.7.4 The intranet is used by the company, so the installation packages used in some dockerfiles can be easily transferred to the intranet under the external network. The installation packages are place ...

Posted by Wayne Herbert on Wed, 29 Apr 2020 21:36:41 -0700