Skip to content

Instantly share code, notes, and snippets.

View nikodemusk's full-sized avatar

Nikodemus Karlsson nikodemusk

View GitHub Profile
@nikodemusk
nikodemusk / tmux-cheatsheet.markdown
Created July 6, 2019 19:56 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@nikodemusk
nikodemusk / pretty_print.py
Created October 15, 2018 19:42 — forked from md2perpe/pretty_print.py
Pretty print av polynom
# https://www.facebook.com/photo.php?fbid=10155461108530633&set=p.10155461108530633&type=3&theater&ifg=1
def prettyPrint(lista):
# Funktionen tar en lista med koefficienter
# till ett polynom i avtagande ordning och
# skriver ut polynomet
# Polynomets gradtal
polynomets_gradtal = len(lista) - 1