Refactoring, braces, indentation, Hungarian notation, and other stylistic issues relating to code.
0
votes
0answers
45 views
Functional difference between alias = expression and expression as alias [closed]
Recently while reading a post on Derek Dieter's SQL Blog I noticed that the way he wrote his SELECT statements was completely reversed to my own (at least in this post). The sample below shows how he ...
-1
votes
0answers
39 views
Best Coding Practices Javascript Application [closed]
I just have a somewhat simple question on coding practices. I have never written a large application before and I am currently working on building a game engine in Javascript. The part that confuses ...
3
votes
2answers
29 views
Bundle declarations into one statement or not?
Given the following Objective-C example, is it simply a matter of style and ease of reading to keep separate statements or to bundle them into one? Are there any actual benefits of either? Is it a ...
-2
votes
1answer
30 views
save a variable storing a textbox - android programming? [closed]
In one application I have one textbox and one botton. When I click the button I want to save the the text that is inserted in the textbox. And use that value for any occasion.
Thanks
0
votes
2answers
24 views
Site-wide form with Symfony2?
I have simple form at all site pages: username, password, [Sign In]
I tried to make with with simple HTML, but I get
The CSRF token is invalid. Please try to resubmit the form
Idea to make form in ...
-5
votes
0answers
55 views
how to divide this c statement into several lines? [closed]
if a function statement/definition is too long (over 80 characters).
like:
struct return_data_struct *function_name_bla_bla_bla_bla(int argument_1, int argument_2, int argument_3);
which is the ...
-3
votes
0answers
67 views
the c programming language coding style in linux kernel [closed]
if a function statement/definition is too long (over 80 characters).
like:
struct return_data_struct *function_name_bla_bla_bla_bla(int argument_1, int argument_2, int argument_3);
which is the ...
0
votes
5answers
68 views
How do I shorten a one line if statement in ruby that only executes if field is not empty
I have the following if statement that fills a field with the result of a function, if the function doesn't return empty.
I think i've seen examples before where the empty check and the function can ...
0
votes
2answers
66 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 ...
-3
votes
2answers
95 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 ...
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 ...
-1
votes
3answers
71 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 ...
0
votes
3answers
57 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);
...
5
votes
2answers
134 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
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 ...
6
votes
5answers
160 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
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
26 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 ...
0
votes
3answers
51 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 ...
0
votes
1answer
19 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
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
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 ...
0
votes
1answer
54 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
7answers
73 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 ...
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 ...
0
votes
1answer
36 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 ...
2
votes
2answers
41 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 ...
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 ...
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
^= ...
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
39 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
37 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 = [].
...
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 ...
0
votes
1answer
34 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? ...
0
votes
0answers
13 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 ...
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
{
...
0
votes
3answers
47 views
Why addListener() typically returns void?
Am seeing that a typical addXXXListener() returns void !
I have seen this as a practice across the board whether it is UI frameworks (like Swing) or server-side frameworks.
For ex:
Class: ...
1
vote
4answers
82 views
Initialize all variables, always
I am reading the FreeBSD coding style and am quite liking it (as I like vertically compact code). There is however this:
Initialize all Variables
You shall always initialize variables. Always. ...
0
votes
1answer
26 views
implementing mostly repeating content in ASP.NET WebForms' controls
The original problem is how to make the most maintainable code given that I need to have a menu bar that is very similar but not identical in most WebForms.
At first glance I thought I wanted to ...
0
votes
1answer
33 views
Code structure with Asynctask Android
I guess I am just producing "Spaghetti-Code". Perhabs some experts can help me write a better code for my solution. Following Pseudocodes will show my problem:
I have some procedures that runs long. ...
3
votes
2answers
106 views
Which is more efficient in Erlang: match on two different lines, or match in tuple?
Which of these two is more efficient in Erlang? This:
ValueA = MyRecord#my_record.value_a,
ValueB = MyRecord#my_record.value_b.
Or this:
{ValueA, ValueB} = {MyRecord#my_record.value_a, ...
-1
votes
3answers
38 views
Best Coding Practice using if else [closed]
I am confused on which one of the following 2 practices to follow,
I have mentioned two scenarios below, please assist me which style looks good.
Scenario 1:
style 1:
function xyz(int param)
{
...
1
vote
2answers
77 views
C++ NEW Object as parameter (Like Java)
I'm coding some stuff in C++, and as always we have some "thoughts" if something similar exists on the language...
I'm now, with an doubt about objects passing as parameters.
What I always do, is ...
0
votes
3answers
39 views
How to decide whether is-a or instanceof relationship is suitable in a given situation?
OK, this has happened to me many times now so I might as well ask the community. I often have a problem deciding whether declaring something as an instance or as an is-a inheritance (and declaring an ...
4
votes
2answers
62 views
good practices while using enums in java
I have a problem related with implementing something in Java and I guess Enums are a part of it (or maybe it's just me who made them a part of the problem.
So the thing is I have a model class, lets ...
8
votes
6answers
360 views
Python, best way to write a sum of two for loops
Normally I know we can do sum([func(x,x) for x in i]), but I got an if check and two for loops, so what is the most pythonic way to write the code bellow. you can assume that similarity will return a ...
0
votes
1answer
7 views
PHP_CodeSniffer rules documentation
Where is it possible to find documentation on PHP_CodeSniffer rules available? Seems to me like the rules exist, but nobody knows the list of them and their properties. I faced the essential problem, ...




