Skip to content

Instantly share code, notes, and snippets.

View bil0u's full-sized avatar
🚀
Always in space

Ugo Popée bil0u

🚀
Always in space
  • Toulouse
View GitHub Profile
@bil0u
bil0u / brainfuck.c
Created November 21, 2021 19:12
[Brainfuck] Short program to read brainfuck files #C #42
#include <stdlib.h>
#include <unistd.h>
#define TAB_SIZE 2048
char *init_tab(void)
{
char *tab;
int i;
i = 0;
@bil0u
bil0u / rickroll.sh
Created November 21, 2021 19:17
[Rickroll] Troll program to start a rickroll in your terminal #troll
#!/usr/bin/env bash
# Rick Astley in your Terminal.
# By Serene Han and Justine Tunney <3
version='1.1'
rick='http://keroserene.net/lol'
video="$rick/astley80.full.bz2"
# TODO: I'll let someone with mac or windows machine send a pull request
# to get gsm going again :)
audio_gsm="$rick/roll.gsm"
audio_raw="$rick/roll.s16"