I hereby claim:
- I am kroq-gar78 on github.
- I am avaidya (https://keybase.io/avaidya) on keybase.
- I have a public key ASBjT7Re0_em3xNpbzHLiYWlMTDcPWR86if_oNmtFFAn8wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # retrieves all package URLs for i386 and amd64 architectures | |
| PKGLIST=$1 # lists can be found at http://us.archive.ubuntu.com/ubuntu/indices/ | |
| OUTFILE=$2 | |
| # get all URLs for i386 | |
| #for i in `cat $PKGLIST|awk '{print $1}'|sed -e 's/$/:i386/'` | |
| for i in `cat $PKGLIST|awk '{print $1}'` |
| #!/bin/bash | |
| cat $1 | sed -r "s/^ +↑ //g;s/[0-9]+\.[0-9]+\ //g;s/\ +$//g" | perl -ne 'print if $SEEN{$_}++' |
| #!/bin/bash -eu | |
| # This script should generate the Megaswitch for the banner message and | |
| # categories [[Template:Stub]] on the Elder Scrolls Wiki (http://elderscrolls.wikia.com/Template:Stub) | |
| # | |
| # Currently, it's at Template:TestTemplate (for testing, duh.) | |
| cat="[[Category:" | |
| stub="Stub]]" | |
| stubs="Stubs]]" |
| #!/bin/bash | |
| # Resources | |
| # http://www.gimpusers.com/tutorials/compiling-gimp-for-ubuntu | |
| # http://ubuntuforums.org/showthread.php?p=11818979 | |
| # | |
| sudo apt-get build-dep gimp | |
| sudo apt-get install libjpeg62-dev libopenexr-dev librsvg2-dev libtiff4-dev | |
| mkdir gimp_build && cd gimp_build |