Skip to content

Instantly share code, notes, and snippets.

View damoclark's full-sized avatar

Damien Clark damoclark

View GitHub Profile
@damoclark
damoclark / autopgsqlbackup
Created October 22, 2015 01:04 — forked from matthewlehner/autopgsqlbackup
Auto PostgreSQL backup script.
#!/bin/bash
#
# PostgreSQL Backup Script Ver 1.0
# http://autopgsqlbackup.frozenpc.net
# Copyright (c) 2005 Aaron Axelsen <axelseaa@amadmax.com>
#
# This script is based of the AutoMySQLBackup Script Ver 2.2
# It can be found at http://sourceforge.net/projects/automysqlbackup/
#
# The PostgreSQL changes are based on a patch agaisnt AutoMySQLBackup 1.9
@damoclark
damoclark / git-remote-show-origin-all.sh
Last active August 29, 2015 14:24
Show the origin of all git repos under the current working directory
#!/bin/sh
#Call this script like so:
# $ cd <location of all your repos>
# $ find . -type d -name .git -printf "%h\0"|xargs -0 -n 1 git-remote-show-origin-all.sh 2>/dev/null | sort
#Ignore any vendor repos
echo "$1" | grep -q vendor && exit
cd "$1"
@damoclark
damoclark / README-template.md
Last active November 20, 2017 17:44
Github README.md Template

GitHub Markup

This library is the first step of a journey that every markup file in a repository goes on before it is rendered on GitHub.com:

  1. This library converts the raw markup to HTML. See the list of supported markup formats below.
  2. The HTML is sanitized, aggressively removing things that could harm you and your kin—such as script tags, inline-styles, and class or id attributes. See the sanitization filter for the full whitelist.
  3. Syntax highlighting is performed on code blocks. See github/linguist for more information about syntax highlighting.
  4. The HTML is passed through other filters in the html-pipeline that add special sauce, such as emoji, [task lists](https://github.com/github/task_li
@damoclark
damoclark / global.gitignore
Last active July 27, 2018 04:39 — forked from octocat/.gitignore
My global git ignore file, added with command git config --global core.excludesfile <path to this file>
#global git ignore file, add with command git config --global core.excludesfile <path to this file>
# Testing scripts #
###################
test-*.php
# Typescripts #
###################
typescript*