ZhangZhihui's Blog  
上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 78 下一页

2023年6月16日

摘要: 安装Tabout插件后按Tab键可跳出右括号。 阅读全文
posted @ 2023-06-16 08:59 ZhangZhihuiAAA 阅读(489) 评论(0) 推荐(1) 编辑

2023年6月14日

摘要: Check below settings: Method 1: Choose "goformat" for Go's Format Tool: If got below error message, click the Install button or run the command: The " 阅读全文
posted @ 2023-06-14 19:12 ZhangZhihuiAAA 阅读(77) 评论(0) 推荐(0) 编辑
 
摘要: sudo dpkg -l | grep pkg_name sudo apt remove pkg_name sudo apt purge pkg_name sudo apt autoremove sudo apt clean 阅读全文
posted @ 2023-06-14 17:35 ZhangZhihuiAAA 阅读(8) 评论(0) 推荐(0) 编辑
 
摘要: sudo dpkg -i file.deb 阅读全文
posted @ 2023-06-14 16:46 ZhangZhihuiAAA 阅读(12) 评论(0) 推荐(0) 编辑
 
摘要: zzh@ZZHPC:~$ go env -w GO111MODULE=on zzh@ZZHPC:~$ go env -w GOPROXY=https://goproxy.io,direct If you're using VSCode, you can install Go tools as fol 阅读全文
posted @ 2023-06-14 08:49 ZhangZhihuiAAA 阅读(102) 评论(0) 推荐(0) 编辑

2023年6月13日

摘要: 阅读全文
posted @ 2023-06-13 15:03 ZhangZhihuiAAA 阅读(3) 评论(0) 推荐(0) 编辑
 
摘要: So is there ever a good place to use mutable defaults? Yes! Mutable defaults can be very useful for caching and/or recursive algorithms: def fibonacci 阅读全文
posted @ 2023-06-13 14:05 ZhangZhihuiAAA 阅读(10) 评论(0) 推荐(0) 编辑

2023年6月12日

摘要: (base) zzh@ZZHPC:~$ sudo ubuntu-drivers devices == /sys/devices/pci0000:00/0000:00:1b.4/0000:02:00.0 == modalias : pci:v000010DEd00001F07sv000010DEsd0 阅读全文
posted @ 2023-06-12 19:38 ZhangZhihuiAAA 阅读(6) 评论(0) 推荐(0) 编辑

2023年5月29日

摘要: >>> round(2.5) 2 >>> round(2.500001) 3 >>> round(3.5) 4 阅读全文
posted @ 2023-05-29 14:23 ZhangZhihuiAAA 阅读(4) 评论(0) 推荐(0) 编辑

2023年5月19日

摘要: $>var=abcabc123 $>echo ${var#*b} cabc123 $>echo ${var##*b} c123 $>echo ${var%b} abcabc123 $>echo ${var%b*} abca $>echo ${var%%b*} a 阅读全文
posted @ 2023-05-19 14:10 ZhangZhihuiAAA 阅读(184) 评论(0) 推荐(0) 编辑
上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 78 下一页