Skip to content

Instantly share code, notes, and snippets.

View david-err's full-sized avatar

David R david-err

  • The Hague, Netherlands
View GitHub Profile
@david-err
david-err / docker.md
Created May 16, 2018 07:37 — forked from f3l1x/aliases
Docker - installation, tips, commands, aliases

Docker

Shortcuts

$ curl -fsSL https://raw.github.com/tcnksm/docker-alias/master/zshrc >> ~/.bashrc && source ~/.bashrc
# ------------------------------------
@david-err
david-err / Expressions.php
Last active September 18, 2020 06:51 — forked from ircmaxell/Expressions.php
A math parser and evaluator implementation
<?php
class Parenthesis extends TerminalExpression {
protected $precidence = 6;
public function operate(Stack $stack) {
}
public function getPrecidence() {
return $this->precidence;