This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, '~') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
EN_CLIP_HOST='http://www.evernote.com'; | |
location.href=EN_CLIP_HOST+'/clip.action?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title); | |
})() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | |
* */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | |
* */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |