1
vote
2answers
30 views
Software development on Mac
I was just wondering if from a linux software development perspective & software development perspective in general, if a Macbook is worth it.
I know that the Look and feel is …
3
votes
10answers
184 views
Tips for developing in several languages at once
Does anybody have any tips for utilizing multiple languages at the same time? I use objective-c, c, perl, ruby, bash, ksh, rails, and other proprietary languages every day and am …
-1
votes
0answers
52 views
What do you know about your code? [closed]
This is very open ended question. I like to know what a programmer knows about his/her code for a given project. A programmer has wealth of knowledge about the code they have wri …
8
votes
10answers
324 views
How to code via mental-models, in the absence of a keyboard.
I suffer periodically from carpel tunnel (The "carps" as I shall affectionately call it). In an effort to extend my ability to do programming at least into my thirties (after whic …
30
votes
40answers
2k views
Too “careless” in programming?
I just feel so frustrated right now as I just finished one task.
Seems like every time I program (homework or other stuff), I make stupid mistakes that take me hours and hours to …
2
votes
2answers
110 views
Not good starter AND even not good finisher
If any body can advice me and help me a little.
It is always difficult for me to start work on new task, but after starting work it is also difficult to finish it in estimated tim …
0
votes
7answers
106 views
PHP Line Indentation
Hi,
I'm curious to know, how many spaces of indentation do you prefer in PHP code?
function one()
{
$one;
function space()
{
$space;
}
}
function two()
{
$two;
functio …
16
votes
35answers
1k views
Improving the way we write code?
While thinking about software-engineering in general I came across the question why we don't see any improvements in the way we write/document code.
Think about it: There has not …
5
votes
14answers
805 views
Too much coding at a job interview
I am In a situation where for an interview I have been asked to code For half a day and create a web based gallery with tagging, search, uploading, rating and so on. I'm starting t …
14
votes
42answers
2k views
IDE or Text Editor?
Do you like to code using an IDE (like Eclipse or Visual Studio), or you prefer simply a text editor (like Vim) ?
I heard strong arguments against IDE's (specially from dynamic l …
9
votes
10answers
342 views
How to get new Motivation after a bad code review
So i presented my code yesterday...after a lot of hard work i was happy to show it to my colleagues. After presentation all that was left was my projects name. Everything else has …
5
votes
9answers
347 views
Is it bad practice to nest 2 try catch statements in C#?
Is the following code bad practice?
try //Try Overall Operation
{
try //Try section 1 of operation
{
}
catch(exception …
2
votes
3answers
106 views
Could use some help with this soundex coding.
The US census bureau uses a special encoding called “soundex” to locate information about a person. The soundex is an encoding of surnames (last names) based on the way a surname s …
1
vote
7answers
149 views
C# Coding Standards Tool
Hi. Is there a Visual Studio plug-n or add-in which allows you to check code formats and conventions. This would include checking the indention, spacing,line spacing, casing of fun …
14
votes
42answers
2k views
Do you comment your code?
I usually comment "ifs" and write in "human language" what it means, like "checks if it's A or B".
I find it's better for junior programmers that read the code to read what it mea …
