Skip to content

Instantly share code, notes, and snippets.

@mniip
mniip / timer.c
Last active December 31, 2016 05:04
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <signal.h>
#include <curses.h>
void quit()
{
endwin();
#!/usr/bin/env python3
upper_limit = input("Highest number you'd like to go to: ")
for x in range(1, int(upper_limit)):
if x % 3 == 0 and x % 5 == 0:
print('FizzBuzz')
elif x % 3 == 0:
print('Fizz')
elif x % 5 == 0:
@myano
myano / recommended_addons.md
Last active August 10, 2017 16:09
Recommended Browser Addons/Extensions