User typicalrunt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T23:11:20Z http://stackoverflow.com/feeds/user/13996 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/429709/what-books-or-websites-should-i-use-for-creating-commerical-web-applications 1 What Books or Websites Should I Use for Creating Commerical Web Applications? typicalrunt 2009-01-09T20:56:19Z 2009-09-26T16:38:49Z <p>I've got some ideas for web applications that I would like to sell to businesses, NGOs, and non-profits. I can do the application development so far as creating the look and feel, business logic, etc. but I am looking for books or websites that talk about packaging up web applications for commercial sale.</p> <p>I'm thinking I need things like: - protecting the source code from theft - licensing and expiration - support contracts - client-site application configuration</p> <p>Any ideas?</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84642#84642 318 Answer by typicalrunt for What's your favorite "programmer" cartoon? typicalrunt 2008-09-17T15:40:28Z 2008-09-21T19:22:42Z <p>This has actually happened to me. A boss mistook my resourcefulness in scripting for laziness. <a href="http://dilbert.com/strips/comic/2005-05-29/" rel="nofollow">link</a></p> <p><img src="http://dilbert.com/dyn/str_strip/000000000/00000000/0000000/000000/00000/0000/800/880/880.strip.sunday.gif" alt="alt text" /></p> <p>UPDATE: <a href="http://dilbert.com/strips/comic/2005-05-29/" rel="nofollow">link</a> to original. Sorry about that.</p> http://stackoverflow.com/questions/96922/why-use-jython-when-you-could-just-use-java/96941#96941 1 Answer by typicalrunt for Why use Jython when you could just use Java? typicalrunt 2008-09-18T21:03:28Z 2008-09-18T21:03:28Z <p>No need to compile. Maybe you want to get something rolling faster than using a compiled language, like a prototype.</p> <p>...and you can embed the Jython interpreter into your apps. Nice feature, I can't say I've used it, but tis cool nonetheless.</p> http://stackoverflow.com/questions/96879/advice-to-improve-programmer-communication-skills/96906#96906 8 Answer by typicalrunt for Advice to improve programmer communication skills typicalrunt 2008-09-18T21:00:20Z 2008-09-18T21:00:20Z <p>Eye contact and Enunciation.</p> <p>It's the same skills that non-technical people need to learn to progress in life. For some reason, some programmers think they don't need to speak to people once they are in front of a computer.</p> http://stackoverflow.com/questions/90121/symlink-in-windows-xp/90123#90123 6 Answer by typicalrunt for Symlink in windows XP typicalrunt 2008-09-18T04:48:02Z 2008-09-18T04:48:02Z <p>They're called <a href="http://articles.techrepublic.com.com/5100-10878_11-5388706.html" rel="nofollow">junctions</a></p> <p>And if you want a <a href="http://www.rekenwonder.com/linkmagic.htm" rel="nofollow">GUI</a> to do it for you...</p> http://stackoverflow.com/questions/85373/floor-a-date-in-sql-server/85607#85607 1 Answer by typicalrunt for Floor a date in SQL server typicalrunt 2008-09-17T17:27:37Z 2008-09-17T17:27:37Z <p>Too bad it's not Oracle, or else you could use trunc() or to_char().</p> <p>But I had similar issues with SQL Server and used the CONVERT() and DateDiff() methods, as referenced <a href="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=54594" rel="nofollow">here</a></p> http://stackoverflow.com/questions/83147/whats-wrong-with-foreign-keys/84875#84875 0 Answer by typicalrunt for What's wrong with foreign keys? typicalrunt 2008-09-17T16:08:22Z 2008-09-17T16:08:22Z <p>I'll echo what Dmitriy said, but adding on a point.</p> <p>I worked on a batch billing system that needed to insert large sets of rows on 30+ tables. We weren't allowed to do a data pump (Oracle) so we had to do bulk inserts. Those tables had foreign keys on them, but we had already ensured that they were not breaking any relationships.</p> <p>Before insert, we disable the foreign key constraints so that Oracle doesn't take forever doing the inserts. After the insert is successful, we re-enable the constraints.</p> <p>PS: In a large database with many foreign keys and child row data for a single record, sometimes foreign keys can be bad, and you may want to disallow cascading deletes. For us in the billing system, it would take too long and be too taxing on the database if we did cascading deletes, so we just mark the record as bad with a field on the main driver (parent) table.</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/84816#84816 0 Answer by typicalrunt for What's Your Motto As A Developer/Programmer? typicalrunt 2008-09-17T16:00:07Z 2008-09-17T16:00:07Z <p>My motto is: Script it and go to sleep.</p> <p>In other words, don't waste your time doing routine menial tasks (like renaming individual files in a directory) when you can automate the process and be more efficient.</p> <p>As a corollary, I do like "keep it simple, stupid". Engineers and Programmers seem to take pride in over-complicating solutions.</p> http://stackoverflow.com/questions/77731/ibatis-for-python 2 iBATIS for Python? typicalrunt 2008-09-16T22:05:58Z 2008-09-16T22:53:33Z <p>At my current gig, we use iBATIS through Java to CRUD our databases. I like the abstract qualities of the tool, especially when working with legacy databases, as it doesn't impose its own syntax on you.</p> <p><strong>I'm looking for a Python analogue to this library</strong>, since the website only has Java/.NET/Ruby versions available. I don't want to have to switch to Jython if I don't need to.</p> <p>Are there any other projects similar to iBATIS functionality out there for Python?</p> http://stackoverflow.com/questions/77726/xml-or-sqlite-when-to-drop-xml-for-a-database/77777#77777 3 Answer by typicalrunt for Xml or Sqlite, When to drop Xml for a Database? typicalrunt 2008-09-16T22:09:43Z 2008-09-16T22:09:43Z <p>I wouldn't use XML for storing RSS items. A feed reader makes constant updates as it receives data.</p> <p>With XML, you need to load the data from file first, parse it, then store it for easy search/retrieval/update. Sounds like a database...</p> <p>Also, what happens if your application crashes? if you use XML, what state is the data in the XML file versus the data in memory. At least with SQLite you get atomicity, so you are assured that your application will start with the same state as when the last database write was made.</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/77599#77599 1 Answer by typicalrunt for What development book made the most impact on you as a developer? typicalrunt 2008-09-16T21:54:54Z 2008-09-16T21:54:54Z <p><em>The Art of Computer Programming</em> by Donald Knuth.</p> <p>I had to read this at University and I bitched and moaned, like everyone else. But by the end of the course I praised the book, simply for the fact that it shows you <strong>why</strong> you can't create inefficient loops (conditionals, etc) in code.</p> <p>On the lighter side, The Pragmatic Programmer is a close runner-up.</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/77545#77545 25 Answer by typicalrunt for What is the single most effective thing you did to improve your programming skills? typicalrunt 2008-09-16T21:50:31Z 2008-09-16T21:50:31Z <p>You can read all the books, code, and open source projects you like, but you need to understand the end-user aspect of software development. You need to step out of the echo chamber. So I'll address a couple non-technical points that will help your technical career.</p> <p>1) Step away from the keyboard and interact with the end-user and see, through their eyes, how they use the software. End users are typically not technical, so they see software as a magical piece of work, while you see software as a logical set of steps. The two worlds are completely different. So what seems easy and logical to you may seem cryptic and intimidating to others.</p> <p>2) Test, test, test. A lot of the software I've seen in large corporations use test cases. Hell, they use JUnit, xUnit, and all the other unit testing languages out there. But the problem I've seen is that most programmers never see what their software looks like in Production. Learn how users (or systems, if these are batch jobs) interact with your application, library, or interface to find out what kind of abhorrent information they throw at it. This will help you generate good test cases and stop assuming your program will always be fed the correct set of data.</p> http://stackoverflow.com/questions/429709/what-books-or-websites-should-i-use-for-creating-commerical-web-applications/429794#429794 Comment by typicalrunt on What Books or Websites Should I Use for Creating Commerical Web Applications? typicalrunt 2009-01-09T21:41:10Z 2009-01-09T21:41:10Z Took a glance and it's an interesting site. I'll bookmark it for later reading. It's too bad that so many resources talk about packaging desktop apps for commercial sale and not web apps. If there are similarities, that'd be useful to know as well. http://stackoverflow.com/questions/262471/version-control-for-multi-disciplined-web-agency/262567#262567 Comment by typicalrunt on Version Control for multi-disciplined web agency typicalrunt 2008-11-04T17:28:15Z 2008-11-04T17:28:15Z I have had problems with storing very large binaries in SVN repositories, mainly because of the way SVN performs versioning on the binary files (they're just copies, no diffs). In other words, be cautious when putting a tonne of large Photoshop files into the SVN repository. http://stackoverflow.com/questions/262471/version-control-for-multi-disciplined-web-agency/262580#262580 Comment by typicalrunt on Version Control for multi-disciplined web agency typicalrunt 2008-11-04T17:26:22Z 2008-11-04T17:26:22Z Just a note: It is best to use comments to reply to someone's answer.