Home | Notifications | New Note | Local | Federated | Search | Logout

Local Timeline


Reply to @tak4 🦉@aaa (2026-05-10 15:15:41) 僕の方はpingだけでそれぐらいかかっちゃいます…
でもIPv6がドンドン普及してるようなので、ほっておけば半年後とかには速くなったりするかもしれないですね🥳

Reply to @aaa たかし@tak4 (2026-05-10 14:18:19) 私は遅くなったとは感じません。curlで試すと読み込み完了までの時間は0.3秒から0.4秒程度でした。

technicat@technicat boosted: @AIFree@mstdn.social (2026-05-05 07:20:00) Four different AI Free graphics are available:

1. AI Free Logo with Caption
2. AI Free Logo with Caption and Black Border
3. AI Free Logo with Caption and Red Border
4. AI Free Logo

Four resolutions are available: Large (7"), Medium (3.5"), Small (1.75") and Tiny (0.875")

Download the AI_Free ZIP file for original graphics ODG file plus PNG files of all versions in all resolutions

AI_Free ZIP: https://drive.proton.me/urls/K0M4DNQR5G#wAB43eU9zHM5

Directly download the Small PNG image (1.75") version below

#AIFree ---Attachments--- image: https://media.mstdn.social/media_attachments/files/116/518/661/824/082/981/original/0e22470337e64657.png
image: https://media.mstdn.social/media_attachments/files/116/518/665/341/194/395/original/e20553e78850e959.png
image: https://media.mstdn.social/media_attachments/files/116/518/666/455/470/310/original/f406caefe604afce.png
image: https://media.mstdn.social/media_attachments/files/116/518/667/444/459/314/original/0fb0d0beb5904e31.png

🦉@aaa (2026-05-10 03:28:23) IPv6にしてすごくアクセスが遅くなって、プロバイダの相性だからみなさんが問題ないなら良いけどみなさんも遅いならIPv6切るか、何か考えます

🦉@aaa (2026-05-10 03:13:18) IPv6のルートが、東京→ロサンゼルス→シンガポールになってしまって、遅い
こういうときにcloudflareとかが繋いでくれたら速いんだろうと思う

Reply to @philip@gotosocial.wittamore.fr arce@arce (2026-05-10 02:10:42) Very nice! Worked for me.

Reply to @philip@gotosocial.wittamore.fr arce@arce (2026-05-09 23:43:56) I'm looking for it, but #tinyap doesn't give me a link ...

Reply to @philip@gotosocial.wittamore.fr arce@arce (2026-05-09 22:30:01) This looks like a fine idea. My hosting provider doesn't offer any fediverse options, much less GTS, so this less-than-normie must think of other options. For a while now I've wanted to restart my full-fledged personal blog, but I already keep up with two websites for other things, and just that tires me out. For now I have my personal domain pointed at a spot. Still thinking ...

🦉@aaa (2026-05-09 20:44:26) プログラミングではなく絵とかができたらどうだったろうか

arce@arce (2026-05-09 05:20:13) I'm in a new world
far from the war and tumult
I go further still

#haiku

たかし@tak4 (2026-05-09 00:28:13) windowsではプログラムのexeファイルと設定ファイルとを同じフォルダに入れて一緒に持ち運べる。羨ましい。

たかし@tak4 boosted: @watson554@misskey.gg (2026-05-08 11:34:47) ブログかきましたー。よければみてねー

1.Xから離れたこと。(心がすっきりした!)

2.10分間、音読したこと(がんばった!)

3.パースの練習したこと。


https://ameblo.jp/samidare409/entry-12965485394.html

arce@arce (2026-05-08 18:31:34) Good morning.
The world is in turmoil.
Be at peace.

Reply to @aaa arce@arce (2026-05-08 06:02:35) horrores! :)

Reply to @tak4 たかし@tak4 (2026-05-08 00:45:49) 10年ほど前と書いたが、20年ほど前かもしれない。感覚が10年ずれて居る?

