首页:修订间差异
小无编辑摘要 标签:2017版源代码编辑 |
小无编辑摘要 |
||
第5行: | 第5行: | ||
__NOTOC__ | __NOTOC__ | ||
News: this wiki has been migrated to Docker deployment now! | |||
== 维博 == | |||
* 2024/09/20 [[An introduction to state-based CRDTs|(翻译)基于状态的CRDT简介]] | |||
* 2024/07/29 [[Workflow design | 大模型工作流系统设计]] | |||
* 2023/12/13 [[NanoGPT Tutorial]] | |||
* 2021/07/15 [[Flutter performance optimization|Flutter性能优化实践]] | |||
* 2021/07/05 [[KDBX4 file format|KDBX4 文件格式解析]] | |||
* 2021/07/05 [[JVM GC summary|JVM GC summary]] | |||
* 2021/06/28 [[Redis distributed lock]] | |||
* 2021/06/28 [[Redis Memory limit and eviction policy configuration]] | |||
* 2021/05/03 [[MySQL binary log]] | |||
* 2021/01/05 [[Jer lang grammar design| Jer语言设计]] | |||
* 2020/11/04 [[Invoke SqlCipher using Flutter ffi|Flutter中使用ffi调用SqlCipher]] | |||
* 2020/09/25 [[SQLite3 file format]] | |||
* 2020/05/13 [[PyQt5 hello world|PyQt5入门小程序]] | |||
* 2020/03/04 [[Burrows–Wheeler Transform]] | |||
* 2020/01/25 [[Debug JDK source code]] | |||
* 2019/12/24 [[JVM InvokeDynamic]] | |||
* 2019/06/27 [[IEEE 754|IEEE 754浮点数转换]] | |||
* 2018/12/18 [[B-Tree alrogithm|B-Tree算法]] | |||
* 2018/04/09 [[Compile OpenJDK8 on MacOSX]] | |||
* 2017/11/20 [[Compile live555 for Android]] | |||
* 2016/07/22 [[Db Schema key-gen]] | |||
== 网站收藏 == | |||
* [https://martin.kleppmann.com/ Martin Kleppmann] : ''Designing Data-Intensive Applications''作者,分布式计算,CRDT | |||
== 精选主题 == | |||
* [[Java programmer cheat sheet|现代八股文合集]] | |||
* [[Algorithm collection|算法合集]] | |||
{{Special:RecentChanges/days=10,limit=40,hidebots,hideminor}} |
2025年4月2日 (三) 02:21的版本

"I am looking at the future with concern, but with good hope." - Albert Schweitzer
News: this wiki has been migrated to Docker deployment now!
维博
- 2024/09/20 (翻译)基于状态的CRDT简介
- 2024/07/29 大模型工作流系统设计
- 2023/12/13 NanoGPT Tutorial
- 2021/07/15 Flutter性能优化实践
- 2021/07/05 KDBX4 文件格式解析
- 2021/07/05 JVM GC summary
- 2021/06/28 Redis distributed lock
- 2021/06/28 Redis Memory limit and eviction policy configuration
- 2021/05/03 MySQL binary log
- 2021/01/05 Jer语言设计
- 2020/11/04 Flutter中使用ffi调用SqlCipher
- 2020/09/25 SQLite3 file format
- 2020/05/13 PyQt5入门小程序
- 2020/03/04 Burrows–Wheeler Transform
- 2020/01/25 Debug JDK source code
- 2019/12/24 JVM InvokeDynamic
- 2019/06/27 IEEE 754浮点数转换
- 2018/12/18 B-Tree算法
- 2018/04/09 Compile OpenJDK8 on MacOSX
- 2017/11/20 Compile live555 for Android
- 2016/07/22 Db Schema key-gen
网站收藏
- Martin Kleppmann : Designing Data-Intensive Applications作者,分布式计算,CRDT
精选主题
缩写列表:
- 新
- 该编辑创建了新页面(见新页面列表)
- 小
- 该编辑为小编辑
- 机
- 该编辑由机器人执行
- (±123)
- 该页面字节数的前后变化
2025年4月28日 (星期一)
- 差异历史 新 Ufw 15:12 +359 Riguz 留言 贡献 (创建页面,内容为“<syntaxhighlight lang="bash"> $ sudo ufw status numbered Status: active To Action From -- ------ ---- [ 1] OpenSSH ALLOW IN Anywhere [ 2] 22 ALLOW IN Anywhere sudo ufw delete 6 sudo ufw allow 6443 </syntaxhighlight> Category:Linux/Unix”)
2025年4月27日 (星期日)
- 差异历史 新 Kubernetes storage class 14:18 +4,503 Riguz 留言 贡献 (创建页面,内容为“=NFS = <syntaxhighlight lang="bash"> apt install nfs-common # try to mount it mount -t nfs -o vers=3,nolock,proto=tcp,noresvport 10.19.31.01:/cfs-xxx /mnt/tmpnfs </syntaxhighlight> <syntaxhighlight lang="bash"> sudo ctr images pull registry.k8s.io/sig-storage/nfsplugin:v4.6.0 sudo ctr images pull registry.k8s.io/sig-storage/csi-provisioner:v3.6.2 sudo ctr images pull registry.k8s.io/sig-storage/csi-snapshotter:v6.3.2 sudo ctr images pull registry.k8s.io/sig-s…”)
- 差异历史 新 Ubuntu kubernetes installation 14:03 +668 Riguz 留言 贡献 (创建页面,内容为“=System preparation= <syntaxhighlight lang="python"> $ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=24.04 DISTRIB_CODENAME=noble DISTRIB_DESCRIPTION="Ubuntu 24.04.2 LTS" </syntaxhighlight> ==Updrage== <syntaxhighlight lang="bash"> sudo apt update sudo apt upgrade do-release-upgrade </syntaxhighlight> == Mount data disk (Optional) == <syntaxhighlight lang="bash"> mkfs.xfs /dev/vdb lsof /var mv /var/ /var0 mkdir /mnt/newvar/ mount /dev/vdb /mnt/newva…”)