Book ID | Title | Author | Links |
---|---|---|---|
1-A-1 | Red Blood and Black Ink: Journalism in the Old West | David Dary | Amazon | |
1-A-2 | Media and the American Mind: From Morse to McLuhan | Daniel J. Czitrom | Amazon | Goodreads |
1-A-3 | A Social History of the Media: From Gutenberg to the Internet | Peter Burke | Amazon | Goodreads |
1-A-4 | Media Technology and Society: A History From the Telegraph to the Internet | Brian Winston | Amazon | Goodreads |
1-A-5 | The Television Will be Revolutionized | Amanda D. Lotz | Amazon | Goodreads |
1-A- |
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
require 'propono' | |
Propono.config do |config| | |
config.access_key = "AKIAIPE2MSOM5ZFGQBCQ" | |
config.secret_key = "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" | |
config.queue_region = "eu-west-1" | |
end | |
require 'twitter' | |
@twitter = Twitter::REST::Client.new do |config| | |
config.consumer_key = "OG9Zkag09onRe7b5ZLecO7HGb" |
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 | |
# Reflects the requests from HTTP methods GET, POST, PUT, and DELETE | |
# Written by Nathan Hamiel (2010) | |
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler | |
from optparse import OptionParser | |
class RequestHandler(BaseHTTPRequestHandler): | |
def do_GET(self): |
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
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |