Refactoring, braces, indentation, Hungarian notation, and other stylistic issues relating to code.

learn more… | top users | synonyms (8)

1
vote
1answer
48 views

More concise way of inserting a character between all characters in a string

I want to insert a character at every possible index of a string, including before the first element and after the last. Right now I'm doing: result = [] result << c + str ...
0
votes
1answer
59 views

Tricks for writing clean code [closed]

Heres a python code def issubset(a,b): i=0 j=0 while i < len(a): c = False while j < len(b): if a[i] == b[j]: c = True j = j+1 ...
0
votes
1answer
19 views

Overriding listeners and threads

Is it a good idea to override(implement) listener or thread behavior in the current code or make a new class that implements or extends it? e.g. public doSomething() { Thread thr = new Thread(){ ...
-1
votes
2answers
42 views

Using an object as a storage for variables in JavaScript [closed]

In some cases I like it to group my variables by context by prefixing the variable name, like (example 1) var context_var1 = "value"; var context_var2 = "value"; var context_var3 = "value"; var ...
0
votes
1answer
12 views

Working with an unusable codebase

Even though this is not a real code question I still ask it here. Because I wonder: how do you guys work in a codebase that is SO BAD that every little change breaks multiple features and classes? ...
-2
votes
0answers
57 views

c and c++ naming convention [closed]

I've been trying to standardize my function (and variable) naming conventions in c and c++. I wanted to take a sort of poll, and see what naming conventions people here used. What are your naming ...
2
votes
2answers
66 views

Applying clean code and SOLID principle take me so much time: normal?

I'm new to programming, 11 months to be exact. I really want to be a professional programmer and produce quality code, so I'm learning clean code, SOLID principle, and OOP design. What I've notice is ...
0
votes
2answers
51 views

Variables declared globally are external or static?

I have studied in c that variables that use keyword extern are externally referenced for example: Prog1.c main(){ extern int a ; a=2; } Prog2.c int a=3; these two programs are successfully compiled ...
1
vote
2answers
29 views

c# run method from abstract and inheritor with a single instance

Is there a way I could run my method from an abstract class without explicitly running it(I mean I have the same method name which would inherit it and what I want is to run both the one from the ...
8
votes
3answers
179 views

How do I create a clean cascading if structure in c++?

I'm using boost's regex library, and I'm finding that determining if a named match is found and then using that information is a little annoying. To detect a named match, I'd like to do this: ...
0
votes
0answers
20 views

Will javascript structure makes an ajax request faster?

Lets say I solve a common ajax problem (looping ajax and solving the async problem{not sure if this is a problem}). Like this. var users = [{username: 'foo', email : 'foo@email'}, {username: 'bar', ...
0
votes
3answers
80 views

Can you do shorter declarations in C#?

I always write long declares, like: private Dictionary<IPAddress, IWebSocketConnection> Dict = new Dictionary<IPAddress, IWebSocketConnection>(); Is there a way to write it like this: ...
0
votes
3answers
38 views

Include inside function considered bad practice?

I am wondering if it is considered bad practice to include() a library file inside a function? Part of my website uses the Sphinx search engine, but it seems inefficient to add sphinxapi.php to every ...
1
vote
2answers
160 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
24 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
81 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
38 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
125 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 ...
3
votes
2answers
88 views
+50

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
49 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
34 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
34 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
32 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
70 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
67 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
75 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
167 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
26 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
28 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
53 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
55 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
88 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
72 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
65 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
42 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
45 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 2 3 4 5 101