Large software development projects are not like mountains that you climb to the top of, get that rush of accomplishment, and move on. Large pieces of software are like climbing a stair master. It simply never ends. Even once its DONE, there is maintenance work.
This is a short write-up of my experiences with installing Debian on a ThinkPad W540.
All commands should be run as root, unless indicated otherwise.
This file contains 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
""" | |
Modified version of cloudsearch.py as provided by https://gist.github.com/2367039#file_cloudsearch.py | |
""" | |
from math import ceil | |
import time | |
import json | |
import re | |
import boto | |
import boto.jsonresponse |