Skip to content

Instantly share code, notes, and snippets.

View pascalj's full-sized avatar

Pascal Jungblut pascalj

View GitHub Profile
@pascalj
pascalj / Beispiel.ipynb
Last active May 12, 2023 15:48
Schichtenkonzept: Beispiel
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pascalj
pascalj / download_podcasts.sh
Last active December 16, 2015 11:39
Download all episodes of a podcast. You can use your personal feed-url to download also the pro episodes.
curl -s <your_subscription_url> | grep enclosure | sed -E 's/.* url="([^"]*)"(.*)/\1/' | xargs wget
@pascalj
pascalj / rc.conf
Created August 16, 2012 22:32
FreeBSD unicorn rc script
# Config
unicorn_profiles="prod"
unicorn_prod_enable="yes"
# the user running unicorn
unicorn_prod_user="web"
# adjust this to the home of your web root
unicorn_prod_dir="/usr/local/www/"
unicorn_prod_config="/usr/local/www/config/config.ru"
unicorn_prod_intconfig="/usr/local/www/config/unicorn.rb"
unicorn_prod_env="production"