Skip to content

Instantly share code, notes, and snippets.

View skhaz's full-sized avatar
:octocat:
It's 5.50 a.m.... Do you know where your stack pointer is?

Rodrigo Delduca skhaz

:octocat:
It's 5.50 a.m.... Do you know where your stack pointer is?
View GitHub Profile
@skhaz
skhaz / gist:5398392
Last active December 16, 2015 07:28
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <iterator>
#include <functional>
int main(int argc, char **argv)
{
using namespace std;
def render(*args, **kwargs):
import inspect
call_frame = inspect.getouterframes(inspect.currentframe(), 2)
template = jinja2.get_template('{}.html'.format(call_frame[1][3]))
return template.render(*args, **kwargs)
@route('/')
@memorize
"""
python <(curl https://gist.githubusercontent.com/skhaz/5017547/raw/7f76930c17ce0ec6c67c8a7fefe29fb2cc46d1f9/gistfile1.py)
"""
import requests
import re
def Ed(text):
params=dict(server='0.0.0.0:8085',charset_post='utf-8',
charset='utf-8',pure=1,js=0,tst=1,msg=text)
import os
import zmq
import wiringpi
RED_PIN = 0
GREEN_PIN = 1
BLUE_PIN = 2
def main():
context = zmq.Context()
#include "HttpParserSettings.h"
#include "HttpConnection.h"
#include <QUrl>
#include <QByteArray>
#include <QHash>
#include <QMetaObject>
#ifndef _BinaryTree_h
#define _BinaryTree_h
template <class DataType>
class BinaryTree
{
private:
int redPin = 9;
int greenPin = 10;
int bluePin = 11;
int hue = 0;
void setup()
{
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
# -*- coding: utf-8 -*-
"""
Based upon www.splinter.com.au/converting-hsv-to-rgb-colour-using-c/
"""
from math import floor
def HSVtoRGB(h, s, v):
r, g ,b = 0, 0, 0
QFile *file = new QFile(filename);
QFileInfo info(*file);
QDir dir = info.dir();
QString filepath = dir.absolutePath();
if (!dir.mkpath(filepath)) {
qWarning("Error while creating the subdirectory %s", qPrintable(filepath));
}
@skhaz
skhaz / gist:3350974
Created August 14, 2012 17:20
A tribute to XKCD: the light comes on when I compile!
/*
* Based on this picture
* http://imgur.com/ZZxFy
*/
#include <cstdio>
#include <stdio.h>
#include <windows.h>
#include <tlhelp32.h>