Develop a DDD scaffold based on IDEA Plugin
Author: Xiao Fu GeBlog: https://bugstack.cnPrecipitate, share and grow, so that you and others can gain something! 😄Recently, I am interested in expanding various functions in combination with the development capability of IDEA Plugin. Based on this, different cases are used to explore the IDEA Plugin plug-in development technology. I hope thi ...
Posted by Labbat on Wed, 24 Nov 2021 19:29:08 -0800
Actual combat | use Windows API to bypass process protection
Launched in Qianxin attack and Defense Community
Article address: https://forum.butian.net/share/817
preface
Recently, when studying a digital kill software, I saw a configuration option:
img
This self-protection actually loads the 360SelfProtection.sys driver (see the name should also have the 360SelfProtection_win10.sys file), Fengga ...
Posted by KPH71 on Tue, 16 Nov 2021 20:12:39 -0800
[SVG] SVG's lethal weapon - path
[SVG] SVG's lethal weapon - path
Blog description
The information involved in this article comes from the Internet and personal summary, which means the summary of personal learning and experience. If there is any infringement, please contact me to delete it. Thank you!
explain
As soon as it was released yesterday, I suddenly saw a fri ...
Posted by Shawn Jetton on Fri, 12 Nov 2021 08:56:41 -0800
ZBar Source Analysis - video.c | 2021SC@SDUSC
Catalog
I. Video modules
2. Code Analysis
3. Summary
I. Video modules
We know that ZBar is not always provided with static pictures when scanning, but may also be dynamic videos. For example, the micro-scanner that we call in our daily life also provides video video, so we need Zbar to analyze the video and scan it dynamically.
The Video ...
Posted by ManWithNoName on Sun, 07 Nov 2021 09:00:00 -0800
Git command book, hard!
git configConfigure Git related parameters.Git has three profiles:Warehouse level configuration file: in. git/.gitconfig of the warehouse, the configuration file is only valid for the warehouse.Global configuration file: Mac system in ~ /. gitconfig, Windows system in C: \ users \ < user name >. gitconfig.System level configuration file: ...
Posted by kaeserea on Fri, 05 Nov 2021 17:08:22 -0700
☕ [Java technical guide] "serialization series" delves into the characteristics and principles of FST's sharp tools for fast serialization and compression of memory
Concept and definition of FST
The full name of FST serialization is Fast Serialization Tool, which is an alternative implementation of Java serialization. Since the two serious shortcomings of Java serialization mentioned above have been greatly improved in FST, the characteristics of FST are as follows:
The serialization provided by JDK i ...
Posted by franklyn on Thu, 04 Nov 2021 05:22:46 -0700
Debugging the destroy container on Kubernetes
TL;DR
Content of this article:
Describes the, functions and simple use of the destroy image
How to debug against the of the destroy container
Use of temporary containers (v.1.18 +)
Destroy mirror
The destroy container is used as the name suggests Destroy mirror A container that runs as a base image.
The "destroy" im ...
Posted by asmon on Wed, 03 Nov 2021 00:07:57 -0700
Go daily develops standing third-party libraries and tools
It has been almost a year since I wrote Go, and several large and small projects have been launched; Mentality has also experienced several rounds of changes.
Because I personally wrote Java in the first five years and Python in the middle of the course for more than a year, when I first came into contact with Go, I felt as follows:
There ...
Posted by dreamline on Tue, 02 Nov 2021 05:17:29 -0700
Image building without Dockerfile: BuildPack vs Dockerfile
In the past work, we have built a technical platform using microservices, containerization and service choreography. In order to improve the R & D efficiency of the development team, we also provide a CICD platform to quickly deploy the code to the Openshift (enterprise class Kubernetes) cluster.
The first step of deployment is the contain ...
Posted by webbwbb on Thu, 28 Oct 2021 23:19:49 -0700
Submit kernel patch
Submit kernel patch
Rong Tao
October 28, 2021
Document modification log
dateModification contentModified byremarksOctober 28, 2021establishRong Tao
1. Introduction
2. Clone kernel
# Cloning Linux kernel from GitHub
$ git clone --depth=32 https://github.com/torvalds/linux
# Switch branch
$ git checkout master
# synchronization
$ ...
Posted by ksmatthews on Thu, 28 Oct 2021 04:33:04 -0700