Skip to content

Instantly share code, notes, and snippets.

View skihero's full-sized avatar

Kish skihero

  • Amazon Mechanical Turk
  • Ooty
View GitHub Profile
#NoEnv
SetBatchLines, -1
Conversion := {"mph": 0.44704, "km/s": 0.277778}
MsgBox, Put the input on the clipboard then hit OK
Data := ParseInput(Clipboard)
Data.Cameras.Remove(1) ; This is a redundant camera for my purposes
@starzia
starzia / seq.sh
Created January 27, 2012 19:50
A bash implementation of the GNU seq command found on most unix systems. This is useful on AIX (which seems to lack seq)
#!/bin/bash
# Implements GNU seq functionality.
# Useful on IBM AIX systems which don't have GNU coreutils.
if [ -z "$3" ]; then
# if no third arg
incr=1
j=$2
else
incr=$2