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
# Title: FLV tag for Jekyll | |
# Authors: Devin Weaver, Daniel Roos (FLV changes) | |
# Description: Allows flv tag to place videos from flc files embedded in the post. | |
# | |
# | |
# Syntax {% flv videourl height width %} | |
# | |
# Examples: | |
# {% flv http://www.example.com/video.flv 480 320 %} | |
# |
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
#!/usr/bin/perl | |
# | |
# Script converts Wordpress NGG Gallery Syntax in posts into | |
# Fancybox Gallery syntax | |
# | |
# RequiresText:CSV | |
# Image::Size | |
# ------------------------------------------------------------------------ | |
use Getopt::Long; |
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
#!/usr/bin/perl | |
# log-played_song.pl | |
# 2012-04-19 | |
# Syntax: see parameter '-h' | |
# | |
# Script used for [MOC](http://moc.daper.net/) for logging the played songs into logfile. | |
# ================== | |
# Handling parameters | |
use Getopt::Long; |
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
# Title: MP3 tag for Jekyll | |
# Authors: Devin Weaver, Daniel Roos (youtube changes) | |
# Description: Allows mp3 tag to include mp3 files embedded into the post. | |
# It uses the player 'audio.js' from http://kolber.github.com/audiojs/ | |
# | |
# Install the plugin according to the manuel of the author by adding the necessary lines to the head-template | |
# and adding the files into the right directories. | |
# | |
# Please read my [blog post about it][2]. | |
# |
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
#!/usr/bin/perl | |
# | |
# | |
# Script converts the Wordpress NextGen images syntax in posts to | |
# Octopress markdown, Fancybox and Photo-Tag plugin syntax. | |
# | |
# Requires Text::CSV | |
# Image::Size | |
# ------------------------------------------------------------------------ | |
use Getopt::Long; # Handling parameters |
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/bash | |
# Script for copying files while seeing a progressbar. | |
# Check for pipe-viewer being installed. | |
for tool in pv; do | |
if ! type $tool >/dev/null 2>&1; then | |
echo "ERROR: \"$tool\" not found." | |
echo " This is needed by $scriptname to work. Check your" | |
echo " \$PATH variable or install the tool \"$tool\"." | |
exit 2 |
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
#!/usr/bin/perl | |
# 20120909/JT | |
# Printing out the radio alphabet | |
# or translating a string into it. | |
# http://en.wikipedia.org/wiki/NATO_phonetic_alphabet | |
use 5.10.1; | |
use strict; | |
use warnings; | |
my %NatoAlphabet = ( |
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
#!/usr/bin/perl | |
# Deploying the Octopress Blogg via FTP | |
# Questions | |
# | |
# The script runs only inside the octopress folder structure and will abort if being run outside. | |
# Depends on File::chdir, File::Find::Rule, Net::FTP:Recursive, IO::Prompt, Timer::Runtime | |
use 5.10.1; | |
use strict; | |
use warnings; |
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/bash | |
# Name: putSSHPubKey.sh | |
# Purpose: Adds SSH public Key to remote Host | |
# Author: Tabletick | |
# Date: 2012/11/06 | |
# | |
# Explanation: adds the public ssh key to the AUTHORIZED_KEYS file on a remote server | |
# Works only in this particular configuration to shows that it's possible. _Username_ and Keyfile | |
# is therefore hardcoded. |
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 | |
# @(#) mutt_bgrun $Revision: 1.4 $ | |
# mutt_bgrun - run an attachment viewer from mutt in the background | |
# Copyright (C) 1999-2002 Gary A. Johnson | |
# | |
# 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 2 of the License, or | |
# (at your option) any later version. |
OlderNewer