VirtualTam's bookmarks

    • Forwards over ssh
    • Doesn't require admin
    • Works with Linux and MacOS
    • Supports DNS tunneling
  1. 1# List databases
    2PRAGMA database_list;
    3
    4# Describe table
    5PRAGMA table_info(<table_name>);
    
  2. Tension / gauge calculator to design custom string sets

    Related threads:

  3. Wow, Github now has builtin support for IPython Notebooks \o/

  4. # list USB devices
    $ lsusb
    
    # list cards detected by ALSA
    $ cat /proc/asound/cards
    
    # list cards supported  by PulseAudio
    $ pacmd list-cards | grep name:
    
  5. Includes support for Coverage, Xunit and other cool stuff ;-) Oh, and there is parallel testing, too \o/

    nosetests --with-coverage --cover-erase --cover-tests --cover-html --cover-html-dir=htmlcov --with-xunit --xunit-file=unit.xml

    via http://www.alexconrad.org/2011/10/jenkins-and-python.html