icco

1,293
Reputation
82 views

Registered User

Name icco
Member for 1 year
Seen 2 days ago
Website
Location US
Age 21
I am a college student and a software developer for iFixit in San Luis Obispo, CA. I like web development and Linux. I also have an affinity for backpacking, music, and urban exploration.
2d
awarded  Popular Question
Nov
16
comment PHP IDE with best code completion?
I don't actually know. I assume not, but I don't use it, I just know it exists, sorry.
Nov
16
comment Showing only the uptime from uptime [unix]
Didn't work for me on Arch Linux. Sorry I forgot to comment after down-voting.
Nov
15
revised How do I configure eclipse (zend studio 6) to hint and code complete several languages?
edited tags
Nov
15
answered PHP IDE with best code completion?
Nov
4
comment What is the correct way to convert from a for loop to a while loop?
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.
Nov
3
comment What is the correct way to convert from a for loop to a while loop?
While I agree that in common you shouldn't do this, many dynamic algorithms require that your index change dramatically to promote efficiency.
Nov
3
answered What is the correct way to convert from a for loop to a while loop?
Oct
12
comment splitting a git repository
This worked beautifully thanks. I turned it into a shell script which you can see here: github.com/icco/git-explode
Oct
12
comment splitting a git repository
There has got to be a better way of doing this than that. I have five years worth of commits...
Oct
12
comment algorithm to find keywords for a website
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 "hey I've got a question, could you answer it" thus giving us nothing to answer.
Oct
12
asked splitting a git repository
Aug
30
comment Alternatives to using autocomplete in forms
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.
Aug
30
comment Cool open source projects
This was originally asked before community wiki existed, but I have since switched it over.
Aug
30
asked Alternatives to using autocomplete in forms
Aug
30
comment How do I implement a callback in PHP?
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.
Aug
19
comment what’s in your .bashrc ?
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.
Aug
13
awarded  Yearling
Aug
5
comment How to set a bucket’s ACL on S3?
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!
Jul
30
comment Would you recommend vim/emacs for beginner programmers?
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.
Jul
30
comment Three Way Merge Algorithms for Text
Cool paper, thanks for the link!
Jul
30
comment How many lines of code should I aim for in each method?
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.
Jul
30
answered How many lines of code should I aim for in each method?
Jul
30
comment Three Way Merge Algorithms for Text
Mainly because I'm in a situation where I don't know what OS I'll be running on or software will be on the system. If you know of any foss php versions, I'd be willing to look at those.
Jul
29
asked Three Way Merge Algorithms for Text
Jul
29
comment Parsing Custom Tags with PHP
If you wrote code to explain exactly how to do it then this answer might have been accepted.
Jul
29
comment Parsing Custom Tags with PHP
Seriously? Why use regex when it's so much slower than the built in XML functions.
Jul
28
awarded  Peer Pressure
Jun
10
comment What exactly is a “Software Architect”?
It is actually illegal to call yourself any type of engineer in the US without passing a certification exam. The funny thing about this though is that the only time a judge has ever sentenced anyone for claiming they are a software engineer is in Texas. ACM and IEEE have both refused to make a certification exam for software engineering when asked by the government, which makes the whole thing rather interesting.
Jun
10
comment How can I check if scp is available?
Ya, what are you asking? Are you asking how to copy a file over the network or are you asking to check if you have ssh keys to a certain machine, or how to use ssh keys? Or something entirely different.