User webmat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T23:10:12Zhttp://stackoverflow.com/feeds/user/6349http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/74625/what-is-the-best-way-to-force-yourself-to-master-vi46What is the best way to force yourself to master vi?webmat2008-09-16T17:08:38Z2009-12-01T18:39:49Z
<p>A good while ago, I read <a href="http://www.viemu.com/a-why-vi-vim.html" rel="nofollow">an article by the creator of viemu</a>, clearing up a lot of the misconceptions about vi, as well as explaining why it's a good idea (and why it's been very popular for the last 30 years+). The same guy also has <a href="http://www.viemu.com/a%5Fvi%5Fvim%5Fgraphical%5Fcheat%5Fsheet%5Ftutorial.html" rel="nofollow">a great set of graphical cheat sheets</a> that teach the basics a few bits at a time. </p>
<p>I'm convinced.</p>
<p>I've been convinced for the past 2 years in fact. But I still really haven't gotten around to force myself to learn vi as my primary editor, the learning curve is just too high. When I get down to work, acceptable but immediate productivity (using my current editor) has so far won over tremendous productivity farther down the line (using vi).</p>
<p>Does anybody have any good tips to help get past the learning curve? It can be straight out tips, some other tutorial or article, whatever.</p>
<p>Edit: Note that I'm aware of the <a href="http://www.vim.org/" rel="nofollow">vim/gVim</a>, <a href="http://cream.sourceforge.net/" rel="nofollow">Cream</a> and <a href="http://code.google.com/p/macvim/" rel="nofollow">MacVim</a> (etc.) variants of vi. I kept my question about vi to refer to the vi family as a whole. Thanks for all the great answers.</p>
<h3>Update (April 2009)</h3>
<p>I've been using Vim (more precisely, MacVim) in my day to day professional life since last December. I'm not going back :-) </p>
<p>Good luck to everyone in their Vim mastery.</p>
http://stackoverflow.com/questions/134235/is-there-any-good-markdown-javascript-library-or-control5Is there any good Markdown Javascript library or control?webmat2008-09-25T16:08:10Z2009-10-22T17:48:47Z
<p>I want to build a site where the user can enter text and format it in Markdown. The reason I'd like a Javascript solution is because I want to display a live preview, just like on StackOverflow.</p>
<p>My site is not targeted at developers, however, so an editor control would be ideal.</p>
<p>I gather that on StackOverflow, the <a href="http://wmd-editor.com/" rel="nofollow">WMD editor</a> is being used.</p>
<p>A quick search on Google also turns up <a href="http://attacklab.net/showdown/" rel="nofollow">Showdown library</a>, which I think is actually being used by WMD.</p>
<p>Are there any other options? Are WMD/Showdown great tools already? What have been your experiences with the different options?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/134882/undoing-a-git-rebase10Undoing a git rebasewebmat2008-09-25T17:59:22Z2009-07-27T18:21:54Z
<p>Does anybody know how to easily undo a git rebase?</p>
<p>The only way that comes to mind is to go at it manually:</p>
<ul>
<li>git checkout the commit parent to both of the branches </li>
<li>then create a temp branch from there</li>
<li>cherry-pick all commits by hand</li>
<li>replace the branch in which I rebased by the manually-created branch</li>
</ul>
<p>In my current situation this is gonna work because I can easily spot commits from both branches (one was my stuff, the other was my colleague's stuff).</p>
<p>However my approach strikes me as suboptimal and error-prone (let's say I had just rebased with 2 of my own branches).</p>
<p>Any ideas?</p>
<p>Clarification: I'm talking about a rebase during which a bunch of commits were replayed. Not only one.</p>
http://stackoverflow.com/questions/1137965/cucumber-defaulturloptionshost-everytime-www-example-com-even-if-specified/1175608#11756080Answer by webmat for Cucumber default_url_options[:host] everytime "www.example.com" even if specified in environtemnts/test.rbwebmat2009-07-24T03:24:27Z2009-07-24T03:24:27Z<p>I'm not terribly familiar with Cucumber, so I can't say with certainty where exactly you'll have to apply this fix. But the problem is that the default_url_options is not set in another place where you're trying to generate your url...</p>
<p>So my advice is to first find out in what context the faulty url is being generated. Before or after it, just output self.class. That's the class you'll have to monkey-patch. For the example, let's say 'ClassName' was printed out.</p>
<p>When you have that, in your config/environments/test.rb, just add the attribute accessor and then set it to what you want:</p>
<pre><code>class ClassName
cattr_accessor :default_url_options
# or mattr_ if it's a module
end
</code></pre>
<p>and then set it the same way as your actionmailer</p>
<pre><code>ClassName.default_url_options = { :host => "www.xyu.at" }
</code></pre>
<p>This whole process can be useful as well when you want to generate urls in models or in other esoteric places (then you'll also need to include ActionController::UrlWriter).</p>
http://stackoverflow.com/questions/123494/whats-your-favourite-irb-trick/873371#8733717Answer by webmat for What's Your Favourite IRB Trick?webmat2009-05-16T21:34:16Z2009-05-16T21:34:16Z<p>Funny coming back to an old question I contributed to :-)</p>
<p>Here's another tool I added to my IRB config. Very practical for exploring unfamiliar classes and apis:</p>
<pre><code>class Object
# Return only the methods not present on basic objects
def interesting_methods
(self.methods - Object.new.methods).sort
end
end
</code></pre>
<p>This lets me see only non trivial methods in a sane order on any class or instance I'm exploring.</p>
http://stackoverflow.com/questions/192048/can-an-html-element-have-multiple-ids7Can an html element have multiple ids?webmat2008-10-10T16:04:16Z2008-12-27T05:41:50Z
<p>I understand that an id must be unique within an HTML/XHTML page.</p>
<p>My question is, for a given element, can I assign multiple ids to it?</p>
<pre><code><div id="nested_element_123 task_123"></div>
</code></pre>
<p>I realize I have an easy solution with simply using a class. I'm just curious about using ids in this manner.</p>
http://stackoverflow.com/questions/305805/whats-the-best-way-to-work-with-github-and-multiple-computers/307742#3077425Answer by webmat for Whats the best way to work with Github and multiple computers?webmat2008-11-21T03:27:49Z2008-11-21T03:27:49Z<p>I'll assume your problem was that the machine on which you first created the repo crapped out when you tried to issue the <code>git pull</code> command.</p>
<p>When you clone an existing git repository (like you did on your 2nd machine, the MacBook Pro), you're automatically set up to so your <code>git pull</code> commands will automatically merge the remote with your local changes.</p>
<p>However, when you initially create a repo and then share it on a remote repository, you have to issue a few commands to make things as automated as a on cloned repo.</p>
<pre><code># GitHub gives you that instruction, you've already done that
# git remote add origin git@github.com:user_name/repo_name.git
# GitHub doesn't specify the following instructions
git config branch.master.remote origin
git config branch.master.merge refs/heads/master
</code></pre>
<p>These last few instructions configure git so future <code>git pull</code>'s from this repo will merge all remote changes automatically.</p>
<p>The following is a bit of shameless self-promotion. If you use Ruby, I have created a Ruby-based tool that lets you deal with all these kinds of things with git remote branches. The tool is called, unsurprisingly, <a href="http://grb.rubyforge.org/" rel="nofollow">git_remote_branch</a> :-)</p>
<p>If you don't use Ruby, my tool is probably gonna be too much of a hassle to install. What you can do is look at <a href="http://programblings.com/2008/06/23/git-remote-branches/" rel="nofollow">an old post on my blog</a>, where most of the stuff grb can do for you was explicitly shown. Whip out your git notes file :-)</p>
http://stackoverflow.com/questions/303394/existing-libraries-for-web-app-sign-up-sign-in-manage-passwords/305305#3053055Answer by webmat for Existing libraries for web app sign-up, sign-in, manage passwords?webmat2008-11-20T13:32:42Z2008-11-20T13:32:42Z<p>For Rails, the most popular one is <a href="http://github.com/technoweenie/restful-authentication/tree/master" rel="nofollow">RestfulAuthentication</a>. It is so because it's been written by one of the core contributors to Rails.</p>
<p>Recently another one came out, that seems to be a bit cleaner and more feature-complete. I haven't taken the time to try it yet. Check out <a href="http://github.com/binarylogic/authlogic/tree/master" rel="nofollow">Authlogic</a>.</p>
http://stackoverflow.com/questions/626/when-to-use-lambda-when-to-use-proc-new/303428#3034281Answer by webmat for When to use lambda, when to use Proc.new?webmat2008-11-19T21:28:28Z2008-11-19T21:28:28Z<p>I can't say much about the subtle differences. However, I can point out that Ruby 1.9 now allows optional parameters for lambdas and blocks.</p>
<p>Here's the new syntax for the stabby lambdas under 1.9:</p>
<pre><code>stabby = ->(msg='inside the stabby lambda') { puts msg }
</code></pre>
<p>Ruby 1.8 didn't have that syntax. Neither did the conventional way of declaring blocks/lambdas support optional args:</p>
<pre><code># under 1.8
l = lambda { |msg = 'inside the stabby lambda'| puts msg }
SyntaxError: compile error
(irb):1: syntax error, unexpected '=', expecting tCOLON2 or '[' or '.'
l = lambda { |msg = 'inside the stabby lambda'| puts msg }
</code></pre>
<p>Ruby 1.9, however, supports optional arguments even with the old syntax:</p>
<pre><code>l = lambda { |msg = 'inside the regular lambda'| puts msg }
#=> #<Proc:0x0e5dbc@(irb):1 (lambda)>
l.call
#=> inside the regular lambda
l.call('jeez')
#=> jeez
</code></pre>
<p>If you wanna build Ruby1.9 for Leopard or Linux, check out <a href="http://programblings.com/2008/11/18/installing-ruby-19preview1-on-os-x-leopard/" rel="nofollow">this article</a> (shameless self promotion).</p>
http://stackoverflow.com/questions/302089/git-plugin-for-eclipse/303361#3033611Answer by webmat for Git plugin for eclipsewebmat2008-11-19T21:04:19Z2008-11-19T21:04:19Z<p>You may be interested in these pointers: <a href="http://github.com/blog/232-github-and-eclipse" rel="nofollow">http://github.com/blog/232-github-and-eclipse</a></p>
http://stackoverflow.com/questions/293302/how-do-i-run-ruby-tasks-that-use-my-rails-models/300017#3000170Answer by webmat for How do I run Ruby tasks that use my Rails models?webmat2008-11-18T20:25:15Z2008-11-18T20:25:15Z<p>Check out a <a href="http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices#287107">relatively short answer</a> I gave on another question.</p>
<p>It contains 2 examples for using cron to run rake tasks and class methods (via script/runner). In both cases, Rails is loaded and you can use your models.</p>
http://stackoverflow.com/questions/286564/can-anyone-recommend-a-ruby-source-code-analyzer-something-like-pylint/287064#2870642Answer by webmat for Can anyone recommend a Ruby source code analyzer (something like pylint)webmat2008-11-13T14:26:25Z2008-11-17T16:36:56Z<p>Check these out:</p>
<ul>
<li>on Ruby Inside, <a href="http://www.rubyinside.com/3-tools-for-drying-your-ruby-code-1305.html" rel="nofollow">an article presenting Towelie, Flay and Simian</a>, all tools to find code duplication
<ul>
<li><a href="http://gilesbowkett.blogspot.com/2008/10/verbatim-how-to-find-patterns-in-code.html" rel="nofollow">Towelie</a></li>
<li><a href="http://ruby.sadi.st/Flay.html" rel="nofollow">flay</a></li>
<li><a href="http://www.redhillconsulting.com.au/products/simian/" rel="nofollow">Simian</a> (a more general tool that supports Ruby among other languages)</li>
</ul></li>
<li><a href="http://silkandspinach.net/2008/09/23/reek-a-code-smells-detector-for-ruby/" rel="nofollow">reek</a>: a code smell detector for Ruby</li>
<li><a href="http://www.martyandrews.net/blog/2008/09/roodi_checkstyle_for_ruby.html" rel="nofollow">Roodi</a>: checks the style of your Ruby code</li>
<li><a href="http://ruby.sadi.st/Flog.html" rel="nofollow">flog</a>: a code complexity analyzer</li>
<li><a href="http://eigenclass.org/hiki.rb?rcov" rel="nofollow">rcov</a>: will give you a <a href="http://eigenclass.org/hiki.rb?rcov#l15" rel="nofollow">C0</a> (if I remember correctly) code coverage analysis. But be careful though. 100% coverage is very costly and doesn't mean perfect code.</li>
<li><a href="http://ruby.sadi.st/Heckle.html" rel="nofollow">heckle</a>: changes your code in subtle manners and runs your test suite to see if it catches it. Brutal :-)</li>
</ul>
<p>Since they're all command-line tools they can all be integrated simply as cc.rb tasks. Just whip out your regex skillz to pick the important part of the output.</p>
<p>I recommend you first try them out by hand to see if they play well with your codebase and if you like the info they give you. Once you find a few that give you value, then spend time integrating them in your cc.</p>
http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/287107#2871073Answer by webmat for A cron job for rails: best practices?webmat2008-11-13T14:43:53Z2008-11-13T14:43:53Z<p>script/runner and rake tasks are perfectly fine to run as cron jobs.</p>
<p>Here's one very important thing you must remember when running cron jobs. They probably won't be called from the root directory of your app. This means all your requires for files (as opposed to libraries) should be done with the explicit path: e.g. File.dirname(__FILE__) + "/other_file". This also means you have to know how to explicitly call them from another directory :-)</p>
<p>Check if your code supports being run from another directory with </p>
<pre><code># from ~
/path/to/ruby /path/to/app/script/runner -e development "MyClass.class_method"
/path/to/ruby /path/to/rake -f /path/to/app/Rakefile rake:task RAILS_ENV=development
</code></pre>
<p>Also, cron jobs probably don't run as you, so don't depend on any shortcut you put in .bashrc. But that's just a standard cron tip ;-)</p>
http://stackoverflow.com/questions/267761/what-does-your-gitconfig-contain/272204#2722043Answer by webmat for What does your ~/.gitconfig contain?webmat2008-11-07T14:24:44Z2008-11-07T14:24:44Z<p>Great idea! Actually I have little to offer over these configs, except maybe this:</p>
<pre><code>[core]
excludesfile = /Users/mat/.gitignore
</code></pre>
<p>Make sure you use a complete path (i.e. not ~) for your global ignore file. This is especially useful when you create git repos extremely often, it just removes the need to create the same git ignores over and over. </p>
<p>Of course when other people are going to work on the project, you'll want to create a proper ignore file for the project :-)</p>
http://stackoverflow.com/questions/266857/how-can-i-test-views-in-a-rails-plugin/267489#2674890Answer by webmat for How can I test views in a Rails plugin?webmat2008-11-06T02:35:32Z2008-11-06T02:35:32Z<p>I suggest you look at the code for the <a href="http://github.com/giraffesoft/resource_controller" rel="nofollow">resource_controller plugin</a>. I've also seen the approach in a few other plugins.</p>
<p>The answer is simple, in the <strong>test</strong> directory, you create an app that uses your plugin. From there, you simply use the common tools to test Rails views.</p>
<p>The test app can be extremely simple if there aren't many different use cases for your plugin. In the case of more complex plugins, like resource_controller, you'll probably have to create quite a few different controllers and so on.</p>
<p>To trick your test app into loading your plugin, the simplest way is to create a link to the root of the r_c directory inside the test app's plugin directory. This isn't gonna work on Windows, only POSIX OSes.</p>
http://stackoverflow.com/questions/262727/how-do-you-measure-the-quality-of-your-unit-tests/262888#26288820Answer by webmat for How do you measure the quality of your unit tests?webmat2008-11-04T18:43:25Z2008-11-04T18:43:25Z<p>My tip is not a way to determine whether you have good unit tests per se, but it's a way to grow a good test suite over time.</p>
<p>Whenever you encounter a bug, either in your development or reported by someone else, fix it twice. You first create a unit test that reproduces the problem. When you've got a failing test, then you go and fix the problem.</p>
<p>If a problem was there in the first place it's a hint about a subtlety about the code or the domain. Adding a test for it lets you make sure it's never going to be reintroduced in the future.</p>
<p>Another interesting aspect about this approach is that it'll help you understand the problem from a higher level before you actually go and look at the intricacies of the code.</p>
<p>Also, +1 for the value and pitfalls of test coverage already mentioned by others.</p>
http://stackoverflow.com/questions/261557/what-do-i-need-to-read-to-understand-how-git-works/261950#2619509Answer by webmat for What do I need to read to understand how git works?webmat2008-11-04T13:50:21Z2008-11-04T13:50:21Z<p>Check out <a href="http://www.newartisans.com/blog_files/git.from.bottom.up.php" rel="nofollow">Git from the Bottom Up</a></p>
http://stackoverflow.com/questions/253724/supplying-an-argument-at-rails-runtime/254858#2548583Answer by webmat for Supplying an argument at Rails runtimewebmat2008-10-31T20:31:36Z2008-10-31T20:31:36Z<p>Any Ruby script has access to local environment variables through the ENV hash.</p>
<pre><code>puts ENV['PATH']
</code></pre>
<p>So with any posix system (Linux, Unix, Mac OS) you can simply set it when calling the script, like this:</p>
<pre><code>MY_ARG=supersecret ruby script.rb
</code></pre>
<p>The same is also valid for rails. If you put <code>puts ENV['MY_ARG']</code> in your environment.rb and start your server:</p>
<pre><code>$ MY_ARG=supersecret mongrel_rails start
** Starting Mongrel listening at 0.0.0.0:3000
** Starting Rails with development environment...
supersecret
** Rails loaded.
** Loading any Rails specific GemPlugins
** Signals ready. TERM => stop. USR2 => restart. INT => stop (no restart).
** Rails signals registered. HUP => reload (without restart). It might not work well.
** Mongrel 1.1.5 available at 0.0.0.0:3000
** Use CTRL-C to stop.
</code></pre>
<p>An environment variable is by far the simplest solution in my opinion.</p>
http://stackoverflow.com/questions/221674/what-can-be-done-to-prevent-spam-in-forum-like-apps/236013#2360131Answer by webmat for What can be done to prevent spam in forum-like apps?webmat2008-10-25T06:33:42Z2008-10-25T06:33:42Z<p>Check out defensio.com. It uses bayesian filtering (like filters for mails). It's pretty effective. It's a free web service.</p>
<p>Disclaimer: Worked there in the past.</p>
http://stackoverflow.com/questions/224128/how-do-you-make-a-method-apply-to-a-collection-of-activerecord-objects/236010#2360104Answer by webmat for How do you make a method apply to a collection of ActiveRecord objects. webmat2008-10-25T06:31:16Z2008-10-25T06:31:16Z<p>The following will call to_csv on all instances included in the messages array.</p>
<pre><code>messages = Message.find(:all)
csv = messages.map { |message| message.to_csv }
</code></pre>
<p>In Rails, in Ruby 1.9 or with Symbol#to_proc available through other means, you can also shorten it to:</p>
<pre><code>csv = messages.map(&:to_csv)
</code></pre>
<p>The longer form is useful when you want to make a more complex operation:</p>
<pre><code>csv = messages.map { |message|
if message.length < 1000
message.to_csv
else
"Too long"
end
}
</code></pre>
http://stackoverflow.com/questions/228648/how-do-you-list-the-currently-available-objects-in-the-current-scope-in-ruby/235996#2359964Answer by webmat for How do you list the currently available objects in the current scope in ruby?webmat2008-10-25T06:18:48Z2008-10-25T06:18:48Z<p>I'm not entirely sure of what you mean by the 'current objects'. You can iterate over ObjectSpace, as has been mentioned already. But here are a few other methods.</p>
<pre><code>local_variables
instance_variables
global_variables
class_variables
constants
</code></pre>
<p>There's one gotcha. They must be called at the right scopes. So right in IRB, or in an object instance or at class scope (so everywhere, basically) you can call the first 3.</p>
<pre><code>local_variables #=> ["_"]
foo = "bar"
local_variables #=> ["_", "foo"]
# Note: the _ variable in IRB contains the last value evaluated
_ #=> "bar"
instance_variables #=> []
@inst_var = 42
instance_variables #=> ["@inst_var"]
global_variables #=> ["$-d", "$\"", "$$", "$<", "$_", ...]
$" #=> ["e2mmap.rb", "irb/init.rb", "irb/workspace.rb", ...]
</code></pre>
<p>But umm, what if you want your program to actually evaluate them without needing you to type them manyally? The trick is eval.</p>
<pre><code>eval "@inst_var" #=> 42
global_variables.each do |v|
puts eval(v)
end
</code></pre>
<p>The last 2 of the 5 mentioned at the beginning must be evaluated at the module level (a class is a descendant of a module, so that works).</p>
<pre><code>Object.class_variables #=> []
Object.constants #=> ["IO", "Duration", "UNIXserver", "Binding", ...]
class MyClass
A_CONST = 'pshh'
class InnerClass
end
def initialize
@@meh = "class_var"
end
end
MyClass.constants #=> ["A_CONST", "InnerClass"]
MyClass.class_variables #=> []
mc = MyClass.new
MyClass.class_variables #=> ["@@meh"]
MyClass.class_eval "@@meh" #=> "class_var"
</code></pre>
<p>Here's are a few more tricks to explore in different directions</p>
<pre><code>"".class #=> String
"".class.ancestors #=> [String, Enumerable, Comparable, ...]
String.ancestors #=> [String, Enumerable, Comparable, ...]
def trace
return caller
end
trace #=> ["(irb):67:in `irb_binding'", "/System/Library/Frameworks/Ruby...", ...]
</code></pre>
http://stackoverflow.com/questions/188463/can-i-run-lamp-and-rails-from-the-same-apache-instance/189633#1896334Answer by webmat for Can I run LAMP and Rails from the same Apache instance?webmat2008-10-09T23:54:03Z2008-10-09T23:54:03Z<p>You absolutely can run Rails apps behind an Apache web server. Check out <a href="http://www.modrails.com/" rel="nofollow">Passenger</a>, an easy to use Apache module with advanced features to run Rails (and other Ruby-based) web applications.</p>
<p>And yes, you just set up a virtual host for your Rails app. Check out These 2 posts if you need help doing this: <a href="http://www.sysadminschronicles.com/2008/5/6/ubuntu-8-04-rails-server-using-passenger" rel="nofollow">part one</a> and <a href="http://www.sysadminschronicles.com/2008/5/13/ubuntu-8-04-rails-server-using-passenger-part-2" rel="nofollow">part two</a>.</p>
http://stackoverflow.com/questions/30082/ruby-podcasts/189611#1896111Answer by webmat for Ruby podcasts?webmat2008-10-09T23:41:01Z2008-10-09T23:41:01Z<p>I'd like to point out that probably more than half of the <a href="http://podcast.rubyonrails.org/" rel="nofollow">Ruby on Rails podcasts</a> are not about Rails or Rails-based sites at all. There's a lot to love in there even if you're just interested in Ruby.</p>
<p>I of course agree with everyone mentioning the <a href="http://railsenvy.com/" rel="nofollow">Rails Envy</a> podcast. Great production quality and fun, too.</p>
<p>Happy listening!</p>
http://stackoverflow.com/questions/179238/what-scares-you-the-most-about-the-integrated-ide-of-most-modern-smalltalks/180745#1807454Answer by webmat for What scares you the most about the integrated IDE of most modern Smalltalks?webmat2008-10-07T22:51:24Z2008-10-07T22:51:24Z<p>The one big show-stopper for me is that code I write one Smalltalk VM is STILL, after all these years, not compatible with other Smalltalk VMs.</p>
<p>I understand why that is: the core of Smalltalk is an extremely small set of axioms and keywords. This means that after 30 minutes of learning Smalltalk, you're already learning the API library rather than the language itself. I like that approach to language design. </p>
<p>What it all boils down to however, in the Smalltalk world, is that unless a consensus is reached between all VM vendors to have a common base Standard API, my Smalltalk code written for one VM is almost certain not to run on other VMs when I decide to switch.</p>
<p>This also has the corollary of obsoleting part of my knowledge of the space when I switch VMs.</p>
<p>Note that I have barely tried Smalltalk in my life. I'm far from being an expert. This understanding comes from speaking with <a href="http://www.cincomsmalltalk.com/blog/blogView" rel="nofollow">James Robertson</a> about a month ago.</p>
<p>Another point I'd like to make is that Seaside does in fact run on most popular Smalltalk VMs. I wonder how much of (what should have been) a Standard API they had to build for themselves to achieve that feat.</p>
<p>With all that said, I always have an ear out to hear more about the state of Smalltalk. I <em>do</em> want to try out Smalltalk's very powerful development environment (and its other goodies).</p>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175766#1757660Answer by webmat for What's the most egregious pop culture perversion of programming?webmat2008-10-06T19:18:40Z2008-10-06T19:18:40Z<p>It wasn't too bad a slip, but at one time in Antitrust, either Ryan Philippe or Rachael Leigh Cook is hacking into a competitor's (iirc) computer on a 10.*.*.* network :-)</p>
http://stackoverflow.com/questions/173224/what-could-cause-intermittent-issues-with-images-loading-in-internet-explorer-6/174113#1741130Answer by webmat for What Could Cause Intermittent Issues with Images Loading in Internet Explorer 6?webmat2008-10-06T12:49:31Z2008-10-06T12:49:31Z<p>The problem is the "IE6" part ;-)</p>
http://stackoverflow.com/questions/170824/date-class-different-in-ruby-stdlib-and-rails-stdlib/171990#1719901Answer by webmat for Date class different in Ruby stdlib and Rails stdlibwebmat2008-10-05T13:38:58Z2008-10-05T13:38:58Z<p>ABBR_MONTHS is added to Date by ActiveSupport. </p>
<p>Rails is in fact a set of a few gems. ActiveSupport's role is mostly to add niceties to the Ruby language and other agnostic tools like the Inflector and the 2.days way of creating Time instances and so on.</p>
<p>So if you need this kind of capability outside of your rails app for some reason, you're in luck:</p>
<pre><code>require 'rubygems' #If not already done
require 'activesupport'
puts Date::Format::ABBR_MONTHS.inspect
#=> {"oct"=>10, "jul"=>7, "jan"=>1, "dec"=>12, "jun"=>6, "apr"=>4, "feb"=>2, "may"=>5, "sep"=>9, "aug"=>8, "mar"=>3, "nov"=>11}
</code></pre>
http://stackoverflow.com/questions/170734/is-it-time-to-try-merb/170845#1708450Answer by webmat for is it time to try merb?webmat2008-10-04T18:59:41Z2008-10-04T18:59:41Z<p>The spam filtering service <a href="http://defensio.com/" rel="nofollow">Defensio</a> has been running on Merb for a few months now. Merb seems to be working very well for them :-)</p>
<p>Disclaimer (even if I'm not trying to sell you anything): I've worked on Defensio in the past.</p>
http://stackoverflow.com/questions/167697/can-i-map-local-branches-to-remote-branches-with-different-prefixes-in-git/169110#1691103Answer by webmat for Can I map local branches to remote branches with different prefixes in git?webmat2008-10-03T22:19:13Z2008-10-03T22:19:13Z<p>In your [remote "origin"] section, add one line per mapping. Including master to master.</p>
<pre><code>push = refs/heads/master:master
push = refs/heads/topic/feature:michael/feature
</code></pre>
<p>I'm not sure how to do it with the git-config command. </p>
<p>Be aware that from now on, all branches are pushed at the same when you do a straight git push (with no params).</p>
<p>Would you care to explain why you don't keep the same branch names locally and remotely?</p>
http://stackoverflow.com/questions/166899/language-showdown-convert-string-of-digits-to-array-of-integers/167822#1678223Answer by webmat for Language showdown: Convert string of digits to array of integers?webmat2008-10-03T16:46:52Z2008-10-03T16:53:41Z<p>In Ruby 1.9, or on 1.8 if you are in Rails/have the symbol_to_proc gem, it becomes</p>
<pre><code>"124890".split('').map(&:to_i) #=> [1, 2, 4, 8, 9, 0]
</code></pre>
http://stackoverflow.com/questions/924743/can-i-know-the-revision-number-of-a-commitComment by webmat on Can i know the revision number of a commit?webmat2009-05-30T15:03:59Z2009-05-30T15:03:59ZBe aware that "commit numbers" can't be used reliably to refer to a commit with git. Any unique set of beginning characters of the SHA hash will do, however.
So if the purpose of the question is to understand your velocity, go ahead and count them. If you want to point to a specific commit (e.g. in your issue tracker), use the first few characters of your hash (I like 8, but shorter works too).http://stackoverflow.com/questions/928299/web-development-with-ruby-without-railsComment by webmat on web development with ruby without rails?webmat2009-05-30T00:41:13Z2009-05-30T00:41:13ZActually, Rails now (as of 2.3) dependends on Rack. Rack is very low level, so that's probably why you don't find the kind of doc you're looking for. But it's a very good piece of software.http://stackoverflow.com/questions/286564/can-anyone-recommend-a-ruby-source-code-analyzer-something-like-pylint/287804#287804Comment by webmat on Can anyone recommend a Ruby source code analyzer (something like pylint)webmat2008-11-21T19:15:05Z2008-11-21T19:15:05ZHoly crap! That tools roundup looks pretty comprehensive. I'll have to check it out :-) Thanks for sharing.http://stackoverflow.com/questions/305805/whats-the-best-way-to-work-with-github-and-multiple-computers/307742#307742Comment by webmat on Whats the best way to work with Github and multiple computers?webmat2008-11-21T19:04:41Z2008-11-21T19:04:41ZThat's exactly the point of git_remote_branch. Each time it runs a command on your behalf, it prints out the commands it's running for you in red. Also, it can be used as a cheatsheet with the explain command: grb explain create new_branch (instead of the normal command grb create new_branch) :-)http://stackoverflow.com/questions/284514/what-is-a-git-topic-branch/284626#284626Comment by webmat on What is a git topic branch?webmat2008-11-13T14:28:26Z2008-11-13T14:28:26Zyep. as opposed to a personal branch, where you have branches: bob, alice, mat, etc.http://stackoverflow.com/questions/285541/moving-from-desktop-development-to-web-development/285908#285908Comment by webmat on Moving from Desktop Development to Web Developmentwebmat2008-11-13T14:01:42Z2008-11-13T14:01:42Z@Omar I recommend reading a serious article about the perf. issues of Twitter. They are due to the database usage patterns, which doesn't play well with sharding. Any popular member (1000s of followers) has to hit an arbitrary amount of other shards when they post. That's the source of the problem.http://stackoverflow.com/questions/22764/how-does-ruby-1-9-handle-character-cases-in-source-code/23945#23945Comment by webmat on How does Ruby 1.9 handle character cases in source code?webmat2008-11-05T22:17:37Z2008-11-05T22:17:37ZTypo: tell => yell ;-)http://stackoverflow.com/questions/253724/supplying-an-argument-at-rails-runtimeComment by webmat on Supplying an argument at Rails runtimewebmat2008-10-31T22:58:03Z2008-10-31T22:58:03ZTell me though, how will your process monitors restart the processes that die? ;-) As soon as you decide to automate the restarts, you have to give up that kind of secrecy. In the end you'll just have to secure access to your server (or the machine that restarts its processes) properly.http://stackoverflow.com/questions/253724/supplying-an-argument-at-rails-runtime/254858#254858Comment by webmat on Supplying an argument at Rails runtimewebmat2008-10-31T22:54:13Z2008-10-31T22:54:13ZHmm, good point about /proc/[pid]/environ. However it's still a bit more work (and less intuitive) than actually writing the key in a plain text file.http://stackoverflow.com/questions/250550/capistrano-how-to-include-common-settings-in-multiple-project-deploy-rb-files/251862#251862Comment by webmat on Capistrano: How to Include common settings in multiple project deploy.rb fileswebmat2008-10-31T13:06:08Z2008-10-31T13:06:08ZRequire is used to load Rubygems, but will first load local files of a given if it finds them. Also, require doesn't run the file a 2nd time if it was loaded previously, while load does. Other than that, they are perfectly equivalent. So you can use require to load your own files.http://stackoverflow.com/questions/36430/what-are-the-important-ruby-commands/36451#36451Comment by webmat on What are the important Ruby commands?webmat2008-10-30T13:29:07Z2008-10-30T13:29:07ZAre you kidding me? 8000+ rep and you use the answers rather than the comments to respond to people?http://stackoverflow.com/questions/248371/whats-the-best-open-source-ruby-on-rails-project-to-learn-from/248430#248430Comment by webmat on What's the best open source Ruby on Rails project to learn from?webmat2008-10-30T13:25:09Z2008-10-30T13:25:09Z+1 for the Railscastshttp://stackoverflow.com/questions/248371/whats-the-best-open-source-ruby-on-rails-project-to-learn-from/248495#248495Comment by webmat on What's the best open source Ruby on Rails project to learn from?webmat2008-10-30T13:24:37Z2008-10-30T13:24:37ZGitHub has a download button too. You can download the latest version of a project in zip or tar.gz format.http://stackoverflow.com/questions/246275/modified-files-and-git-branches/246286#246286Comment by webmat on Modified files and git brancheswebmat2008-10-30T00:00:19Z2008-10-30T00:00:19ZBe aware that this doesn't keep the changes on top of the branch you're leaving or anything. This will throw away the uncommitted changes (except if the file is untracked).http://stackoverflow.com/questions/214642/raii-in-ruby-or-how-to-manage-resources-in-ruby/214663#214663Comment by webmat on RAII in Ruby (Or, How to Manage Resources in Ruby)webmat2008-10-25T06:39:31Z2008-10-25T06:39:31ZIn fact, File#open called with a block has an 'ensures' block, which properly closes the file, whatever happens. So yes, you can have rescue/ensure blocks, but they are optional.