- 2022/10 胡锦涛被拖里大会现场
- 2022/11/25 多地学生发起游行
- 起因是因为乌鲁木齐火灾烧死10人,9人受伤
This file contains 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
Hi |
This file contains 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
/* | |
mysql | |
drop table if exists file; | |
create table file | |
( | |
id bigint primary key, | |
name varchar(200), | |
parent_id bigint, | |
is_dir bigint, |
This file contains 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
我草暗示大三大四 | |
爱仕达受到 | |
爱仕达受到 | |
暗示大三大四的 |
This file contains 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 ( | |
"fmt" | |
"sync" | |
) | |
func main() { | |
for n := 0; n < 10; n++ { | |
var ( |
This file contains 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
func resSearch(ctx context.Context, hostname string, rtype, class int) ([]dnsmessage.Resource, error) { | |
if ctx.Done() == nil { | |
return cgoResSearch(hostname, rtype, class) | |
} | |
type result struct { | |
err error | |
res []dnsmessage.Resource | |
} |
This file contains 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
func resSearch(ctx context.Context, hostname string, rtype, class int) ([]dnsmessage.Resource, error) { | |
if ctx.Done() == nil { | |
return cgoResSearch(hostname, rtype, class) | |
} | |
type result struct { | |
err error | |
res []dnsmessage.Resource | |
} |
repo https://github.com/ohmyzsh/ohmyzsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)
This file contains 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
local wezterm = require("wezterm") | |
local act = wezterm.action | |
local keys = { | |
{ key = "=", mods = "CTRL", action = wezterm.action.DecreaseFontSize }, | |
{ key = "=", mods = "CTRL|SHIFT", action = wezterm.action.IncreaseFontSize }, | |
-- pane | |
-- 在一个tab内切分的子pane中移动 | |
{ key = "LeftArrow", mods = "ALT", action = wezterm.action({ ActivatePaneDirection = "Left" }) }, | |
{ key = "RightArrow", mods = "ALT", action = wezterm.action({ ActivatePaneDirection = "Right" }) }, |
NewerOlder