diff --git a/index.md b/index.md
index e0c2816..43d6644 100644
--- a/index.md
+++ b/index.md
@@ -10,6 +10,7 @@ Minecraft 红石玩家, [B站](https://space.bilibili.com/489732092)
[我对 SciCraft 更新1.19的看法](scicraft_update)
[我的 gnome 配置](my_gnome_config)
[编辑器操作备忘录](org-html/cheatsheet)
+[我对显示 IP 属地的看法](org-html/about_showing_ip)
diff --git a/internet_collections.md b/internet_collections.md
index 439f0ad..18bf0f0 100644
--- a/internet_collections.md
+++ b/internet_collections.md
@@ -1,5 +1,6 @@
# 收集
## 一些(个人)博客收集
+[qiusir](http://www.qiusir.com/)
[王垠](http://www.yinwang.org/)
[阮一峰](http://ruanyifeng.com/blog/)
[易姐](https://shakaianee.top/)
@@ -57,6 +58,9 @@
Rust, VM, emacs
[倔强的程序员](https://www.zhihu.com/column/c_1313110231912726528)
编! 译! 原! 理!
+[24 days of rust](https://siciarz.net)
+ old
+
## YouTube 收集(没有账号, 这就是我的收藏夹)
### Code
@@ -79,10 +83,15 @@
[what if I try to malloc too much memory](https://youtu.be/Fq9chEBQMFE)
[fireship bitcoin](https://youtu.be/qF7dkrce-mQ)
大概是我见过最好的讲区块链的视频了, 除了...JS 啊啊啊
+[what your favourite pl says about you](https://youtu.be/zJ-8DZhzBEE)
+[tsoding aoc 2020 day 12 in perl](https://youtu.be/R00JE6QRbno)
+ (0:20:50 pythonbulubulu~)
-### Minecraft Redstone Survival
+
+### Minecraft
[Mojang & Minecraft 开始衰落了吗?](https://youtu.be/VKydXD6Lr20)
[SciCraft Update Plans](https://youtu.be/Y9DIIh0s9cg)
+[Tantan: MC + Fez](https://youtu.be/m5S0gLgg2rs)
### ?
[IceGuye aka 姑射冰尘](https://www.youtube.com/c/IceGuye)
diff --git a/org/about_showing_ip.org b/org/about_showing_ip.org
index 62fa08a..56c20fa 100644
--- a/org/about_showing_ip.org
+++ b/org/about_showing_ip.org
@@ -1,8 +1,10 @@
#+TITLE: 这一天终于来了, B站显示 IP 属地
+#+STARTUP: indent
+#+OPTIONS: \n:t
卸载吧...
* 我的看法
-这个事情真正要打击的那些 **诈骗/造假/海外势力**, 并不会受到影响,
+这个事情真正要打击的那些 *诈骗/造假/海外势力*, 并不会受到影响,
它们肯定会使用"虚拟专用网络"伪造IP.
那些所谓的"翻车"博主, 大多数可能只是公司在国内, 却因为这件事被各大媒体揪出来.
@@ -15,5 +17,7 @@
* reference
-[[https://zhuanlan.zhihu.com/p/508234267][from zhihu]]
-掰锝胃, 这个链接的截图在B站不到半小时就被删除了...
+** [[https://zhuanlan.zhihu.com/p/508234267][from zhihu]]
+ 掰锝胃, 这个链接的截图在B站不到半小时就被删除了...
+ B口口口口( ), 口口口口( ).
+
diff --git a/org/cheatsheet.org b/org/cheatsheet.org
index 0bc52a8..3079c8f 100644
--- a/org/cheatsheet.org
+++ b/org/cheatsheet.org
@@ -51,3 +51,18 @@
| C-c C-e | 导出 HTML |
| | |
| | |
+
+** normal
+| key | usage |
+|---------+--------------|
+| C-s | 搜索 |
+| M-% | 替换 |
+| C-_ | [[https://linuxtoy.org/archives/emacs-undo-tree.html][undo/redo]] |
+| M-; | 区域切换注释 |
+| C-x C-; | 行切换注释 |
+
+* Git (虽然不算editor, 但是先也放这吧)
+#+BEGIN_SRC shell
+ git log --stat | perl -ne 'END { print $c } $c += $1 if /(\d+) insertions/;'
+ git log --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }'
+#+END_SRC