Skip to content

Instantly share code, notes, and snippets.

View mpusz's full-sized avatar

Mateusz Pusz mpusz

View GitHub Profile
@mpusz
mpusz / main.cpp
Created October 27, 2011 20:15
Simple TTCN TE implementation
#include "utils.h"
#include <map>
#include <set>
#include <vector>
#include <tuple>
#include <iostream>
#include <algorithm>
#include <exception>
#include <atomic>
#include <future>
@dingetje
dingetje / shlobj.h
Created February 10, 2011 15:20
Patched shlobj.h header file to be used with mingw32ce to compile LK8000
#ifndef _SHLOBJ_H
#define _SHLOBJ_H
#if __GNUC__ >= 3
#pragma GCC system_header
#endif
#ifdef __cplusplus
extern "C" {
#endif
@mpusz
mpusz / do_reverse.pl
Created February 4, 2011 22:03
Adds #ifdef compiler commands to all modified files in order to allow quick reversibility of the changes done between 2 provided GIT revisions.
#!/usr/bin/perl
#
# Made by Mateusz Pusz
# Please give feedback
#
# Script purpose is to add #ifdef compiler commands to all modified
# files in order to allow quick reversibility of the changes done
# between 2 provided GIT revisions.
#