- Show all th etags and their dates since a time
git log --date-order --graph --tags --simplify-by-decoration --pretty=format:'%ai %h %d' --after={2013-06-01}
| # Get the 1.0.1 version of SSL | |
| brew install openssl | |
| ./configure --disable-hipe --enable-smp-support --enable-threads --enable-kernel-poll --enable-darwin-64bit --with-ssl=/usr/local/opt/openssl | |
| touch lib/wx/SKIP lib/odbc/SKIP | |
| make -j4 | |
| sudo make install |
| #!/bin/bash | |
| PROGNAME=${0##*/} | |
| INPUT='' | |
| QUIET='0' | |
| NOSTATS='0' | |
| max_input_size=0 | |
| max_output_size=0 | |
| usage() |
git log --date-order --graph --tags --simplify-by-decoration --pretty=format:'%ai %h %d' --after={2013-06-01}
| Here is my IKEA experience this evening: | |
| I have an existing IKEA Family card. | |
| I was creating a shopping list that I wanted to save, so I created an online IKEA | |
| account (using the email [not listed in gist]). | |
| I looked for a way to associate my existing card with my new online account - there | |
| was no visible way to do this. There is no online help to indicate if this action is | |
| possible or not. |
| THE KVIKKALKUL PROGRAMMING LANGUAGE | |
| Note: this message contains top secret information of the Swedish Navy. | |
| Possession of this information in Sweden can (and will in most cases) | |
| lead to Capital Punishment. DO NOT DISTRIBUTE THIS INFORMATION | |
| TO SWEDEN!!! | |
| INTRODUCTION | |
| When I worked for the Swedish Navy in 1957 as a programmer, my task was to |
| 1982 Tandy Basic | |
| 1982 z80 Assembler | |
| 1983 MS Color Basic | |
| 1983 6809 Assembler | |
| 1985 Pascal | |
| 1985 DCL | |
| 1985 68000 Assembler | |
| 1986 C | |
| 1986 Modula 2 | |
| 1986 Ada |
| #!/bin/bash | |
| files=`find . -name '*.tiff'` | |
| for f in $files | |
| do | |
| dir=`dirname $f` | |
| target=`basename -s .tiff $f` | |
| convert $f -resize 865x585 ${dir}/${target}_865x585.png | |
| echo ${dir}/${target}_865x585.png | |
| done |
| get_git_branch() { | |
| git branch | awk '/^\*/ { print $2 }' | |
| } | |
| get_git_dirty() { | |
| git diff --quiet || echo '*' | |
| } | |
| get_git_prompt() { | |
| git branch &> /dev/null || return 1 |
| require 'pony' | |
| require 'zip/zip' | |
| desc "Email the coverage to someone who gives a damn" | |
| task :email_coverage do | |
| archive = "test-coverage.zip" | |
| Zip::ZipFile.open(archive, 'w') do |zipfile| | |
| Dir["coverage/**/**"].reject{ |f| f == archive}.each do |file| | |
| zipfile.add(file.sub('coverage/',''),file) |
| (i=0; for vol in $(awk '{print $2}' vol_snaps.txt); do i=$((i+1)); ec2-attach-volume $vol -i i-aa3bc4c8 -d /dev/sdv${i}; done) |