Blog | 博客

GPG: Add a lock to your Git commits

Original link: https://lisz.me/tech/webmaster/gpg.html foreword GPG, the full name of GNU Privacy Guard, can also be written as GnuPG. It is a free and open source encryption software, and a substitute for PGP (Pretty Good Privacy), which is not open source and not free. For details, please refer to the reference materials. Since GPG can be […]

GPG: Add a lock to your Git commits Read More »

How to properly export help link into HTML

Original link: https://lujun9972.github.io/blog/2022/05/31/%E5%A6%82%E4%BD%95%E5%90%88%E7%90%86%E7%9A% 84%E5%AF%BC%E5%87%BAhelp-link-%E6%88%90html/index.html Org files will export =help= link as an HTTP link when exporting to html, such as a #+begin_example Here is a [[help:lazy-helm/describe-char][Help]] link #+end_example When exporting to HTML it becomes #+begin_src html Here is a Help link #+end_src This operation is very confusing, because there is actually no page corresponding to

How to properly export help link into HTML Read More »

I wish you all a happy Children’s Day~~~

Original link: https://www.lifengdi.com/archives/daily/3881 Whether it is a big friend or a small child~~Be happy~~ Unless specified, it is Li Fengdi’s blog – LiFengdi.Com original article, the reprint must indicate this article link in the form of a link Link to this article: https://ift .tt/resSfc4 This article is reprinted from: https://www.lifengdi.com/archives/daily/3881 This site is for inclusion

I wish you all a happy Children’s Day~~~ Read More »

Toots 2022 May.22 – May.28

Original link: http://z.arlmy.me/posts/MastodonArchives/2022/MastodonTootsArchives_20220528/ May.22 take responsibility for this proximity Make a story numbering plan another UI flow golf Tombstone with letters Football and one by one. invisible back. There are not so many hard structural constraints on investment behavior, but more soft structural constraints Operational risk in the financial industry is greater than governance risk,

Toots 2022 May.22 – May.28 Read More »

Toots 2022 May.22 – May.28

Original link: http://z.arlmy.me/posts/MastodonArchives/2022/MastodonTootsArchives_20220528/ May.22 take responsibility for this proximity Make a story numbering plan another UI flow golf Tombstone with letters Football and one by one. invisible back. There are not so many hard structural constraints on investment behavior, but more soft structural constraints Operational risk in the financial industry is greater than governance risk,

Toots 2022 May.22 – May.28 Read More »

Dogecoin founder criticizes Musk as a liar Musk: My children are better than you

Original link: https://www.williamlong.info/archives/6816.html According to media reports, Dogecoin co-creator Jackson Palmer said in an interview with Australian media on Monday that “Musk is a liar. He touts a vision and looks forward to one day fulfilling his promise, but He doesn’t know if it’s going to happen or not. He’s just good at pretending that

Dogecoin founder criticizes Musk as a liar Musk: My children are better than you Read More »

The meaning of an opinion depends on its bounds, and distortions of an opinion often stem from going beyond its bounds.

Original link: https://zhurongshuo.com/posts/2022/06/0101/ The meaning of an opinion depends on its bounds, and distortions of an opinion often stem from going beyond its bounds. This approach has always been well used by opponents of an opinion – who demonstrate the absurdity of the other’s point of view by taking it to extremes, yet have a

The meaning of an opinion depends on its bounds, and distortions of an opinion often stem from going beyond its bounds. Read More »

Programmer’s Fun (11)

programmer’s way 229. Programmer very figurative 230. linux users Ha ha 231. Wait for gradle build I’ve had enough 232. Program tester QA Is that so? 233. The feeling of writing code on paper during an interview Try it 234. After a semester of C language learning pointer pointer 235、No one reads this That’s right

Programmer’s Fun (11) Read More »

What does the tail -1, -2, -3 of the website icp record number mean?

Original link: https://www.tianqiweiqi.com/icp-1-2-3.html Simply put, a person has only one record number. Your first domain name registration number is: Henan ICP No. 19011385-1 Your second domain registration number: Henan ICP No. 19011385-2 And so on: The 10th domain name registration number is: Henan ICP No. 19011385-10 This article is reproduced from: https://www.tianqiweiqi.com/icp-1-2-3.html This site is

What does the tail -1, -2, -3 of the website icp record number mean? Read More »

Linux common commands-5: cp

The cp command is the abbreviation of the English word copy , and its role is to copy files or directories. The cp command can copy multiple files to a specific file name or an existing directory, and can also copy multiple files to a specified directory at the same time. Syntax format: cp [parameter]

Linux common commands-5: cp Read More »

Linux common commands-4: cat

The cat command is used to view the content of plain text files, targeting files with less content. The viewing method of large files will be introduced later. Syntax format: cat [parameter] [file] Common parameters: Example # 查看文件test.py的内容,并显示行号cat -n test.py If there is no editor in the system, you can also use cat to edit

Linux common commands-4: cat Read More »

Linux common commands-2: mkdir

mkdir is short for make directories , used to create directories. By default, if the directory to be created already exists, it prompts that it already exists instead of continuing to create the directory. mkdir command can create multiple directories at the same time. Command format: mkdir [参数] [目录] Example: # 创建test目录mkdir test # 递归创建目录,A也是一个目录mkdir

Linux common commands-2: mkdir Read More »