Refactoring, braces, indentation, Hungarian notation, and other stylistic issues relating to code.
0
votes
2answers
61 views
Is a calling a function pointer through a hash_map<string, fnPtr> more efficient or better style than multiple if/else if/else statements in C++?
I was going to make a switch statement, but then realized that it can't be done against a string. So I then wrote an if/else if/else statement and then realised that I shouldn't make my function so ...
34
votes
9answers
17k views
Is there a standard naming convention for XML elements?
Is there any standard, de facto or otherwise, for XML documents? For example which is the "best" way to write a tag?
<MyTag />
<myTag />
<mytag />
<my-tag />
<my_tag />
...
-3
votes
2answers
91 views
How to avoid using pointers/typedefs in C++
Whenever I write C++ code, I always end up using pointer types and -> to reference member functions. Is there anyway for me to avoid code that looks like this:
typedef Node *NodeRef;
typedef Graph ...
6
votes
5answers
149 views
Understanding MVC Views in PHP
I have to seem problems grasping the concept of Views in MVC, they are, according to what I've read, the layer that manages the presentation in the aplication, but many of the material I've been ...
0
votes
0answers
30 views
Jquery - Modifying to structure to submit form if successful
I've had some help creating some jquery code which is designed to submit a form if a geocode is successful. However, it doesn't do the submission bit yet and the structure/flow of things will need ...
0
votes
3answers
54 views
Initialising a variable in / as argument
Is a it common practice to initialise local variable in/as argument?
For example:
Random random = new Random();
void DisplayRandomNumber(int myRandNum) {
myRandNum = random.Next(10);
...
0
votes
2answers
118 views
Matrix/Vector Preference: Return copy or transform internally?
Just a quickie to get a feel for the community in general's preference: When working with objects like Vectors (mathematical, not STL) and Matrices do you prefer a library that:
A) Doesn't alter the ...
-1
votes
3answers
66 views
use 2 class by only calling a single class
class merged(){
//i want to be able to use class sample1 and sample2 by just calling this merged class
}
class sample1(){}
class sample2(){}
Or doing this isnt ideal? can you please suggest how ...
4
votes
4answers
629 views
Tools to enforce a coding style for Javascript
I need to automatically check the style of javascript sources written by different people. Do you know of a good tool to do it? Integration with emacs would be a plus. Thank you in advance.
5
votes
2answers
129 views
Is it OK to return from the middle of a function in C++? [closed]
Is it, in general, good programming practice to return from the middle of a function in C++?
(I was taught to never do this in a C class, but that was a long, long time ago.)
Since then I have ...
3
votes
3answers
880 views
Rails coding standards - Why 2 space indentation?
In reading about rails coding standards, it seems clear that 2 spaces is generally accepted as the way to do things. Why has this gained traction? Is it just the most widely used practice and ...
-3
votes
0answers
38 views
Is there any extension or plugin to autoformat code in visual studio 2012? [closed]
I have tried ReSharper, but couldn't get it to format the way I wanted it to (check previous question if curious).
I want the code to auto format as you code or maybe after you finish the the ...
3
votes
8answers
535 views
Creative ways to punish (or just curb) laziness in coworkers
Like the subject suggests, what are some creative ways to curb laziness in co-workers? By laziness I'm talking about things like using variable names like "inttheemplrcd" instead of "intEmployerCode" ...
0
votes
1answer
24 views
Will there be any performance or quality issues if we use lambda expression in foreach loop?
I have a piece of code as below -
var serviceResponseItems = new List<ServiceResponseItems>();
foreach (var item in serviceResponse.SomeItems.Where(x => !string.IsNullOrEmpty(x.Id) ...
1
vote
1answer
24 views
Looping elegantly the message SOS in Arduino LED blinks
I am trying to make my Arduino blink "SOS" in Morse Code as my first real programming project ever.
I have succeeded in doing so, however now I would like to more efficiently write the code. Here is ...
26
votes
7answers
6k views
pythonic way to do something N times
Every day I love python more and more.
Today, I was writing some code like:
for i in xrange(N):
do_something()
I had to do something N times. But each time didn't depend on the value of i ...
28
votes
9answers
22k views
Conveniently map between enum and int / String
When working with variables/parameters that can only take a finite number of values, I try to always use Java's enum, as in
public enum BonusType {
MONTHLY, YEARLY, ONE_OFF
}
As long as I stay ...
0
votes
3answers
50 views
Python print out float or integer
How can i print out float if the result have decimal or print out integer if the result have no decimal?
c = input("Enter the total cost of purchase: ")
bank = raw_input("Enter the bank of your ...
1
vote
3answers
46 views
Best Optimal way to produce HTML in Ruby on Rails views
I have recently started learning Ruby on rails and going through various tutorials. Previously, I did code in PHP.
One of the practices I found in the tutorials is as below. I wanted to know, if this ...
1
vote
3answers
88 views
Create a function with for loop syntax
Is it possible to create a function with a "for loop" style syntax? And if so, what would that style of function be called?
For example a for loop follows this syntax:
for(i = 0; i < 10; i++)
{
...
2
votes
11answers
722 views
Circular increment: Which is “better”?
When you have a circular buffer represented as an array, and you need the index to wraparound (i.e., when you reach the highest possible index and increment it), is it "better" to:
return (++i == ...
12
votes
5answers
4k views
Algorithm for neatly indenting SQL statements (Python implementation would be nice)
I'd like to reformat some SQL statements that are a single string with newlines in to something that's much easier to read.
I don't personally know of a good coding style for indenting SQL - how ...
11
votes
7answers
2k views
What's the best way to convert a number to a string?
What's the "best" way to convert a number to a string? (you can quote speed advantage, clarity advantage, memory advantage, etc.)
Sorry, if this question sounds academic, but I want to choose a style ...
0
votes
1answer
17 views
Jquery newbie - Geocoder not returning results
This is my first javascript I have tried to put together but I am not having a lot of luck. This is what the script should do:
Geocode an address either by clicking on an autosuggested location or
...
1
vote
4answers
43 views
Python merge dictionaries with custom merge function
I want to merge two dictionaries A and B such that the result contains:
All pairs from A where key is unique to A
All pairs from B where key is unique to B
f(valueA, valueB) where the same key ...
2
votes
2answers
579 views
Does a standard for errors / error codes exist?
I am currently writing an API / some clients for chess games.
The developers should access the API via one script (xhrframework.php) and submit the actions via GET. It is possible that they make ...
0
votes
1answer
49 views
Checking if function was called with right arguments
Which coding-style is better / correct and why?
Using assert statement in each function:
def fun_bottom(arg):
assert isinstance(arg, int)
#blah blah
def fun_middle(arg):
assert ...
0
votes
0answers
12 views
IDE Code formatting
Code looks like this in my editor:
if(waiting_list_flag) {
SwitchDialog('RFOWAITLIST');
} else {
SwitchDialog('RFO');
}
But looks like this in IE Developer Tools Debugger or Firebug or ...
0
votes
7answers
72 views
Is returning null from a “get error message” method an anti-pattern? [closed]
Is it "bad practice" to effectively cache the result of executing expensive stateless checking code by returning a null in the case of a "no problem found"? The upside is minimal code and no ...
38
votes
6answers
2k views
Why is it recommended to have empty line in the end of file?
Some code style tools recommend this and I remember seeing some unix command line tools warning about missing empty line.
What is the reasoning for having an extra empty line?
2
votes
4answers
67 views
Why is SQLException a checked exception [closed]
Can anyone think of a rational reason why SQLException is a checked exception?
Yes, there could be a syntax error in the query
Yes, the connection might have died
Yes, there might be a permission ...
0
votes
5answers
60 views
Proper typedef syntax in C
Short Question
Is there a proper or preferred way to to use typedefs of structs and enums in C?
Background
I have been working on a code base that has had several people / companies working on it ...
2
votes
2answers
40 views
Public fields in a Data Transfer Object
In my years of programming I've often made classes that simply group a few variables with their setters and getters. I've seen these types of objects referred to as value objects, domain objects or ...
0
votes
1answer
35 views
Populating inputs with table values in laravel
I have a profile edit page that has multiple fields like the one below. These are being populated by my table values for a user address if the user has an address.
It all works fine even if I only ...
1
vote
2answers
44 views
Lazy logic and temporary values to improve the reading of an expression
Sorry for the poor explanatory title, I'm not able to find a better one (yet).
I'm used to code boolean expressions adding some temporary variables to improve the reading of an expression, in other ...
-4
votes
3answers
134 views
Why use long[] instead of Date[]?
I read this coding rule that states you should prefer the use of long[] over Date[], but there is no reference provided as to why.
Why should I do this? What is the advantage of using a long over ...
1
vote
1answer
69 views
Why alternative keywords are not famous in place of in-built ascii operators? [duplicate]
In the list of C++ keywords, there are alternatives for the operators, such as:
&& and
&= and_eq
& bitand
| bitor
~ compl
! not
!= not_eq
|| or
|= or_eq
^ xor
^= ...
5
votes
1answer
481 views
Tool to convert Python code to be PEP8 compliant
I know there are tools which validate whether your Python code is compliant with PEP8, for example there is both an online service and a python module.
However, I cannot find a service or module ...
29
votes
9answers
10k views
'AND' vs '&&' as operator
Actually, I am facing a codebase where developpers decided to use 'AND' and 'OR' instead of '&&' and '||'. I know that there is difference in operators precedence (&& goes before ...
0
votes
0answers
62 views
Programming Style in Large Scale C++ Applications [closed]
Recently I've been browsing source code of large applications written in C++ to learn a bit but I couldn't help but notice that most if not all use a lot of IFDEFs and class-less functions (where they ...
2
votes
3answers
37 views
What is the best solution to deprecate include certain files
I have few ini files in project. Some of them is deprecated, how can i prevent their use?
I dont want delete them or change access permissions, i just want some error for slow refactoring=)
Any good ...
-2
votes
2answers
35 views
what is special to use class structure in python albeit it is possible to import functions from plain script? [closed]
I am a newbie programmer at python and I am thinking about the class usage of the python. Although it is possible to import all the functions inside a script, what might be the situation that faces to ...
-2
votes
1answer
35 views
Concise way to find max/min with potentially nil value [closed]
I have two arrays, max_of_row (which stores the maximum value in each row) and min_of_col (which stores the minimum value in each col).
I initialize these as max_of_row = [] and min_of_col = [].
...
17
votes
13answers
5k views
SQL formatting standards
In my last job we worked on a very database heavy application and I developed some formatting standards so that we would all write SQL with a common layout. We also developed coding standards but ...
0
votes
5answers
42 views
How a programmers solve the dilemma of using old variables instead of new variables?
For example:
... some code
int sizeOfSomeObject = someObject.length();
... some code, sizeOfSomeObject is not need anymore
now I need other int variable for other action(for example, for position ...
3
votes
4answers
1k views
Whats the most elegant way to cap a number to a segment?
Let's say x, a and b are numbers. I need to cap x to the bounds of the segment [a, b].
I can write Math.max(a, Math.min(x, b)), but i don't think it's very easy to read. Does anybody has a clever way ...
0
votes
1answer
33 views
Long function declaration line. What are the conventions for splitting it?
Here is the declaration
dll_DoublyLinkedNode *dll_search(const dll_DoublyLinkedList list, void *key, int (*compare)(void *data, void *key)){
Should I split it? Should I just leave it as it is? ...
1
vote
1answer
15 views
Declaring variable in class header VS. constantly declaring a variable in update cycle
Sorry if the title is a little vague, my terminology isn't that great yet.
What I'm t?rying to say is: which one is better in terms of memory management and if there is any difference Or which one is ...
0
votes
0answers
37 views
How does defining function variables before { and after function declaration work? [duplicate]
I have been looking at some documentation for my C projects and came across a peculiar type of function declaration. Here is an example:
function_name(arg1, arg2)
int arg1;
char *arg2
{
...
3
votes
3answers
11k views
Where can I find a good template for a software application user guide?
Looking for links to resources that will help me write a user guide for a software application. I'm after something that will help me to structure my guide, give it an appropriate writing style, and ...



