Skip to content

Instantly share code, notes, and snippets.

View kalmi's full-sized avatar

Tarnay Kálmán kalmi

  • Budapest, Hungary
View GitHub Profile
kalmi@Sylph /cygdrive/c/test
$ cd $GOPATH/src/github.com/ipfs/go-ipfs
kalmi@Sylph /cygdrive/c/Projects/Go/src/github.com/ipfs/go-ipfs
$ rm -R vendor/gx/
kalmi@Sylph /cygdrive/c/Projects/Go/src/github.com/ipfs/go-ipfs
$ gx install
installing package: go-ipfs-0.4.2
package main
import (
"github.com/ipfs/go-ipfs-api"
"fmt"
"os"
"io/ioutil"
"log"
"path/filepath"
)
@kalmi
kalmi / animatedmaze.c
Created June 19, 2012 10:13
Maze animation
#include <stdio.h>
#include <ncurses.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
void draw_game_area ();
void generate_game_area ();
struct coordinate
@kalmi
kalmi / maze.c
Created June 19, 2012 10:12
Playable ncurses maze
#include <stdio.h>
#include <ncurses.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
struct coordinate
{
int x;
int y;