User Titanous - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:06:13Z http://stackoverflow.com/feeds/user/399 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/26255/reserved-keywords-in-javascript 10 Reserved Keywords in Javascript Titanous 2008-08-25T15:29:39Z 2009-11-03T18:58:42Z <p>What Javascript keywords (function names, variables, etc) are reserved?</p> http://stackoverflow.com/questions/615954/ruby-integer-to-binary-string 0 Ruby Integer to Binary string Titanous 2009-03-05T18:25:50Z 2009-07-15T06:37:33Z <p>I need to encrypt a integer, but all the crypto libraries only support strings.</p> <p>What is the proper method to convert a integer to a binary string in Ruby? (not '10111', I think that it's ASCII values)</p> <p>EDIT: I wasn't thinking about Rijndael as stream encryption.</p> http://stackoverflow.com/questions/378847/is-there-a-better-html-escaping-and-unescaping-tool-than-cgi-for-ruby/383561#383561 4 Answer by Titanous for Is there a better HTML escaping and unescaping tool than CGI for Ruby? Titanous 2008-12-20T18:17:41Z 2008-12-20T18:17:41Z <p>The htmlentities gem should do the trick:</p> <pre><code>require 'rubygems' require 'htmlentities' coder = HTMLEntities.new coder.decode('&amp;#8230;') # =&gt; "…" coder.decode('&amp;hellip;') # =&gt; "…" coder.decode('&amp;#162;') # =&gt; "¢" coder.decode('&amp;cent;') # =&gt; "¢" coder.encode("…", :named) # =&gt; "&amp;hellip;" coder.encode("…", :decimal) # =&gt; "&amp;#8230;" </code></pre> http://stackoverflow.com/questions/378449/rspec-mocking-an-each-block/383523#383523 1 Answer by Titanous for RSpec mocking an :each block Titanous 2008-12-20T17:43:51Z 2008-12-20T17:43:51Z <p>This should do the trick:</p> <pre><code>describe Parser before do @parser = Parser.new end it "should extract a filename into extracted" do linetext = [ "RCS file: hello,v\n", "bla bla bla\n" ] File.should_receive(:open).with("somefile.txt").and_return(linetext) @parser.parse("somefile.txt") @parser.extracted.should == "hello" end end </code></pre> <p>There are some bugs in the Parser class (it won't pass the test), but that's how I'd write the test.</p> http://stackoverflow.com/questions/128580/jquery-find-problem 2 jQuery $().find problem Titanous 2008-09-24T17:38:36Z 2008-09-24T18:42:40Z <p>I'm trying to get the contents of a XML document element, but the element has a colon in it's name.</p> <p>This line works for every element but the ones with a colon in the name:</p> <pre><code>$(this).find("geo:lat").text(); </code></pre> <p>I assume that the colon needs escaping. How do I fix this?</p> http://stackoverflow.com/questions/42566/getting-the-hostname-or-ip-in-ruby-on-rails/42923#42923 4 Answer by Titanous for Getting the Hostname or IP in Ruby on Rails Titanous 2008-09-04T00:37:30Z 2008-09-04T00:37:30Z <p>From <a href="http://coderrr.wordpress.com/2008/05/28/get-your-local-ip-address/" rel="nofollow">coderrr.wordpress.com</a>:</p> <pre><code>require 'socket' def local_ip orig, Socket.do_not_reverse_lookup = Socket.do_not_reverse_lookup, true # turn off reverse DNS resolution temporarily UDPSocket.open do |s| s.connect '64.233.187.99', 1 s.addr.last end ensure Socket.do_not_reverse_lookup = orig end # irb:0&gt; local_ip # =&gt; "192.168.0.127" </code></pre> http://stackoverflow.com/questions/26183/screenshot-taking-tools/26274#26274 2 Answer by Titanous for Screenshot Taking Tools Titanous 2008-08-25T15:38:50Z 2008-08-25T15:38:50Z <p>I use <a href="http://www.donationcoder.com/Software/Mouser/screenshotcaptor/index.html" rel="nofollow">ScreenShot Captor</a> (free donationware) on Windows and <a href="http://skitch.com/" rel="nofollow">Skitch</a> on OS X (free public beta). </p> <p><strong>Screenshot Captor</strong> Features:</p> <ul> <li>Optimized for taking lots of screenshots with minimal intervention.</li> <li>Smart autonaming of files, and ability to embed textual comments in files.</li> <li>Good multi-monitor support.</li> <li>Highly configurable to make it work the way you want it to; stays out of your way in the system tray.</li> <li>Lots of capture modes: Multimon (multiple monitors), Desktop, Active Window, Region, Windows Object. Each mode has a hotkey for quick access.</li> <li>Unique Cool Effects, including automatic active window enhancement (see pictures below).</li> <li>Unsurpassed support for 3rd party user configurable tools, including file browsers and image editors; extend the program to do whatever you need by interfacing it with other programs.</li> <li>Slimline sidebar file browser provides full shell operations.</li> <li>Optional automatic image file versioning. </li> <li>Automatically finds boundaries of non-rectangular/themed windows.</li> <li>Autoscroll capture for windows too big for screen.</li> <li>Deluxe thumbnail maker.</li> <li>Quick PostCapture PopUp Dialog.</li> <li>Quick Screenshot Emailer Menu.</li> </ul> http://stackoverflow.com/questions/899/best-subversion-client-for-mac-os/3592#3592 1 Answer by Titanous for Best subversion client for Mac OS Titanous 2008-08-06T15:56:57Z 2008-08-06T15:56:57Z <p>I use the svn command, and the TextMate SVN bundle.</p> http://stackoverflow.com/questions/3530/how-do-i-rake-tasks-within-a-ruby-script/3543#3543 9 Answer by Titanous for How do I rake tasks within a ruby script? Titanous 2008-08-06T15:24:00Z 2008-08-06T15:24:00Z <p>from <a href="http://www.timocracy.com/articles/2008/02/21/calling-invoking-rails-rake-tasks-from-within-ruby-for-testing-try-2" rel="nofollow">timocracy.com</a>:</p> <pre><code>require 'rake' require 'rake/rdoctask' require 'rake/testtask' require 'tasks/rails' def capture_stdout s = StringIO.new oldstdout = $stdout $stdout = s yield s.string ensure $stdout = oldstdout end Rake.application.rake_require '../../lib/tasks/metric_fetcher' results = capture_stdout {Rake.application['metric_fetcher'].invoke} </code></pre> http://stackoverflow.com/questions/2549/what-is-good-forum-software-to-add-to-an-existing-rails-application/2552#2552 4 Answer by Titanous for What is good forum software to add to an existing Rails application? Titanous 2008-08-05T16:39:53Z 2008-08-05T16:39:53Z <p><a href="http://beast.caboo.se/" rel="nofollow">Beast</a> and <a href="http://rforum.andreas-s.net/" rel="nofollow">RForum</a> are the two that I know of.</p> http://stackoverflow.com/questions/2486/what-is-progressive-enhancement/2504#2504 2 Answer by Titanous for What is Progressive Enhancement? Titanous 2008-08-05T15:55:59Z 2008-08-05T15:55:59Z <p>I wrote a <a href="http://nettuts.com/javascript-ajax/creating-a-dynamic-poll-with-jquery-and-php/" rel="nofollow">tutorial</a> on creating a poll that used progressive enhancement at <a href="http://nettuts.com/" rel="nofollow">NETTUTS</a>. The idea is to create a functional site using XHTML/CSS and PHP, and then intercept forms etc with Javascript. (I used JQuery).</p> http://stackoverflow.com/questions/2402/what-programs-do-you-use-to-create-graphic-images/2419#2419 19 Answer by Titanous for What programs do you use to create graphic images? Titanous 2008-08-05T14:50:09Z 2008-08-05T14:50:09Z <p>Adobe Illustrator is the industry standard for vector image creation. <a href="http://www.inkscape.org/" rel="nofollow">Inkscape</a> is a free open source alternative.</p> <p>Adobe Photoshop is the industry standard for image creation/manipulation. <a href="http://www.gimp.org/" rel="nofollow">The GIMP</a> is a free open source alternative.</p> <p>It's up to you as to what to buy/learn.</p> http://stackoverflow.com/questions/615954/ruby-integer-to-binary-string/615994#615994 Comment by Titanous on Ruby Integer to Binary string Titanous 2009-03-05T18:38:27Z 2009-03-05T18:38:27Z I'm using Rijndael (AES) with the Crypt gem http://stackoverflow.com/questions/378449/rspec-mocking-an-each-block Comment by Titanous on RSpec mocking an :each block Titanous 2008-12-22T01:48:25Z 2008-12-22T01:48:25Z One bug is extracted should be the instance variable, @extracted. See my comment for the correct test. http://stackoverflow.com/questions/128580/jquery-find-problem/128640#128640 Comment by Titanous on jQuery $().find problem Titanous 2008-09-24T18:33:37Z 2008-09-24T18:33:37Z That didn't work for me.