Python crawls 478.58 million comments from cat's eye movie "flying life" and makes data analysis
Preface
The text and pictures of the article are from the Internet, only for learning and communication, and do not have any commercial use. The copyright belongs to the original author. If you have any questions, please contact us in time for handling.
Author: Yura doesn't say data, PYuraL
PS: if you need Python learning materials, you can cl ...
Added by feign3 on Thu, 28 Nov 2019 10:43:41 +0200
Using brupsuite and python for password explosion
Using brupsuite and python for password explosion
Using burpsuite tool to do dvwa brute force cracking experiment
low
medium
high
Using python password to explode high
An article on water...
Using burpsuite tool to do dvwa brute force cracking experiment
low
First set the browser agent, and then configure the burpsu ...
Added by deezin on Thu, 28 Nov 2019 00:22:11 +0200
Android entry encapsulates a helper class for HTTP requests
In the previous article, we have implemented an HTTP GET and POST request;
Here I encapsulate an auxiliary class of HTTP get and post, which can be used better;
Class name: HttpRequestUtil
The following functions are provided:
(1) simulate GET request;
(2) simulate POST request;
(3) upload request of simulation ...
Added by Hallic7 on Mon, 25 Nov 2019 20:39:29 +0200
android adjustNothing get keyboard height
The implementation effect is as follows: after obtaining the keyboard height, manually move the input box:
20190402144716388.gif
Although the pop-up of the input box is not smooth enough, it seems a little stiff, but we can add appropriate animation to improve it.
The method is to cover a PopupWindow with a width of 0 and a ...
Added by ifuschini on Sun, 24 Nov 2019 18:43:40 +0200
Python type corresponding to type C
Type comparison table
ctypes type
C type
Python type
c_bool
_Bool
bool (1)
c_char
char
1-character bytes object
c_wchar
wchar_t
1-character string
c_byte
char
int
c_ubyte
unsigned char
int
c_short
short
int
c_ushort
unsigned short
int
c_int
int
int
c_uint
unsigned int
int
c_long
long
int
c_ulong
unsigned long
int
c_lo ...
Added by Bhoomika on Sat, 23 Nov 2019 14:54:08 +0200
Spring core components
Article directory
Dependency injection
Dependency injection mode 1 (using java)
Dependency injection mode 2 (using spring injection)
aop application section
Dependency injection
Dependency injection will automatically hand over the dependency relationship to the target object instead of letting the object obtain the de ...
Added by jackread on Fri, 22 Nov 2019 21:19:13 +0200
Unicode converteutil: converting Unicode to String
Unicode is a kind of character set coding. It is a character coding scheme developed by international organizations that can accommodate all the words and symbols in the world. It can represent any character. In java language, Unicode is composed of four hexadecimal digits, such as: u597d. java does not provide a tool class to d ...
Added by cody7 on Wed, 20 Nov 2019 21:25:48 +0200
Maven assembly plugin of < maven>maven plug-in
What
It is a standard plug-in for packaging tasks in maven
The main purpose of the Assembly plug-in is to allow users to assemble project output with its dependencies, modules, site documents, and other files into a distributable archive.
Why
Other plug-ins are not easy to use and each has its own short board. For example, you can't make a ...
Added by kenhess on Sat, 16 Nov 2019 21:56:47 +0200
Transform JAVA, add Chinese keywords to OpenJDK10
Compilation reference of OpenJDK10: Compiling OpenJDK10 on WSL
Magic JAVA, add Chinese keywords, not much change, just change the source code of javac, which belong to java.compiler and jdk.compiler
Chinese key words, I used my own style, do not like, you can modify.
jdk10langtoolssrcjava.compilershareclassesjavaxlangmodelSourceVersion.java
Cha ...
Added by conspi on Sat, 16 Nov 2019 21:20:08 +0200
New features of ES6, ES7, ES8, ES9 and ES10
1. New features of ES6 (2015)
class
Modularization
Arrow function
Function parameter defaults
Template string
Destructuring assignment
Extension operator
Object attribute shorthand
Promise
Let and Const
1.1 module
ES5 does not support native modularity, and modules are added as an important part of ES6. The function of the module is mainly co ...
Added by vivek on Fri, 15 Nov 2019 12:23:12 +0200