User Titanous - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:06:13Zhttp://stackoverflow.com/feeds/user/399http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/26255/reserved-keywords-in-javascript10Reserved Keywords in JavascriptTitanous2008-08-25T15:29:39Z2009-11-03T18:58:42Z
<p>What Javascript keywords (function names, variables, etc) are reserved?</p>
http://stackoverflow.com/questions/615954/ruby-integer-to-binary-string0Ruby Integer to Binary stringTitanous2009-03-05T18:25:50Z2009-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#3835614Answer by Titanous for Is there a better HTML escaping and unescaping tool than CGI for Ruby?Titanous2008-12-20T18:17:41Z2008-12-20T18:17:41Z<p>The htmlentities gem should do the trick:</p>
<pre><code>require 'rubygems'
require 'htmlentities'
coder = HTMLEntities.new
coder.decode('&#8230;') # => "…"
coder.decode('&hellip;') # => "…"
coder.decode('&#162;') # => "¢"
coder.decode('&cent;') # => "¢"
coder.encode("…", :named) # => "&hellip;"
coder.encode("…", :decimal) # => "&#8230;"
</code></pre>
http://stackoverflow.com/questions/378449/rspec-mocking-an-each-block/383523#3835231Answer by Titanous for RSpec mocking an :each blockTitanous2008-12-20T17:43:51Z2008-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-problem2jQuery $().find problemTitanous2008-09-24T17:38:36Z2008-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#429234Answer by Titanous for Getting the Hostname or IP in Ruby on RailsTitanous2008-09-04T00:37:30Z2008-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> local_ip
# => "192.168.0.127"
</code></pre>
http://stackoverflow.com/questions/26183/screenshot-taking-tools/26274#262742Answer by Titanous for Screenshot Taking ToolsTitanous2008-08-25T15:38:50Z2008-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#35921Answer by Titanous for Best subversion client for Mac OSTitanous2008-08-06T15:56:57Z2008-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#35439Answer by Titanous for How do I rake tasks within a ruby script?Titanous2008-08-06T15:24:00Z2008-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#25524Answer by Titanous for What is good forum software to add to an existing Rails application?Titanous2008-08-05T16:39:53Z2008-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#25042Answer by Titanous for What is Progressive Enhancement?Titanous2008-08-05T15:55:59Z2008-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#241919Answer by Titanous for What programs do you use to create graphic images?Titanous2008-08-05T14:50:09Z2008-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#615994Comment by Titanous on Ruby Integer to Binary stringTitanous2009-03-05T18:38:27Z2009-03-05T18:38:27ZI'm using Rijndael (AES) with the Crypt gemhttp://stackoverflow.com/questions/378449/rspec-mocking-an-each-blockComment by Titanous on RSpec mocking an :each blockTitanous2008-12-22T01:48:25Z2008-12-22T01:48:25ZOne 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#128640Comment by Titanous on jQuery $().find problemTitanous2008-09-24T18:33:37Z2008-09-24T18:33:37ZThat didn't work for me.