Skip to content

Instantly share code, notes, and snippets.

View kgabis's full-sized avatar

Krzysztof Gabis kgabis

View GitHub Profile
@kgabis
kgabis / hack.sh
Created April 11, 2012 15:58 — 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
#
@kgabis
kgabis / stack.c
Created September 14, 2011 17:47 — forked from mbelicki/stack.c
Linked stack in C
#include "stack.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <assert.h>
void stackpush(Stack ** stack, int value)
{
assert(stack != NULL);
@kgabis
kgabis / about.md
Created August 9, 2011 19:01 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer