https://github.com/alexykn/sps
> I will scrap this project in favor of sps v2 some time in the future (when v2 is built and ready which might take a while). The reason is that I am planning to implement my own packaging system, my own version of atomic installs / updated complete with automatic snapshots and full, down to single package rollbacks + automatic cve checks and some other stuffs. After a lot of thinking and looking at Homebrew's architecture I've come to the conclusion that I do not like it (burn me for it ;). Defining my own build system will allow for a more performant and maintainable system in the long run. (Just a bit anxious about how to host packages / do all the repo stuff. Like really anxious but I'll figure it out)
好快的弃坑(
> I will scrap this project in favor of sps v2 some time in the future (when v2 is built and ready which might take a while). The reason is that I am planning to implement my own packaging system, my own version of atomic installs / updated complete with automatic snapshots and full, down to single package rollbacks + automatic cve checks and some other stuffs. After a lot of thinking and looking at Homebrew's architecture I've come to the conclusion that I do not like it (burn me for it ;). Defining my own build system will allow for a more performant and maintainable system in the long run. (Just a bit anxious about how to host packages / do all the repo stuff. Like really anxious but I'll figure it out)
好快的弃坑(
GitHub
GitHub - alexykn/sps: Rust based package manager for macOS
Rust based package manager for macOS. Contribute to alexykn/sps development by creating an account on GitHub.
Forwarded from bupt.moe
Bilibili
【亲历】夜间飞机全机断电、无线电失效,紧急降落!这不是演习!_哔哩哔哩_bilibili
原本计划开飞机去看北极光,结果没想到拍成了空中浩劫。最后安全着陆了,我还活着。, 视频播放量 609655、弹幕量 797、点赞数 68933、投硬币枚数 4961、收藏人数 17333、转发人数 4319, 视频作者 晓航的三轮车, 作者简介 一名内心住着旅游博主的飞行学员&一名模拟飞行老玩家,从模拟器走上真飞机,热爱航空,热爱飞行,热爱蓝天!,相关视频:飞行员在降落时收到了“跑道太短”的警告,川航8633航班驾驶舱玻璃爆裂前后机长和塔台的淡定对话,空中遇到百年难遇的紧急情况,怎么救机?,厦门机场一飞…
Forwarded from &'a ::rynco::UntitledChannel (Rynco Maekawa)
Vincy SHI:
华为云的日志列表,按照日志大小排序,是字符串的字典序而非数值序,114 MB < 514 KB。
当看到这一切时,我大脑皮层的褶皱仿佛瞬间被抚平了、拉展了,有股瞬间的放松,就像漫步在挪威的森林,感觉自己又像是一只灵动的蝴蝶,允吸雨后的第一滴甘露,整个人犹如化成一滩潭水,缓缓流逝,慢慢平静...
https://x.com/Vincy1230/status/1930281338965504261?s=19z
华为云的日志列表,按照日志大小排序,是字符串的字典序而非数值序,114 MB < 514 KB。
当看到这一切时,我大脑皮层的褶皱仿佛瞬间被抚平了、拉展了,有股瞬间的放松,就像漫步在挪威的森林,感觉自己又像是一只灵动的蝴蝶,允吸雨后的第一滴甘露,整个人犹如化成一滩潭水,缓缓流逝,慢慢平静...
https://x.com/Vincy1230/status/1930281338965504261?s=19z
Forwarded from 蛋挞观察室
推荐观看:激流 - 极越闪崩之后
极越事件的本质其实并不是CEO的失职,而是资本对投后管理的不作为以及对即将出事的漠不关心
导演很会选第二主角——供应商
https://v.qq.com/x/cover/mzc002006errl63/m4101xk67qr.html
极越事件的本质其实并不是CEO的失职,而是资本对投后管理的不作为以及对即将出事的漠不关心
导演很会选第二主角——供应商
https://v.qq.com/x/cover/mzc002006errl63/m4101xk67qr.html
Qq
激流第二季_第2集:极越闪崩之后_高清完整版视频在线观看_腾讯视频
激流第二季,第2集:极越闪崩之后,视频内容简介:《激流》是一档由腾讯视频出品的全新商业观察节目。在中国的经济与社会领域中,梳理出五大全民高度关注的、正在发生巨大变化的时代命题,由顶级商业观察者李翔,带着个人的好奇与公众的疑问,进入这些命题一看究竟,透过商业的视角,观察激流中的人。
Forwarded from Kenvix喵的活动日报
对于非流式的归档任务,几乎没有理由使用tar打包压缩,tar.gz tar.xz tar.zst 等格式不仅不支持随机读,甚至也不像未压缩的tar一样支持追加。使用这个给上世纪的磁带机设计的格式完全没有任何好处。当然,使用 zip 7z rar也不行,因为这些格式不能完整保留文件系统的元数据,也不支持硬链接,不能用于系统备份、归档。
我个人比较推荐的做法是使用 squashfs。例如,创建最高压缩率的zstd归档算法的squashfs:
-xattrs 参数在 mksquashfs 中用于保留扩展属性,包括ACL(Access Control Lists)和SELinux 上下文(security.selinux)以及其他命名空间下的扩展属性。至于软链接、硬链接和权限属性,默认就完整保留,不需要额外参数。因此也可以简化到
显然,squashfs格式天生就是为挂载而生的,要读取 etc.squashfs 的文件,只需挂载它到某个目录:
只列出文件(等效于 tar -tf 或 zcat | tar -t):
解压特定文件(等效于 tar -x 某文件):
解压整个 squashfs(不挂载):
对于Windows,可以使用 7zip NanaZip 等软件打开squashfs包,也可以直接在WSL2内用上述命令挂载。
EroFS就不推荐了,
#Linux
我个人比较推荐的做法是使用 squashfs。例如,创建最高压缩率的zstd归档算法的squashfs:
mksquashfs /etc etc.squashfs -xattrs -comp zstd -Xcompression-level 22 -b 1M
-xattrs 参数在 mksquashfs 中用于保留扩展属性,包括ACL(Access Control Lists)和SELinux 上下文(security.selinux)以及其他命名空间下的扩展属性。至于软链接、硬链接和权限属性,默认就完整保留,不需要额外参数。因此也可以简化到
mksquashfs /etc etc.squashfs
表示使用 zlib 压缩算法,默认压缩率,保留上述特殊扩展属性以外的全部元数据。-b 1M 指定块大小1M,这是squashfs的最大值。显然,squashfs格式天生就是为挂载而生的,要读取 etc.squashfs 的文件,只需挂载它到某个目录:
sudo mount -t squashfs -o loop etc.squashfs /mnt/etc
只列出文件(等效于 tar -tf 或 zcat | tar -t):
unsquashfs -l etc.squashfs
unsquashfs -l etc.squashfs /profile.d # 列出 profile.d 文件夹
解压特定文件(等效于 tar -x 某文件):
unsquashfs -f -d extracted etc.squashfs passwd
解压整个 squashfs(不挂载):
unsquashfs etc.squashfs
对于Windows,可以使用 7zip NanaZip 等软件打开squashfs包,也可以直接在WSL2内用上述命令挂载。
EroFS就不推荐了,
mkfs.erofs
目前坑比较多,用起来很复杂,不像 squashfs 安装轻松简单。#Linux
Forwarded from &'a ::rynco::UntitledChannel (Rynco Maekawa)
“说老实话,得夸一下苹果在 2025 年还能坚持多元化原则,毕竟他们雇了一个 100% 盲人的设计团队”
https://fixupx.com/ChrisJBakke/status/1932280324031185037
https://fixupx.com/ChrisJBakke/status/1932280324031185037
🧵 Thread • FixupX
Chris Bakke (@ChrisJBakke)
Honestly kudos to Apple for keeping their DEI promises well into 2025 and employing a 100% blind design team
🌚1
emit Light();
目前 iPadOS 26 DB1 用到现在最绝望的问题是我没法在中文键盘输入全角符号了
DB1 似乎也把 Windowed Apps 和 Stage Manager 不限型号全量下放了,之前 Stage Manager 只有大屏 + M 系列芯片的 iPad 才能用,现在 mini 也能双开清日常了,不知道后续会不会再砍掉(
👍2