sudo pacman -S fcitx5 fcitx5-configtool fcitx5-gtk fcitx5-qt fcitx5-rime
# edit /etc/security/pam_env.conf
# add:
# FCITX input-related
GLFW_IM_MODULE DEFAULT=fcitx
INPUT_METHOD DEFAULT=fcitxA list of CLI generators, starter kits / boilerplates and toolkits to kick start your Next.js apps.
- What is included in this list:
- Has ~1K+ Github stars
- Actively maintained / up to date
- Includes a style / css solution or UI Framework
- Includes a database
- Includes authentication / authorization
See the new site: https://postgresisenough.dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! ------ ~/.Xresources ----- | |
| ! 刷新配置: xrdb -merge ~/.Xresources | |
| ! | |
| ! ----- font --- | |
| Xft.dpi:96 | |
| URxvt.font: xft:Inconsolata Nerd:size=11, xft:DejaVuSansMono Nerd:size=11, xft:Source Code Pro:size:9, xft:WenQuanYi Micro Hei:size=10 | |
| ! DejaVuSansMono Nerd 和 Inconsolata Nerd 配合 Vim 插件 file icon | |
| !URxvt.font: xft:Fira Code:size=10, xft:WenQuanYi Micro Hei:size=10 | |
| !字体间距 | |
| ! URxvt.letterSpace: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # proxychains wrapper | |
| # Choose pre-supposed profile with -1,-2,-3 OR appoint by -n proxy(Node)_ip(hostname):port and -p proxy_protocol and -q as quiet mode | |
| # Default profile | |
| proxy_hostname=127.0.0.1 | |
| proxy_port=1080 | |
| protocol=socks5 | |
| # profile 1 | |
| proxy_hostname_1=127.0.0.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" |
Here are several different ways to test a TCP port without telnet.
BASH (man page)
$ cat < /dev/tcp/127.0.0.1/22
SSH-2.0-OpenSSH_5.3
^C
$ cat < /dev/tcp/127.0.0.1/23
... or Why Pipelining Is Not That Easy
Golang Concurrency Patterns for brave and smart.
By @kachayev
NewerOlder