Fundamentals of Java -- details of operators and their skills

This article refers to the fourth edition of Java programming ideas, and makes some summaries combined with their existing knowledge. At the bottom, data in Java is manipulated by using operators. The use of most operators in Java is consistent with that in C, but Java has also made some improvements and optimizations. In this article, I wi ...

Added by powaz on Tue, 01 Feb 2022 13:00:19 +0200

Hard core resources! Redis five data structures and three advanced data structures analysis (detailed explanation)

The last one shared "understanding JVM in depth", and this one shared "Redis five data structures and three advanced data structure analysis". preface The most important and fundamental part of Redis is its rich data structure. The reason why Redis stands out is that it has rich data structure and can support a variety ...

Added by kaedus on Tue, 01 Feb 2022 06:14:41 +0200

Fundamentals of java syntax 1

1, Theory 1. Loading and execution of Java program The running of Java program includes two important stages: compiling and running Compilation phase The main task is to check whether the Java source program complies with Java syntax, and if so, it can generate normal bytecode files. Bytecode files are not pure binary files, which canno ...

Added by QSDragon on Tue, 01 Feb 2022 05:01:56 +0200

PHP uses getID3 to obtain information about media files such as the playback duration of audio and video

cause Recently, when I was working at home, I encountered some operations that need to process some video files. There are many interfaces for processing pictures in a cloud storage that the company has been using. However, some video processing needs to open other services. After making a circle, I'd better decide to process it myself to save ...

Added by KeitaroHimura on Tue, 01 Feb 2022 04:53:19 +0200

2021 New Summary: Docker from Getting Started to Actual, Pure Dry!

Introduction to Docker What is Docker? To tell you the truth about what Docker is, let me show you what Docker is through four points. Docker is the world's leading software container platform, developed and implemented in the Go Language.Docker frees developers by automating repetitive tasks such as setting up and configuring development en ...

Added by danoli on Tue, 01 Feb 2022 04:52:50 +0200

Python crawls to take pictures of beautiful women and sees unexpected scenes

Recently, I used Python and wrote several crawlers to practice. There are many online tutorials, but some can't climb. The main reason is that the website is often changed, but crawlers still have a common idea, that is, downloading data, parsing data and saving data. Let's talk about it. 1. Download data First, open the website to be craw ...

Added by cbn_noodles on Mon, 31 Jan 2022 23:22:03 +0200

5hutool actual combat: IoUtil stream operation tool class (write content to stream)

Technical work should be rewarded Like and watch again to form a habit hutool actual combat (take you to master various tools inside) directory Purpose: IO tool class (write content to stream) Usage scenario The IO tool class is only used to read and write auxiliary streams and is not responsible for closing streams. The reason is that ...

Added by ghe on Mon, 31 Jan 2022 17:50:10 +0200

nextcloud private cloud disk setup

1, Extremely simplified deployment One click deployment with docker advantageshortcomingSimple, fast, true one click deploymentThis is a miniaturized deployment and is suitable for private use. If it needs to be used by more than one person, it is recommended to adopt the normal deployment mode 1. Install docker centos 6 installation met ...

Added by ejbrever on Mon, 31 Jan 2022 11:00:01 +0200

03 judgment and loop | introduction to Python

This chapter discusses two basic program structures, judgment and loop. Condition control if statement When the condition is true, execute the code after if; Otherwise, do not execute. if condition: code When condition is True, execute code. cel = int(input('Enter today's temperature:')) if cel >= 30: print('Turn on the air co ...

Added by greggustin on Mon, 31 Jan 2022 08:53:00 +0200

Netty learning notes netty source code - accept and read process

preface The notes are based on black horse's Netty teaching handout and some of my own understanding. I feel that this is a very good video I've seen. There's basically no nonsense. Video address: Black horse Netty . Here is. Or this Code: public class TestSourceServer { public static void main(String[] args) { new ServerB ...

Added by henryblake1979 on Mon, 31 Jan 2022 08:46:15 +0200