Search Results

0
votes

Is there any mandatory certification a programmer should have?

Unless you're specializing in a certain proprietary software, certs are sort of a thing of the past, especially for programmers. The Internet is a far better resource these days than most 2,000-pag …
1
vote

Windows IDE / editor for a beginner

Crimson Editor is also very nice; it's similar to Edit Plus. Syntax highlighting, tabs, etc. …
2
votes

How good are you at a given language?

I don't think you can answer them with a sentence. If they seriously need to know (perhaps they're a prospective client), a portfolio of work is the best way to show exactly how much you know and h …
3
votes

What, in your mind, is the best PHP MVC framework?

Frameworks like Cake are sometimes far too bloated for an application. The feature set is overkill for a small app, and they're entirely too inefficient for an app that gets a lot of traffic. …
3
votes

How do I reward my developers for the little things they get right?

I worked for a startup a few years ago, and they used to take us to the go-cart race track a few miles from the office after getting through a busy phase. Granted, we were a pretty small company, b …
1
vote

Recommended projects for beginning programmers?

Try to find some little task you'd like to automate or make easier. It's always more motivating to work on something you know you'll use. It's also fun to do programming challenges/competit …
1
vote

Using Yahoo! Pipes

It's nice for aggregating feeds, yes, but the other handy thing to do is filtering the feeds. A while back, I created a feed for Digg (before Digg fell into the Fark pit of dispair). I didn't care …
1
vote

What Is The Vim Feature That You Like The Most?

Folds are really handy. Its script language is also cool. Ctrl-n and ctrl-p for showing a popup menu of terms from the current file that match the word under the cursor (bas …
32
votes

What are your favorite Vim tricks?

ctrl-n/ctrl-p Auto-complete - searches current file for words beginning with the characters under the cursor. Great for finishing long func/var names. Will also search other files you've op …
11
votes

What are your favorite Vim tricks?

I have the following in my vimrc: nmap <F3> <ESC>:call LoadSession()<CR> let s:sessionloaded = 0 function LoadSession() source Session.vim let s:sessionloaded …
1
vote

Where do the responsibilities of a Db Abstraction in PHP start and end?

There are already some great solutions for this. A DAL is not a simple thing, especially since so many security concerns are involved. I would suggest checking out …
2
votes

What are your “hard rules” about commenting your code?

I usually comment a method before I write it. I'll write a line or two of comments for each step I need to take within the function, and then I write the code between the comments. When I'm done, t …
8
votes

What is the most common type of code written?

I think there really are a ton of people in web development. But picking the most popular route is not always the best thing to do for your career. Just like in business, sometimes picking …
2
votes

Is mathematics necessary for programming?

Learning higher math, for most programmers, is important simply because it bends your brain to think logically, in a step-by-step manner to get from one thing to another. Very few programmi …
0
votes

Writing maintainable code

Good comments can make even the worst spaghetti code 10x easier to maintain. …

1 2 3 next
15 30 50 per page