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
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>
QString atom(
"declare namespace atom = \"http://www.w3.org/2005/Atom\";\n"
"declare namespace media = \"http://search.yahoo.com/mrss/\";\n"
"doc($result)//atom:entry/media:group/media:player/@url/string()\n"
);
QXmlQuery query;
query.bindVariable("result", &buffer);
query.setQuery(atom);
@skhaz
skhaz / hack.sh
Created April 2, 2012 16:18 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@skhaz
skhaz / gist:2172956
Created March 23, 2012 17:22
Example of the MonoState pattern
#include <iostream>
#include <boost/shared_ptr.hpp>
class VideoManagerPrivate {
private:
friend class VideoManager;
VideoManagerPrivate() { }
bool init(int _width, int _height, short _bpp, bool _fullscreen) {