Refactoring, braces, indentation, Hungarian notation, and other stylistic issues relating to code.
0
votes
0answers
77 views
Code is not updating when i run the program [closed]
I am using DEVC++ for a while and my main problem is that every time i use it,i can't see my updated code after some runs.Is there any solution or any explanation to this problem?
EDIT:I already ...
-1
votes
1answer
51 views
Program/Tool for more readable Java code?
I am currently looking for a program/tool that enhances the readability of a Java code. For example that it can convert the expression x=y +z+ 3; into x = y + z + 3; or the one of
public class ...
-1
votes
0answers
25 views
PHP Error Unable to jump to row
I'm getting error saying
Warning: mysql_result() [function.mysql-result]: Unable to jump to row 2 on MySQL result index 21 in C:\xampp... on line 20
Clearly i cant see how to troubleshoot based on ...
0
votes
2answers
81 views
How to custmize & Design the `alert()` box?
Here is script in my website's footer that will check that specific font installed or not in computer. If installed or not it will prompt alert box. I want to customize:
Design of that alert box
...
-2
votes
1answer
76 views
recursion Vs. Iteration - Pros & Con's [duplicate]
What (if any) advantages/disadvantages, does recursion have versus iteration? Is one better than the other? If so, why? Is one worse than the other? I'm looking to get a general pro's versus con's ...
-3
votes
1answer
39 views
Which programming language is best for the program I want to make here? [closed]
I need a programming language with this available features:
Certainly Need:
Option to create login/pass function
option to 'talk' to the program
easy to find and free to use debugger/compiler ...
1
vote
3answers
66 views
Javascript SemiColons ; [closed]
Why does forgetting semicolons not effect JavaScript sometimes, and other times it does?
I know that copying and pasting code is bad habit, but sometimes it is necessary, at least for trying the code ...
0
votes
1answer
30 views
Eclipse disorders an XML file after pressing Ctrl + Shift + F
Ctrl + Shift + F does a good job when putting java or layout files in order. But does it disorder things in a file which starts with <selector ...
12
votes
6answers
515 views
What is the origin of magic number 42, indispensable in coding? [closed]
Update:
Surprised that it is being so heavily downvoted...
The question is coding-related and before asking this question I have googled for "42" in combination with:
...
0
votes
1answer
18 views
How to refactor rails methods/classes using Eclipse?
I am in a situation where I need to clean code. I have to do followings
Rename class methods in cotrollers
Rename classes which are extending from other modules and helpers in the controller
Move ...
-1
votes
0answers
51 views
Writing beautiful and efficient code in python - how can I improve this code? [closed]
I have often read about how important clear and efficient code is. Also often people talk and write about 'beautiful' code. Some hints and critic from experienced developers for the following code ...
0
votes
3answers
56 views
Stretching a small background image in CSS
I am having issues understanding the correct syntax for scaling or expanding and image in CSS.
I have tried many things but i can't get it to work properly.
The code that I am currently using is
...
1
vote
2answers
114 views
What could be case of use `int x = x;` expression (C language)?
I have a lib written in C. In code i found a few lines like this int x = x;. I need to rewrite all this pieces of code for compilation with /Zw flag. In some places that mean's int x = ...
2
votes
1answer
72 views
Should I inflate a layout or programmatically create it?
Regarding Android programming,
This question has been bothering me for a while, should I inflate layout as much as possible or should I programmatically create the layouts as much as possible?
If ...
1
vote
1answer
63 views
XCode indentation/alignment settings (spaces/tabs)
I used to use tabs for indentation and spaces for alignment.
Like so (arrows show tabs and dots show spaces).
In QtCreator you can set such coding style in standard preferences.
I can't find the ...
0
votes
0answers
52 views
Handlebars - Naming Convention for Template Files
I've read through a whole lot of tutorials regarding Handlebars but all of them seem to focus on rather small applications, where the templates are defined within appropriate <script/> tags in ...
4
votes
4answers
90 views
C#: DateTime - Going through a period of days?
I have a period of days and I want to go through it and execute the same code on each date.
begin and end are DateTime format with difference of a month at least
while ( !(begin.Equals(end)) )
...
-3
votes
2answers
61 views
How do I read strings and integers from data.txt into an array?
I have a data.txt that has following information:
James
2 3 4 5 6 7 8 9 0 0 0
Janet
3 9 4 5 6 3 2 4 0 0 0 4 4 5
I know arrays can only have a one type of variables, so I was wondering if there ...
0
votes
1answer
33 views
Command line arguments and “global settings” in WPF à la Clean Code
What possibilities do I have to write clean code for the following case:
public class App : Application
{
protected override OnStartup(StartupEventArgs e)
{
var arguments = ...
1
vote
1answer
27 views
Why do people use comments as a business logic
Why do people rely on comments as business logic ? (example CakePHP, Doctrine)
Doctrine example (from their docs, doctrine is relying on the comments as much as the code itself):
/**
* @Entity ...
5
votes
1answer
49 views
iOS key value coding
Let's assume we have an object of type person, which has a property called name.
Person *p;
[p setValue:@"John" forKey:@"name"];
This works very nicely. What I want to do is dig deeper. Say the ...
0
votes
2answers
34 views
How do I remove dependencies from my Ruby on Rails model class?
I have this class:
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation
attr_accessor :password
before_save :encrypt_password
...
0
votes
0answers
24 views
Extract Common Values to Resource File
Suppose I have an application with several common text blocks.
<!-- The first set of text blocks -->
<TextBlock Text="City:" />
<TextBlock Text="State:" />
<TextBlock Text="Zip:" ...
3
votes
1answer
47 views
settings namespace in Django
I'm writing reusable Django app. What are best practices for adding own settings into settings.py ? Do I need to prefix every setting with my app_name, or maybe I should make only one setting dict. ...
3
votes
5answers
70 views
Java - immutable local variables
It is quite common "good practice" to make local variables final by default. Don't know about eclipse, but in IDEA there is even a checkbox in "create local variable" dialog. But there is one issue ...
0
votes
2answers
35 views
what is stl-style for merge two containers while alternating the elements?
What is an elegant way to do the following in STL-style rather then for(;;):
Given p={1,2,3} and q={7,8,9}, i'd like to merge this to be pq={1,7,2,8,3,9}. one application is creating pq vector for ...
0
votes
3answers
29 views
JavaScript for loop being skipped with no errors
I have here a block of JC code:
$
function Test() {
var form = $('form').serializeArray();
var str = "";
var Price = {};
var OneUp = 1;
var NextName = "";
...
4
votes
1answer
664 views
Overloading Getters In C++?
Good day,
I am unsure how to describe the process I am inquiring about properly in one sentence so please excuse the title. I was searching for a way to ensure that users of a base class and or ...
0
votes
4answers
35 views
Is it good style to embed Design Pattern names into Interface names? [closed]
Would it be good practice/style to embed design pattern names into appropriate interface lets say if its a decorator design pattern have the abstract decorator be named IDecorateInterfaceName or ...
3
votes
1answer
47 views
PHP concatenation: dot notation vs {$brace-enclosed-var} [duplicate]
The two lines below produce the same output. I've been using the first method and just came across the second. Can someone tell me about this method (what its called) and are there any advantages ...
0
votes
0answers
29 views
Is there a proper name for this interface pattern?
Let's say I have a generic interface like:
public interface IWorkBroker<TWork, TResult>
{
...
}
And then, for the sake of prettiness I do:
public interface IFooWorker : ...
3
votes
7answers
141 views
Logging best practice - log method call or log at beginning of a target method?
When we schould log: before function call (example A) or at beginning of a target method (example B)?
Note, that this question is about exact logger function call placement, not general best logging ...
3
votes
3answers
62 views
How is conditional initialization handled and is it a good practice?
I am trying to decide between several possible practices. Say, my function has a number of if() blocks, that work on data, that is unique to them.
Should I declare and initialize the local (for the ...
2
votes
4answers
96 views
Programming without if-statements? [closed]
I remember some time (years, probably) ago I read on Stackoverflow about the charms of programming with as few if-tests as possible. This question is somewhat relevant but I think the stress was on ...
0
votes
2answers
64 views
What are some tips to make a function with a lot of calculation clean? [closed]
How can functions like this:
void Map::Display()
{
if(initialized)
{
HRESULT hr;
int hScrollPos = GetScrollPos(M_HWnd, SB_HORZ);
int vScrollPos = GetScrollPos(M_HWnd, ...
2
votes
2answers
68 views
Assignment of a value, followed by comparison in “if” statement's condition in C. [closed]
I want to write some code with the following logic.From a clarity and conciseness point of view, is the first approach better than the other two?
if(kErrNone != (cs_error = ...
1
vote
1answer
44 views
Scala: Dealing with optional XML elements and Case Classes
I'm looking for a better way of building objects from XML in Scala, similar to what's happening in this SO question. I'd like to read xml which may contain missing elements. Currently, I'm using a ...
1
vote
1answer
44 views
Does JVM manage class code by function? Is splitting a large decision function effective on memory usage?
Problem
In a server-based java solution we need a bigger lookup table with static values (about 300 kB but the data increases yearly with new values for the next year).
Usually the table would be ...
0
votes
2answers
73 views
Properties or methods or both? [closed]
In .NET libraries and also in many third-party libraries, I can see that there is some convention in how to change the internal (private) member values, they support Properties (.NET Properties) or ...
1
vote
1answer
58 views
Python coding style - properties/setters inside class?
Should methods inside a class use property/setter accessors, a la "add_to_field" or should they access the private variables directly a la "subtract from field"?
class Example(object):
def ...
4
votes
4answers
63 views
What is the Convention for returning a value?
I wrote the following code in my application. ( office work )
@Override
public List<Outlet> getAllOutletForTouch() {
return outletDao.getOutlets();
}
This is the code one of my ...
1
vote
5answers
48 views
Coding style - how do I format a long if condition to make it readable
I have a long if condition as follows. There are two conditions that both have to not be met, for the statement to evaluate. I did have it as a one liner with a lot of && and ! but it became ...
1
vote
1answer
181 views
ARM Current Program Status Register (SPSR) read-modify-write strategy practice
The bits that Figure 2-10 identifies as Do Not Modify (DNM), Read As
Zero (RAZ), must not be modified by software. These bits are:
• Readable, to enable the processor state to be ...
2
votes
3answers
60 views
How can I get data of different types from an anonymous class
I have an object that delegates some work to another object which is implementing an interface. Then, I am creating anonymous classes implementing this interface and I would like to get information ...
3
votes
2answers
54 views
Naming classes and resources with the company brand name
I'm currently working on a project that has a number of legacy code elements. In the past they have have been using the brand name in class definitions and resource names. For example (without me ...
2
votes
1answer
36 views
Symfony coding standards - arguments and parameters
In the Symfony coding standards it says:
>
Use camelCase, not underscores, for variable, function and method names, arguments;
Use underscores for option names and parameter names;
In this ...
0
votes
2answers
20 views
Prefixing IDs and Classes with Element Types in CSS
Hopefully this question falls under the Q/A rules here.
I was hoping that people could shed some light on the benefits of prefixing selectors in the css markup, and disadvantages of it.
For example
...
1
vote
2answers
50 views
Javascript code style enforcer or checker
I'm working on a project that uses a specific styleguide for javascript. For instance, an if/else statement would look like this:
if( condition ){
// Bla bla
}
else {
// Another bla bla
}
What ...
0
votes
2answers
52 views
How to make your PHP code more concise? [closed]
I found PHP to be quite hard to maintain because its syntax is quite lengthy. However sometimes there happens to be a more concise way of coding something which makes the code more readable. Therefore ...
0
votes
0answers
65 views
Dictionary Structure
I am brand new to dictionaries and am hoping to get some suggestions on how I should structure my dictionary.
I have a collector number which has meters connected to them. Each of the meters have a ...





