duangsuse::Echo
720 subscribers
4.3K photos
131 videos
583 files
6.54K links
import this:
美而不丑、明而不暗、短而不凡、长而不乱,扁平不宽,读而后码,行之天下,勿托地上天国。
异常勿吞,难过勿过,叹一真理。效率是很重要,盲目最是低效。
简明是可靠的先验,不是可靠的祭品。
知其变,守其恒,为天下式;穷其变,知不穷,得地上势。知变守恒却穷变知新,我认真理,我不认真。

技术相干订阅~
另外有 throws 闲杂频道 @dsuset
转载频道 @dsusep
极小可能会有批评zf的消息 如有不适可退出
suse小站(面向运气编程): https://WOJS.org/#/
Download Telegram
他们可能分不清信件的格式和IM的格式
about:about 👈 🌚 👍
#Lowlvl_backend 🌚 Linux 1.0
/*
* linux/kernel/panic.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/

/*
* This function is used through-out the kernel (includeinh mm and fs)
* to indicate a major problem.
*/
#include <stdarg.h>

#include <linux/kernel.h>
#include <linux/sched.h>

asmlinkage void sys_sync(void); /* it's really int */

extern int vsprintf(char * buf, const char * fmt, va_list args);

NORET_TYPE void panic(const char * fmt, ...)
{
static char buf[1024];
va_list args;

va_start(args, fmt);
vsprintf(buf, fmt, args);
va_end(args);
printk(KERN_EMERG "Kernel panic: %s\n",buf);
if (current == task[0])
printk(KERN_EMERG "In swapper task - not syncing\n");
else
sys_sync();
for(;;);
}
#Learn 拿到了家里的一本老书, «Internet原理与技术» 清华大学计算机基础的教材. 现在正在看
duangsuse::Echo
#Learn 拿到了家里的一本老书, «Internet原理与技术» 清华大学计算机基础的教材. 现在正在看
#Learn duangsuse:
一本书看完以后要不定时的回看. 可以捡拾到许多之前没有注意(理解)到的知识
Forwarded from Fly 的小频道
发现漏洞已经修复,然而补天上面的状态还是审核中。怕不是有奇怪的PY交易
Forwarded from Fly 的小频道
This media is not supported in your browser
VIEW IN TELEGRAM
#wtf #backend 🌚🙈
FireFox爆炸了...(
垃圾电脑刚刚在跑编译, 卡住了. 还好Linux开发至今稳定性大大加强, 系统资源耗尽依然能保持缓慢响应, 所以我就直接Interrupt掉了前台的cargo install ion-shell~~害得我看了好久的书~~(
然而在看fx的时候据说 有个什么脚本耗资源我就直接停了, 现在对任何浏览器自己的ui,快捷键都没有反应
不过厚颜无耻的Gecko还很不错. 😾
Forwarded from iVanilla 自然科学 & 神秘学实验研究部 (iVanilla | ルビィ Developer)
#project 钦点一个叫ion的shell. github.com/redox-os/ion
elvish.io
duangsuse::Echo
#project 钦点一个叫ion的shell. github.com/redox-os/ion 和 elvish.io
elvish (https://t.me/elvish_zh)
应该是国产的, 清华大学的学生开发的.
大家可以资瓷一下国产Shell
ion is written in Rust(100%)
elvish is written in Go(100%)
duangsuse::Echo
#project 钦点一个叫ion的shell. github.com/redox-os/ion 和 elvish.io
刚才发现ion的一个大bug:
root:~# ls|rg go
go #我们在 '.' 下有一个 "go" 目录
root:~# go
ion: cannot execute directory as command
#我的PATH下有go二进制文件, 但是ion发现"./go"存在并且是一个目录以后天真的认为我是把一个目录当成了命令
root:~# mkdir ls
root:~# ls
#这是一个笑话, 如果./ls/存在那么ls就不能被执行. 想使用ls列出`pwd`的内容就是不可能的
ion: cannot execute directory as command
root:~# touch rm
root:~# rm rm
#如果用文件替代目录, 就不会出现此问题
root:~# rm
rm: missing operand
Try 'rm --help' for more information.
root:~# mkdir rm
root:~# rm rm
ion: cannot execute directory as command