8
votes
10answers
305 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 …
2
votes
2answers
106 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
93 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 …
31
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 …
5
votes
14answers
788 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 …
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 …
2
votes
3answers
99 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 …
5
votes
9answers
335 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 …
8
votes
10answers
333 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 …
1
vote
7answers
145 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 …
1
vote
0answers
56 views
What are the most useful code snippets in eclipse or Idea? [closed]
Please put your most favorite code snippet.
Thanks.
12
votes
38answers
1k 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 …
0
votes
6answers
118 views
Programming Vs Coding : Are they similar/different? [closed]
In computing field,
Programming Vs Coding : Are they same/different?
How do you guys view them?
4
votes
10answers
213 views
How to break circle of evening stupidity? [closed]
Hi!
Sometimes I find myself sitting at work late evening trying to solve a very simple problem with no luck.
It's almost always the case that I leave at 9PM with the problem not s …
1
vote
3answers
101 views
PHP Coding styles return; in switch/case
Hi ,
we're trying to implement new coding style guidelines for our team, the php codesniffer is printing an warning on switch case statements when no "break" is found like:
switc …
