Skip to content

Instantly share code, notes, and snippets.

View samueljon's full-sized avatar

Samúel Jón Gunnarsson samueljon

View GitHub Profile
@samueljon
samueljon / gist:1477598
Created December 14, 2011 17:37
Hugtakalisti fyrir þýðingu á WordPress
Comment => Athugasemd
Theme => Þema
Plugin => Viðbót
Documentation on => Skjölun á
Toolbar => Tækjaslá
Pingback => Bakvísun
Trackback => Bakrakning
Tag => efnisorð
Template => Skapalón
Navigation => Leiðarstýring
@samueljon
samueljon / linkedlist.cpp
Created December 11, 2011 21:27
frá dodda fyrir dodda
#include <iostream>
using namespace std;
struct linkNode {
int data;
linkNode* nextnode;
};
void thefunction(linkNode* a){
std::cout << "thefunction\n";
while (a->nextnode != NULL){
@samueljon
samueljon / .gitconfig
Last active September 26, 2015 04:57
GitConfig
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold