User Hamish Downer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T15:43:14Z http://stackoverflow.com/feeds/user/3189 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/820781/how-do-i-stop-controller-execution-after-using-redirectto-using-rails 0 How do I stop controller execution after using redirect_to? (Using Rails) Hamish Downer 2009-05-04T16:21:17Z 2009-11-18T00:40:23Z <p>I have a controller with multiple actions that take :year and :month as attributes from the URL. I have made a private method check_date to check the date is valid and check the date is not in the future.</p> <pre><code>def check_date(year, month) if month &lt; 1 || month &gt; 12 || year &lt; 2000 flash[:notice] = I18n.t 'archive.invalid_date' redirect_to :action =&gt; 'index' elsif year &gt; Date.today.year || (year == Date.today.year &amp;&amp; month &gt; Date.today.month) flash[:notice] = I18n.t 'archive.no_future' redirect_to :action =&gt; 'month_index', :year =&gt; Date.today.year, :month =&gt; Date.today.month, :type =&gt; params[:type] end end </code></pre> <p>Is there a rails way of ending controller execution after the redirect_to? </p> <p>Ways I can think of are either to throw an exception after the redirect_to or to return a value from check_date and check it in each action that calls it - something like</p> <pre><code>def month_index year = params[:year].to_i month = params[:month].to_i if !check_date(year, month) return ... end </code></pre> <p>But I wonder if there is some nice rails way of doing this. I was half hoping that having called redirect_to rails would recognise I wanted to stop, but that doesn't seem to happen.</p> http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/825927#825927 1 Answer by Hamish Downer for What are your favorite Vim tricks? Hamish Downer 2009-05-05T17:07:28Z 2009-10-31T20:25:31Z <p>I always set my keyboard to swap Caps Lock and Escape.</p> <p>With the standard Ubuntu/GNOME desktop, go through the menus: System -> Preferences -> Keyboard -> Layouts tab. Then hit the "Layout Options" button, click on the triangle next to "Caps Lock key behaviour" and select "Swap ESC and CapsLock".</p> <p>Not strictly part of Vim, but makes Vim so much nicer to use.</p> <p>And other than that, use Vim for everything. Some useful extensions to allow more Vim usage:</p> <ul> <li>for Firefox, <a href="https://addons.mozilla.org/en-US/firefox/addon/4125" rel="nofollow">It's all text</a> allows you to use an external editor for text boxes, and if you want to go further then investigate <a href="https://addons.mozilla.org/en-US/firefox/addon/4891" rel="nofollow">the Vimperator</a>. Also, not at version 1.0 yet, but <a href="https://addons.mozilla.org/en-US/firefox/addon/8529" rel="nofollow">jV</a> makes text areas work like vi.</li> <li>for Thunderbird, the <a href="http://globs.org/articles.php?pg=2&amp;lng=en" rel="nofollow">external editor</a> extension allows you to use gVim to write your emails, or you could use Vimperator's sister extension - <a href="https://addons.mozilla.org/en-US/thunderbird/addon/7162" rel="nofollow">muttator</a>.</li> </ul> <p>etc.</p> http://stackoverflow.com/questions/826208/making-vim-ubiquitous 30 Making Vim ubiquitous? Hamish Downer 2009-05-05T18:13:00Z 2009-10-03T15:43:47Z <p><a href="http://en.wikipedia.org/wiki/The%5FPragmatic%5FProgrammer" rel="nofollow">The Pragmatic Programmer</a> recommends that you should use one text editor for everything. My chosen <strike>weapon</strike> editor is Vim.</p> <p>So I want to collect all the ways in which Vim (and the Vim keybindings) can be used and setting up your computer to make Vim work well. This includes how to embed Vim in your IDE, web browser, email client, command shell ...</p> <p>But I don't want Vim tips - <a href="http://stackoverflow.com/questions/164847/what-is-in-your-vimrc">there</a> <a href="http://stackoverflow.com/questions/20735/useful-vim-features">are</a> <a href="http://stackoverflow.com/questions/726894/vim-tricks-your-mom-never-told-you-about-dark-corners">other</a> <a href="http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks">questions</a> for them. I want tips to get into Vim, or Vim mode. Though tips about Vim mode not in an editor would be allowed (e.g. tips for vi mode when using Bash).</p> <p><strong>Update:</strong> Going quite well so far, with ways to edit in Vim/gVim, or to get vi mode in Firefox, Safari, Thunderbird, many IDEs and command line applications, MS Outlook and Word. But I'm wondering if there are more. Particular applications I wonder about include</p> <ul> <li>OpenOffice.org</li> <li>KOffice</li> <li>Kmail</li> <li>Evolution</li> <li>Internet Explorer</li> <li>Google Chrome</li> <li>GIMP and Photoshop ... (only joking ;)</li> </ul> http://stackoverflow.com/questions/826208/making-vim-ubiquitous/826211#826211 6 Answer by Hamish Downer for Making Vim ubiquitous? Hamish Downer 2009-05-05T18:13:53Z 2009-10-03T15:43:47Z <p>For <strong>Thunderbird</strong>, the <a href="http://globs.org/articles.php?pg=2&amp;lng=en" rel="nofollow">external editor</a> extension allows you to use gVim to write your emails, or you could use <a href="http://en.wikipedia.org/wiki/Vimperator" rel="nofollow">Vimperator</a>'s sister extension - <a href="https://addons.mozilla.org/en-US/thunderbird/addon/7162" rel="nofollow">muttator</a>.</p> http://stackoverflow.com/questions/826208/making-vim-ubiquitous/826223#826223 6 Answer by Hamish Downer for Making Vim ubiquitous? Hamish Downer 2009-05-05T18:15:01Z 2009-10-03T15:42:41Z <p>For <strong>Firefox</strong>, <a href="https://addons.mozilla.org/en-US/firefox/addon/4125" rel="nofollow">It's all text</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/394" rel="nofollow">ViewSourceWith</a> allow you to use an external editor for text boxes. You generally want to use</p> <pre><code>gvim -f </code></pre> <p>The -f option means that will not fork a process, so this allows the calling program to wait until gVim closes. Without the -f option the above plugins won't work very well ...</p> <p>If you want to go further then investigate <a href="https://addons.mozilla.org/en-US/firefox/addon/4891" rel="nofollow">the vimperator</a>. Scroll pages with hjkl, go back and forward with H and L, and <a href="http://vimperator.org/trac/wiki/Vimperator" rel="nofollow">many more keybindings</a> familiar to Vim users.</p> <p>It is not at version 1.0 yet, but <a href="https://addons.mozilla.org/en-US/firefox/addon/8529" rel="nofollow">jV</a> makes text areas work like vi.</p> <p>And finally there is an experimental way to directly embed the actual Vim in Firefox using <a href="https://addons.mozilla.org/en-US/firefox/addon/5482" rel="nofollow">embedded editor</a> - though it requires mozplugger and will only work on Linux.</p> <p>For more details see this <a href="http://stackoverflow.com/questions/75652/is-there-a-firefox-add-on-to-use-vim-to-edit-textboxes">question about using vim with firefox</a>.</p> http://stackoverflow.com/questions/826208/making-vim-ubiquitous/826229#826229 4 Answer by Hamish Downer for Making Vim ubiquitous? Hamish Downer 2009-05-05T18:16:54Z 2009-10-03T15:41:28Z <p>You can set your keyboard to swap Caps Lock and Escape.</p> <p>With the standard Ubuntu/GNOME desktop, go through the menus: System -> Preferences -> Keyboard -> Layouts tab. Then hit the "Layout Options" button, click on the triangle next to "Caps Lock key behaviour" and select "Swap ESC and CapsLock".</p> <p>Not strictly part of Vim, but it makes Vim so much nicer to use.</p> <p>Also see this <a href="http://stackoverflow.com/questions/397229/reaching-up-to-hit-the-escape-key-sucks-especially-in-vim">question about making the ESC key easier to get to</a>.</p> http://stackoverflow.com/questions/826208/making-vim-ubiquitous/826241#826241 6 Answer by Hamish Downer for Making Vim ubiquitous? Hamish Downer 2009-05-05T18:19:41Z 2009-10-03T15:40:02Z <p>When using Bash, you can do</p> <pre><code>$ set -o vi </code></pre> <p>to enable vi editing mode. You start in insert mode, but you can press Escape and go forward and backwards with h and l, delete the previous word with db (or dB for back to the previous gap defined by spaces) ... If you like it, stick</p> <pre><code>set -o vi </code></pre> <p>in your .bashrc file.</p> <p>Also see this <a href="http://stackoverflow.com/questions/537522/standard-python-interpreter-has-a-vi-command-mode">question about vi mode and readline</a>.</p> http://stackoverflow.com/questions/294613/does-any-ide-have-a-vi-keybindings-options/1401764#1401764 0 Answer by Hamish Downer for Does any IDE have a vi keybindings options? Hamish Downer 2009-09-09T19:59:35Z 2009-09-09T19:59:35Z <p><a href="http://monodevelop.com/" rel="nofollow">MonoDevelop</a> can both <a href="http://ankitjain.org/blog/2007/06/30/integrating-vim-with-monodevelop/" rel="nofollow">embed vim as the editor</a> and the <a href="http://mjhutchinson.com/journal/2008/10/14/vi%5Fmodes%5Fmonodevelop" rel="nofollow">default editor has a vi mode</a>.</p> <p>MonoDevelop is <a href="http://tirania.org/blog/archive/2009/Sep-09.html" rel="nofollow">now available on Windows and Mac</a> as well as Linux.</p> http://stackoverflow.com/questions/1219008/what-is-the-shortest-way-of-inserting-a-variable-into-text-with-php 0 What is the shortest way of inserting a variable into text with PHP? Hamish Downer 2009-08-02T14:29:11Z 2009-08-02T18:07:28Z <p>I'm wondering if there is a shorter way of inserting text in PHP than </p> <pre><code>&lt;?php $city = "London"; ?&gt; This website is a funky guide to &lt;?php print $city; ?&gt;!!! </code></pre> <p>For example, using ruby on rails, I could set </p> <pre><code>city = 'London' </code></pre> <p>somewhere in the code, and in my .erb file I could do</p> <pre><code>This website is a funky guide to &lt;%= city %&gt;!!! </code></pre> <p>I did read somewhere that <code>{$city}</code> could be used, but I tried it and it didn't. So is there a shorter form than <code>&lt;?php print $var; ?&gt;</code> ?</p> http://stackoverflow.com/questions/786412/what-is-the-ruby-equivalent-of-pythons-getattr 2 What is the ruby equivalent of python's getattr Hamish Downer 2009-04-24T15:44:47Z 2009-07-02T16:04:08Z <p>I am new to rails and trying to do a little refactoring (putting a partial renderer that lists titles in app/views/shared ) The renderer shows the dates along with the titles. However different users of the renderer use different dates. Part way through refactoring I have</p> <pre><code>title_date = list_titles.created_on </code></pre> <p>For the other user of the renderer I would want</p> <pre><code>title_date = list_titles.updated_on </code></pre> <p>So can I use a string I pass through (using the :locals parameter)? I know in Python I could do</p> <pre><code>date_wanted = 'created_on' title_date = getattr(list_titles, date_wanted) </code></pre> <p>but I can't work out how to do that in ruby. (Obviously in rails I would pass the date_wanted string through from the view calling the partial renderer.)</p> http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/170651#170651 18 Answer by Hamish Downer for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses? Hamish Downer 2008-10-04T17:06:40Z 2009-07-01T20:09:44Z <h2>Short answer</h2> <p>Using ping timing data by itself would not be truly random, but it can be used as a source of <a href="http://en.wikipedia.org/wiki/Information%5Fentropy" rel="nofollow">entropy</a> which can then be used to generate truly random data.</p> <h2>Longer version</h2> <h3>How random are ping times?</h3> <p>By itself, timing data from network operations (such as ping) would not be uniformly distributed. (And the idea of selecting random hosts is not practical - many will not respond at all, and the differences between hosts can be huge, with gaps between ranges of response time - think satellite connections).</p> <p>However, while the timing will not be well distributed, there will be some level of randomness in the data. Or to put it another way, a level of <a href="http://en.wikipedia.org/wiki/Information%5Fentropy" rel="nofollow">information entropy</a> is present. It is a fine idea to feed the timing data into a random number generator to seed it. So what level of entropy is present?</p> <p>For network timing data of say around 50ms, measured to the nearest 0.1ms, with a spread of values of 2ms, you have about 20 values. Rounding down to the nearest power of 2 (16 = 2^4) you have 4 bits of entropy per timing value. If it is for any kind of secure application (such as generating cryptographic keys) then I would be conservative and say it was only 2 or 3 bits of entropy per reading. <em>(Note that I've done a very rough estimate here, and ignored the possibility of attack).</em></p> <h3>How to generate truly random data</h3> <p>For true random numbers, you need to send the data into something designed along the lines of <a href="http://en.wikipedia.org/wiki//dev/random" rel="nofollow">/dev/random</a> that will collect the entropy, distributing it within a data store (using some kind of <a href="http://en.wikipedia.org/wiki/Hash%5Ffunction" rel="nofollow">hash function</a>, usually a <a href="http://en.wikipedia.org/wiki/Cryptographic%5Fhash%5Ffunction" rel="nofollow">secure one</a>). At the same time the entropy estimate is increased. So for a 128 bit AES key, 64 ping timings would be required before the entropy pool had enough entropy. </p> <p>To be more robust, you could then add timing data from keyboard and mouse usage, hard disk response times, motherboard sensor data (eg temperature) etc. It increases the rate of entropy collection, and makes it hard for an attacker to monitor all sources of entropy. And indeed this is what is done with modern systems. The full list of MS Windows entropy sources is listed in the <a href="http://blogs.msdn.com/michael%5Fhoward/archive/2005/01/14/353379.aspx#353493" rel="nofollow">second comment of this post</a>.</p> <h3>More reading</h3> <p>For discussion of the (computer security) attacks on random number generators, and the design of a cryptographically secure random number generator, you could do worse than read the <a href="http://www.schneier.com/yarrow.html" rel="nofollow">yarrow paper</a> by <a href="http://www.schneier.com/index.html" rel="nofollow">Bruce Schneier</a> and John Kelsey. (Yarrow is used by BSD and Mac OS X systems).</p> http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/928423#928423 6 Answer by Hamish Downer for What is your favorite "programmer" t-shirt? Hamish Downer 2009-05-29T22:30:17Z 2009-05-29T22:30:17Z <p>another xkcd great:</p> <p><img src="http://imgs.xkcd.com/store/imgs/regex%5Fsquare%5F0.png" alt="front" title="" /></p> <p><img src="http://imgs.xkcd.com/store/imgs/regex%5Fsquare%5F1.png" alt="back" title="" /></p> <p><a href="http://xkcd.com/208/" rel="nofollow">Original cartoon</a></p> http://stackoverflow.com/questions/915673/no-such-file-to-load-net-ssh-from-rails-controller-on-ubuntu/916013#916013 0 Answer by Hamish Downer for 'no such file to load -- net/ssh' from rails Controller on Ubuntu Hamish Downer 2009-05-27T14:27:28Z 2009-05-27T14:27:28Z <p>In a project I am working on we have used the config/environment.rb file to hold the gem require stuff. So </p> <pre><code>Rails::Initializer.run do |config| # ... config.gem 'net-ssh' config.gem 'daemons' config.gem 'slave' config.gem 'vpim' config.gem 'json' # ... end </code></pre> <p>I think you will require 'net-ssh' rather than 'net/ssh'. However we did run into a problem where have a hyphen in the name of the gem led to failures. Then we had to do</p> <pre><code> config.gem 'Ruby-IRC', :lib =&gt; 'IRC' </code></pre> <p>so that version maybe required for you. So that would be</p> <pre><code> config.gem 'net-ssh', :lib =&gt; 'net/ssh' </code></pre> http://stackoverflow.com/questions/74625/what-is-the-best-way-to-force-yourself-to-master-vi/834552#834552 2 Answer by Hamish Downer for What is the best way to force yourself to master vi? Hamish Downer 2009-05-07T13:06:52Z 2009-05-07T13:06:52Z <p><strong>Step 0:</strong> learn to touch type. Seriously - if your fingers don't know where the keys are then vim is going to be a pain. And even if you reject vim, touch typing will <a href="http://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists">improve your programming</a> (ask <a href="http://steve-yegge.blogspot.com/2008/09/programmings-dirtiest-little-secret.html" rel="nofollow">Steve Yegge</a> ) by making the mind to monitor link friction free. There is a <a href="http://stackoverflow.com/questions/410880/how-do-i-improve-my-typing-skills">lot</a> of <a href="http://stackoverflow.com/questions/10475/touch-typing-software-recommendations">software</a> that can help you improve your typing.</p> <p><strong>Step 1:</strong> use <strong>vimtutor</strong> to get you started. It is in gvim (under the help menu I think) or you can just type 'vimtutor' at the command line. It will take 30-45 minutes of your time and then your fingers will know the basics of vi/vim and you should be able to edit files without wanting to hurl your keyboard out of the window. </p> <p><strong>Step 2:</strong> use vim everywhere. See <a href="http://stackoverflow.com/questions/826208/making-vim-ubiquitous">this question</a> for tips and links for using vim and vi key bindings at the command line, from your web browser, for composing emails, in your IDE ... You need to use vim to embed the key bindings in your muscle memory.</p> <p><strong>Step 3:</strong> learn more about vim. You will only have scratched the surface with vimtutor. You can <a href="http://video.google.com/videoplay?docid=2538831956647446078" rel="nofollow">watch this video</a> or read <a href="http://www.moolenaar.net/habits.html" rel="nofollow">this article</a> (both about the "Seven habits of effective text editing". You can <a href="http://stackoverflow.com/questions/164847/what-is-in-your-vimrc">read</a> about <a href="http://stackoverflow.com/questions/20735/useful-vim-features">tips</a> and <a href="http://stackoverflow.com/questions/726894/vim-tricks-your-mom-never-told-you-about-dark-corners">tricks</a> on <a href="http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks">StackOverflow</a>. You can browse <a href="http://vim.wikia.com/wiki/Main%5FPage" rel="nofollow">vimtips</a>. Learn a litle often would be my advice - there is so much out there that sticking to bite-size chunks will be the best way to make the knowledge stick.</p> <p><strong>Step 4:</strong> Profit :)</p> http://stackoverflow.com/questions/410880/how-do-i-improve-my-typing-skills/834475#834475 0 Answer by Hamish Downer for How do I improve my typing skills? Hamish Downer 2009-05-07T12:50:53Z 2009-05-07T12:50:53Z <p><a href="http://www.gnu.org/software/gtypist/" rel="nofollow">gtypist</a> is a free software typing tutor that works on the command line.</p> http://stackoverflow.com/questions/826208/making-vim-ubiquitous/831786#831786 1 Answer by Hamish Downer for Making Vim ubiquitous? Hamish Downer 2009-05-06T21:11:58Z 2009-05-06T21:11:58Z <p>Just for completeness, I will mention that you can use command line email clients such as <a href="http://en.wikipedia.org/wiki/Mutt%5F%28e-mail%5Fclient)" rel="nofollow">mutt</a> and <a href="http://en.wikipedia.org/wiki/Alpine%5F%28e-mail%5Fclient)" rel="nofollow">pine</a>. And with them you can use any command line editor for writing your emails.</p> http://stackoverflow.com/questions/75652/is-there-a-firefox-add-on-to-use-vim-to-edit-textboxes/831757#831757 0 Answer by Hamish Downer for Is there a Firefox add-on to use vim to edit textboxes? Hamish Downer 2009-05-06T21:07:17Z 2009-05-06T21:07:17Z <p>There is an experimental way to directly embed the real vim in firefox using <a href="https://addons.mozilla.org/en-US/firefox/addon/5482" rel="nofollow">embedded editor</a> - though it requires mozplugger and will only work on Linux.</p> http://stackoverflow.com/questions/75652/is-there-a-firefox-add-on-to-use-vim-to-edit-textboxes/830078#830078 0 Answer by Hamish Downer for Is there a Firefox add-on to use vim to edit textboxes? Hamish Downer 2009-05-06T15:08:22Z 2009-05-06T15:08:22Z <p>If you use <a href="http://vimperator.mozdev.org/" rel="nofollow">vimperator</a> and have the <a href="http://www.vim.org/scripts/script.php?script%5Fid=1242" rel="nofollow">markdown syntax file</a> installed, a useful line for your .vimperatorrc is: </p> <pre><code>au LocationChange .* :set editor="gvim -f" au LocationChange stackoverflow\.com :set editor="gvim -f -c 'set ft=mkd'" </code></pre> <p>This will tell vim to do syntax highlighting for markdown when you are on stackoverflow.com, but not when you are any other site. There are similar hacks for wikipedia/mediawiki etc. Enjoy :)</p> http://stackoverflow.com/questions/826208/making-vim-ubiquitous/829529#829529 0 Answer by Hamish Downer for Making Vim ubiquitous? Hamish Downer 2009-05-06T13:24:20Z 2009-05-06T13:24:20Z <p>For Mac users I just came across the <a href="http://www.corsofamily.net/jcorso/vi/" rel="nofollow">Vi Input Manager plugin</a> which <em>"patches the Cocoa Text System to add a Vi-like command mode"</em>. This affects applications including <em>"Safari, TeXShop, XCode"</em>.</p> <p>Looks cool. (Though I am not a Mac user).</p> http://stackoverflow.com/questions/826208/making-vim-ubiquitous/826296#826296 1 Answer by Hamish Downer for Making Vim ubiquitous? Hamish Downer 2009-05-05T18:31:14Z 2009-05-05T18:31:14Z <p>One last link to another question - this one <a href="http://stackoverflow.com/questions/294613/does-any-ide-have-a-vi-keybindings-options">about vi mode plugins for IDEs</a>.</p> http://stackoverflow.com/questions/75652/is-there-a-firefox-add-on-to-use-vim-to-edit-textboxes/826143#826143 0 Answer by Hamish Downer for Is there a Firefox add-on to use vim to edit textboxes? Hamish Downer 2009-05-05T17:56:44Z 2009-05-05T17:56:44Z <p>At the time of writing it is experimental, but the <a href="https://addons.mozilla.org/en-US/firefox/addon/8529" rel="nofollow">jV extension</a> looks good. To quote from the page:</p> <p><em>This extension makes all html textareas into a very stripped-down version of Vi[m]. It's modal, supports infinite undo, has register support, search, visual mode, and various movement and editing commands.</em></p> http://stackoverflow.com/questions/397229/reaching-up-to-hit-the-escape-key-sucks-especially-in-vim/826005#826005 5 Answer by Hamish Downer for Reaching up to hit the escape key sucks (especially in vim). Hamish Downer 2009-05-05T17:22:50Z 2009-05-05T17:22:50Z <p>With the standard Ubuntu desktop, go through the menus: System -> Preferences -> Keyboard -> Layouts tab. Then hit the "Layout Options" button, click on the triangle next to "Caps Lock key behaviour" and select "Swap ESC and CapsLock".</p> <p>Makes vim so much nicer :)</p> http://stackoverflow.com/questions/813663/moving-from-svn-to/820854#820854 2 Answer by Hamish Downer for Moving from SVN to ...? Hamish Downer 2009-05-04T16:39:24Z 2009-05-04T16:39:24Z <p>As Steve Yegge might say: <strong>TOOOOOLS</strong></p> <p>As others say, if you can't get them to use svn, they won't use a distributed vcs.</p> <p>Do they use IDEs? If so, find plugins for the IDE that make it easy to use svn. So they can right click on a file or folder in the IDE and check in. If you make it easier to use source control on a local copy than to access the central files directly you might stand a chance. Then you can use TortoiseSVN for more complex tasks.</p> <p>Some links to SVN plugins for popular IDEs to get you started:</p> <ul> <li>Visual Studio - <a href="http://ankhsvn.open.collab.net/" rel="nofollow">AnkhSVN</a> and <a href="http://www.visualsvn.com/visualsvn/" rel="nofollow">VisualSVN</a></li> <li>Eclipse - <a href="http://www.eclipse.org/subversive/" rel="nofollow">Subversive</a> and <a href="http://subclipse.tigris.org/" rel="nofollow">Subclipse</a></li> <li>Netbeans - <a href="http://subversion.netbeans.org/" rel="nofollow">Subversion</a></li> </ul> <p>And <a href="http://subversion.tigris.org/links.html#ide-plugins" rel="nofollow">here is a list of IDE plugins</a> from the subversion website.</p> http://stackoverflow.com/questions/29736/what-open-source-hosting-service-should-i-use/34808#34808 7 Answer by Hamish Downer for What open source hosting service should I use? Hamish Downer 2008-08-29T17:30:12Z 2009-04-27T12:53:29Z <p>I've used google code and launchpad mostly, and occasionally looked at sourceforge.</p> <p>Sourceforge does not seem user friendly, has not moved on in ages, and I would avoid for a new project. <strong>Update:</strong> Sourceforge has <a href="http://arstechnica.com/open-source/news/2009/03/sourceforge-adds-support-for-new-version-control-systems.ars" rel="nofollow">recently launched support for git, bzr and mercurial, along with running your preferred project management software - trac, mantis etc</a>.</p> <p>Google code is pretty nice. The code browsing is good. There is a nice wiki to document your project. It uses subversion as its VCS so is well supported by many tools, good integration with IDEs, and the other advantages of a mature tool. <strong>Update:</strong> Google has recently decided to <a href="http://arstechnica.com/open-source/news/2009/04/google-code-adds-mercurial-version-control-system.ars" rel="nofollow">add support for mercurial</a>.</p> <p>Launchpad is cool, the major missing feature being some sort of wiki for users to document their project. It is developing fast (a web API has just been released) and uses my favourite VCS - bzr. And for those it matters to, the code for launchpad itself will be released in 2009, so you can run your own instance if you want.</p> <p>As to how to choose, I would start with the VCS you want to use, and then choose from the hosting choices available. I won't go into VCS choice on this question ;-) (If you want to then check <a href="http://stackoverflow.com/questions/138621/best-version-control-for-lone-developer">out</a> <a href="http://stackoverflow.com/questions/77485/what-are-the-relative-strengths-and-weaknesses-of-git-mercurial-and-bazaar">these</a> <a href="http://stackoverflow.com/questions/237/distributed-source-control-options">questions</a>.</p> <p>@<a href="#29948" rel="nofollow">dbr</a>: launchpad uses bzr, not mercurial.</p> http://stackoverflow.com/questions/34020/are-python-threads-buggy/34782#34782 9 Answer by Hamish Downer for Are python threads buggy? Hamish Downer 2008-08-29T17:17:18Z 2009-02-23T16:24:02Z <p>The standard implementation of Python (generally known as CPython as it is written in C) uses OS threads, but since there is the <a href="http://en.wikipedia.org/wiki/Global_Interpreter_Lock" rel="nofollow">Global Interpreter Lock</a>, only one thread at a time is allowed to run Python code. But within those limitations, the threading libraries are robust and widely used.</p> <p>If you want to be able to use multiple CPU cores, there are a few options. One is to use multiple python interpreters concurrently, as mentioned by others. Another option is to use a different implementation of Python that does not use a GIL. The two main options are <a href="http://en.wikipedia.org/wiki/Jython" rel="nofollow">Jython</a> and <a href="http://en.wikipedia.org/wiki/IronPython" rel="nofollow">IronPython</a>.</p> <p>Jython is written in Java, and is now fairly mature, though some incompatibilities remain. For example, the web framework <a href="http://zyasoft.com/pythoneering/2008/01/django-on-jython-minding-gap.html" rel="nofollow">Django does not run perfectly yet</a>, but is getting closer all the time. Jython is <a href="http://mail.python.org/pipermail/python-list/2001-December/116555.html" rel="nofollow">great for thread safety</a>, comes out <a href="http://blogs.warwick.ac.uk/dwatkins/entry/benchmarking_parallel_python_1_2/" rel="nofollow">better in benchmarks</a> and has a <a href="http://cgwalters.livejournal.com/17956.html" rel="nofollow">cheeky message for those wanting the GIL</a>.</p> <p>IronPython uses the .NET framework and is written in C#. Compatibility is reaching the stage where <a href="http://www.infoq.com/news/2008/03/django-and-ironpython" rel="nofollow">Django can run on IronPython</a> (at least as a demo) and there are <a href="http://www.voidspace.org.uk/ironpython/threading.shtml" rel="nofollow">guides to using threads in IronPython</a>.</p> http://stackoverflow.com/questions/375272/minimum-compsci-knowledge-needed-for-writing-desktop-apps/375576#375576 0 Answer by Hamish Downer for Minimum CompSci Knowledge Needed for Writing Desktop Apps Hamish Downer 2008-12-17T18:42:09Z 2008-12-17T18:42:09Z <p>I would say the practical aspects of coding are more important. In particular, source control is vital if you don't use that already. I like <a href="http://bazaar-vcs.org/" rel="nofollow">bzr</a> as an easy to set up and use system, though GUI support isn't as mature as it could be.</p> <p>I'd then move on to one or both of the classics about the craft of coding, namely</p> <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">The Pragmatic Programmer</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete 2</a></li> </ul> <p>You could also check out the <a href="http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read">list of recommended books on Stack Overflow</a>.</p> http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/305632#305632 2 Answer by Hamish Downer for What tricks do you use to get yourself "in the zone"? Hamish Downer 2008-11-20T15:25:08Z 2008-11-20T15:25:08Z <p>The book <a href="http://rads.stackoverflow.com/amzn/click/0932633439" rel="nofollow">Peopleware</a> covers this issue very well and is highly recommended. They have actually done comparative studies with multiple programmers to see what helps and what doesn't.</p> <p>In brief, the most productive work is done when it is quiet and you are undisturbed. The ideal they say is individual rooms. Microsoft, Google and Fog Creek all follow this, though it is rare in most of the industry.</p> <p>If you are in a shared space you want to minimise interruptions so that once you are in the flow you stay there as long as possible. Having some kind of "please don't disturb me" sign/symbol is useful, as is a general awareness of avoiding interruptions by your co-workers.</p> <p>If you have to listen to music (to block out distractions around you), I believe it has been found that music without words is the least detrimental. But it has been found that any music can prevent you spotting higher level issues. An experiment was done about how long it would take to complete a program. In one room there was silence, in the other programmers listened to music of their choice through headphones. The time taken was similar, but in the music room no-one noticed that several of the steps the program had to take were equivalent to "multiply by one" - in the quiet room several people noticed it.</p> <p>(Originally posted to <a href="http://stackoverflow.com/questions/196148/how-do-you-reach-a-flow-state-while-programming">this question</a> )</p> http://stackoverflow.com/questions/36953/resources-for-lexing-tokenising-and-parsing-in-python 7 Resources for lexing, tokenising and parsing in python Hamish Downer 2008-08-31T16:50:35Z 2008-11-11T01:13:42Z <p>Can people point me to resources on lexing, parsing and tokenising with Python?</p> <p>I'm doing a little hacking on an open source project (<a href="http://www.hotwire-shell.org/" rel="nofollow">hotwire</a>) and wanted to do a few changes to the code that <a href="http://code.google.com/p/hotwire-shell/source/browse/trunk/hotwire/externals/shlex.py" rel="nofollow">lexes</a>, <a href="http://code.google.com/p/hotwire-shell/source/browse/trunk/hotwire/command.py" rel="nofollow">parses and tokenises</a> the commands entered into it. As it is real working code it is fairly complex and a bit hard to work out.</p> <p>I haven't worked on code to lex/parse/tokenise before, so I was thinking one approach would be to work through a tutorial or two on this aspect. I would hope to learn enough to navigate around the code I actually want to alter. Is there anything suitable out there? (Ideally it could be done in an afternoon without having to buy and read the dragon book first ...)</p> <p><strong>Edit:</strong> (7 Oct 2008) None of the below answers quite give what I want. With them I could generate parsers from scratch, but I want to learn how to write my own basic parser from scratch, not using lex and yacc or similar tools. Having done that I can then understand the existing code better. </p> <p>So could someone point me to a tutorial where I can build a basic parser from scratch, using just python?</p> http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/274804#274804 4 Answer by Hamish Downer for What do project managers do all day? Hamish Downer 2008-11-08T14:57:41Z 2008-11-08T15:14:38Z <p>The ideal project manager runs around doing lots of things so that the developers have a clean run at the project. I like to think of <a href="http://en.wikipedia.org/wiki/Curling" rel="nofollow">curling</a> sweepers - the curling rock is slid along the ice, and the sweepers run along making sure the rock has a smooth ride. </p> <p><img src="http://www.olympics.org.uk/images/sports/Curling300x400.jpg" alt="Curling sweepers" title="" /></p> <p>That is the ideal I aim for when I have had to take on the project manager role - @<a href="#233610" rel="nofollow">Totophil</a> covers the details of what is involved well. </p> <p>I can also see merit in the umbrella analogy used by @<a href="#236800" rel="nofollow">IDisposable</a>. </p> <p>And yet I have also known the bad examples mentioned by others when I have been the coder. I've been left to do all the communication with the client, dealing with other issues etc, while the project manager constantly bothered me for progress updates and the like. Not helpful.</p> <p>So hope you get a good one :)</p> http://stackoverflow.com/questions/85736/can-anyone-recommend-a-good-modern-alternative-to-bash/94129#94129 4 Answer by Hamish Downer for Can anyone recommend a good modern alternative to bash? Hamish Downer 2008-09-18T16:24:22Z 2008-11-08T07:59:00Z <p>This answer is about shells that deal with more than just text in pipes - fish and zsh have improvements over bash, but ultimately just deal with text, unlike MS Powershell which uses objects in its pipes.</p> <h3>Hotwire</h3> <p><a href="http://hotwire-shell.org" rel="nofollow">Hotwire</a> has an object pipeline that works in a similar way to Microsoft Powershell, allowing commands in the pipe to access object properties directly rather than having to do text processing to extract it.</p> <p>It also attempts to combine the power of the traditional command line interface with GUI elements. You can use all your common system commands, but a number of key ones have new versions by default which use an object pipeline, and are displayed with a nice GUI view. In particular ls (aka dir) shows lists files and shows them in columns. You can sort by clicking on the column headers, double click on files to open, or double click on directories to move to that directory. The proc command allows you to right click on a process and one of the options is to kill it.</p> <p>Hotwire is cross platform (<a href="http://code.google.com/p/hotwire-shell/wiki/HotwireUnixLinux" rel="nofollow">Linux, BSD</a>, <a href="http://code.google.com/p/hotwire-shell/wiki/HotwireWindows" rel="nofollow">Windows</a>, <a href="http://code.google.com/p/hotwire-shell/wiki/HotwireMacOSX" rel="nofollow">Mac</a>), though it is at an early stage of development. To learn more, install (click on the link for your platform) and work through the simple <a href="http://code.google.com/p/hotwire-shell/wiki/GettingStarted0700" rel="nofollow">getting started</a> page.</p> <h3>Pash</h3> <p><a href="http://pash.sourceforge.net/" rel="nofollow">pash</a> (as mentioned by others) is an open source port of MS Powershell.</p> <h3>IPython</h3> <p><a href="http://ipython.scipy.org/moin/" rel="nofollow">IPython</a> is another object oriented pipeline based shell. I haven't used it, but there are interesting <a href="http://ipython.scipy.org/moin/UsingIPipe" rel="nofollow">examples using IPipe</a>.</p> <h3>Others</h3> <p>You could also look at the list of <a href="http://code.google.com/p/hotwire-shell/wiki/RelatedProjectsAndIdeas" rel="nofollow">related projects and ideas</a> maintained on the hotwire wiki.</p> <p><em>Note</em> Hotwire is the only one of the above I've used.</p> http://stackoverflow.com/questions/1727250/embedding-instead-of-inheritance-in-go/1756919#1756919 Comment by Hamish Downer on Embedding instead of inheritance in Go Hamish Downer 2009-11-20T17:47:28Z 2009-11-20T17:47:28Z In some ways, what is new in Go is what has been taken away - that is a key reason for a new language. If they were only adding features, it could have been C+++ ;) but to take away features (inheritance, pointer arithmetic, manual memory allocation) requires a new language. http://stackoverflow.com/questions/1739799/doesnt-the-fact-that-go-and-java-use-user-space-thread-mean-that-you-cant-reall/1740785#1740785 Comment by Hamish Downer on Doesn't the fact that Go and Java use User space thread mean that you can't really take advantage of multiple core? Hamish Downer 2009-11-20T17:35:53Z 2009-11-20T17:35:53Z Not true - it creates runtime.GOMAXPROCS OS threads to start with and then runs the goroutines on that thread. If a goroutine blocks it will then create another OS thread. http://stackoverflow.com/questions/54255/in-vim-is-there-a-way-to-delete-without-putting-text-in-the-register/56186#56186 Comment by Hamish Downer on In vim is there a way to delete without putting text in the register? Hamish Downer 2009-09-09T20:11:34Z 2009-09-09T20:11:34Z but deleting any significant amount of text in default mode is SLOW http://stackoverflow.com/questions/1399480/how-do-touch-typists-navigate-in-vi/1399513#1399513 Comment by Hamish Downer on How do touch typists navigate in vi? Hamish Downer 2009-09-09T20:06:13Z 2009-09-09T20:06:13Z For those getting stuck on the escape key - <a href="http://stackoverflow.com/questions/397229/reaching-up-to-hit-the-escape-key-sucks-especially-in-vim" rel="nofollow" title="reaching up to hit the escape key sucks especially in vim">stackoverflow.com/questions/397229/&hellip;</a> http://stackoverflow.com/questions/294613/does-any-ide-have-a-vi-keybindings-options/294634#294634 Comment by Hamish Downer on Does any IDE have a vi keybindings options? Hamish Downer 2009-09-09T19:49:36Z 2009-09-09T19:49:36Z Mostly we want to be able to do all our editing without moving our hands from the home row - no going to cursor keys, no page up/page down keys, and no mouse usage. And we want to be able to navigate the files really efficiently. http://stackoverflow.com/questions/1219008/what-is-the-shortest-way-of-inserting-a-variable-into-text-with-php/1219019#1219019 Comment by Hamish Downer on What is the shortest way of inserting a variable into text with PHP? Hamish Downer 2009-08-02T18:32:00Z 2009-08-02T18:32:00Z That's great :) Thank you http://stackoverflow.com/questions/1219008/what-is-the-shortest-way-of-inserting-a-variable-into-text-with-php/1219019#1219019 Comment by Hamish Downer on What is the shortest way of inserting a variable into text with PHP? Hamish Downer 2009-08-02T17:40:18Z 2009-08-02T17:40:18Z can you say why using short_open_tag is not considered good practice? The article you link to says it can conflict with xml - is that the only reason or are there others? http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/952931#952931 Comment by Hamish Downer on What's your favorite "programmer" cartoon? Hamish Downer 2009-08-02T13:20:51Z 2009-08-02T13:20:51Z oops, I'm sure I looked through for it before adding it, but maybe my eyes glazed over at some point ... http://stackoverflow.com/questions/11362/what-is-your-favorite-password-storage-tool/11378#11378 Comment by Hamish Downer on What is your favorite password storage tool? Hamish Downer 2009-07-15T17:15:01Z 2009-07-15T17:15:01Z Recommended by Bruce Schneier?!? - it was written by him. http://stackoverflow.com/questions/29736/what-open-source-hosting-service-should-i-use Comment by Hamish Downer on What open source hosting service should I use? Hamish Downer 2009-07-01T20:12:10Z 2009-07-01T20:12:10Z Unless I'm missing something, bzr is a VCS, not a hosting service. The launchpad hosting service uses bzr though. http://stackoverflow.com/questions/74625/what-is-the-best-way-to-force-yourself-to-master-vi/75545#75545 Comment by Hamish Downer on What is the best way to force yourself to master vi? Hamish Downer 2009-05-07T12:43:12Z 2009-05-07T12:43:12Z emacs is ubiquitous!?!? Not on a default server install it isn't ... http://stackoverflow.com/questions/826208/making-vim-ubiquitous/826223#826223 Comment by Hamish Downer on Making Vim ubiquitous? Hamish Downer 2009-05-05T18:29:11Z 2009-05-05T18:29:11Z @Chad Birch: If you look at the preferences for It's All Text, you'll see there is a &quot;Hot Key&quot; preference that allows you to set a keyboard shortcut. I use Ctrl-E http://stackoverflow.com/questions/75652/is-there-a-firefox-add-on-to-use-vim-to-edit-textboxes/75672#75672 Comment by Hamish Downer on Is there a Firefox add-on to use vim to edit textboxes? Hamish Downer 2009-05-05T17:57:44Z 2009-05-05T17:57:44Z Once you have the cursor in a text box, hit Ctrl-I to open in your editor, which defaults to gvim. http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/291315#291315 Comment by Hamish Downer on What are your favorite Vim tricks? Hamish Downer 2009-05-05T17:11:22Z 2009-05-05T17:11:22Z The buffer explorer script is also great. See <a href="http://vim.sourceforge.net/scripts/script.php?script_id=42" rel="nofollow">vim.sourceforge.net/scripts/&hellip;</a> http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/727943#727943 Comment by Hamish Downer on What are the dark corners of Vim your mom never told you about? Hamish Downer 2009-05-05T16:38:56Z 2009-05-05T16:38:56Z Summary - it allows ctags autocomplete from the bash prompt for opening files with vim.