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
class Size
{
public:
Size();
Size(uint width, uint height);
const Size& setWidth(uint width);
const Size& setHeight(uint height);
uint width() const;
uint height() const;
private:
std::map<std::string, std::string> result;
std::string str("foo=bar&color=red&zoom=22.5&alpha=3,4,2,1222.8");
sregex pair = ( (s1= +_w) >> "=" >> (s2= +(set[alnum | '_' | '.' | ',']) ))
[ ref(result)[s1] = s2];
sregex rx = pair >> *('&' >> *(pair));
if(regex_match(str, rx)) {
"""
https://github.com/coffin/coffin/blob/master/coffin/template/defaulttags.py
"""
class SpacelessExtension(Extension):
"""Removes whitespace between HTML tags, including tab and
newline characters.
Works exactly like Django's own tag.
"""
import os
import sys
import pyttsx
def main():
engine = pyttsx.init()
for root, dirs, filenames in os.walk('.'):
for filename in filenames:
basename, extension = os.path.splitext(filename)
fullpath = os.path.abspath(os.path.join(root, filename))
@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) {
@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
#
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 / 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>
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));
}
# -*- 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