User Charles Roper - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T21:58:18Zhttp://stackoverflow.com/feeds/user/1944http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read242What non-programming books should programmers read?Charles Roper2008-09-01T17:52:58Z2009-12-22T13:14:31Z
<p>This is a <a href="http://stackoverflow.com/questions/tagged/polls">poll</a> asking the Stackoverflow community what <strong>non-programming</strong> books they would recommend to fellow programmers.</p>
<h2>Please read the following before posting:</h2>
<ul>
<li><p>Please post only <strong>ONE BOOK PER ANSWER</strong>.</p></li>
<li><p>Please <strong>search for your recommendation on this page before posting (there are over NINE PAGES so it is advisable to check them all)</strong>. Many books have already been suggested and we want to avoid duplicates. If you find your recommendation is already present, vote it up or add some commentary.</p></li>
<li><p>Please <strong>elaborate on <em>why</em> you think a given book is worth reading</strong> from a programmer's perspective.</p></li>
</ul>
<p>This poll is now community editable, so you can edit this question or any of the answers.</p>
<p><strong>Note:</strong> <a href="http://stackoverflow.com/questions/31274/best-non-development-book-for-software-developers">this article</a> is similar and contains other useful suggestions.</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension4sqlite3-ruby gem: Failed to build gem native extensionCharles Roper2008-09-04T13:40:19Z2009-12-21T15:11:06Z
<p><strong>Update:</strong> Check out this follow-up question: <a href="http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken"><strong>Gem Update on Windows - is it broken?</strong></a></p>
<p><hr /></p>
<p>On Windows, when I do this:</p>
<pre><code>gem install sqlite3-ruby
</code></pre>
<p>I get the following error:</p>
<pre><code>Building native extensions. This could take a while...
ERROR: Error installing sqlite3-ruby:
ERROR: Failed to build gem native extension.
c:/ruby/bin/ruby.exe extconf.rb install sqlite3-ruby --platform Win32
checking for fdatasync() in rt.lib... no
checking for sqlite3.h... no
nmake
'nmake' is not recognized as an internal or external command,
operable program or batch file.
Gem files will remain installed in c:/ruby/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.2.4 for inspection.
Results logged to c:/ruby/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.2.4/ext/sqlite3_api/gem_make.out
</code></pre>
<p><strong>Same thing happens with the hpricot gem</strong>. I seem to remember these gems installed just fine on < 1.0 gems, but now I'm on 1.2.0, things have gone screwy.</p>
<p>I have also tried this:</p>
<pre><code>gem install sqlite3-ruby --platform Win32
</code></pre>
<p>Needless to say, this doesn't work either (same error)</p>
<p>Does anyone know what is going on here and how to fix this?</p>
<p><hr /></p>
<p><strong>Update:</strong> Check out this follow-up question: <a href="http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken"><strong>Gem Update on Windows - is it broken?</strong></a></p>
http://stackoverflow.com/questions/48555/best-way-to-compress-html-css-js-with-moddeflate-and-modgzip-disabled3Best way to compress HTML, CSS & JS with mod_deflate and mod_gzip disabledCharles Roper2008-09-07T16:23:12Z2009-12-20T22:22:56Z
<p>I have a few sites on a shared host that is running Apache 2. I would like to compress the HTML, CSS and Javascript that is delivered to the browser. The host has disabled mod_deflate and mod_gzip, so these options are out. I do have PHP 5 at my disposal, though, so I could use the gzip component of that.</p>
<p>I am currently placing the following in my .htaccess file:</p>
<blockquote>
<p>php_value output_handler ob_gzhandler</p>
</blockquote>
<p>However, this only compresses the HTML and leaves out the CSS and JS.</p>
<p>Is there a reliable way of transparently compressing the output of the CSS and JS without having to change every page? I have searched Google and a number of solutions are presented, but I've yet to get one to work. If anyone could suggest a solution that they know to work, that would be very gratefully received.</p>
<p>Note, <strong>Method 2</strong> in <strong><a href="http://www.fiftyfoureleven.com/weblog/web-development/css/the-definitive-css-gzip-method" rel="nofollow">The Definitive Post on Gzipping your CSS</a></strong> looks like a good solution, but I couldn't get it working. Has anyone else succeeded using this method?</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/38227#38227253Answer by Charles Roper for What non-programming books should programmers read?Charles Roper2008-09-01T18:01:31Z2009-12-14T19:08:52Z<h2><a href="http://rads.stackoverflow.com/amzn/click/1439167346" rel="nofollow">How to Win Friends and Influence People</a></h2>
<p>by Dale Carnegie</p>
<p><img src="http://g-ecx.images-amazon.com/images/G/01/ciu/38/3c/0432c6da8da0f79a93332110.%5FAA240%5F.L.jpg" alt="How to Win Friends and Influence People"></p>
<p>Although this was first published in 1936, the advice contained within is still as fresh and appropriate as ever. Don't be put off by the name. This isn't some underhand guide to having your way with unsuspecting victims, but rather common sense advice on how to get on with people, how to nurture relationships and make the most of yourself and your fellow man (and woman).</p>
<p>It is well known that technical folk (including programmers) are often thought of as not being terribly 'people oriented' (whether this is a justified stereotype or not is subject of another discussion) and so this book is an invaluable resource for teaching you the finer points of human interaction.</p>
<p>It's warm, heartfelt, sturdy, straightforward and timelessly written. Highly recommended.</p>
http://stackoverflow.com/questions/49664/sources-of-inspiration-for-navigation-breadcrumbs7Sources of inspiration for navigation breadcrumbsCharles Roper2008-09-08T13:07:58Z2009-12-02T12:34:48Z
<p>I'm looking for sources of inspiration and/or design patterns for navigation 'breadcrumbs'. So far I have found the <a href="http://patterntap.com/tap/collection/breadcrumbs" rel="nofollow">breadcrumb collection on Pattern Tap</a>. Does anyone know of any other sources?</p>
http://stackoverflow.com/questions/49664/sources-of-inspiration-for-navigation-breadcrumbs/1821596#18215960Answer by Charles Roper for Sources of inspiration for navigation breadcrumbsCharles Roper2009-11-30T18:40:14Z2009-11-30T18:40:14Z<p><a href="http://web-patterns.net/category/breadcrumbs/" rel="nofollow">Web & Patterns breadcrumbs category</a></p>
<p>"Inspirational and creative Breadcrumbs for web design"</p>
http://stackoverflow.com/questions/1346716/firefox-auto-refresh-on-file-change1Firefox auto-refresh on file changeCharles Roper2009-08-28T12:29:52Z2009-11-30T18:29:25Z
<p>Does anyone know of an extension for Firefox, or a script or some other mechanism, that can monitor one or more local files. Firefox would auto-refresh or otherwise updated its canvas when it detected a change (of timestamp) in the files(s).</p>
<p>For editing CSS, it would be ideal if just the CSS could be reloaded, rather than a full HTML re-render.</p>
<p>For dynamic files, one could programatically touch a stub file, which could be monitored as a proxy for changes in dynamic content.</p>
<p>Effectively it would enable similar behaviour to Firebug with its dynamic HTML/CSS editing, only through external files.</p>
<p>Thoughts, suggestions, ideas? Possible? Pie-in-the-sky?</p>
http://stackoverflow.com/questions/620247/how-do-i-fix-incorrect-inline-javascript-indentation-in-vim3How do I fix incorrect inline Javascript indentation in Vim?Charles Roper2009-03-06T20:13:33Z2009-10-30T23:28:42Z
<p>I can't seem to get inline Javascript indenting properly in Vim. Consider the following:</p>
<pre><code> $(document).ready(function() {
// Closing brace correctly indented
$("input").focus(function() {
$(this).closest("li").addClass("cur-focus");
}); // <-- I had to manually unindent this
// Closing brace incorrectly indented
$("input").blur(function() {
$(this).closest("li").removeClass("cur-focus");
}); // <-- This is what it does by default. Argh!
});
</code></pre>
<p>Vim seems to insist on automatically indenting the closing brace shown in the second case there. It does the same if I re-indent the whole file. How do I get it to automatically indent using the more standard JS indenting style seen in the first case?</p>
http://stackoverflow.com/questions/620247/how-do-i-fix-incorrect-inline-javascript-indentation-in-vim/620361#6203615Answer by Charles Roper for How do I fix incorrect inline Javascript indentation in Vim?Charles Roper2009-03-06T20:47:14Z2009-10-30T23:28:42Z<p>I found the answer. The following indent file fixed the problem with inline Javascript:</p>
<p><a href="http://www.vim.org/scripts/script.php?script%5Fid=1830" rel="nofollow">html improved indentation : A better indentation for HTML and embedded javascript</a></p>
<p>And this one fixed the problem with a pure Javascript file:</p>
<p><a href="http://www.vim.org/scripts/script.php?script%5Fid=1936" rel="nofollow">OOP javascript indentation : This indentation script for OOP javascript (especially for EXTJS)</a> </p>
http://stackoverflow.com/questions/1543293/textmate-toggle-collapse-expand-css-rule-command3Textmate toggle collapse/expand CSS rule command?Charles Roper2009-10-09T11:44:05Z2009-10-10T16:47:44Z
<p>Does anyone know of a <strong>command</strong> (not a macro) for <a href="http://macromates.com/" rel="nofollow">Textmate</a> / <a href="http://e-texteditor.com/" rel="nofollow">E Text Editor</a> / <a href="http://redcareditor.com/" rel="nofollow">Redcar</a> / <em>etc</em>. that will collapse a multi-line CSS rule down to one line <strong>OR</strong>, if the rule is already on one line, expand it out to multi-line? I already know about code folding and that's not what I require - I need to be able to toggle the rules between single and multi-line and have them be edited and saved like that.</p>
<p>For example, if I have this:</p>
<pre><code>h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
</code></pre>
<p>I would like to be able to place my cursor anywhere within the rule, hit a keyboard shortcut and it would turn into this:</p>
<pre><code>h1 {
font-size:3em;
line-height:1;
margin-bottom:0.5em;
}
</code></pre>
<p>On hitting the shortcut again, it would convert back into single-line.</p>
<p>Does anything like this exist? Does anyone have any code that does something similar I could repurpose (ideally Ruby)? Does anyone know if this is even possible in Textmate?</p>
<p><strong>Update</strong>: it seems that CSS rule collapsing and expanding is <a href="http://svn.textmate.org/trunk/Bundles/CSS.tmbundle/Macros/" rel="nofollow">implemented as a pair of macros</a> in Textmate. However, this isn't toggling and it also doesn't work in E Text Editor (which doesn't support macros). Not sure whether it works in Redcar. Is it possible to implement something similar as a command that can do toggling?</p>
http://stackoverflow.com/questions/1543293/textmate-toggle-collapse-expand-css-rule-command/1548445#15484451Answer by Charles Roper for Textmate toggle collapse/expand CSS rule command?Charles Roper2009-10-10T16:47:44Z2009-10-10T16:47:44Z<p>I ended up creating my own command to do this. <a href="http://code.google.com/p/ebundles/source/browse/trunk/Bundles/CSS.tmbundle/Commands/Toggle+Single-line+and+Multi-line.tmCommand?spec=svn270&r=270" rel="nofollow">Grab it here</a>.</p>
<p>There is a limitation in that for the command to work, the cursor has to be in whitespace within a rule declaration; i.e., not in a property/value pair scope. I've found placing the cursor just inside the opening brace to be a good place to trigger the command from.</p>
<p>If anyone knows how to select a parent scope that would be neat.</p>
http://stackoverflow.com/questions/164896/limitations-in-running-ruby-rails-on-windows/166548#16654825Answer by Charles Roper for Limitations in running Ruby/Rails on windowsCharles Roper2008-10-03T12:20:59Z2009-10-10T12:12:24Z<p><strong>Update</strong>: <em>Fabio Akita over on AkitaOnRails has posted an excellent article titled <a href="http://akitaonrails.com/2009/1/13/the-best-environment-for-rails-on-windows#commentform" rel="nofollow"><strong>The Best Environment for Rails on Windows</strong></a>. It is a walkthrough for creating a robust Windows-based Rails development platform.</em></p>
<p>Here's an overview of the issues with Rails on Windows:</p>
<ul>
<li>Ruby and Rails are relatively slow on Windows</li>
<li>Certain gems and libraries don't work on Windows (<a href="http://www.espace.com.eg/neverblock/" rel="nofollow">example</a>)</li>
<li>Fixed: <strike>Gems itself is currently <a href="http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken">broken on Windows</a> (although I suspect this will be fixed)</strike></li>
<li>The community is mostly on either Mac or Linux (<em>This is a particularly hard one to deal with; nobody wants to be alone, scratching out their time surviving on one island when the rest of the tribe are partying and generally having fun and getting along great over on the other island. Community is important. It seems that most Windows developers that start with Rails rather quickly switch to a Mac or Linux.</em>)</li>
<li><strike>Deploying Rails is hard enough already on a *nix based server (there are <a href="http://pragprog.com/titles/fr%5Fdeploy/deploying-rails-applications" rel="nofollow">whole books</a> written about it and <a href="http://groups.google.com/group/rubyonrails-deployment" rel="nofollow">groups dedicated to it</a>); deploying on Windows is even harder. Most (all?) Rails hosts are *nix based and deploying from Windows to a *nix server can be another step up the pain ladder.</strike> Deploying on *nix is now quite easy thanks to <a href="http://www.modrails.com/" rel="nofollow">Phusion Passenger</a>. Unfortunately, it's not available for Windows, and is <a href="http://bitnami.org/forums/forums/2/topics/477" rel="nofollow">likely never to be</a>. That's not really a problem, though, if you just stick to using Mongrel on your local Windows dev machine.</li>
</ul>
<p>If you want more technical detail, the following are required reading:</p>
<ul>
<li><a href="http://blog.mmediasys.com/2008/01/17/ruby-for-windows-part-1/" rel="nofollow">Ruby for Windows - Part 1</a></li>
<li><a href="http://blog.mmediasys.com/2008/03/06/is-windows-a-supported-platform-for-ruby-i-guess-not/" rel="nofollow">Is Windows a supported platform for Ruby? I guess not</a></li>
<li><a href="http://www.akitaonrails.com/2008/7/21/testing-the-new-one-click-ruby-installer-for-windows" rel="nofollow">Testing the new One-Click Ruby Installer for Windows</a></li>
<li><a href="http://www.akitaonrails.com/2008/7/26/still-playing-with-ruby-on-windows" rel="nofollow">Still playing with Ruby on Windows</a></li>
<li><a href="http://www.akitaonrails.com/2008/7/2/chatting-with-luis-lavena-ruby-on-windows" rel="nofollow">Chatting with Luis Lavena (Ruby on Windows)</a></li>
</ul>
<p>Choice quote from that last one is:</p>
<blockquote>
<p><strong>AkitaOnRails:</strong> The most obvious thing is that any Gem with C Extensions without proper binaries for Windows will fail. Trying to execute shell commands will fail and RubyInline as well. What else?</p>
<p><strong>Luis Lavena:</strong> Hehe, that's just the tip of the iceberg</p>
</blockquote>
<p>Having said all that, I don't find developing with Rails on Windows <em>too</em> painful. Using Ruby is, for the most part, a pleasure. I'd avoid InstantRails because, to be frank, it's just as easy to install Ruby properly using the one-click installer, then doing a <code>gem insall rails</code>. If you need Apache and MySQL, <a href="http://www.wampserver.com" rel="nofollow">WAMP</a> is a good bet, although even these aren't required if you just stick with Mongrel and SQLite.</p>
<p>What I've taken to doing recently is running <a href="http://www.virtualbox.org/" rel="nofollow">VirtualBox</a> with an instance of Ubuntu Server that closely mirrors the deployment server. I map a network drive to the Ubuntu Server, then I edit and run my code directly on the VM. It uses hardly any memory (it's currently using ~43MB; contrast that with Firefox, which is using ~230MB) and Rails actually performs better than running it natively on Windows. Plus you can experiment with your virtual server in relative safety. It's a really nice setup, I highly recommend it.</p>
<p>Finally, here are a couple of Ruby/Rails blogs aimed at Windows users:</p>
<ul>
<li><a href="http://www.softiesonrails.com/" rel="nofollow">Softies on Rails</a></li>
<li><a href="http://rubyonwindows.blogspot.com/" rel="nofollow">Ruby On Windows</a></li>
</ul>
<p><em>BTW, this is the third time I've written this; the first time I lost everything because I had managed to tab out of the textarea and I then hit backspace, which took me back a page which, in turn, lost everything I had written. The second time, when I hit Post Your Answer, I got the "StackOverflow is down for Maintenance" message. On clicking back my post had once again disappeared. AAARGH!!</em></p>
http://stackoverflow.com/questions/594838/is-it-possible-to-get-gvim-to-remember-window-size8Is it possible to get gVim to remember window size?Charles Roper2009-02-27T13:53:05Z2009-10-07T23:53:53Z
<p>I know how to <a href="http://vim.wikia.com/wiki/Maximize%5For%5Fset%5Finitial%5Fwindow%5Fsize" rel="nofollow">set the initial window size</a> in gVim, but how do I get it to automatically restore the window dimensions from last session? Is this even possible?</p>
http://stackoverflow.com/questions/85459/is-it-possible-to-combine-a-series-of-pdfs-into-one-using-ruby3Is it possible to combine a series of PDFs into one using Ruby?Charles Roper2008-09-17T17:10:02Z2009-09-17T03:11:35Z
<p>I have a series of PDFs named sequentially like so:</p>
<ul>
<li>01_foo.pdf</li>
<li>02_bar.pdf</li>
<li>03_baz.pdf</li>
<li>etc.</li>
</ul>
<p>Using Ruby, is it possible to combine these into one big PDF while keeping them in sequence? I don't mind installing any necessary gems to do the job.</p>
<p>If this isn't possible in Ruby, how about another language? No commercial components, if possible.</p>
<p><hr /></p>
<p><strong>Update:</strong> <a href="http://stackoverflow.com/questions/85459/is-it-possible-to-combine-a-series-of-pdfs-into-one-using-ruby#85618">Jason Navarrete's suggestion</a> lead to the perfect solution:</p>
<p>Place the PDF files needing to be combined in a directory along with <a href="http://www.accesspdf.com/pdftk/" rel="nofollow">pdftk</a> (or make sure pdftk is in your PATH), then run the following script:</p>
<pre><code>pdfs = Dir["[0-9][0-9]_*"].sort.join(" ")
`pdftk #{pdfs} output combined.pdf`
</code></pre>
<p>Or I could even do it as a one-liner from the command-line:</p>
<pre><code>ruby -e '`pdftk #{Dir["[0-9][0-9]_*"].sort.join(" ")} output combined.pdf`'
</code></pre>
<p>Great suggestion Jason, perfect solution, thanks. <strong>Give him an up-vote people</strong>.</p>
http://stackoverflow.com/questions/1417915/how-do-i-control-rexml-formatting-on-added-elements0How do I control REXML formatting on added elements?Charles Roper2009-09-13T14:52:11Z2009-09-16T19:00:16Z
<p>I am a adding a couple of simple elements to a bunch of XML files (plists). The existing XML element I am working on looks like this:</p>
<pre><code><dict>
<key>background</key>
<string>#FFFFFF</string>
<key>caret</key>
<string>#000000</string>
<key>foreground</key>
<string>#000000</string>
<key>invisibles</key>
<string>#BFBFBF</string>
<key>lineHighlight</key>
<string>#00000012</string>
<key>selection</key>
<string>#BAD6FD</string>
</dict>
</code></pre>
<p>I have captured this element in an object called <code>settings</code> and I am adding new <code><key></code> and <code><string></code> elements, and adding some text to those elements. Simple enough so far:</p>
<pre><code>settings.add_element('key').add_text('gutter')
settings.add_element('string').add_text('#282828')
</code></pre>
<p>Trouble is, when I write this back out, the XML looks like this (note the last line):</p>
<pre><code><dict>
<key>background</key>
<string>#FFFFFF</string>
<key>caret</key>
<string>#000000</string>
<key>foreground</key>
<string>#000000</string>
<key>invisibles</key>
<string>#BFBFBF</string>
<key>lineHighlight</key>
<string>#00000012</string>
<key>selection</key>
<string>#BAD6FD</string>
<key>gutter</key><string>#282828</string></dict>
</code></pre>
<p>I am using the <a href="http://www.germane-software.com/software/XML/rexml/doc/classes/REXML/Document.html#M000502" rel="nofollow"><code>write (REXML::Document)</code></a> method to write out the XML (to $stdout at the moment):</p>
<pre><code>tmtheme.write( $stdout )
</code></pre>
<p>Also tried</p>
<pre><code>tmtheme.write( $stdout, 2 )
</code></pre>
<p>But these don't return the desired results. The following looked promising:</p>
<pre><code>tmtheme.write( $stdout, 2, true )
</code></pre>
<p>But this gives me a <a href="http://trac.germane-software.com/rexml/ticket/170" rel="nofollow">known error</a>. Update: just tried it on Ruby 1.9 and although I don't get the erro, it doesn't help - I still get the formatting as seen in the example above.</p>
<p>Can anyone tell me how I can format the XML so that it conforms to the formatting style of the rest of the document? It doesn't necessarily need to be done with REXML.</p>
http://stackoverflow.com/questions/1417915/how-do-i-control-rexml-formatting-on-added-elements/1434870#14348700Answer by Charles Roper for How do I control REXML formatting on added elements?Charles Roper2009-09-16T19:00:16Z2009-09-16T19:00:16Z<p>Robert Klemme and Aaron Patterson <a href="http://www.ruby-forum.com/topic/195353" rel="nofollow">came up with the goods</a> on the ruby-talk list.</p>
<p>This is the first time a question I've posed on SoF has drawn a complete blank.</p>
http://stackoverflow.com/questions/704431/open-company-what-advice-would-you-give5Open Company: what advice would you give?Charles Roper2009-04-01T07:38:48Z2009-09-14T20:22:06Z
<p>Alexander Stigsen, author of <a href="http://e-texteditor.com/" rel="nofollow">E Text Editor</a> is starting an ambitious project - called Open Company - in an attempt to combine the culture of open source software, with the remuneration of commercial. </p>
<p><strong><a href="http://e-texteditor.com/blog/2009/opencompany" rel="nofollow">Read the blog post announcing Open Company</a>.</strong></p>
<p>Like I say, it's ambitious, but laudable, I am sure you'll agree.</p>
<p><strong>My question to the community is: what advice would you give?</strong> I think it would be interesting to get a feel for what the burning issues and pitfalls are. Also, suggested reading, resources and research could be useful. I've already suggested reading <a href="http://producingoss.com/" rel="nofollow">Producing Open Source Software</a>.</p>
<p>Edit: there has been some debate as to whether the code of E Text Editor will be open source or not. To answer that, yes <a href="http://e-texteditor.com/forum/viewtopic.php?p=12764#12764" rel="nofollow">it <strong>will</strong> be open to everyone</a> to download and modify, thus it will be open source. But it will also still be copyright and the product itself will not be freely distributable, so thus it will not be "Open Source" as <a href="http://en.wikipedia.org/wiki/Open%5FSource%5FDefinition" rel="nofollow">defined by the OSI</a>.</p>
<p><strong>Update:</strong> The <a href="http://github.com/blog/401-e-text-editor-on-github" rel="nofollow">source is now available on Github</a>, if you're interested.</p>
http://stackoverflow.com/questions/1208513/passing-options-to-haml-on-the-command-line1Passing options to Haml on the command lineCharles Roper2009-07-30T18:37:33Z2009-09-11T17:45:25Z
<p>I'm using Haml from the command-line to do a basic transform of one .haml file to .html, like this:</p>
<pre><code>> haml input.haml output.html
</code></pre>
<p>Thing is, this produces single-quotes around attributes in the resulting HTML. So how to I pass in the <code>:attr_wrapper => '"'</code> option from the command-line?</p>
<p>Alternatively, can I just globally set <code>:attr_wrapper</code> to a double-quote?</p>
http://stackoverflow.com/questions/1208513/passing-options-to-haml-on-the-command-line/1208773#12087732Answer by Charles Roper for Passing options to Haml on the command lineCharles Roper2009-07-30T19:26:27Z2009-09-11T17:45:25Z<p>What I've ended up doing is adding the following to haml/exec.rb at ~line 302</p>
<pre><code> opts.on('-q', '--double-quote-attribs',
'Set attribute wrapper to double-quotes (default is single).') do
@options[:for_engine][:attr_wrapper] = '"'
end
</code></pre>
<p>This adds a dedicated option to do what I need.</p>
<p>I'm not quite sure what the rationale for using single-quotes by default is; double-quotes would make a more sensible default, I would have thought. Having said that, they are perfectly valid.</p>
<p>I submitted this update as a <a href="http://github.com/nex3/haml/commit/a675bb7b4541b35e0a86da4230716330ea754464" rel="nofollow">patch</a> and it'll be included in version 2.4</p>
http://stackoverflow.com/questions/44105/is-performant-a-valid-word-whats-the-alternative11Is "performant" a valid word? What's the alternative?Charles Roper2008-09-04T16:17:55Z2009-09-11T11:44:05Z
<p>Given that <a href="http://weblogs.asp.net/jgalloway/archive/2007/05/10/performant-isn-t-a-word.aspx" rel="nofollow"><em>performant</em> isn't officially a real word</a>, what is an appropriate alternative term for expressing "something that performs well"? So, instead of saying something like,</p>
<blockquote>
<p>This iteration of the SQL query is particularly performant.</p>
</blockquote>
<p>What would you say instead?</p>
<p>Or how about:</p>
<blockquote>
<p>We're going to go with the most performant, yet ugly, code.</p>
</blockquote>
<p>Or this:</p>
<blockquote>
<p>Then there's V8, a particularly perfomant new Javascript engine.</p>
</blockquote>
<p>To me, saying <em>well-performing</em> instead of <em>performant</em> feels ugly, inelegant and inefficient. Stylistically, and subjectively, I prefer the look and sound of performant.</p>
<p>So, should we just go ahead and use the word? After all, the beauty of the English language is that it is not set in stone and does indeed evolve at a fairly rapid pace.</p>
<p>I realise this question may not be strictly about programming, but I've only ever heard the term used by programmers or technical writers in a technical context. So I wanted to hear the perspective of a programming community, rather than a language community. I also thought it might be a decent experiment to ask this sort of question during the beta period.</p>
<p>Note, I personally voted-up some of the better counter-arguments, even though I agree with the argument of @harpo, whose answer I accepted. I think it's important for people to vote-up thoughtful, well reasoned answers, rather than just up-voting opinions they agree with, and down-voting opinions they disagree with.</p>
<p><strong>Update: Stephen Fry has published a podcast discussing language and the use of new words:
<a href="http://www.stephenfry.com/media/audio/109/series-2-episode-3--language/" rel="nofollow">Stephen Fry's Podgrams Series 2 Episode 3, Language</a>
Interesting to anyone with an interest in this sort of thing.</strong></p>
http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken6Gem update on Windows - is it broken?Charles Roper2008-09-25T17:06:36Z2009-08-24T15:16:49Z
<p>This is a follow-up to <a href="http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension">this question</a>.</p>
<p>When I issue the <strong><code>gem update</code></strong> command on Windows, whenever it gets to a
gem whose latest version DOESN'T have Windows binaries, it'll attempt to
build the native extension which will, of course, fail. For example:</p>
<pre><code>Updating sqlite3-ruby
Building native extensions. This could take a while...
ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError)
ERROR: Failed to build gem native extension.
c:/ruby/bin/ruby.exe extconf.rb update
checking for fdatasync() in rt.lib... no
checking for sqlite3.h... no
nmake
'nmake' is not recognized as an internal or external command,
operable program or batch file.
</code></pre>
<p>The old pre-1.x behavior of asking for the required platform at least
made updating possible. Now I can't update at all unless I uninstall the
troublesome gems (currently sqlite3-ruby and hpricot), run the update,
then re-install the gems using the --version switch.</p>
<p>Does anyone have a solution to this conundrum or are we stuck with it?</p>
<p><hr /></p>
<p><strong>Note:</strong></p>
<pre><code>$ gem -v
1.2.0
$ ruby -v
ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32]
</code></pre>
<p><hr /></p>
<p><strong>Note (26 September 2008):</strong> I just updated to gems 1.3.0 and this problem persists.</p>
<p><strong>Note (18 November 2008):</strong> Just updated to gems 1.3.1 and the problem persists.</p>
<p><strong>Note (28 April 2009):</strong> The latest version of Gems (<a href="http://blog.segment7.net/articles/2009/04/15/rubygems-1-3-2" rel="nofollow">1.3.2</a>) now skips any gems where building of native extensions fails during update; in other words, the problem is fixed. Hooray!</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/103774#1037741Answer by Charles Roper for What non-programming books should programmers read?Charles Roper2008-09-19T17:11:45Z2009-08-21T19:33:37Z<h2><a href="http://en.wikipedia.org/wiki/The%5FEvolution%5Fof%5FCooperation" rel="nofollow">The Evolution of Cooperation</a></h2>
<p>by Robert Axelrod</p>
<p><img src="http://ecx.images-amazon.com/images/I/51tB9I7p9OL.%5FSL500%5FAA240%5F.jpg" alt="cover" /></p>
<p>How to work effectively with people in a competitive work place. A bit dry and academic, but it has loads of useful information.</p>
<p><em>Originally taken from @John Channing's post</em></p>
<p><em>Comments by <a href="http://stackoverflow.com/users/53013/daniel">Daniel</a></em>:<br />
I'm not sure I can express why I think this book is important. It has to do with logic and philosophy, which are both important to programmers if they mean to grasp the harder concepts. Also, it's a good mental exercise. Finally, required reading for any work on multi-agent systems.</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/103881#1038818Answer by Charles Roper for What non-programming books should programmers read?Charles Roper2008-09-19T17:26:17Z2009-08-21T18:32:32Z<p>Dale Carnegie - <a href="http://en.wikipedia.org/wiki/How%5Fto%5FStop%5FWorrying%5Fand%5FStart%5FLiving" rel="nofollow">How to Stop Worrying and Start Living</a>.</p>
<p>If you have read How to Win Friends, this should be next.</p>
<p><em>Originally taken from @John Channing's post.</em></p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/103860#10386011Answer by Charles Roper for What non-programming books should programmers read?Charles Roper2008-09-19T17:23:15Z2009-08-21T18:28:47Z<p>Nassim Taleb - <a href="http://www.fooledbyrandomness.com/" rel="nofollow">The Black Swan and Fooled By Randomness</a>.</p>
<p>Explains the role of randomness in our lives and how humans tend to see patterns that don't really exist.</p>
<p><em>Originally taken from @John Channing's post.</em></p>
http://stackoverflow.com/questions/1138914/where-can-i-find-documentation-for-excels-pictures-collection1Where can I find documentation for Excel's Pictures collection?Charles Roper2009-07-16T16:55:31Z2009-07-17T03:06:36Z
<p>I have seen <a href="http://www.google.com/search?q=excel+Pictures.Insert" rel="nofollow">many references</a> to doing something like the following to insert a picture in Excel:</p>
<pre><code>Set p = ActiveSheet.Pictures.Insert(PathToPicture)
</code></pre>
<p>Where can I find the canonical documentation for this?</p>
http://stackoverflow.com/questions/16568/how-to-select-the-nth-row-in-a-sql-database-table16How to select the nth row in a SQL database table?Charles Roper2008-08-19T17:13:11Z2009-07-09T15:00:46Z
<p>I'm interested in learning some (ideally) database agnostic ways of selecting the <em>n</em>th row from a database table. It would also be interesting to see how this can be achieved using the native functionality of the following databases: </p>
<ul>
<li>SQL Server</li>
<li>MySQL</li>
<li>PostgreSQL</li>
<li>SQLite</li>
<li>Oracle</li>
</ul>
<p>I am currently doing something like the following in SQL Server 2005, but I'd be interested in seeing other's more agnostic approaches:</p>
<pre>WITH Ordered AS (
SELECT ROW_NUMBER() OVER (ORDER BY OrderID) AS RowNumber, OrderID, OrderDate
FROM Orders)
SELECT *
FROM Ordered
WHERE RowNumber = 1000000</pre>
<p>Credit for the above SQL: <a href="http://weblogs.asp.net/Firoz/archive/2005/06/12/411949.aspx" rel="nofollow">Firoz Ansari's Weblog</a></p>
<p><strong>Update:</strong> See <a href="http://beta.stackoverflow.com/questions/16568/how-to-select-the-nth-row-in-a-sql-database-table#42765" rel="nofollow">Troels Arvin's answer</a> regarding the SQL standard. <em>Troels, have you got any links we can cite?</em></p>
http://stackoverflow.com/questions/39536/how-to-download-a-live-mysql-db-into-a-local-test-db-on-demand-without-ssh3How to download a live MySQL db into a local test db on demand, without SSH?Charles Roper2008-09-02T13:42:16Z2009-05-20T06:36:26Z
<p>I have a fairly small MySQL database (a Textpattern install) on a server that I do not have SSH access to (I have FTP access only). I need to regularly download the live database to my local dev server on demand; i.e., I would like to either run a script and/or have a cron job running. What are some good ways of doing this?</p>
<p>Some points to note:</p>
<ul>
<li>Live server is running Linux, Apache 2.2, PHP 5.2 and MySQL 4.1</li>
<li>Local server is running the same (so using PHP is an option), but the OS is Windows</li>
<li>Local server has Ruby on it (so using Ruby is a valid option)</li>
<li>The live MySQL db <em>can</em> accept remote connections from different IPs</li>
<li>I cannot enable replication on the remote server</li>
</ul>
<p><strong><em>Update:</em></strong> I've accepted BlaM's answer; it is beautifully simple. Can't believe I didn't think of that. There was one problem, though: I wanted to automate the process, but the proposed solution prompts the user for a password. Here is a slightly modified version of the mysqldump command that passes in the password:</p>
<p><code>mysqldump -u USER --password=MYPASSWORD DATABASE_TO_DUMP -h HOST > backup.sql</code></p>
http://stackoverflow.com/questions/496277/git-error-fatal-unable-to-connect-a-socket-invalid-argument9Git error: fatal: unable to connect a socket (Invalid argument)Charles Roper2009-01-30T16:54:32Z2009-05-13T19:06:34Z
<p>I've got msysGit (Git on Windows) working just fine on my home machine, but at work, where we are behind a Microsoft ISA proxy, I get the following error when I do a git clone:</p>
<pre><code>H:\>git clone git://github.com/akitaonrails/vimfiles.git
Initialized empty Git repository in H:/vimfiles/.git/
github.com[0: 65.74.177.129]: errno=Invalid argument
fatal: unable to connect a socket (Invalid argument)
</code></pre>
<p>I've tried setting the http_proxy environment variable to:</p>
<pre><code>http://our-proxy-server:8088
</code></pre>
<p>I've set the git http.proxy configuration directive:</p>
<pre><code>git config --global http.proxy http://our-proxy-server:8088
</code></pre>
<p>Neither of the above makes a difference.</p>
<p>Doing a git clone with <code>http://</code> instead of <code>git://</code> yields this:</p>
<pre><code>H:\>git clone http://github.com/akitaonrails/vimfiles.git
Initialized empty Git repository in H:/vimfiles/.git/
fatal: http://github.com/akitaonrails/vimfiles.git/info/refs download error - The requested URL returned error: 407
</code></pre>
<p>407 is of course an authentication error.</p>
<p>So my question is: has anyone managed to get git working from behind a proxy, specifically an ISA proxy? I don't know if it's going to be worth pursing this. Any help very much appreciated.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken/144510#1445102Answer by Charles Roper for Gem update on Windows - is it broken?Charles Roper2008-09-27T21:22:09Z2009-04-28T18:01:42Z<p>Gems, as of <a href="http://blog.segment7.net/articles/2009/04/15/rubygems-1-3-2" rel="nofollow">version 1.3.2</a>, will now skip gems that fail to build, so update Rubygems to the latest version and the problem discussed here should be solved.</p>
<pre><code>gem update --system
</code></pre>
<p><strong><em>The following solution is now deprecated, but I leave it here for the record.</em></strong></p>
<p>I <a href="http://www.ruby-forum.com/topic/166693" rel="nofollow">started a thread on this issue</a> on the Ruby Forum (it's a front end to the mailing list). There's some interesting discussion; it's worth a read. There's even a very hacky solution to this problem on there:</p>
<pre><code>`gem.bat outdated`.split(/\n/).map{|z|z.scan(/^[^[:space:]]+/)}.flatten.each{|z| `gem.bat update #{z}`}
</code></pre>
<p>It calls the <code>gem outdated</code> command and builds a list of all of the outdated gems. It then iterates over the list and calls <code>gem update</code> for each individual outdated gem. If one fails, it just moves onto the next.</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/103761#10376149Answer by Charles Roper for What non-programming books should programmers read?Charles Roper2008-09-19T17:10:22Z2009-04-27T19:34:18Z<h2><a href="http://en.wikipedia.org/wiki/The%5FSeven%5FHabits%5Fof%5FHighly%5FEffective%5FPeople" rel="nofollow">The 7 Habits of Highly Effective People</a></h2>
<p>by Stephen Covey</p>
<p><img src="http://bloggybiz.com/wp-content/uploads/2008/02/stephen-covey-7-habits-of-highly-effective-people.jpg" width="200"></p>
<p>You are missing out on a lot of your potential if you have not read this book.</p>
<p><em>Originally taken from @John Channing's post</em></p>
<p><strong>Edit</strong>: Now available as a <a href="http://www.audible.com/adbl/entry/offers/productPromo2.jsp?BV%5FUseBVCookie=Yes&productID=FR%5FCOVE%5F000032" rel="nofollow">free audiobook</a>.</p>
<p><em>Comments by <a href="http://stackoverflow.com/users/8217/julie">Julie</a></em>:<br />
This book has universal value - not just for software developers. Whereas Getting Things Done helps you manage day-to-day activites, 7 Habits helps you keep a high-level vision of life and a general methodology that you need to turn into specifics. It's the perfect complement to Getting Things Done in that regard.</p>
http://stackoverflow.com/questions/1543293/textmate-toggle-collapse-expand-css-rule-command/1543803#1543803Comment by Charles Roper on Textmate toggle collapse/expand CSS rule command?Charles Roper2009-10-09T15:31:47Z2009-10-09T15:31:47ZThanks for your answer. Can you provide a little more info on how this addresses the question I posed? I'm can't see how this is related to Textmate.http://stackoverflow.com/questions/1417915/how-do-i-control-rexml-formatting-on-added-elementsComment by Charles Roper on How do I control REXML formatting on added elements?Charles Roper2009-09-13T18:34:46Z2009-09-13T18:34:46Z@Inshalla, pretty printing almost works, but as you say, it adds unwanted whitespace - in this case, it adds newlines were I don't want them.http://stackoverflow.com/questions/1417915/how-do-i-control-rexml-formatting-on-added-elementsComment by Charles Roper on How do I control REXML formatting on added elements?Charles Roper2009-09-13T18:32:07Z2009-09-13T18:32:07ZThanks for the queries - I've updated the question.http://stackoverflow.com/questions/496277/git-error-fatal-unable-to-connect-a-socket-invalid-argument/496504#496504Comment by Charles Roper on Git error: fatal: unable to connect a socket (Invalid argument)Charles Roper2009-09-11T17:43:09Z2009-09-11T17:43:09ZI just tried this again, since msysGit has been updated, and it worked. Hurrah! I guess libcurl must have been updated in the latest version.http://stackoverflow.com/questions/322484/can-someone-recommend-a-bells-and-whistles-css-framework/322578#322578Comment by Charles Roper on Can someone recommend a bells and whistles CSS framework?Charles Roper2009-09-03T08:55:33Z2009-09-03T08:55:33ZCompass is revolutionary. It is the Rails of CSS.http://stackoverflow.com/questions/1346716/firefox-auto-refresh-on-file-change/1346743#1346743Comment by Charles Roper on Firefox auto-refresh on file changeCharles Roper2009-08-28T13:04:53Z2009-08-28T13:04:53ZCould this be implemented as a bookmarklet perhaps?http://stackoverflow.com/questions/1138914/where-can-i-find-documentation-for-excels-pictures-collection/1141279#1141279Comment by Charles Roper on Where can I find documentation for Excel's Pictures collection?Charles Roper2009-07-17T06:24:59Z2009-07-17T06:24:59ZYeah, I can't find any official documentation either, despite hunting everywhere. Can we safely assume this is an undocumented feature (and thus should be used with caution)?http://stackoverflow.com/questions/594473/why-do-managers-care-about-time-you-start-workComment by Charles Roper on Why do managers care about time you start work?Charles Roper2009-06-26T06:52:47Z2009-06-26T06:52:47ZI currently work from 11am to 7pm. I miss both rush-hours and therefore and less tired and stressed. I get a precious two hours in the evening after 5 when no-one else is around, so no distractions. I find I am more productive in the afternoon/early evening. These factors combine to make me more effective. My manager and my team are happy with my work. "Office hours" are an anachronism; managers of office workers should look into way of maximising staff productivity, effectiveness and happiness and not obsess over what time someone starts, unless it is explicitly relevant to the job.http://stackoverflow.com/questions/1000000/display-progress-bar-at-the-time-of-processComment by Charles Roper on Display Progress Bar at the Time of Process Charles Roper2009-06-16T07:39:26Z2009-06-16T07:39:26ZOr as someone pointed out, db id 1,000,000http://stackoverflow.com/questions/1000000/display-progress-bar-at-the-time-of-processComment by Charles Roper on Display Progress Bar at the Time of Process Charles Roper2009-06-16T07:38:42Z2009-06-16T07:38:42ZCongratulations, you've got question 1,000,000!http://stackoverflow.com/questions/85459/is-it-possible-to-combine-a-series-of-pdfs-into-one-using-ruby/646651#646651Comment by Charles Roper on Is it possible to combine a series of PDFs into one using Ruby?Charles Roper2009-04-29T07:58:28Z2009-04-29T07:58:28ZThe -sPAPERSIZE option for gs is a useful one to know about. For example -sPAPERSIZE=a4 or -sPAPERSIZE=letter. http://stackoverflow.com/questions/693936/good-editors-for-web-development-on-os-x/693939#693939Comment by Charles Roper on Good Editors for Web Development on OS X?Charles Roper2009-04-03T08:04:37Z2009-04-03T08:04:37ZAnd don't forget if you have to use Windows for some reason, you can make use of gVim, too.http://stackoverflow.com/questions/704431/open-company-what-advice-would-you-give/705133#705133Comment by Charles Roper on Open Company: what advice would you give?Charles Roper2009-04-01T17:01:36Z2009-04-01T17:01:36ZClarification from Alexander in this issue: <a href="http://www.e-texteditor.com/forum/viewtopic.php?p=12764#12764" rel="nofollow">e-texteditor.com/forum/viewtopic.php?p=12764#12764/…</a>http://stackoverflow.com/questions/704431/open-company-what-advice-would-you-give/705133#705133Comment by Charles Roper on Open Company: what advice would you give?Charles Roper2009-04-01T13:15:11Z2009-04-01T13:15:11ZFair enough. By the tag I meant it'll be open source (small o, small s) in the sense that the source will be available to everyone. But it won't be Open Source (big O, big S) by the criteria as defined here: <a href="http://en.wikipedia.org/wiki/Open_Source_Definition" rel="nofollow">en.wikipedia.org/wiki/Open_Source_Definition/…</a>http://stackoverflow.com/questions/704431/open-company-what-advice-would-you-give/705133#705133Comment by Charles Roper on Open Company: what advice would you give?Charles Roper2009-04-01T12:05:16Z2009-04-01T12:05:16ZSorry for the tag confusion; I've added a shared-source tag. The reason I have kept the open-source tag is because Alexander has himself implied that the E source will be open source. See <a href="http://www.e-texteditor.com/forum/viewtopic.php?t=3122" rel="nofollow">e-texteditor.com/forum/viewtopic.php?t=3122/…</a>