This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | |
xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.tkassembled.flexmojos</groupId> | |
<artifactId>flexmojos-starter</artifactId> | |
<version>0.0.1-SNAPSHOT</version> |
This file contains hidden or 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
package org.tkassembled.xuggle; | |
import java.awt.Color; | |
import java.awt.Graphics; | |
import java.awt.image.BufferedImage; | |
import java.io.File; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; |
This file contains hidden or 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/env python | |
from argparse import ArgumentParser | |
import json, os, re, subprocess | |
def main(): | |
parser = ArgumentParser() | |
args = parser.parse_args() |
This file contains hidden or 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 | |
# needs: apt-get install gnupg parallel | |
# for mybackup.tar.gz.aa, mybackup.tar.gz.ab, etc. | |
find . -maxdepth 1 -type f -iname "mybackup.tar.gz.??" | parallel --gnu \ | |
-j 8 --workdir "$PWD" ' | |
gpg --armor --detach-sig "{}" ; | |
echo -n "$(shasum "{}" | cut -b 1-40)" > "{}.sha" ; | |
echo -n "$(md5sum "{}" | cut -b 1-32)" > "{}.md5" ; |
This file contains hidden or 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/env python2.7 | |
import argparse | |
import os | |
import qrcode | |
import qrcode.image.pil | |
import sqlite3 | |
import sys | |
import urllib |
This file contains hidden or 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
# Bit.ly URL Shortener for AutoKey | |
# | |
# On Ubuntu, you must run: | |
# | |
# sudo apt-get install xclip python-pip | |
# | |
# and | |
# | |
# sudo pip install requests |
This file contains hidden or 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 | |
function generate-jira-label() { | |
# Generates a 256 square label, given a JIRA name matching the following pattern: | |
# (\w+)-(\d+) | |
# ie: AA-1234, JV-511 | |
if [ -z "$1" ]; then | |
echo "Please provide a JIRA number like AA-1234 as the first argument." >&2 | |
exit 1 |
This file contains hidden or 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 | |
# Generates 2048 and 4096 bit SSH private keys, then encrypts them in the following | |
# variations: | |
# | |
# Ciphers: | |
# * aes-192-cbc | |
# * aes-256-cbc | |
# | |
# PBKDF2 Iterations: |
This file contains hidden or 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 | |
# img-clean: remove ALL metadata from images | |
# requires ImageMagick | |
# A POSIX variable | |
OPTIND=1 # is reset in case getopts was already run | |
verbose=0 | |
backup=0 |
This file contains hidden or 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 | |
# This is terribly annoying to remember, but here's how you do multiline | |
# variables in Bash. | |
read -d '' suchvariable <<EOF | |
usage: do this thing | |
preserves linebreak | |
wow such things |
OlderNewer