User engtech - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T16:33:29Z http://stackoverflow.com/feeds/user/175 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/438/implementation-of-remember-me-in-a-rails-application/600#600 1 Answer by engtech for Implementation of "Remember me" in a Rails application. engtech 2008-08-03T01:53:49Z 2009-07-02T00:57:54Z <p>This is a pretty good write-up of one guys experience of creating 30-day persistent sessions.</p> <p>WARNING: blog post is from 2006</p> <p><a href="http://grahamglass.blogs.com/main/2006/05/rails%5Fsessionsr.html" rel="nofollow">http://grahamglass.blogs.com/main/2006/05/rails_sessionsr.html</a></p> http://stackoverflow.com/questions/746/format-string-to-title-case/771#771 4 Answer by engtech for Format string to title case engtech 2008-08-03T18:22:47Z 2008-10-12T12:20:29Z <p>Here's a Perl solution <a href="http://daringfireball.net/2008/05/title_case" rel="nofollow">http://daringfireball.net/2008/05/title_case</a></p> <p>Here's a Ruby solution <a href="http://frankschmitt.org/projects/title-case" rel="nofollow">http://frankschmitt.org/projects/title-case</a></p> <p>Here's a Ruby one-liner solution: <a href="http://snippets.dzone.com/posts/show/4702" rel="nofollow">http://snippets.dzone.com/posts/show/4702</a></p> <pre><code>'some string here'.gsub(/\b\w/){$&amp;.upcase} </code></pre> <p>What the one-liner is doing is using a regular expression substitution of the first character of each word with the uppercase version of it.</p> http://stackoverflow.com/questions/19019/ideal-computer-for-software-development/20643#20643 0 Answer by engtech for Ideal Computer for Software Development engtech 2008-08-21T17:42:50Z 2008-08-21T17:42:50Z <p>My ideal hardware is some sort of server farmer managed by Sun's GRID or Platform's LSF.</p> <p>Then you can run parallel builds without slowing yourself down.</p> http://stackoverflow.com/questions/20336/state-of-registers-after-bootup/20635#20635 1 Answer by engtech for State of Registers After Bootup engtech 2008-08-21T17:40:59Z 2008-08-21T17:40:59Z <p>Always assume undefined, otherwise you'll hit bad problems if you ever try to port architectures.</p> <p>There is nothing quite like the pain of porting code that assumes everything uninitialized will be set to zero.</p> http://stackoverflow.com/questions/13204/why-doesnt-my-cron-job-work-properly/16540#16540 0 Answer by engtech for Why Doesn't My Cron Job Work Properly? engtech 2008-08-19T16:56:04Z 2008-08-19T16:56:04Z <p>Is cron sending emails with logs?</p> <p>If not, pipe the output of cron to a log file.</p> <p>Make sure to redirect STDERR to the log.</p> http://stackoverflow.com/questions/16064/what-ide-to-use-for-developing-in-ruby-on-rails-on-windows/16537#16537 0 Answer by engtech for What IDE to use for developing in Ruby on Rails on windows? engtech 2008-08-19T16:53:38Z 2008-08-19T16:53:38Z <p>I use Emacs on Windows.</p> <p>Installing and configuring it to work with rails is a pain though.</p> http://stackoverflow.com/questions/16413/parse-usable-street-address-city-state-zip-from-a-string/16527#16527 3 Answer by engtech for Parse usable Street Address, City, State, Zip from a string engtech 2008-08-19T16:47:16Z 2008-08-19T16:47:16Z <p>If it's human entered data, then you'll spend too much time trying to code around the exceptions.</p> <p>Try:</p> <ol> <li><p>Regular expression to extract the zip code</p></li> <li><p>Zip code lookup (via appropriate government DB) to get the correct address</p></li> <li><p>Get an intern to manually verify the new data matches the old</p></li> </ol> http://stackoverflow.com/questions/1261/what-are-the-advantages-of-using-svn-over-cvs/14952#14952 0 Answer by engtech for What are the advantages of using SVN over CVS? engtech 2008-08-18T17:22:05Z 2008-08-18T17:22:05Z <p>One thing not to overlook is ecosystem. I was working at a CVSNT shop, and I was finding more and more open source tools supported SubVersion by default.</p> http://stackoverflow.com/questions/1176/open-source-ruby-projects/12296#12296 4 Answer by engtech for Open Source Ruby Projects engtech 2008-08-15T14:35:50Z 2008-08-15T14:35:50Z <p>Instead of joining an open source project, find an itch you want to scratch.</p> <p>I find my first year with a language is almost always throw away code (or at least, it <em>should</em> be).</p> <p>Find a problem you (personally) want to solve. Use ruby to do it. You'll learn a lot.</p> http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/12293#12293 0 Answer by engtech for Why all the Active Record hate? engtech 2008-08-15T14:32:24Z 2008-08-15T14:32:24Z <p>The problem with ActiveRecord is that the queries it automatically generates for you can cause performance problems.</p> <p>You end up doing some unintuitive tricks to optimize the queries that leave you wondering if it would have been more time effective to write the query by hand in the first place.</p> http://stackoverflow.com/questions/6806/what-is-the-best-way-to-learn-ruby/12288#12288 1 Answer by engtech for What is the best way to learn Ruby? engtech 2008-08-15T14:28:09Z 2008-08-15T14:28:09Z <p>The easiest way to learn ruby is to find a small project that you know how to solve in another language and use ruby to solve it.</p> <p>I found the Pickaxe book to be unnecessary. Bookmark <a href="http://ruby-doc.org/" rel="nofollow">http://ruby-doc.org/</a> instead.</p> <p>If you're learning Rails, skip Agile Web Programming with Rails 2nd Edition. Get the 3rd edition (only available as PDF until Oct 15 2008). That book becomes out of date amazingly fast.</p> http://stackoverflow.com/questions/12171/what-kinds-of-non-technical-courses-should-a-software-engineer-or-computer-scient/12286#12286 1 Answer by engtech for What kinds of non-technical courses should a software engineer or computer scientist take? engtech 2008-08-15T14:24:23Z 2008-08-15T14:24:23Z <p>I'll second any course that helps improve your communication with others; it's our stereotypical kryptonite.</p> http://stackoverflow.com/questions/12144/application-configuration-files/12277#12277 8 Answer by engtech for Application configuration files engtech 2008-08-15T14:17:33Z 2008-08-15T14:17:33Z <p>YAML, for the simple reason that it makes for very readable configuration files compared to XML.</p> <p>XML:</p> <pre><code>&lt;user id="babooey" on="cpu1"&gt; &lt;firstname&gt;Bob&lt;/firstname&gt; &lt;lastname&gt;Abooey&lt;/lastname&gt; &lt;department&gt;adv&lt;/department&gt; &lt;cell&gt;555-1212&lt;/cell&gt; &lt;address password="xxxx"&gt;ahunter@example1.com&lt;/address&gt; &lt;address password="xxxx"&gt;babooey@example2.com&lt;/address&gt; &lt;/user&gt; </code></pre> <p>YAML:</p> <pre><code> babooey: computer : cpu1 firstname: Bob lastname: Abooey cell: 555-1212 addresses: - address: babooey@example1.com password: xxxx - address: babooey@example2.com password: xxxx </code></pre> <p>The examples were taken from this page: <a href="http://www.kuro5hin.org/story/2004/10/29/14225/062" rel="nofollow">http://www.kuro5hin.org/story/2004/10/29/14225/062</a></p> http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers/791#791 0 Answer by engtech for Most efficient code for the first 10000 prime numbers? engtech 2008-08-03T18:52:17Z 2008-08-03T18:52:17Z <p>Not efficient at all, but you can use a regular expression to test for prime numbers.</p> <pre><code>^1?$|^(11+?)\1+$/<br></code></pre> http://stackoverflow.com/questions/650/automatically-update-version-number/787#787 2 Answer by engtech for Automatically update version number engtech 2008-08-03T18:46:33Z 2008-08-03T18:46:33Z <p>What source control system are you using? </p> <p>Almost all of them have some form of $ Id $ tag that gets expanded when the file is checked in.</p> <p>I usually use some form of hackery to display this as the version number.</p> <p>The other alternative is use to use the date as the build number: 080803-1448</p> http://stackoverflow.com/questions/664/what-level-of-programming-should-i-have-to-contribute-to-open-source/786#786 5 Answer by engtech for What level of programming should I have to contribute to open source? engtech 2008-08-03T18:42:34Z 2008-08-03T18:42:34Z <p>The easiest way to start with opensource might be to run/manage your own projects. Find an itch you want to scratch with 20 hours of coding or less.</p> <p>Writing plugins for other opensource projects is a great way to contribute something in a limited scope.</p> <p>If you're using PHP, try writing some WordPress plugins.</p> http://stackoverflow.com/questions/672/which-build-configuration-management-tool/782#782 4 Answer by engtech for Which Build-/Configuration Management Tool? engtech 2008-08-03T18:39:47Z 2008-08-03T18:39:47Z <p>If you're comfortable with Ruby at all, use Rake.</p> <p>Rake is by far the simplest build tool I've had the joy to use. It's a domain-specific-language build on top of ruby, basically ruby with a few constructors for handling file dependencies.</p> <p>Because it's ruby you get nice backtraces when build rules fail.</p> <p>Here's simple intro to rakefiles <a href="http://rake.rubyforge.org/files/doc/rakefile_rdoc.html" rel="nofollow">http://rake.rubyforge.org/files/doc/rakefile_rdoc.html</a></p> <p>Here's the full documentation <a href="http://martinfowler.com/articles/rake.html" rel="nofollow">http://martinfowler.com/articles/rake.html</a></p> <p>It is the most concise build language I've ever used, namely because you have full access to ruby.</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/776#776 1 Answer by engtech for Keyboard for programmers engtech 2008-08-03T18:32:11Z 2008-08-03T18:32:11Z <p>It's nothing special, but I love my Logitech G15.</p> <p>It has</p> <ul> <li>LED lights under every key</li> <li>programmable LCD display</li> <li>18 programmable macro keys</li> </ul> <p>Your language/IDE of choice is probably a bigger factor in easily writing code than your keyboard. You should be spending more time thinking than typing.</p> http://stackoverflow.com/questions/610/gui-programming-apis/775#775 1 Answer by engtech for GUI Programming APIs engtech 2008-08-03T18:29:37Z 2008-08-03T18:29:37Z <p>I've been enjoying Shoes in Ruby, but it has the downside that the code isn't stable yet.</p> <p>But it takes an elegant approach to creating GUIs that's simpler than many other things I've played with.</p> http://stackoverflow.com/questions/761/localising-date-format-descriptors/770#770 1 Answer by engtech for Localising date format descriptors engtech 2008-08-03T18:18:54Z 2008-08-03T18:18:54Z <p>Just use ISO-8601. It's an international standard.</p> <p><a href="http://en.wikipedia.org/wiki/ISO_8601" rel="nofollow">http://en.wikipedia.org/wiki/ISO_8601</a></p> http://stackoverflow.com/questions/484/how-do-you-test-layout-design-across-multiple-browsers-oss/606#606 1 Answer by engtech for How do you test layout design across multiple browsers/OSs? engtech 2008-08-03T02:28:06Z 2008-08-03T02:28:06Z <p>VMWare VMWare VMWARE!</p> <p>Want to make your life as a programmer a million times easier? Start using virtualization so that you can run multiple operating systems on one computer without any cross-contamination.</p> <p>The best part is it's really easy to backup the virtualization servers as they are usually only one file.</p> <p>This makes it dead simple to revert to a backup after you've contaminated a build.</p> http://stackoverflow.com/questions/175/annotating-youtube-videos-programatically/604#604 -1 Answer by engtech for Annotating YouTube videos programatically engtech 2008-08-03T02:23:58Z 2008-08-03T02:23:58Z <p>The solution is easy: don't use YouTube.</p> <p>Many other video websites support annotating videos. Use one of them other than YouTube.</p> <p>It would not be possible to do that with Greasemonkey or a Firefox plugin, as you can't interact with the flash player.</p> http://stackoverflow.com/questions/237/distributed-source-control-options/603#603 5 Answer by engtech for Distributed source control options engtech 2008-08-03T02:19:34Z 2008-08-03T02:19:34Z <p>Git is gaining more and more Apple/Windows support now that Rails and github are around.</p> <p>Have you seen <a href="http://github.com/" rel="nofollow">http://github.com/</a>?</p> <p>You should be able to run Git on Windows without Cygwin by using msysGit. <a href="http://code.google.com/p/msysgit/" rel="nofollow">http://code.google.com/p/msysgit/</a></p> <p>As @rictic mentioned, this guide is good: <a href="http://kylecordes.com/2008/04/30/git-windows-go/" rel="nofollow">http://kylecordes.com/2008/04/30/git-windows-go/</a></p> http://stackoverflow.com/questions/173/how-do-i-version-my-ms-sql-database-in-svn/599#599 1 Answer by engtech for How do I version my MS SQL database in SVN? engtech 2008-08-03T01:49:58Z 2008-08-03T01:49:58Z <p>The typical solution is to dump the database as necessary and backup those files.</p> <p>Depending on your development platform, there may be opensource plugins available. Rolling your own code to do it is usually fairly trivial.</p> <p>Note: You may want to backup the database dump instead of putting it into version control. The files can get huge fast in version control, and cause your entire source control system to become slow (I'm recalling a CVS horror story at the moment).</p> http://stackoverflow.com/questions/371/how-do-you-make-sure-email-you-send-programmatically-is-not-automatically-marked/598#598 9 Answer by engtech for How do you make sure email you send programmatically is not automatically marked as spam? engtech 2008-08-03T01:39:56Z 2008-08-03T01:39:56Z <p>Confirm that you have the correct email address before sending out emails. If someone gives the wrong email address on sign-up, beat them over the head about it ASAP.</p> <p>Always include clear "how to unsubscribe" information in EVERY email. Do not require the user to login to unsubscribe, it should be a unique url for 1-click unsubscribe.</p> <p>This will prevent people from marking your mails as spam because "unsubscribing" is too hard.</p>