Skip to content

Instantly share code, notes, and snippets.

View syranez's full-sized avatar

Michael Nowack syranez

  • Würzburg, Germany
View GitHub Profile
@syranez
syranez / create-repo.sh
Created May 5, 2012 09:46 — forked from yefim/create-repo.sh
Create a new GitHub repo and check the response.
#! /usr/bin/env bash
user="syranez"
directory="/dev/shm/json"
root_node="git"
read -s -p "GitHub password: " pass
response=$(curl -s -u "${user}:$pass" https://api.github.com/user/repos -d "{\"name\":\"$1\"}")
@syranez
syranez / Monaco_Linux-Powerline.ttf
Created February 20, 2012 22:00 — forked from epegzz/Monaco_Linux-Powerline.ttf
Monaco for vim-powerline
@syranez
syranez / Inconsolata-dz-Powerline.otf
Created February 20, 2012 22:00 — forked from qrush/Inconsolata-dz-Powerline.otf
vim-powerline patched fonts
@syranez
syranez / DejaVuSansMono-Bold-Powerline.ttf
Created February 16, 2012 21:00
DejaVu Sans Mono patched for vim-powerline
@syranez
syranez / Liste.h
Created September 29, 2010 20:45 — forked from AVGP/Liste.h
#include <iostream>
#include <cassert>
class ListenElement {
public:
ListenElement ( const int pValue, ListenElement * pNext = 0 ) {
value = pValue;
next = pNext;
}