User icco - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T11:57:21Zhttp://stackoverflow.com/feeds/user/1063http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1738696/php-ide-with-best-code-completion/1738713#17387130Answer by icco for PHP IDE with best code completion?icco2009-11-15T20:28:46Z2009-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#16689330Answer by icco for What is the correct way to convert from a for loop to a while loop?icco2009-11-03T17:33:15Z2009-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 < 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-repository3splitting a git repositoryicco2009-10-12T04:25:35Z2009-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-projects1Cool open source projectsicco2008-08-27T19:05:24Z2009-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-forms2Alternatives to using autocomplete in formsicco2009-08-30T20:51:15Z2009-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-text2Three Way Merge Algorithms for Texticco2009-07-29T23:54:06Z2009-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-1Answer by icco for How many lines of code should I aim for in each method?icco2009-07-30T01:18:32Z2009-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-sets7Large Data Setsicco2008-08-15T23:22:54Z2008-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-mysql4Foreign keys in mysql?icco2008-10-25T16:43:19Z2008-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#2189640Answer by icco for How do you maintain development code and production code?icco2008-10-20T16:03:02Z2008-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#1927320Answer by icco for Offline Web Application: Success Stories, Tips and Resourcesicco2008-10-10T19:24:36Z2008-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#1040360Answer by icco for What is your favorite bash prompt?icco2008-09-19T17:47:30Z2008-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 < ${#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" ] && 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#128532Answer by icco for Most elegant, amusing or strange code one linersicco2008-08-15T22:43:10Z2008-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#983610Answer by icco for how to display RSS feeds as HTML?icco2008-09-19T00:33:57Z2008-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#983530Answer by icco for Do you charge for the first conversation you have with a prospective client?icco2008-09-19T00:32:42Z2008-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#577430Answer by icco for How to find (and keep) a tester who is developericco2008-09-11T21:48:19Z2008-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#526120Answer by icco for Code Walkthrough vs. Code Reviewicco2008-09-09T18:56:28Z2008-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#5241918Answer by icco for How Can I Know Whether I Am a Good Programmer?icco2008-09-09T17:30:20Z2008-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#231571Answer by icco for Version Control. Getting started...icco2008-08-22T18:42:41Z2008-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#231221Answer by icco for What common web exploits should I know about?icco2008-08-22T18:27:52Z2008-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#231110Answer by icco for How Did You Decide Between WISA and LAMP?icco2008-08-22T18:24:13Z2008-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#215234Answer by icco for Programming / Tech Documentariesicco2008-08-22T00:34:45Z2008-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#212661Answer by icco for How do you go about finding jobs?icco2008-08-21T21:47:24Z2008-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#212420Answer by icco for An easy Wiki Engineicco2008-08-21T21:38:04Z2008-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#212400Answer by icco for Is Project Darkstar Realistic?icco2008-08-21T21:36:00Z2008-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#183931Answer by icco for How do I calculate relative time?icco2008-08-20T17:26:49Z2008-08-20T17:26:49Z<p>In PHP, I do it this way: </p>
<pre><code><?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 > 604800) {
$print = date("M jS", $original);
if($since > 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 < $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";
} ?>
</code></pre>
http://stackoverflow.com/questions/16657/how-to-affordably-release-a-web-app3How to affordably release a Web Appicco2008-08-19T18:14:23Z2008-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#166631Answer by icco for How do I implement a Linked List in Java?icco2008-08-19T18:16:03Z2008-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#151893Answer by icco for User script location linux (debian etch)icco2008-08-18T20:32:26Z2008-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#146801Answer by icco for Is it possible to automatically make check-outs from any VCS?icco2008-08-18T14:23:59Z2008-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 <http://host/repository/branchname/>
</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#1738713Comment by icco on PHP IDE with best code completion?icco2009-11-16T19:19:39Z2009-11-16T19:19:39ZI 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#1738672Comment by icco on Showing only the uptime from uptime [unix]icco2009-11-16T19:17:18Z2009-11-16T19:17:18ZDidn'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#1668933Comment by icco on What is the correct way to convert from a for loop to a while loop?icco2009-11-04T02:28:04Z2009-11-04T02:28:04ZThat 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#1668917Comment by icco on What is the correct way to convert from a for loop to a while loop?icco2009-11-03T17:35:21Z2009-11-03T17:35:21ZWhile 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#1552780Comment by icco on splitting a git repositoryicco2009-10-12T05:31:51Z2009-10-12T05:31:51ZThis 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#1552714Comment by icco on splitting a git repositoryicco2009-10-12T04:38:47Z2009-10-12T04:38:47ZThere 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-websiteComment by icco on algorithm to find keywords for a websiteicco2009-10-12T04:31:19Z2009-10-12T04:31:19ZI 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 "hey I've got a question, could you answer it" thus giving us nothing to answer.http://stackoverflow.com/questions/1354872/alternatives-to-using-autocomplete-in-forms/1354875#1354875Comment by icco on Alternatives to using autocomplete in formsicco2009-08-30T20:59:19Z2009-08-30T20:59:19ZHTML5 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-projectsComment by icco on Cool open source projectsicco2009-08-30T20:54:57Z2009-08-30T20:54:57ZThis 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#50596Comment by icco on How do I implement a callback in PHP?icco2009-08-30T20:44:37Z2009-08-30T20:44:37ZIndeed, 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#8538Comment by icco on what's in your .bashrc ?icco2009-08-19T18:26:02Z2009-08-19T18:26:02ZOur 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#1127889Comment by icco on How to set a bucket's ACL on S3?icco2009-08-05T18:39:02Z2009-08-05T18:39:02Zs3fm 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#1208295Comment by icco on Would you recommend vim/emacs for beginner programmers?icco2009-07-30T21:57:40Z2009-07-30T21:57:40ZI 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#1208641Comment by icco on Three Way Merge Algorithms for Texticco2009-07-30T19:17:15Z2009-07-30T19:17:15ZCool paper, thanks for the link!http://stackoverflow.com/questions/1203952/how-many-lines-of-code-should-i-aim-for-in-each-method/1203981#1203981Comment by icco on How many lines of code should I aim for in each method?icco2009-07-30T18:54:20Z2009-07-30T18:54:20ZTrue, 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.