mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

zunda

ドドスコ投稿したいのでT-Mobileにテザリングしましたよ。Cでの配列の書き方を忘れてたw

<stdio.h>
<stdlib.h>
<time.h>

int main(void)
{
time_t t;
unsigned int h = 0;
char *ds[] = {"スコ", "ドド"};
char *love = "ラブ注入♡";

srand((unsigned) time(&t));
while(h != 0x888)
{
h = rand() % 2 + (h * 2) & 0xFFF;
printf("%s", ds[h & 1]);
}
puts(love);
return EXIT_SUCCESS;
}