伟大伟大

摘要: ## MacOS ps xuwww -p $PID ## Linux ls -l /proc/$PID/exe 阅读全文
posted @ 2023-07-14 23:36 wooHsi 阅读(27) 评论(0) 推荐(0)
摘要: migaku-in-mpv.zip mkdir -p ~/.config/mpv/scripts/ mv migaku_mpv ~/.config/mpv/scripts/ mv input.conf mpv.conf ~/.config/mpv/ python3 -m venv env sudo 阅读全文
posted @ 2023-02-14 22:57 wooHsi 阅读(106) 评论(0) 推荐(0)
摘要: Win+R,输入regedit 注册表路径:计算机\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet 按下图设置值: 阅读全文
posted @ 2023-01-11 20:22 wooHsi 阅读(925) 评论(0) 推荐(0)
摘要: 1.设置在Finder中可打开Terminal 1.1 设置 System Preferences > Keybord > Shortcuts > Services Check "New Terminal at Foler" & "New Terminal Tab at Foler" 1.2 检验 阅读全文
posted @ 2022-03-23 22:23 wooHsi 阅读(42) 评论(0) 推荐(0)
摘要: https://github.com/xiaguliuxiang/dbvisualizer-agent 阅读全文
posted @ 2022-03-11 01:56 wooHsi 阅读(119) 评论(0) 推荐(0)
摘要: 1.准备词库mdx、css文件 2.安装Dictionary Development Kit https://github.com/SebastianSzturo/Dictionary-Development-Kit 安装后目录结构如下: /Applications/Utilities/Dictio 阅读全文
posted @ 2022-02-07 21:14 wooHsi 阅读(1780) 评论(0) 推荐(0)
摘要: 练习:Stringer 通过让 IPAddr 类型实现 fmt.Stringer 来打印点号分隔的地址。 例如,IPAddr{1, 2, 3, 4} 应当打印为 "1.2.3.4"。 package main import ( "fmt" "strings" "strconv" ) type IPA 阅读全文
posted @ 2021-03-05 11:33 wooHsi 阅读(144) 评论(0) 推荐(0)
摘要: |字符| 二进制 | 十进制 | 十六进制 | | | | | | |A | 0100 0001 | 65 | 41 | 大端: 小端: Linux 测试大小端: lscpu | grep "Byte Order" 阅读全文
posted @ 2021-03-05 11:32 wooHsi 阅读(48) 评论(0) 推荐(0)
摘要: Exercise: Fibonacci closure Let's have some fun with functions. Implement a fibonacci function that returns a function (a closure) that returns succes 阅读全文
posted @ 2021-03-03 22:47 wooHsi 阅读(99) 评论(0) 推荐(0)
摘要: Exercise: Maps Implement WordCount. It should return a map of the counts of each “word” in the string s. The wc.Test function runs a test suite agains 阅读全文
posted @ 2021-03-03 21:31 wooHsi 阅读(60) 评论(0) 推荐(0)