I hereby claim:
- I am viperscape on github.
- I am chrisfgill (https://keybase.io/chrisfgill) on keybase.
- I have a public key ASBVuPQh5ZML0_sWjPLvTX5sbIoFLffjbH-jZk--aV8GMgo
To claim this, I am signing this object:
import openpyxl as xl | |
def get_table(workbook, sheet_name, table_name): | |
ws = workbook[sheet_name] | |
g = workbook.defined_names[table_name].destinations | |
# note we expect python 3.7 ordered dictionaries by default | |
table = {} | |
for s,a in g: | |
for col in ws[a][0]: # get columns |
#include <iostream> | |
#include <fstream> | |
#include <GL/glew.h> | |
#include <GLFW/glfw3.h> | |
#include <glm/gtc/matrix_transform.hpp> | |
#include "window.h" | |
#include "shaders.h" |
#include "font.h" | |
#include "../SDL/SDL.h" | |
#include <stdio.h> | |
#include <string.h> | |
struct font font_init (SDL_Renderer* renderer, char *filename) { | |
char filename_[256] = {'\0'}; | |
strcat(filename_, filename); | |
strcat(filename_, ".fnt"); |
gcc -g -Wall -O1 sqlite3/sqlite3.c main.c -o randid |
#include "socket.h" | |
// win32 | |
// -lws2_32 | |
int main() { | |
void* sock = socket_bind("127.0.0.1", 6063, 1); | |
socket_free(sock); | |
return 0; |
void* thread (void* (callback)(void* data), void* data); | |
void join (void* p); | |
#ifdef _WIN32 | |
#include <windows.h> | |
void* thread (void* (callback)(void* data), void* data) { | |
HANDLE p = CreateThread(NULL, 0, callback, data, 0, NULL); | |
return p; | |
} |
node ./condapiler/condapiler.js $1 |
I hereby claim:
To claim this, I am signing this object:
(set 'nitemode nil) | |
(defun toggle-nitemode () | |
"toggles nitemode" | |
(interactive) | |
(cond ((not nitemode) | |
(load-theme 'solarized-dark t) | |
(set 'nitemode 1)) | |
((eq 1 nitemode) | |
(load-theme 'solarized-light t) | |
(set 'nitemode nil)))) |
import boto.ec2 | |
import sys | |
import datetime | |
from time import gmtime, strftime, sleep | |
import toml | |
# expects ec2 instance tag: power-off | |
# values should be in 24hr clock from:to | |
# eg 2400:0400 | |
# would result in midnight to 4am |