Skip to content

Instantly share code, notes, and snippets.

View toxeus's full-sized avatar

Filip Gospodinov toxeus

  • https://www.21analytics.ch/
  • Europe
View GitHub Profile
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file
@toxeus
toxeus / pg_resources.md
Last active October 21, 2016 10:41
Postgres resources
@toxeus
toxeus / demo.sh
Created June 12, 2016 17:20
How to create a interactive bash demo that does not need any typing.
#!/bin/bash
commands=(
"ls | head -n1"
"echo 44 55 | cut -d' ' -f1"
)
for c in "${commands[@]}"; do
read -p "\$ $c"
eval $c