Skip to content

Instantly share code, notes, and snippets.

View gabrieleara's full-sized avatar

Gabriele Ara gabrieleara

View GitHub Profile
@max-mapper
max-mapper / bibtex.png
Last active November 19, 2025 13:01
How to make a scientific looking PDF from markdown (with bibliography)
bibtex.png
@gabrieleara
gabrieleara / console.c
Created November 30, 2015 19:24
Simple (?) library that handle some command from stdin. The commands can have zero or one parameters that MUST be specified in the same line of the command. The files include a sample main which uses this library
#include "standard.h"
#include "console.h"
#include <sys/select.h>
struct command
{
char string[15];
bool active;
void (*callback)();
};
@jt
jt / merge.md
Created August 23, 2011 18:47
Merge a forked gist

If someone forks a gist and you'd like to merge their changes. Do this:

  1. clone your repo, I use the name of the gist

     git clone git://gist.github.com/1163142.git gist-1163142
    
  2. add a remote for the forked gist, I'm using the name of my fellow developer

     git remote add aaron git://gist.github.com/1164196.git