Skip to content

Instantly share code, notes, and snippets.

View deobfuscate's full-sized avatar
👋

Dan deobfuscate

👋
View GitHub Profile
@deobfuscate
deobfuscate / spinner.c
Created March 4, 2020 07:36
Simple ASCII spinner in C
#include <stdio.h>
#include <unistd.h>
#define DELAY 100000 // microseconds
void main() {
printf(" ");
while(1) {
printf("\b|");
fflush(stdout);