Skip to content

Instantly share code, notes, and snippets.

@db6edr
db6edr / update_git_repos.sh
Last active March 7, 2017 07:27 — forked from douglas/update_git_repos.sh
Update all git repositories under a base directory
#!/bin/bash
# store the current dir
CUR_DIR=$(pwd)
# Let the person running the script know what's going on.
echo -e "\n\033[1mPulling in latest changes for all repositories...\033[0m\n"
# Find all git repositories and update it to the master latest revision
for i in $(find . -maxdepth 2 -name .git -type d ); do
@db6edr
db6edr / dinbrief.cfg
Created August 2, 2012 07:39
German dinbrief-style letter
\usepackage[utf8]{inputenc}
\usepackage{ngerman}
\usepackage{graphicx}
\usepackage{ifthen}
\usepackage{xstring}
\usepackage{eso-pic}
%\windowrules %Fenster um Adress AN
\nowindowrules %Fenster um Adress AUS
%\nowindowtics %Faltmarkierung am Rand AUS
@db6edr
db6edr / Constants.java
Created February 10, 2012 11:52
IzPack 4.3.x Windows RegistryWriterAction and RegistryReaderAction; provided with permission for reuse in IzPack installers - use at your own risk; we do not make any guarantees on the below code.
package com.opentext.installer.actions;
public final class Constants {
public static final String REGISTRY_RESOURCE_NAME = "ConfigurationFile";
public static final String REGISTRY_ACTION_CONFIGURATION_ELEMENT = "Action";
public static final String REGISTRY_ROOT = "Root";