Skip to content

Instantly share code, notes, and snippets.

View nonchip's full-sized avatar
‼️
this is mostly to read/fork/archive. same name on gitlab because fuck microsoft.

Kyra Zimmer nonchip

‼️
this is mostly to read/fork/archive. same name on gitlab because fuck microsoft.
View GitHub Profile
@nonchip
nonchip / div.c
Created June 30, 2017 17:02 — forked from evilscientress/div.c
divides stuff by 12 to test other stuff
#include <stdio.h>
void main(void){
for(int i=-13;i<=13;i++){
int iresult=i/12;
float fresult=((float)i)/12.0f;
printf("%d\t%d\t%d\t%f\n",i,iresult,((int)fresult),fresult);
}
}
@nonchip
nonchip / main.py
Last active September 25, 2016 17:58
Python_stuff
import tweepy
f=open(".keys","r")
consumer_key=f.readline().rstrip().split()[0]
consumer_secret=f.readline().rstrip().split()[0]
access_token=f.readline().rstrip().split()[0]
access_token_secret=f.readline().rstrip().split()[0]
f.close()