Skip to content

Instantly share code, notes, and snippets.

View aalhour's full-sized avatar
🪂

Ahmad Alhour aalhour

🪂
View GitHub Profile
@aalhour
aalhour / tmux-cheatsheet.markdown
Created February 27, 2016 11:54 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@aalhour
aalhour / queryable_list.py
Last active March 25, 2016 03:03
A Queryable List for Python 3
from functools import reduce
from itertools import islice, takewhile, dropwhile
from types import FunctionType, BuiltinFunctionType, BuiltinMethodType
class QueryableList(list):
"""
Lists made awesome!
"""
def __init__(self, iterable):
@aalhour
aalhour / .tmux.conf.grey
Created March 3, 2016 11:21
TMUX Config Snippets
# 256 colors
set -g default-terminal "screen-256color"
set -g status-bg colour235
set -g status-fg white
set -g status-attr bright
set -g status-right-length 50
set -g status-left-length 50
# default window title colors
@aalhour
aalhour / README.md
Created March 11, 2016 11:05 — forked from agnoster/README.md
My ZSH Theme

agnoster.zsh-theme

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)

For Mac users, I highly recommend iTerm 2 + Solarized Dark

@aalhour
aalhour / gist:5962b277aa22fac05c63
Created March 21, 2016 21:14 — forked from dodyg/gist:5823184
Kotlin Programming Language Cheat Sheet Part 1

#Intro

Kotlin is a new programming language for the JVM. It produces Java bytecode, supports Android and generates JavaScript. The latest version of the language is Kotlin M5.3

Kotlin project website is at kotlin.jetbrains.org.

All the codes here can be copied and run on Kotlin online editor.

Let's get started.

@aalhour
aalhour / gist:766ba93db038bcff1acf
Created March 21, 2016 21:14 — forked from dodyg/gist:5616605
Kotlin Programming Language Cheat Sheet Part 2

This is a quick guide to Kotlin programming language. The previous part of this guide is here

#Object Oriented

fun main(args : Array<String>) {
  class local (val x : Int)
  
  val y = local(10)
 println("${y.x}")
@aalhour
aalhour / README.md
Created July 7, 2016 16:21 — forked from mbostock/.block
Prim’s Algorithm V

Another variation of color-cycling a spanning tree generated by Prim’s algorithm. Here the periodicity of the color scale by tree depth is varied over time, alternating between emphasis of micro and macro structure. This idea was suggested in a Hacker News comment.

@aalhour
aalhour / README.md
Last active March 9, 2018 09:19
BrainFuck Interpreter and REPL in Python 3

PBFI: Pythonic BrainFuck Interpreter

Yet another educational interpreter for the BrainFuck Programming Language, written in Python 3. This might not be the shortest BrainFuck interpreter that you had come acorss, however the style of programming is for educational purposes only.

USAGE:

Help: