Intentional practicing is of great importance.
Lecture Notes: Linear Algebra
大学课程:线性代数;笔记+课堂总结+题目总结。
Ubuntu-Based Environment for PWN
There are several choices for implementing ctf environment for PWN. For example, docker containers or virtual machines including Ubuntu 16 18 20, Kali Linux and so on.
Using Pop Shell on Kali Linux
From my perspective, the most impressive tool on Pop!_OS is the POP SHELL. It provides functions like window management and application launcher which are convenient for Linux GUI users. So why not using it on Kali?
Writing Styles: the Title of English Articles
For novice writers, sometimes it is hard to be clear how to manage titles. Especially what letter need be capitalised and what letter do not. After reading this blog, I wish you learned more prevalent rules.
How to Permanently Revert to One-line Terminal in New Kali Linux 2021.02
After the release of Kali Linux 2021.02 version, I can not help to install it in Parallels Desktop. Nevertheless, the Parallels Tools still cannot be correctly installed in PD 16 on macOS 11.5. Except for some novel features and enhancements, there are some stuff that I am a little confused about -- the Command Line.
Introduction to Regular Expression
正则表达式是由普通字符(例如字符a 到z)以及特殊字符(称为"元字符")组成的文字模式。模式描述在搜索文本时要匹配的一个或多个字符串。 正则表达式作为一个模板,将某个字符模式与所搜索的字符串进行匹配。
How to Deal with Large File in Python
When we use f.readlines()
or f.readline()
to get file data, there might happen a problem. For example, the file is so large that our computer memory is not big enough to afford.