20231021
+-----------------------------------------+
| Your current life progress is |
|-----------------------------------------+
| Days : 8110 |
| Weeks : 1158 |
| Months: 266 |
| Age : 22 years and 2 months |
+-----------------------------------------+
这周发生了啥?
裁判文书公开制度“消亡史”
国家新闻出版署关于实施网络游戏精品出版工程的通知
https://mp.weixin.qq.com/s/vlIoJHMoBO-Wze4qrFthag
微软彻底封锁了通过 HWID 激活 Windows 10/11 的方式
https://www.reddit.com/r/Piracy/comments/16to3w3/
https://github.com/massgravel/Microsoft-Activation-Scripts
重装 WinToGo U 盘版
- https://github.com/ShadowWhisperer/Remove-MS-Edge
- 美化 https://zhutix.com/
- Package the userscript: https://github.com/bGZo/userscripts/commit/ec7fc6892e712cb430c497ecf310769560463369
- Same problem here. Solved it by using this instead: softprops/action-gh-release@v1 https://github.com/softprops/action-gh-release — 404 Not Found · Issue #22 · JasonEtco/upload-to-release
- Fix bug:
- Rebase
git log
- Rebase
git rebase -i xxxx
# square the git hash tag
# edit the merge message # done
# https://stackoverflow.com/questions/39595034/git-cannot-squash-without-a-previous-commit-error-while-rebase
折腾 Alist
- Configuration stored Gist on private
- Aliyunpan
- Lanzous
- GoogleDrive
- Onedrive
- BaiduDisk
- If could mount iCloud, they would be better.
You can access your iCloud data through a modern web browser at icloud.com. You can access your iCloud email through any IMAP email client using these settings: http://support.apple.com/kb/HT4864 There is no iCloud control panel for desktop syncing for Linux. — How do I use icloud with Linux? - Apple Community
- wait Mount on local machine only work on Windows with https://www.raidrive.com
- Everything ref document: https://alist.nn.ci
Others
- 电视动画《#约会大作战#》公开第 5 季新预告视频
- 中国工厂迁移到内陆
人类一思考,上帝就发笑
今天别人说看过我代码,我第一反应是脸红,我感觉自己写的很糟糕。
我再也找不回丢失的朋友了,我很难过。
小润出蒙,大润出国
避免瞎忙
母弱出商贾,父强做侍郎。族望留原籍,家贫走他乡。
沙发土豆的自我修养
- https://gmgard.com/gm123875 像素
- https://gmgard.com/gm123906
- https://gmgard.com/gm123922
- https://gmgard.com/gm123915
- https://gmgard.com/gm123873
- https://gmgard.com/gm123881
- https://gmgard.com/gm123891
- https://gmgard.com/gm123909
- https://www.south-plus.net/read.php?tid=1979383 寻找夏日的宝物 AI 汉化
- wait https://gmgard.com/gm123886 未汉化
- wait https://gmgard.com/gm123876 RPGMaker
- wait https://gmgard.com/gm123868 未汉化
- wait https://gmgard.com/gm123861 漫画
- wait https://gmgard.com/gm123863 漫画
- wait https://www.4gamers.com.tw/news/detail/60189/dlsite-rj01081508-review-you-and-me-in-june 未汉化
这周有断舍离吗?
这周有什么多快好省的东西吗?
这周有吃什么好吃的吗?
- wait GetDeviceName: unable to open pci.ids file
折腾 Emby 串流
-
Emby
- wait Hardware Acceleration
- https://emby.media/support/articles/Hardware-Acceleration-Overview.html
- Few of posts
- wait https://emby.media/community/index.php?/topic/76937-docker-hwa-nvidia-instructions/
- https://emby.media/community/index.php?/topic/92365-emby-in-docker-hardware-acceleration/#comment-953677
- https://emby.media/community/index.php?/topic/93068-docker-nvidia-hardware-acceleration-gpu-can-be-seen-but-isnt-being-utilised/
- https://blog.csdn.net/m0_55613022/article/details/124125245
- https://blog.51cto.com/u_15127581/3292191
- Docker HWA Nvidia Instructions - Linux - Emby Community
- Premium
- Beautify
- 白嫖一下 Emby - 周杰个人博客
- 【译】Plex vs. Emby vs. Jellyfin vs. Kodi——2020 年深度比较 | 天天蜕皮的大蛇 Re
- wait Hardware Acceleration
-
Upload file to Github Gist & fetch file from Gist
- All operation ref: https://docs.github.com/en/rest/gists/gists?apiVersion=2022-11-28#get-a-gist
-
Samba Server creation
- Store in https://github.com/bGZo/dotfiles/tree/main/configuration/etc/samba
- There also some ref
- https://www.insidentally.com/articles/000005/
- https://wiki.archlinuxcn.org/zh/Samba
- wait http://linux-training.be/networking/ch21.html
- wait https://cshihong.github.io/2018/10/18/Samba%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%90%AD%E5%BB%BA%E4%B8%8E%E9%85%8D%E7%BD%AE/
- https://www.ascotbe.com/2022/04/14/SMBAnonymousAccessShare/
- I learn a lot of management of user and group
折腾 Linux
mv
命令天然不支持合并,还需要手工合并;
Use
rsync -a backup/ backupArchives/
instead. After thatrm -rf backup/*
. — mv: Directory not empty - Ask Ubuntu
- Output to Clip with xclip
echo "Hello World" | xclip -selection clipboard
echo "Hello, World\!" | xclip -selection clipboard
- https://man.archlinux.org/man/extra/xclip/xclip.1.en
-
Handle JSON with JQ
-
Source the env file to use environment variable.
-
More precisely, a double dash (
--
) is used in most Bash built-in commands and many other commands to signify the end of command options, after which only positional arguments are accepted.- Example use: Let’s say you want to grep a file for the string
-v
. Normally-v
will be considered the option to reverse the matching meaning (only show lines that do not match), but with--
you can grep for the string-v
like this:
— shell - What does ”—” (double-dash) mean? - Unix & Linux Stack Exchange
- Example use: Let’s say you want to grep a file for the string
-
Learn/Arch
- Under KDE, lock screen use
Super + L
- Under KDE, lock screen use
- wait 米家APP为什么没有电脑版? - 知乎
- 用安卓模拟器来模拟米家的,绝对是人才
- wait Have no idea with API of logseq
- wait SpaceDrive Failed
2023-10-21T11:04:56.955635Z INFO sd_core: Starting core with data directory '/home/bgzo/.local/share/spacedrive'
2023-10-21T11:04:56.968577Z INFO sd_core:p2p:p2p_manager: Node '12D3KooWH3CN7t1816xcDZX4sbAGKoRjJHYEyYqjd2z6xeZPeRzK' is now online listening at addresses: {}
2023-10-21T11:04:56.993219Z INFO sd_core: Spacedrive online.
2023-10-21T11:04:56.995720Z INFO sd_desktop:tauri_plugins: Internal server listening on: http://127.0.0.1:34473
zsh: segmentation fault (core dumped) spacedrive
- [AUR (en) - spacedrive-bin](https://aur.archlinux.org/packages/spacedrive-bin)
- [[ENG-1286] Spacedrive fails to start after `.deb` install · Issue #1512 · spacedriveapp/spacedrive · GitHub](https://github.com/spacedriveapp/spacedrive/issues/1512)
- wait 关注失败
- wait 可达漫画的替代品
-
What I need is not sex, instead of love, to be understood, and never feel alone.
断舍离
上架充电器
多快好省
-
采购清单:
- 漱口水
- 卫衣
- 厚布鞋
- 白色鞋带
- Dell da310 集线器
- 10G 口,雷电口
- Samsung Tab S8 256G 5G
- 刷外版本
- Phone with Foreign Verison
- deprecated
- No Oppo (including Oneplus)
- No Huawei / Rongyao
- No Vivo
- Xiaomi with foreign verison
- Moto with foreign verison
- Samsung S23
- Pixel 8
- deprecated
- 内裤
- 护手霜
- 长袜
运动衣
-
todo 文件夹属性:在 Windows To Go 中,确保这些目录没有被设置为只读。你可以在 Windows 系统中检查并修改目录的属性
-
https://tomoyadeng.github.io/blog/2019/03/12/building-a-media-server-based-on-emby/index.html
-
Gitee 为什么要人工审核? - 金菲尔比 的回答 - 知乎 https://www.zhihu.com/question/533898110/answer/2998923616
-
是什么“狗屁工作”,让我今天来上班?
https://mp.weixin.qq.com/s?__biz=MzA3MDM3NjE5NQ==&mid=2650956462&idx=1&sn=8b1bf25c69fe24586e13ead2e6882c75&scene=58&subscene=0
-
《事业还是家庭?女性追求平等的百年旅程(2023 年诺贝尔经济学奖得主作品)》克劳迪娅·戈尔丁 |微信读书
https://weread.qq.com/book-detail?type=1&senderVid=203895941&v=89232790813ab80a8g01049e
-
风声|中学生表演“刺杀安倍”,仇恨教育让人担忧
https://mp.weixin.qq.com/s?__biz=MjM5NjIxMTcwMA==&mid=2649800570&idx=1&sn=1ccfc9c3f7f30e7651be2b61bd488a04&scene=58&subscene=0
-
坐标西安,月薪两万高吗? - 孤月凌空陈子川 的回答 - 知乎 https://www.zhihu.com/question/440777678/answer/3032070844
-
为什么年轻的时候要努力赚钱? - 王尔嘚 的回答 - 知乎 https://www.zhihu.com/question/268280577/answer/2740361117