I hereby claim:
- I am morrisjobke on github.
- I am morrisjobke (https://keybase.io/morrisjobke) on keybase.
- I have a public key whose fingerprint is 0D33 A6C4 3887 D75D 8285 7FB2 EF55 2587 D06F F0E9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Youtube Playlist Downloader | |
# Copyright (C) 2014 Morris Jobke <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. |
<html> | |
<head> | |
<style> | |
.grid-item { | |
margin-bottom: 15px; | |
} | |
.grid-item img { | |
width: 250px; | |
height: 400px; |
#!/bin/bash | |
if [ -z "$2" ]; then | |
echo "Usage: ./add-domain.sh DOMAIN INTERNAL_URL" | |
exit 1; | |
fi | |
DOMAIN=$1 | |
INTERNAL=$2 | |
cp /etc/nginx/sites-available/TEMPLATE /etc/nginx/sites-available/$DOMAIN |
<?php | |
/** | |
* composer install gettext/gettext | |
*/ | |
require 'vendor/autoload.php'; | |
use Gettext\Translations; | |
$apps = [ |
/* | |
* add this as user style for URLs starting with http://adventofcode.com/2016/day/ in your browser | |
*/ | |
body { | |
min-width: initial; | |
} | |
header { | |
white-space: initial; | |
} |
ssh [email protected] apps:create pad | |
ssh [email protected] mariadb:create pad | |
ssh [email protected] mariadb:import pad < ~/backup.sql | |
ssh [email protected] mariadb:link pad pad | |
ssh [email protected] config:set pad ETHERPAD_SETTINGS=settings.json | |
git clone [email protected]:bright-star/etherpad-lite-heroku | |
cd etherpad-lite-heroku | |
git remote add dokku [email protected]:pad |