I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
http://winavr.sourceforge.net/
Determine what bits using http://www.engbedded.com/fusecalc
| #!/usr/bin/env python | |
| # | |
| # Copyright 2012 Patrick Hetu <[email protected]> | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, |
| # Mac OS X Lion introduced a new, iOS-like context menu when you press and hold a key | |
| # that enables you to choose a character from a menu of options. If you are on Lion | |
| # try it by pressing and holding down 'e' in any app that uses the default NSTextField | |
| # for input. | |
| # | |
| # It's a nice feature and continues the blending of Mac OS X and iOS features. However, | |
| # it's a nightmare to deal with in Sublime Text if you're running Vintage (Vim) mode, | |
| # as it means you cannot press and hold h/j/k/l to move through your file. You have | |
| # to repeatedly press the keys to navigate. |
| <snippet> | |
| <content><![CDATA[import ipdb; ipdb.set_trace()]]></content> | |
| <tabTrigger>ipdb</tabTrigger> | |
| <scope>source.python</scope> | |
| <description>ipdb</description> | |
| </snippet> |
| """This plugin provides test timings to identify which tests might be | |
| taking the most. From this information, it might be useful to couple | |
| individual tests nose's `--with-profile` option to profile problematic | |
| tests. | |
| This plugin is heavily influenced by nose's `xunit` plugin. | |
| Add this command to the way you execute nose:: | |
| --with-test-timer |