User Jason Navarrete - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T02:10:01Zhttp://stackoverflow.com/feeds/user/3920http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/38039/how-can-i-get-the-datetime-for-the-start-of-the-week/38067#3806717Answer by Jason Navarrete for How can I get the DateTime for the Start of the Week?Jason Navarrete2008-09-01T15:47:47Z2009-12-02T01:59:55Z<p>A little more verbose and culture-aware:</p>
<pre><code>System.Globalization.CultureInfo ci =
System.Threading.Thread.CurrentThread.CurrentCulture;
DayOfWeek fdow = ci.DateTimeFormat.FirstDayOfWeek;
DayOfWeek today = DateTime.Now.DayOfWeek;
DateTime sow = DateTime.Now.AddDays(-(today - fdow)).Date;
</code></pre>
http://stackoverflow.com/questions/340624/do-you-leave-parentheses-in-or-out-in-ruby/342475#3424755Answer by Jason Navarrete for Do you leave parentheses in or out in Ruby?Jason Navarrete2008-12-04T23:51:38Z2008-12-04T23:51:38Z<p>From the <a href="http://www.pathf.com/blogs/2008/10/elements-of-ruby-style/" rel="nofollow" title="Elements of Ruby Style">Elements of Ruby Style</a></p>
<blockquote>
<p><strong>Ruby allows you to leave out parenthesis, in general, resist this
temptation.</strong></p>
<p>Parenthesis make the code easier to
follow. General Ruby style is to use
them, except in the following cases:</p>
<ul>
<li>Always leave out empty parentheses</li>
<li>The parentheses can be left out of a single command that is surrounded by
ERb delimiters -- the ERb markers make
sure the code is still readable</li>
<li>A line that is a single command and a single simple argument can be
written without the parenthesis.
Personally, I find that I do this less
and less, but it's still perfectly
readable. I tend not to like single
lines in regular ruby code that have
multiple arguments and no parentheses.</li>
<li>A lot of Ruby-based Domain Specific Languages (such as Rake) don't use
parenthesis to preserve a more natural
language feel to their statements.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/158769/best-books-to-learn-about-design/158790#1587901Answer by Jason Navarrete for Best books to learn about designJason Navarrete2008-10-01T17:37:38Z2008-10-01T17:37:38Z<p>Alan Cooper's <em>About Face 3: The Essentials of Interaction Design</em> is one of the big books on UI design.</p>
<ul>
<li><a href="http://www.codinghorror.com/blog/archives/000897.html" rel="nofollow">Coding Horror: The Three Faces of About Face</a></li>
</ul>
http://stackoverflow.com/questions/158539/br-not-working-in-firefox-and-chrome/158549#15854945Answer by Jason Navarrete for </br> not working in firefox and chromeJason Navarrete2008-10-01T16:37:19Z2008-10-01T16:43:05Z<p>You're looking for <code><br /></code> instead of <code></br></code></p>
<p>Self closing tags such as <em>br</em> have the slash at the end of the tag.</p>
<p>Here are the other self-closing tags in XHTML:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/97522/what-are-all-the-valid-self-closing-tags-in-xhtml-as-implemented-by-the-major-b">What are all the valid self-closing tags in XHTML (as implemented by the major browsers)?</a></li>
</ul>
http://stackoverflow.com/questions/52238/how-can-i-highlight-a-table-row-using-prototype8How can I highlight a table row using Prototype?Jason Navarrete2008-09-09T15:58:37Z2008-09-27T04:45:35Z
<p>How can I use the Prototype library and create unobtrusive javascript to inject the onmouseover and onmouseout events to each row, rather than putting the javascript in each table row tag?</p>
<p>An answer utilizing the Prototype library (instead of mootools, jQuery, etc) would be most helpful.</p>
http://stackoverflow.com/questions/86394/free-cheap-task-bug-management-software/86453#864532Answer by Jason Navarrete for Free/Cheap Task/Bug Management softwareJason Navarrete2008-09-17T19:02:32Z2008-09-17T19:02:32Z<p>If you're looking for something that works well for non-technical folks, I would suggest 37signal's <a href="http://basecamphq.com/" rel="nofollow">Basecamp</a>. Free for one project.</p>
<p>For something more technical, we can't forget to mention Joel Spolsky's <a href="http://www.fogcreek.com/FogBugz/" rel="nofollow">FogBugz</a>. Hosted at $25/month.</p>
http://stackoverflow.com/questions/85459/is-it-possible-to-combine-a-series-of-pdfs-into-one-using-ruby/85618#856188Answer by Jason Navarrete for Is it possible to combine a series of PDFs into one using Ruby?Jason Navarrete2008-09-17T17:28:59Z2008-09-17T17:28:59Z<p>A <a href="http://www.ruby-forum.com/topic/120008#new" rel="nofollow">Ruby-Talk</a> post suggests using the <strong><a href="http://www.accesspdf.com/pdftk/" rel="nofollow">pdftk</a></strong> toolkit to merge the PDFs. </p>
<p>It should be relatively straightforward to call <em>pdftk</em> as an external process and have it handle the merging. <em>PDF::Writer</em> may be overkill because all you're looking to accomplish is a simple append.</p>
http://stackoverflow.com/questions/85451/python-time-clock-vs-time-time-accuracy/85533#855332Answer by Jason Navarrete for Python - time.clock() vs. time.time() - accuracy?Jason Navarrete2008-09-17T17:18:27Z2008-09-17T17:18:27Z<p>According to the <strong><a href="http://docs.python.org/lib/module-time.html" rel="nofollow">time module docs</a></strong>:</p>
<blockquote>
<p><strong>clock()</strong></p>
<p>On Unix, return the current processor
time as a floating point number
expressed in seconds. The precision,
and in fact the very definition of the
meaning of ``processor time'', depends
on that of the C function of the same
name, but in any case, <strong>this is the</strong>
<strong>function to use for benchmarking</strong>
<strong>Python or timing algorithms.</strong></p>
</blockquote>
<p>Additionally, there is the <a href="http://docs.python.org/lib/module-timeit.html" rel="nofollow">timeit</a> module for benchmarking code snippets.</p>
http://stackoverflow.com/questions/74957/is-there-a-powershell-string-does-not-contain-cmdlet-or-syntax/75033#750330Answer by Jason Navarrete for Is there a Powershell "string does not contain" cmdlet or syntax?Jason Navarrete2008-09-16T17:50:42Z2008-09-16T17:50:42Z<p>You can probably use <em>-notmatch</em> or <em>-notlike</em> in conjunction with each of the strings in your array.</p>
http://stackoverflow.com/questions/63814/what-kind-of-cal-do-i-need-for-sharepoint/63827#638271Answer by Jason Navarrete for What kind of CAL do I need for Sharepoint?Jason Navarrete2008-09-15T15:15:56Z2008-09-15T15:15:56Z<p>No specific SharePoint CALs are required for Windows SharePoint Services (WSS). They are only necessary if deploying Microsoft Office SharePoint Server (MOSS).</p>
http://stackoverflow.com/questions/59968/best-editor-or-ide-for-ruby/59984#599844Answer by Jason Navarrete for Best Editor or IDE for Ruby?Jason Navarrete2008-09-12T21:16:04Z2008-09-12T21:16:04Z<p><a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a> is the one that comes with the rubyforge installer which has worked fairly well for me.</p>
<p>Scott Hanselman has a updated version of <a href="http://www.hanselman.com/blog/NewReleaseOfNotepad2UpdatedAgainWithRubySupport.aspx" rel="nofollow">Notepad2 which supports ruby syntax highlighting</a>.</p>
<p>And don't forget <a href="http://www.sapphiresteel.com/" rel="nofollow">Ruby in Steel</a> and <a href="http://www.netbeans.org/index.html" rel="nofollow">NetBeans</a> if you're looking for a more full fledged IDE.</p>
http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-in/59905#599050Answer by Jason Navarrete for Can a Bash script tell what directory it's in?Jason Navarrete2008-09-12T20:43:07Z2008-09-12T20:43:07Z<pre><code>`pwd`
</code></pre>
<p>(remember the backtics) will get you the current directory from within your bash script.</p>
<p>But I would use the $PWD variable instead.</p>
http://stackoverflow.com/questions/55574/learning-ruby-on-rails/55610#5561037Answer by Jason Navarrete for Learning Ruby on RailsJason Navarrete2008-09-11T01:11:52Z2008-09-12T19:30:22Z<p>I've been moving from C# in my professional career to looking at Ruby and RoR in my personal life, and I've found linux to be slightly more appealing personally for development. Particularly now that I've started using git, the implementation is cleaner on linux.</p>
<p>Currently I'm dual booting and getting closer to running Ubuntu full time. I'm using gedit with various plugins for the development environment.</p>
<p>A large amount of the Rails developers are using (gasp) Macs, which has actually got me thinking in that direction.</p>
<p>Although I haven't tried it, <a href="http://www.sapphiresteel.com/" rel="nofollow">Ruby in Steel</a> gives you a Ruby IDE inside the Visual Studio world, and <a href="http://www.ironruby.net/" rel="nofollow">IronRuby</a> is the .NET flavor of Ruby, if you're interested.</p>
<p>As far as books are concerned, the <em><a href="http://pragprog.com/titles/ruby3/programming-ruby-3" rel="nofollow">Programming Ruby</a></em> (also known as the Picaxe) book from the Pragmatic Programmers is the de-facto for learning Ruby. I bit the bullet and purchased that book and <em><a href="http://pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition" rel="nofollow">Agile Web Development with Rails</a></em>; both books have been excellent.</p>
<p><a href="http://peepcode.com/" rel="nofollow">Peepcode</a> screencasts and PDF books have also been great for getting started; at $9 per screencast it's hard to go wrong. I actually bought a 5-pack.</p>
<p>Also check out the following:</p>
<ul>
<li><a href="http://podcast.rubyonrails.org/" rel="nofollow">Rails Podcast</a></li>
<li><a href="http://railscasts.com/" rel="nofollow">Railscasts</a></li>
<li><a href="http://www.softiesonrails.com/" rel="nofollow">Softies on Rails</a> - Ruby on Rails for .NET Developers</li>
<li><a href="http://www.railsenvy.com/podcast" rel="nofollow">Rails Envy Podcast</a></li>
</ul>
<p>I've burned through the backlog of Rails and Rails Envy podcasts in the past month and they have provided wonderful insight into lots of topics, even regarding software development in general.</p>
http://stackoverflow.com/questions/56820/round-in-python-doesnt-seem-to-be-rounding-properly/56849#568490Answer by Jason Navarrete for round() in Python doesn't seem to be rounding properlyJason Navarrete2008-09-11T15:14:15Z2008-09-11T15:21:53Z<p><strong>printf</strong> the sucker.</p>
<pre><code>print '%.1f' % 5.59 # returns 5.6
</code></pre>
http://stackoverflow.com/questions/55577/how-can-i-test-my-web-pages-in-microsoft-internet-explorer-on-a-mac/55587#555877Answer by Jason Navarrete for How can I test my web pages in Microsoft Internet Explorer on a Mac?Jason Navarrete2008-09-11T00:59:35Z2008-09-11T00:59:35Z<p>Once you've virtualized Windows on your Mac, you can also try the <strong>Mutiple IE</strong> installer to get a variety of flavors of Internet Explorer without having to create separate VM instances.</p>
<ul>
<li><a href="http://tredosoft.com/Multiple_IE" rel="nofollow">Multiple IE Installer</a></li>
</ul>
<p>If you're just wanting to see a simple screenshot of how the page will render in various browsers, you can try the free service <strong>browsershots</strong> or there are a number of services that will automatically test your pages in multiple browsers.</p>
<ul>
<li><a href="http://browsershots.org/" rel="nofollow">browsershots.org</a></li>
</ul>
http://stackoverflow.com/questions/55434/how-to-parse-relative-time/55474#554740Answer by Jason Navarrete for How to parse relative time?Jason Navarrete2008-09-10T23:08:30Z2008-09-11T00:52:30Z<p>The ruby folks have attempted to tackle this with a parser called <strong>Chronic</strong>.</p>
<ul>
<li><a href="http://chronic.rubyforge.org/" rel="nofollow">Chronic RDocs</a></li>
<li><a href="http://github.com/mojombo/chronic/tree/master" rel="nofollow">Chronic on GitHub</a></li>
</ul>
<p>I watched an informative video presentation recently on how the author went about solving this problem. </p>
<ul>
<li><a href="http://podcast.sdruby.com/2006/10/3/episode-008-chronic" rel="nofollow">Chronic Presentation (San Diego Ruby Brigade)</a></li>
</ul>
http://stackoverflow.com/questions/54652/need-help-with-programming-environment/54671#546713Answer by Jason Navarrete for Need help with Programming EnvironmentJason Navarrete2008-09-10T16:53:43Z2008-09-10T16:53:43Z<p>Our illustrious Jeff Attwood actually has a blog post on this topic:</p>
<ul>
<li><a href="http://www.codinghorror.com/blog/archives/000942.html" rel="nofollow">Choosing Dual or Quad Core</a></li>
</ul>
<p>However, I would get a quad. Might as well.</p>
http://stackoverflow.com/questions/54365/prepend-to-a-file-one-liner-shell/54381#543814Answer by Jason Navarrete for prepend to a file one liner shell? Jason Navarrete2008-09-10T15:21:26Z2008-09-10T15:21:26Z<p>This still uses a temp file, but at least it is on one line:</p>
<pre><code>echo "text"|cat - yourfile > /tmp/out && mv /tmp/out yourfile
</code></pre>
<p>Credit: <a href="http://www.cyberciti.biz/faq/bash-prepend-text-lines-to-file/" rel="nofollow">BASH: Prepend A Text / Lines To a File</a></p>
http://stackoverflow.com/questions/53162/how-can-i-do-a-line-continuation-of-code-in-python/53182#531821Answer by Jason Navarrete for How can I do a line continuation of code in Python?Jason Navarrete2008-09-09T23:53:17Z2008-09-09T23:53:17Z<blockquote>
<p>From the horse's mouth: <a href="http://docs.python.org/ref/explicit-joining.html" rel="nofollow">Explicit line
joining </a></p>
<p>Two or more physical lines may be
joined into logical lines using
backslash characters (), as follows:
when a physical line ends in a
backslash that is not part of a string
literal or comment, it is joined with
the following forming a single logical
line, deleting the backslash and the
following end-of-line character. For
example:</p>
<pre><code>if 1900 < year < 2100 and 1 <= month <= 12 \
and 1 <= day <= 31 and 0 <= hour < 24 \
and 0 <= minute < 60 and 0 <= second < 60: # Looks like a valid date
return 1
</code></pre>
<p>A line ending in a backslash cannot
carry a comment. A backslash does not
continue a comment. A backslash does
not continue a token except for string
literals (i.e., tokens other than
string literals cannot be split across
physical lines using a backslash). A
backslash is illegal elsewhere on a
line outside a string literal. </p>
</blockquote>
http://stackoverflow.com/questions/53139/what-do-you-use-to-capture-webpages-diagram-pictures-and-code-snippets-for-later/53177#531772Answer by Jason Navarrete for What do you use to capture webpages, diagram/pictures and code snippets for later reference?Jason Navarrete2008-09-09T23:49:25Z2008-09-09T23:49:25Z<ul>
<li><a href="http://evernote.com/" rel="nofollow">Evernote</a></li>
<li><a href="http://www.flos-freeware.ch/notepad2.html" rel="nofollow">Notepad2</a>'s clipboard feature (<em>Notepad2.exe /c</em> as a link in <a href="http://launchy.net/" rel="nofollow">Launchy</a>)</li>
<li><a href="http://www.windowclippings.com/" rel="nofollow">Windows Clippings</a> or <a href="http://www.webtree.ca/newlife/printkey_info.htm" rel="nofollow">PrintKey</a></li>
<li>Firefox extension <a href="http://pearlcrescent.com/products/pagesaver/" rel="nofollow">Page Saver</a></li>
<li><a href="http://delicious.com/" rel="nofollow">Delicious</a> </li>
</ul>
http://stackoverflow.com/questions/52359/simple-basic-form-spam-reduction-checking-for-javascript/52392#523926Answer by Jason Navarrete for Simple & basic form spam reduction: checking for Javascript?Jason Navarrete2008-09-09T17:19:42Z2008-09-09T17:19:42Z<p>There are still a large number of people that run with Javascript turned off.</p>
<p>Alternatively, I have had decent success with stopping form spam using CSS. Basically, include an input field and label that is hidden using CSS <em>(display: none;)</em> and once submitted, check if anything has been entered in the field. </p>
<p>I generally label the field as a spam filter with an instruction to <em>not</em> put anything in the field, but all newer browsers will properly hide the block.</p>
<ul>
<li>More: <a href="http://www.modernblue.com/web-design-blog/fighting-spam-with-css/" rel="nofollow">Fighting Spam with CSS</a></li>
</ul>
<p><a href="http://recaptcha.net/" rel="nofollow">reCAPTCHA</a> is also surprisingly easy to implement.</p>
http://stackoverflow.com/questions/52165/is-there-a-free-webservice-available-for-song-and-album-information/52295#522950Answer by Jason Navarrete for Is there a free webservice available for song and album information?Jason Navarrete2008-09-09T16:30:14Z2008-09-09T16:30:14Z<p>Yahoo also just recently released their music API. RESTful, with XML, JSON, and RSS outputs.</p>
<ul>
<li><a href="http://developer.yahoo.com/music/" rel="nofollow">Yahoo! Music API</a></li>
</ul>
http://stackoverflow.com/questions/51262/find-long-running-query-on-informix/52121#52121-1Answer by Jason Navarrete for Find long running query on Informix?Jason Navarrete2008-09-09T15:12:52Z2008-09-09T15:12:52Z<pre><code>SELECT ELAPSED_TIME_MIN,SUBSTR(AUTHID,1,10) AS AUTH_ID,
AGENT_ID, APPL_STATUS,SUBSTR(STMT_TEXT,1,20) AS SQL_TEXT
FROM SYSIBMADM.LONG_RUNNING_SQL
WHERE ELAPSED_TIME_MIN > 0
ORDER BY ELAPSED_TIME_MIN DESC
</code></pre>
<p>Credit: <a href="http://it.toolbox.com/blogs/db2luw/sql-to-view-long-running-queries-13577" rel="nofollow">SQL to View Long Running Queries </a></p>
http://stackoverflow.com/questions/40273/whats-the-best-way-to-use-soap-with-ruby/40318#403183Answer by Jason Navarrete for What's the best way to use SOAP with Ruby?Jason Navarrete2008-09-02T19:05:10Z2008-09-02T23:28:09Z<p>Try <strong>SOAP4R</strong></p>
<ul>
<li><a href="http://dev.ctor.org/soap4r" rel="nofollow">SOAP4R</a></li>
<li><a href="http://markthomas.org/2007/09/12/getting-started-with-soap4r/" rel="nofollow">Getting Started with SOAP4R</a></li>
</ul>
<p>And I just heard about this on the Rails Envy Podcast (ep 31):</p>
<ul>
<li><a href="http://hideoustriumph.wordpress.com/2008/05/05/ws-deathstar-for-the-rest-of-us/" rel="nofollow">WS-Deathstar SOAP walkthrough </a></li>
</ul>
http://stackoverflow.com/questions/39107/tool-for-degrading-my-network-connection/39884#398840Answer by Jason Navarrete for Tool for degrading my network connection?Jason Navarrete2008-09-02T16:05:17Z2008-09-02T16:05:17Z<p><a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a> is a(nother) web proxy that can be used to degrade your connection.</p>
http://stackoverflow.com/questions/38602/best-way-to-display-format-sql-2005-money-data-type-in-asp-net/38613#386130Answer by Jason Navarrete for Best way to display/format SQL 2005 money data type in ASP.NetJason Navarrete2008-09-01T23:31:08Z2008-09-01T23:31:08Z<p>Use the <em>ToString</em> method with "c" to format it as currency.</p>
<pre><code>this.txtPayment.Text = dr["Payment"].ToString("c");
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx" rel="nofollow">Standard Numeric Format Strings</a></p>
http://stackoverflow.com/questions/38299/tutorial-on-understanding-strings-in-symbian/38568#385687Answer by Jason Navarrete for Tutorial on understanding strings in SymbianJason Navarrete2008-09-01T22:49:31Z2008-09-01T22:49:31Z<p>Here are a few sites on blogspot that may help. They have RSS feeds that will hopefully be easier to consume than paging through PDFs.</p>
<ul>
<li><a href="http://descriptor-tips.blogspot.com/" rel="nofollow">http://descriptor-tips.blogspot.com/</a></li>
<li><a href="http://descriptors.blogspot.com/" rel="nofollow">http://descriptors.blogspot.com/</a></li>
</ul>
http://stackoverflow.com/questions/38345/is-there-an-elegant-zip-to-interleave-two-lists-in-perl-5/38365#3836516Answer by Jason Navarrete for Is there an elegant zip to interleave two lists in Perl 5?Jason Navarrete2008-09-01T20:13:58Z2008-09-01T20:13:58Z<p>The <a href="http://search.cpan.org/~vparseval/List-MoreUtils-0.22/lib/List/MoreUtils.pm" rel="nofollow">List::MoreUtils</a> module has a zip/mesh function that should do the trick.</p>
<p>Here is the source of the mesh function:</p>
<pre><code>sub mesh (\@\@;\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@\@) {
my $max = -1;
$max < $#$_ && ($max = $#$_) for @_;
map { my $ix = $_; map $_->[$ix], @_; } 0..$max;
}
</code></pre>
http://stackoverflow.com/questions/38336/on-the-web-what-fonts-should-i-use-to-create-an-equivalent-experience-cross-plat/38343#383430Answer by Jason Navarrete for On the web, what fonts should I use to create an equivalent experience cross-platform?Jason Navarrete2008-09-01T19:57:00Z2008-09-01T19:57:00Z<p>TrueType Fonts (TTF) will generally work on Windows, Mac, and Linux platforms.</p>
<p><a href="http://en.wikipedia.org/wiki/TrueType" rel="nofollow">http://en.wikipedia.org/wiki/TrueType</a></p>
http://stackoverflow.com/questions/4418/how-do-i-update-ruby-gems-from-behind-a-proxy-isa-ntlm/37161#371616Answer by Jason Navarrete for How do I update Ruby Gems from behind a Proxy (ISA-NTLM)Jason Navarrete2008-08-31T21:59:45Z2008-08-31T21:59:45Z<p>I've been using cntlm (<a href="http://cntlm.sourceforge.net/" rel="nofollow">http://cntlm.sourceforge.net/</a>) at work. Configuration is very similar to ntlmaps.</p>
<ul>
<li>gem install --http-proxy <a href="http://localhost:3128" rel="nofollow">http://localhost:3128</a> _name_of_gem_</li>
</ul>
<p>Works great, and also allows me to connect my Ubuntu box to the ISA proxy.</p>
<p>Check out <a href="http://cntlm.wiki.sourceforge.net/" rel="nofollow">http://cntlm.wiki.sourceforge.net/</a> for more information</p>
http://stackoverflow.com/questions/54998/how-scalable-is-sqliteComment by Jason Navarrete on How Scalable is SQLite?Jason Navarrete2008-09-10T21:29:21Z2008-09-10T21:29:21ZI've actually been curious about this as well. We have a number of internal applications that are running on SQL Server and I wonder if they would perform similarly under Sqlite. With regards to general speed, not things like ease of administration and whatnot.http://stackoverflow.com/questions/52238/how-can-i-highlight-a-table-row-using-prototype/52273#52273Comment by Jason Navarrete on How can I highlight a table row using Prototype?Jason Navarrete2008-09-09T17:01:46Z2008-09-09T17:01:46ZFrom this am I correct to assume I can select all the rows if I class them with <i>highlightable</i> and calling $$('.highlightable').each()?