Skip to content

Instantly share code, notes, and snippets.

View jluster's full-sized avatar

Jonas M Luster jluster

View GitHub Profile
@jluster
jluster / Data File
Last active November 26, 2015 15:42
- name: Vorbereitungen und Planung
tag: planung
desc: Alles was in diese Wanderung einfloß, von Ausrüstung bis hin zu Kosten und Karten
- name: Schleswig-Holstein und Hamburg
tag: schleswig
desc: Dieser Teil der Route verläuft zusammen mit dem E6 Fernwanderweg. Er beginnt an der Kupfermühle nahe Flensburg und führt durch Flensburg und Schleswig. Für eine kurze Zeit geht es an der Ostsee entlang, dann nach Kiel. Von dort weiter über Preetz, Plön, Malente-Gremsmühlen, Eutin, und Neustadt bis Lübeck. Nahe Günster trennen sich E1 und E6, diese Sektion ended in Hamburg.
- name: Niedersachsen
tag: niedersachsen
dist: 339
desc: Von Hamburg geht es über Buchholz in der Nordheide, Undeloh und Soltau weiter nach Müden und Celle, dann ended diese Sektion nahe Bösingfeld.
@jluster
jluster / profile.ps1
Created January 10, 2015 10:05
Powershell Profile
if ($host.Name -eq 'ConsoleHost')
{
Import-Module PSReadline
Set-PSReadlineKeyHandler -Key Ctrl+a BeginningOfLine
Set-PSReadlineKeyHandler -Key Ctrl+k ForwardDeleteLine
Set-PSReadlineKeyHandler -Key Ctrl+e EndOfLine
}
function shorten-path([string] $path) {
$loc = $path.Replace($HOME, '~')
@jluster
jluster / command.js
Last active February 26, 2024 10:01
(function(){
EN_CLIP_HOST='http://www.evernote.com';
location.href=EN_CLIP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);
})()
if [ "${APACHE_CONFDIR##/etc/apache2-}" != "${APACHE_CONFDIR}" ] ; then
SUFFIX="-${APACHE_CONFDIR##/etc/apache2-}"
else
SUFFIX=
fi
# Since there is no sane way to get the parsed apache2 config in scripts, some
# settings are defined via environment variables and then used in apache2ctl,
# /etc/init.d/apache2, /etc/logrotate.d/apache2, etc.
export APACHE_RUN_USER=www-data
<?php
/*
* Plugin Name: dropkick
* Plugin URI: http://d8c.us/
* Description: Rewrite local image locations to dropbox locations
* Version: 0.2
* Author: Jonas M Luster <j@d8c.us>
* Author URI: http://feastcraft.com
* License: GPL3
* */
@jluster
jluster / dropkick.php
Created February 6, 2012 18:55
Dropkick plugin to rewrite URLs to Dropbox from local wp-content
<?php
/*
* Plugin Name: dropkick
* Plugin URI: http://feastcraft.com/3629/solving-the-image-storage-question
* Description: Rewrite local image locations to dropbox locations
* Version: 0.2
* Author: Jonas M Luster <j@d8c.us>
* Author URI: http://feastcraft.com
* License: GPL3
* */
@jluster
jluster / dropboxd.sh
Created February 6, 2012 16:24
Start dropboxd on startup with Ubuntu
#!/bin/sh
# dropbox service
# Replace with linux users you want to run Dropbox clients for
DROPBOX_USERS="user1 user2"
DAEMON=.dropbox-dist/dropbox
start() {
echo "Starting dropbox..."
for dbuser in $DROPBOX_USERS; do