day09 package / eclipse uses / this / inherit / rewrite / super

catalogue 1, Package 1. Function of package: 2. How to declare a package? 3. How to compile packaged classes 4. How to run a packaged class 5. How to use the class of another package? 2, eclipse overview and basic interface 1. Installation steps 2. New project 3, Using eclipse: colors and fonts 4, Using eclipse: running and charact ...

Posted by jdadwilson on Fri, 07 Jan 2022 17:43:56 +0100

Syntax analysis of turtle program

Syntax analysis of turtle program 1. Library reference and import Tuttle Python drawing example code: import turtle turtle.setup(650.350.200.200) turtle.penup() turtle.fd(-250) turtle.pendown() turtle.pensize(25) turtle.pencolor("purple") turtle.seth(-40) for i in range(4): turtle.circle(40,80) turtle.circle(-40,80) turtle.circle(40, ...

Posted by smith.james0 on Tue, 04 Jan 2022 13:35:30 +0100

springboot integrates shiro security authentication framework

First, build a simple test environment Build a springboot projectDependency is introduced, mainly web starter shiro (security authentication) and thymeleaf (simple page construction). There is no data layer query, so database related is not introduced. <dependencies> <dependency> <groupId>org.springfram ...

Posted by khaitan_anuj on Tue, 04 Jan 2022 08:59:36 +0100

VS2019 create Windows service

To write a daily report on the enterprise wechat every day, a robot is added to remind you to write a daily report regularly, so a local service is made. 1, Create enterprise wechat robot Click on the top right of the group to add a robot   The Webhook address above will be used in the next three steps 2, Create project 1.VS create a ne ...

Posted by dominod on Tue, 04 Jan 2022 02:11:18 +0100

MySQL data recovery "ceiling"“

1, Background   when we use the database, we will inevitably encounter the situation that the data is deleted by mistake, which may be business operation errors and code bug s; It may also be an operation and maintenance error, etc; However, we can divide all operations into the following categories: Data loss due to DMLData loss due ...

Posted by jaygattis on Mon, 03 Jan 2022 03:46:29 +0100

Playing with git, developers must know and operate GIT

preface I only sent this article because I came to write a simple operation about git at the invitation of my friends yesterday. Friends used svn as version control before. Now the company uses git as version tool. Due to time problems, I will simply sort out the GIT commands commonly used in work to facilitate friends to attribute git c ...

Posted by sgalatas on Sun, 02 Jan 2022 06:39:39 +0100

Based on ngrok1 Intranet penetration building tutorial of X

preface: Recently, I want to do some gadgets related to raspberry pie. I found that some people will use raspberry pie personal blog to build websites. When building a personal blog site, I will use the intranet penetration technology provided by peanut shell, Natapp (which was modified by ngrok), Xiaomi ball and other platforms to access my p ...

Posted by fr8 on Sat, 01 Jan 2022 17:26:25 +0100

Ah Chang teaches you to use common Lombok @ annotations

preface Old iron / old fellow friends are good! What ah Chang shared today is the commonly used Lombok annotation, Official address,github address Who doesn't know this little pepper when doing Java development. Lombok is a tool that can help us simplify and eliminate some necessary but cumbersome Java code through simple annotation, so as ...

Posted by ScottCFR on Thu, 30 Dec 2021 22:30:40 +0100

Basic usage of RocketMQ

RocketMQwiki It is a distributed message and stream data platform with low latency, high performance, high reliability, trillions of capacity and flexible scalability. RocketMQ is the third generation distributed messaging middleware that Alibaba opened source in 2012. On November 21, 2016, Alibaba donated RocketMQ to Apache Software Foundation ...

Posted by lances on Wed, 29 Dec 2021 10:25:49 +0100

Introduction to python Basics

catalogue 1, Getting started with python 2, python indent 3, Python comments 1) Single line note 2) Multiline comment 4, Python variables 1) Variable definition understanding 2) Variable name naming 3) Assign multiple values 4) Output variable 5) Global and local variables, global keywords 6) exercises 1, Getting started with pyth ...

Posted by metrostars on Wed, 29 Dec 2021 06:40:22 +0100