sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
// Config file of V2Ray. This file follows standard JSON format, with comments support. | |
// Uncomment entries below to satisfy your needs. Also read our manual for more detail at | |
// https://www.v2fly.org/ | |
{ | |
"log": { | |
// By default, V2Ray writes access log to stdout. | |
// "access": "/path/to/access/log/file", | |
// By default, V2Ray write error log to stdout. | |
// "error": "/path/to/error/log/file", |
/* | |
* This program is free software: you can redistribute it and/or modify it | |
* under the terms of the GNU General Public License as published by the Free | |
* Software Foundation, either version 3 of the License, or (at your option) | |
* any later version. | |
* | |
* This program is distributed in the hope that it will be useful, but WITHOUT | |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
* more details. |
ZSH, also called the Z shell, is an extended version of the Bourne Shell (sh), with plenty of new features, and support for plugins and themes.
This is a framework for zsh
Powerlevel10k is a theme for Zsh. It emphasizes speed, flexibility and out-of-the-box experience.
<option value="US">United States</option> | |
<option value="AS">American Samoa</option> | |
<option value="AD">Andorra</option> | |
<option value="AU">Australia</option> | |
<option value="AT">Austria</option> | |
<option value="BE">Belgium</option> | |
<option value="BA">Bosnia and Herzegowina</option> | |
<option value="BG">Bulgaria</option> | |
<option value="CA">Canada</option> | |
<option value="CN">China</option> |
This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project:
In our project’s Git repository, two branches currently exist: the usual master branch, and a feature branch that we created right after the initial commit. On the master branch, we have italicized the ‘a’, then bolded the ‘a’. On our feature branch, we have italicized the ‘b’, and then bolded the ‘b’.
By merging feature into master, master obtains a new commit — a “merge commit”.
The always enthusiastic and knowledgeable mr. @jasaltvik shared with our team an article on writing (good) Git commit messages: How to Write a Git Commit Message. This excellent article explains why good Git commit messages are important, and explains what constitutes a good commit message. I wholeheartedly agree with what @cbeams writes in his article. (Have you read it yet? If not, go read it now. I'll wait.) It's sensible stuff. So I decided to start following the
原文:Python开发者
(点击上方蓝字,快速关注我们)
来源:阿驹的自荐投稿(微信公号:驹说码事)
如有好文章投稿,请点击 → 这里了解详情
前言