Skip to content

Instantly share code, notes, and snippets.

View sagidayan's full-sized avatar
💽

Sagi Dayan sagidayan

💽
View GitHub Profile

my laptop:

I'm writing this here because a few things in here are spesific to this model laptop.
Dell XPS 15 9560 (4k) touch screen

Some notes:

Most things after setup are not specific for this laptop
# = run as root
$ = run as normal user (you)

Install and On first boot

@sagidayan
sagidayan / open
Created March 31, 2015 13:31
open command for linux (like open in OSX)
xdg-open "$1" &> /dev/null &
@sagidayan
sagidayan / Makefile
Created February 3, 2015 12:23
Generic Makefile
# Sagi Dayan - Makefile
# 2014-2015
# compiler - for C++ change to g++
CC=gcc
# compile arguments
CFLAGS+=-c -g -Wall
# linker flags
@sagidayan
sagidayan / .gitconfig
Last active November 25, 2015 13:56
git global config file (~/.gitconfig)
[user]
name = Sagi Dayan
email = sagidayan@gmail.com
[color]
# Use colors in Git commands that are capable of colored output when
# outputting to the terminal. (This is the default setting in Git ≥ 1.8.4.)
ui = auto
[color "branch"]
current = yellow reverse