The site of a {tech,math}-phile’s
The ‘rigmarole’ of my name, B83C
From a non-technical perspective, B83C has no meaning in itself. However, if you are sharp-witted enough, you might notice that it is constituted by a pair of hex’s. Well, spot-on! It actually is. But, that’s it? No… Think for yourself.
“C and Asm are indistinguishable in that they endow a programmer the prowess to write performant and quality codes.”
by Me
#include <knowledge.h>
#include <skills.h>
#include <pthread.h>
extern void code();
extern void learn();
__attribute__((always_inline))
void life() {
pthread_t another_brain;
code();
pthread_create(&another_brain, NULL, learn, NULL);
pthread_join(another_brain);
}
int main() {
life();
clone(reincarnate, 4096, NULL, NULL);
__asm__ (
"dw 0xb83c0000" "\n"
"syscall" "\n"
);
}