Skip to content

Instantly share code, notes, and snippets.

View btakashi's full-sized avatar

Brian Takashi Hooper btakashi

  • M3 USA Corporation
  • New York, USA
View GitHub Profile
@btakashi
btakashi / gist:1094784
Created July 20, 2011 11:20
#7 Daimon-scala problem, reverse case
class CaseReversibleString(s:String) {
def reverseCases = (for (c <- s.toCharArray) yield {
if (c.isUpper) c.toLower
else c.toUpper
}).mkString
}
implicit def string2CaseReversibleString(s:String) = new CaseReversibleString(s)
@btakashi
btakashi / theano-install.sh
Created December 8, 2015 14:27
Installation notes for GPU-enabled Theano on AWS
# Fix the /tmp directory from my previous AMI, which was a symlink to /mnt/tmp (nonexistent)
sudo rm /tmp
sudo mkdir /tmp
sudo chmod 777 /tmp
# Upgrade Ubuntu packages
sudo apt-get update
sudo apt-get upgrade
# Install Theano dependencies (from: http://deeplearning.net/software/theano/install_ubuntu.html#install-ubuntu)