たかし@tak4 (2026-05-08 00:41:32) 10年ほど前のことを思ひ出して「あの頃は良かった」と思ふ。だが私が生きられるのは今この時だけ。10年後に「あの頃も良かった」と思へる様に行動したい。

Reply to @arce 🦉@aaa (2026-05-07 19:56:58) (Due to a bug (now fixed), server didn't receive the reply properly. I'm sorry.)
---
Adële 🐁! (2026-05-05T05:27:56Z)
Thanks @arce
Yes, it should be.

Reply to @tak4 たかし@tak4 (2026-05-07 16:59:19) チャットやマイクロブログに人が集まりやすい理由はこれかもしれない

たかし@tak4 (2026-05-07 16:56:50) 普段から心の中の言葉をsnsなどに書き、みんなが互ひに読めば、対話する時に意図を読み取りやすくなるかも。

Reply to @arce 🦉@aaa (2026-05-07 14:02:29) Hacking you… %^#*<$& :)

Reply to @aaa arce@arce (2026-05-07 04:44:49) Opened up #tinyap and saw all this code stuff. Scary! :)

🦉@aaa (2026-05-07 04:02:00) これだけで簡単なシェルが作れるんだ

while (1) {
printf("$ ");
char buf[256];
fgets(buf, sizeof(buf), stdin);
buf[strcspn(buf, "\n")] = 0; // Remove \n

char *args[10];
int i = 0;
char *token = strtok(buf, " ");
while (token && i < 9) {
args[i++] = token;
token = strtok(NULL, " ");
}
args[i] = NULL; // NULL-terminate

if (fork() == 0) { // Child
execvp(args[0], args);
perror("execvp");
} else { // Parent
int status;
waitpid(-1, &status, 0);
if (status != 0) {
printf("exited with %d\n", WEXITSTATUS(status));
}
}
}

$ ls --color=auto /
bin dev home initrd.img.old lib32 lost+found mnt proc run srv tmp var vmlinuz.old
boot etc initrd.img lib lib64 media opt root sbin sys usr vmlinuz
$ ls /root
ls: ディレクトリ '/root' を開くことが出来ません: 許可がありません
exited with 2
$ sl
execvp: No such file or directory

🦉@aaa (2026-05-06 23:09:47) ジュンク堂池袋本店楽し楽しかった
紙の漫画本楽しい
また行く

🦉@aaa (2026-05-06 17:40:38) まだまだ良いコードを書くのは難しい

🦉@aaa (2026-05-06 14:17:07) > MULTICSは、部分的に成功した。現代のスマホより1000倍遅く、百万倍少ないメモリのマシンで、数百人の利用者が使えるように設計された。これはそれほど馬鹿げたことでは無い。というのは、当時の人々は、小さくてその効率の良いプログラムの書き方を知っていたからである。(この技能は、その後完全に失われてしまったが。)

🦉@aaa (2026-05-06 00:50:36) 図書カードあったから、あした池袋のジュンク堂にモダンオペレーティングシステム 第5版 上とわたしが恋人になれるわけないじゃん、ムリムリ!(※ムリじゃなかった!?)買いに行こう

Reply to @tak4 たかし@tak4 (2026-05-05 20:43:15) 多分、どの様な作品にも文句を言はない方がいいけれど、それにしては世の中は文句で溢れて居る。

たかし@tak4 (2026-05-05 20:18:46) ライセンスが何であれ、公開(配布)された作品は批評の対象になる。たとへばブログ記事にcc-byを適用しても批評を回避することはできない。

🦉@aaa (2026-05-05 16:53:15) tcp/ip自作の休憩合間にMINIXの作者らが書いた「モダンオペレーティングシステム 第5版」を借りて読んでいる、すごい良い本かもしれない

Reply to @adele@social.pollux.casa arce@arce (2026-05-05 09:11:11) Is the demo instance going to remain available? I tried it, liked it, very cool!
Older Notes