User icco - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T11:57:21Z http://stackoverflow.com/feeds/user/1063 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1738696/php-ide-with-best-code-completion/1738713#1738713 0 Answer by icco for PHP IDE with best code completion? icco 2009-11-15T20:28:46Z 2009-11-15T20:28:46Z <p>vim.</p> <p><a href="http://weierophinney.net/matthew/archives/123-Vim-7-code-completion.html" rel="nofollow">http://weierophinney.net/matthew/archives/123-Vim-7-code-completion.html</a></p> <p>Also, looking at the recommended similar questions, I noticed there is already a good question discussing the different ways to use vim code completion.</p> <p><a href="http://stackoverflow.com/questions/1055084/word-code-completion-in-vim">http://stackoverflow.com/questions/1055084/word-code-completion-in-vim</a></p> http://stackoverflow.com/questions/1668886/what-is-the-correct-way-to-convert-from-a-for-loop-to-a-while-loop/1668933#1668933 0 Answer by icco for What is the correct way to convert from a for loop to a while loop? icco 2009-11-03T17:33:15Z 2009-11-03T17:33:15Z <p>The easiest way to do this would be to not convert into a while loop, such as below.</p> <pre><code>for (int i = from; i &lt; to; ) { // do some code (I don't know exactly what, it is subject to change) i += rand()*10; } </code></pre> http://stackoverflow.com/questions/1552694/splitting-a-git-repository 3 splitting a git repository icco 2009-10-12T04:25:35Z 2009-10-12T04:53:48Z <p>I currently have a git repository that I imported from svn a while ago name school. Inside this school repository I have a folder for each of my classes.</p> <p>I can't seem how to take this one repository and split it into a repository for each class without losing the entire history of the class, which I would prefer not to do.</p> <p>Suggestions?</p> http://stackoverflow.com/questions/30915/cool-open-source-projects 1 Cool open source projects icco 2008-08-27T19:05:24Z 2009-08-30T21:08:44Z <p>This is a similar question to <a href="http://beta.stackoverflow.com/questions/27793/well-written-open-source-projects-for-learning" rel="nofollow">one posted earlier</a>, but slightly different. I'm interested in what your favorite Open Source app is. I don't care if it's well coded or if it isn't active anymore, I just am interesteed in apps that work and do something useful. The internet is a big place, so with a few suggestions some of us may find a new favorite app.</p> http://stackoverflow.com/questions/1354872/alternatives-to-using-autocomplete-in-forms 2 Alternatives to using autocomplete in forms icco 2009-08-30T20:51:15Z 2009-08-30T20:58:17Z <p>So the autocomplete="off" attribute is invalid HTML according to the w3c. Are there valid ways to do this in HTML, CSS or JavaScript? Or do we just have to plan on some of our forms not validating because we want to use this functionality.</p> http://stackoverflow.com/questions/1203725/three-way-merge-algorithms-for-text 2 Three Way Merge Algorithms for Text icco 2009-07-29T23:54:06Z 2009-07-30T19:01:32Z <p>So I've been working on a wiki type site. What I'm trying to decide on is what the best algorithm for merging an article that is simultaneously being edited by two users. </p> <p>So far I'm considering using Wikipedia's method of merging the documents if two unrelated areas are edited, but throwing away the older change if two commits conflict.</p> <p>My question is as follows: If I have the original article, and two changes to it, what are the best algorithms to merge them and then deal with conflicts as they arise? </p> http://stackoverflow.com/questions/1203952/how-many-lines-of-code-should-i-aim-for-in-each-method/1203981#1203981 -1 Answer by icco for How many lines of code should I aim for in each method? icco 2009-07-30T01:18:32Z 2009-07-30T01:18:32Z <p>A maximum of Fifty. If you are putting more in you should probably abstract your method out some more, and never go over 200.</p> http://stackoverflow.com/questions/12880/large-data-sets 7 Large Data Sets icco 2008-08-15T23:22:54Z 2008-11-18T22:47:53Z <p>I'm always looking for large data sets to test various types of programs on. Does anyone have any suggestions?</p> http://stackoverflow.com/questions/236668/foreign-keys-in-mysql 4 Foreign keys in mysql? icco 2008-10-25T16:43:19Z 2008-10-25T19:48:49Z <p>I have been slowly learning SQL the last few weeks. I've picked up all of the relational algebra and the basics of how relational databases work. What I'm trying to do now is learn how it's implemented.</p> <p>A stumbling block I've come across in this, is foreign keys in MySQL. I can't seem to find much about the other than that they exist in the InnoDB storage schema that MySQL has.</p> <p>Could anyone provide me a simple example of foreign keys implemented in MySQL?</p> <p>Here's part of a schema I wrote that doesn't seem to be working if you would rather point out my flaw than show me a working example.</p> <pre><code>CREATE TABLE `posts` ( `pID` bigint(20) NOT NULL auto_increment, `content` text NOT NULL, `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `uID` bigint(20) NOT NULL, `wikiptr` bigint(20) default NULL, `cID` bigint(20) NOT NULL, PRIMARY KEY (`pID`), Foreign Key(`cID`) references categories, Foreign Key(`uID`) references users ) ENGINE=InnoDB; </code></pre> http://stackoverflow.com/questions/216212/how-do-you-maintain-development-code-and-production-code/218964#218964 0 Answer by icco for How do you maintain development code and production code? icco 2008-10-20T16:03:02Z 2008-10-20T16:03:02Z <p>It depends on the project. Our web code is checked in pretty consistently, while our application code is only checked in if it compiles. I've noticed that this is pretty similar to how we release things. Web stuff goes up whenever it can while applications hit a hard deadline. I haven't seen a loss of quality in either method though.</p> http://stackoverflow.com/questions/189478/offline-web-application-success-stories-tips-and-resources/192732#192732 0 Answer by icco for Offline Web Application: Success Stories, Tips and Resources icco 2008-10-10T19:24:36Z 2008-10-10T19:24:36Z <p>I've had good experiences with Adobe Air. It's not gears and it was nothing more than a look to see how it worked, but it was so simple that i'd think it would be easy to port any large scale application over. </p> http://stackoverflow.com/questions/103857/what-is-your-favorite-bash-prompt/104036#104036 0 Answer by icco for What is your favorite bash prompt? icco 2008-09-19T17:47:30Z 2008-09-19T17:47:30Z <p>My prompt:</p> <p>[Fri Sep 19 10:33 AM]<br> [nat@Forge ~]$ </p> <pre><code>#################################3 ## File used for defining $PS1 bash_prompt_command() { # How many characters of the $PWD should be kept local pwdmaxlen=25 # Indicate that there has been dir truncation local trunc_symbol=".." local dir=${PWD##*/} pwdmaxlen=$(( ( pwdmaxlen &lt; ${#dir} ) ? ${#dir} : pwdmaxlen )) NEW_PWD=${PWD/#$HOME/\~} local pwdoffset=$(( ${#NEW_PWD} - pwdmaxlen )) if [ ${pwdoffset} -gt "0" ] then NEW_PWD=${NEW_PWD:$pwdoffset:$pwdmaxlen} NEW_PWD=${trunc_symbol}/${NEW_PWD#*/} fi } bash_prompt() { local NONE="\[\033[0m\]" # unsets color to term's fg color # regular colors local K="\[\033[0;30m\]" # black local R="\[\033[0;31m\]" # red local G="\[\033[0;32m\]" # green local Y="\[\033[0;33m\]" # yellow local B="\[\033[0;34m\]" # blue local M="\[\033[0;35m\]" # magenta local C="\[\033[0;36m\]" # cyan local W="\[\033[0;37m\]" # white # empahsized (bolded) colors local EMK="\[\033[1;30m\]" local EMR="\[\033[1;31m\]" local EMG="\[\033[1;32m\]" local EMY="\[\033[1;33m\]" local EMB="\[\033[1;34m\]" local EMM="\[\033[1;35m\]" local EMC="\[\033[1;36m\]" local EMW="\[\033[1;37m\]" # background colors local BGK="\[\033[40m\]" local BGR="\[\033[41m\]" local BGG="\[\033[42m\]" local BGY="\[\033[43m\]" local BGB="\[\033[44m\]" local BGM="\[\033[45m\]" local BGC="\[\033[46m\]" local BGW="\[\033[47m\]" local UC=$W # user's color [ $UID -eq "0" ] &amp;&amp; UC=$R # root's color # without colors: PS1="[\u@\h \${NEW_PWD}]\\$ " # extra backslash in front of \$ to make bash colorize the prompt #Nat's Colored Prompt PS1="${EMK}\n[${EMR}\d ${EMR}\@${EMK}] \n${EMK} [${UC}\u${EMK}@${UC}\h ${EMB}\${NEW_PWD}${EMK}]${UC}\\$ ${NONE}" } PROMPT_COMMAND=bash_prompt_command bash_prompt unset bash_prompt </code></pre> http://stackoverflow.com/questions/12830/most-elegant-amusing-or-strange-code-one-liners/12853#12853 2 Answer by icco for Most elegant, amusing or strange code one liners icco 2008-08-15T22:43:10Z 2008-09-19T05:29:30Z <p>My favorite bash script thingy. Originally written by <a href="http://twitter.com/jf" rel="nofollow">http://twitter.com/jf</a></p> <pre><code>curl -Is slashdot.org | egrep '^X-(F|B|L)' | cut -d \- -f 2 </code></pre> http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98361#98361 0 Answer by icco for how to display RSS feeds as HTML? icco 2008-09-19T00:33:57Z 2008-09-19T00:33:57Z <p>If you plan on using PHP with your HTML, <a href="http://simplepie.org/" rel="nofollow">SimplePie</a> is amazingly easy.</p> http://stackoverflow.com/questions/98258/do-you-charge-for-the-first-conversation-you-have-with-a-prospective-client/98353#98353 0 Answer by icco for Do you charge for the first conversation you have with a prospective client? icco 2008-09-19T00:32:42Z 2008-09-19T00:32:42Z <p>Usually not, but I let them pick up lunch if they offer.</p> http://stackoverflow.com/questions/57587/how-to-find-and-keep-a-tester-who-is-developer/57743#57743 0 Answer by icco for How to find (and keep) a tester who is developer icco 2008-09-11T21:48:19Z 2008-09-11T21:48:19Z <p>Dude, A certain company I work for has found the solution to your problems. Hire QE not QA. QA (Quality Assurance) does have a stigma to it. The job title itself implies boring rote tasks to most developers. QE (Quality Engineering) sounds just as bad, but doesn't scare off nearly as many people. </p> <p>If all else fails just hire a developer. I mean seriously, you want someone who can write code, so hire someone who has training in that. The thing is, you need to look at your applicants and talk to them. You are looking for someone who knows how QE works and you want to hire a developer that works in the language your program uses not what it's written in. </p> http://stackoverflow.com/questions/52598/code-walkthrough-vs-code-review/52612#52612 0 Answer by icco for Code Walkthrough vs. Code Review icco 2008-09-09T18:56:28Z 2008-09-09T18:56:28Z <p>Any chance you could define a review vs. a walk-through? I tend to use them pretty interchangeably.</p> http://stackoverflow.com/questions/52378/how-can-i-know-whether-i-am-a-good-programmer/52419#52419 18 Answer by icco for How Can I Know Whether I Am a Good Programmer? icco 2008-09-09T17:30:20Z 2008-09-09T17:30:20Z <p>I've always found that it's easiest to judge your performance by doing two things.</p> <ol> <li>Surround yourself with other good programmers</li> <li>See how much they complain about the code you write.</li> </ol> <p>The issue of course is finding good programmers, and then being a good programmer also isn't just about coding. You need to be able to work well in groups, yet also work well by yourself. </p> <p>Now for the sake of going off topic, I will quote Robert A. Heinlein and his view on the subject:</p> <blockquote> <p>"[A kick-ass programmer] should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, and die gallantly. Specialization is for insects."<br /> - from The Notebook of Lazarus Long.</p> </blockquote> http://stackoverflow.com/questions/2658/version-control-getting-started/23157#23157 1 Answer by icco for Version Control. Getting started... icco 2008-08-22T18:42:41Z 2008-08-22T18:42:41Z <p>Use TortoiseSVN (version.app if on mac). Just install and go. If you need a place to host your code look at <a href="http://beanstalkapp.com/" rel="nofollow">http://beanstalkapp.com/</a></p> http://stackoverflow.com/questions/23102/what-common-web-exploits-should-i-know-about/23122#23122 1 Answer by icco for What common web exploits should I know about? icco 2008-08-22T18:27:52Z 2008-08-22T18:27:52Z <p>This is also a short little presentation on security by one of wordpress's core developers.</p> <p><a href="http://markjaquith.wordpress.com/2008/08/16/secure-coding-with-wordpress-wordcamp-sf-2008-slides/" rel="nofollow">Security in wordpress</a></p> <p>it covers all of the basic security problems in web apps.</p> http://stackoverflow.com/questions/23082/how-did-you-decide-between-wisa-and-lamp/23111#23111 0 Answer by icco for How Did You Decide Between WISA and LAMP? icco 2008-08-22T18:24:13Z 2008-08-22T18:24:13Z <p>My decision was based on two things. First and foremost I hated programming in ASP. I did it for an old job, and when given a choice I would choose PHP. I also tend to enjoy Linux over Windows. </p> <p>When it came to actually picking though, the corporate heads chose LAMP due to cost. Because let's be honest as developers, language isn't that big of deal. One thing I didn't get into, but apparently MySQL isn't exactly free in business situations. I don't know the details, but you should look into it before getting sued.</p> http://stackoverflow.com/questions/21486/programming-tech-documentaries/21523#21523 4 Answer by icco for Programming / Tech Documentaries icco 2008-08-22T00:34:45Z 2008-08-22T00:34:45Z <p><a href="http://en.wikipedia.org/wiki/Pirates_of_Silicon_Valley" rel="nofollow">The Pirates of Silicon Valley</a>. Or heck, just come wander the valley for a few weeks. I almost ran over Woz last weekend.</p> http://stackoverflow.com/questions/21165/how-do-you-go-about-finding-jobs/21266#21266 1 Answer by icco for How do you go about finding jobs? icco 2008-08-21T21:47:24Z 2008-08-21T21:47:24Z <p>t3h intarwebs. As a college student all of my internships have come from finding a company I am interested, check their website to see if they take interns, and then emailing my resume. </p> <p>I also hear that <a href="http://jobs.37signals.com/" rel="nofollow">http://jobs.37signals.com/</a> is good. </p> http://stackoverflow.com/questions/21075/an-easy-wiki-engine/21242#21242 0 Answer by icco for An easy Wiki Engine icco 2008-08-21T21:38:04Z 2008-08-21T21:38:04Z <p>I've found most wiki software to suck. They are a pain to work with and usually way too feature bloated. So unless it's Trac (which is a pain to setup, but works great for development purposes) I just use <a href="http://pbwiki.com/" rel="nofollow">pbwiki</a>. </p> http://stackoverflow.com/questions/20034/is-project-darkstar-realistic/21240#21240 0 Answer by icco for Is Project Darkstar Realistic? icco 2008-08-21T21:36:00Z 2008-08-21T21:36:00Z <p>I don't work in the games industry, but it sounds to me like this will do the same thing for video games as the Quake and Half-Life engines did. That is they will promote getting young developers interested in the industry and promote development of indie games. </p> <p>From what I can tell, video game companies do not reuse most of their code, because if they do it implies that their new game is just a rehash of an old one. Everyone wants a cool new physics engine, better graphics, new ways to play the game. Most video game engines and frameworks are made for a specific scenario and thus are not very bendable to other situations. </p> <p>Maybe Darkstar will get it right though, but I kinda doubt it, since generalizing only works for so much.</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/18393#18393 1 Answer by icco for How do I calculate relative time? icco 2008-08-20T17:26:49Z 2008-08-20T17:26:49Z <p>In PHP, I do it this way: </p> <pre><code>&lt;?php function timesince($original) { // array of time period chunks $chunks = array( array(60 * 60 * 24 * 365 , 'year'), array(60 * 60 * 24 * 30 , 'month'), array(60 * 60 * 24 * 7, 'week'), array(60 * 60 * 24 , 'day'), array(60 * 60 , 'hour'), array(60 , 'minute'), ); $today = time(); /* Current unix time */ $since = $today - $original; if($since &gt; 604800) { $print = date("M jS", $original); if($since &gt; 31536000) { $print .= ", " . date("Y", $original); } return $print; } // $j saves performing the count function each time around the loop for ($i = 0, $j = count($chunks); $i &lt; $j; $i++) { $seconds = $chunks[$i][0]; $name = $chunks[$i][1]; // finding the biggest chunk (if the chunk fits, break) if (($count = floor($since / $seconds)) != 0) { break; } } $print = ($count == 1) ? '1 '.$name : "$count {$name}s"; return $print . " ago"; } ?&gt; </code></pre> http://stackoverflow.com/questions/16657/how-to-affordably-release-a-web-app 3 How to affordably release a Web App icco 2008-08-19T18:14:23Z 2008-08-19T18:50:46Z <p>I am a broke college student. I have built a small web app in PHP5 and MySQL, and I already have a domain. What is an affordable way to get it online? A few people have suggested amazon's cloud services, but that seems equivalent to slitting my wrists and watching money slowly trickle out. So suggestions? Hosting companies, CIA drop sites, anything?</p> <p><strong>Update:</strong> A lot of suggestions have been for Dreamhost. Their plan allows for 5TB of bandwidth. Could anyone put this in perspective? For instance, how much bandwidth does a site with the kind of traffic StackOverflow get? </p> http://stackoverflow.com/questions/10042/how-do-i-implement-a-linked-list-in-java/16663#16663 1 Answer by icco for How do I implement a Linked List in Java? icco 2008-08-19T18:16:03Z 2008-08-19T18:16:03Z <p>I second the statement about using java's LinkedList class, but you could also man up and code your own from scratch. </p> http://stackoverflow.com/questions/15171/user-script-location-linux-debian-etch/15189#15189 3 Answer by icco for User script location linux (debian etch) icco 2008-08-18T20:32:26Z 2008-08-18T20:32:26Z <p>I'm a strong beleiver that if a file is made by a user, it goes in his user directory (/home/username) if he didn't make it then it gets more complicated. I have in the past just put them in either /usr/local/bin, /bin, or /usr/local/scripts, I'm not sure about etch, but you need to check to make sure that /usr/local/scripts is actually in Cron's $PATH.</p> http://stackoverflow.com/questions/14634/is-it-possible-to-automatically-make-check-outs-from-any-vcs/14680#14680 1 Answer by icco for Is it possible to automatically make check-outs from any VCS? icco 2008-08-18T14:23:59Z 2008-08-18T14:23:59Z <p>The only two I have experience with are SVN and Mercurial. For Mercurial, you specify which branch you want it to update from (let's say default) and then whenever you merge a branch into default, you can just have the server run:</p> <pre><code>hg update </code></pre> <p>Which updates your repository to the latest version of the branch you set it to. </p> <p>SVN is the same concept, you only check out which branch you want initially</p> <pre><code>svn co &lt;http://host/repository/branchname/&gt; </code></pre> <p>then you have your server update that with a cron job, ala</p> <pre><code>svn up </code></pre> <p>In theory though, any VCS that supports branching (all the good ones do : git, mercurial, SVN, etc...), should be able to do something similar to this.</p> http://stackoverflow.com/questions/1738696/php-ide-with-best-code-completion/1738713#1738713 Comment by icco on PHP IDE with best code completion? icco 2009-11-16T19:19:39Z 2009-11-16T19:19:39Z I don't actually know. I assume not, but I don't use it, I just know it exists, sorry. http://stackoverflow.com/questions/1738665/showing-only-the-uptime-from-uptime-unix/1738672#1738672 Comment by icco on Showing only the uptime from uptime [unix] icco 2009-11-16T19:17:18Z 2009-11-16T19:17:18Z Didn't work for me on Arch Linux. Sorry I forgot to comment after down-voting. http://stackoverflow.com/questions/1668886/what-is-the-correct-way-to-convert-from-a-for-loop-to-a-while-loop/1668933#1668933 Comment by icco on What is the correct way to convert from a for loop to a while loop? icco 2009-11-04T02:28:04Z 2009-11-04T02:28:04Z That wouldn't change the above example. Notice you still need to increment. At least in Java and C, I can guarantee the above does exactly what you want. http://stackoverflow.com/questions/1668886/what-is-the-correct-way-to-convert-from-a-for-loop-to-a-while-loop/1668917#1668917 Comment by icco on What is the correct way to convert from a for loop to a while loop? icco 2009-11-03T17:35:21Z 2009-11-03T17:35:21Z While I agree that in common you shouldn't do this, many dynamic algorithms require that your index change dramatically to promote efficiency. http://stackoverflow.com/questions/1552694/splitting-a-git-repository/1552780#1552780 Comment by icco on splitting a git repository icco 2009-10-12T05:31:51Z 2009-10-12T05:31:51Z This worked beautifully thanks. I turned it into a shell script which you can see here: <a href="http://github.com/icco/git-explode" rel="nofollow">github.com/icco/git-explode</a> http://stackoverflow.com/questions/1552694/splitting-a-git-repository/1552714#1552714 Comment by icco on splitting a git repository icco 2009-10-12T04:38:47Z 2009-10-12T04:38:47Z There has got to be a better way of doing this than that. I have five years worth of commits... http://stackoverflow.com/questions/1552695/algorithm-to-find-keywords-for-a-website Comment by icco on algorithm to find keywords for a website icco 2009-10-12T04:31:19Z 2009-10-12T04:31:19Z I have no idea what your question is asking. What algorithm are you talking about. Good questions describe the domain of the problem and then actually ask a question instead of saying &quot;hey I've got a question, could you answer it&quot; thus giving us nothing to answer. http://stackoverflow.com/questions/1354872/alternatives-to-using-autocomplete-in-forms/1354875#1354875 Comment by icco on Alternatives to using autocomplete in forms icco 2009-08-30T20:59:19Z 2009-08-30T20:59:19Z HTML5 is still only proposed, so technically we still fail validation. But thanks for the heads up on HTML5 now including it. And as for the major browsers, Opera doesn't support it. http://stackoverflow.com/questions/30915/cool-open-source-projects Comment by icco on Cool open source projects icco 2009-08-30T20:54:57Z 2009-08-30T20:54:57Z This was originally asked before community wiki existed, but I have since switched it over. http://stackoverflow.com/questions/48947/how-do-i-implement-a-callback-in-php/50596#50596 Comment by icco on How do I implement a callback in PHP? icco 2009-08-30T20:44:37Z 2009-08-30T20:44:37Z Indeed, using the function is the proper way to do it. While using a variable and then just calling it, as suggested in the accepted answer is cool, it's ugly and won't scale well with code. http://stackoverflow.com/questions/3746/whats-in-your-bashrc/8538#8538 Comment by icco on what's in your .bashrc ? icco 2009-08-19T18:26:02Z 2009-08-19T18:26:02Z Our schools server is down for a little while since they are redoing our infrastructure. I'll look into hosting them elsewhere and update this soon. http://stackoverflow.com/questions/1127401/how-to-set-a-buckets-acl-on-s3/1127889#1127889 Comment by icco on How to set a bucket's ACL on S3? icco 2009-08-05T18:39:02Z 2009-08-05T18:39:02Z s3fm does let you manage acl, just right click on a bucket. This tool works really well and was just what I was looking for. Thanks alex! http://stackoverflow.com/questions/1208256/would-you-recommend-vim-emacs-for-beginner-programmers/1208295#1208295 Comment by icco on Would you recommend vim/emacs for beginner programmers? icco 2009-07-30T21:57:40Z 2009-07-30T21:57:40Z I found by using vim when starting program I learned to not use an ide as such a cruch. I can appreciate them, but I also know how to look at docs and find information, which I find a lot of begining programmers loose if they started on an IDE, especially with Java. http://stackoverflow.com/questions/1203725/three-way-merge-algorithms-for-text/1208641#1208641 Comment by icco on Three Way Merge Algorithms for Text icco 2009-07-30T19:17:15Z 2009-07-30T19:17:15Z Cool paper, thanks for the link! http://stackoverflow.com/questions/1203952/how-many-lines-of-code-should-i-aim-for-in-each-method/1203981#1203981 Comment by icco on How many lines of code should I aim for in each method? icco 2009-07-30T18:54:20Z 2009-07-30T18:54:20Z True, the numbers are arbitrary, but look at all of the answers here. They all basically say the same thing, your function should do one and only one thing. I've found that most things can be done in under 50 lines. It's true that it's entirely arbitrary and on occasion it gets broken, but it's still an easy way to judge ones code.