Refactoring, braces, indentation, Hungarian notation, and other stylistic issues relating to code.
1
vote
2answers
60 views
Android Code Style in Intellij Idea / Android Studio
Before Android Studio, I was using android-formatting.xml as Code Style in Eclipse.
How can I setup Android Studio / Intellij Idea to format code as in Eclipse?
UPDATE
I tried Eclipse Code ...
0
votes
0answers
17 views
convention for storing procedures to send data to external application in rails
What is the convention for sending data to external application in rails? I am sending data from one app to another. Right now my form is submitted to a controller action which calls a model method ...
2
votes
2answers
66 views
Alternatives to static methods in a framework PHP
Lately I have been trying to create my own PHP framework, just to learn from it (As we may look into some bigger and more robust framework for production). One design concept I currently have, is that ...
0
votes
0answers
12 views
JSF Attributes Ordering plugin
I;ve inherited some poorly written jsf + richfaces markup looking like this
<rich:comboBox selectFirstOnUpdate="true" suggestionValues="#{controller.getSuggestions}"
id="someId" required="true" ...
1
vote
2answers
21 views
Using Reference VS getReference multiple calls to the same object
Simply I want to ask which is better of the following cases:
import com.x.x.x.Document;
.
.
Document doc=user.getDoc();
MyFile file=Converter.getFile(doc.getFile());
MyTheme ...
0
votes
2answers
36 views
Highlight lines longer than 80 characters in Vim doesn't work with php
I want to identify lines longer than 80 characters with Vim and I've found this solution:
match ErrorMsg '\%80v.\+'
This works in an html file or in the .vimrc file, but not in php files. I also ...
5
votes
7answers
121 views
Is there a simpler way to derefence nullable references in Java?
Consider the following Code Snippet:
if (foo != null
&& foo.bar != null
&& foo.bar.boo != null
&& foo.bar.boo.far != null)
{
doSomething (foo.bar.boo.far);
}
My ...
2
votes
0answers
30 views
How to accommodate multiple coding styles? (git vs. IDE)
I am collaborating on a git-sourced, maven-managed Java project with differing code styling preferences with users using multiple IDE's (note 1).
Is there a tool or IDE configuration that will ...
0
votes
0answers
48 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
46 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
33 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
32 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
27 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
58 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
69 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
96 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
32 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
74 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
59 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
143 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
40 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
163 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
25 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
27 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
52 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
20 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
47 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
80 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
71 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
64 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
39 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
43 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
46 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
71 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
63 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
40 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
38 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
36 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
16 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
49 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
83 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
33 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 ...




