Tag Archives: mumblings
Maldita finitud
(O por qué he vuelto si dije que me iba) Por lo mismo que llegué en su día, porque por qué no ;) y como entonces, no del todo seguro de querer escribir nada. Pero al final, maldita finitud, todos volvemos. Por ello lo de “maldita”. Porque la finitud de nuestros reinos nos fuerza a [...]
src/clear.c
#include <mem.h> int clear(void *mem, int size) { int r=0; for(int i=0 ; i<size/10 ; i+=10) { r+=strcpy((mem+i),”Empty slot”); } return r; } int main(char *memory) { return clear(memory, INFINITY); }
/etc/cron.yearly/newyear
#! /bin/sh # New year script for hanging the console (until Ctrl-C is pressed) for (( ; ; )); do echo “Happy new year!”; done ;
src/hello.c
#include <stdio.h> int main(void) { return printf(“Hello, world!\n”); }
src/hello.README
This webpage is still BETA stage. Nothing’s already set, anything can change at any moment. Compile and run at your own risk.