A generic tag covering any accepted method of doing things, which could include naming, spacing, coding, commenting, etc.
0
votes
4answers
41 views
Java - Private Initializer or Initialization in Constructor?
Why do some of the example classes in the Swing Tutorials (sorry, I don't remember which ones; I could be wrong, but I know I saw this somewhere) use private methods like this?:
public MyClass{
...
0
votes
1answer
20 views
Package/directory conventions in Java
I want to use christophel.joel as my root package until I get a domain name. Which of the following is a better practice?
Different set of christophel and joel folders for each project
Example:
...
0
votes
0answers
4 views
Returning information on a bad request, but knowing what the caller needs?
I have an API call that clients make to migrate user accounts. It's a very simple migration.
I'm coding a small check to make sure the account has not been already migrated, and I am at a crossroads ...
1
vote
1answer
28 views
When is KVC & KVO worth the trouble? Always?
It seems like a nearly new superset over Objective-C, with the combinations of dot notation mixed with directives, e.g.: studentsInClassA.@union.studentsInClassB.pets(...) and compliance syntax, e.g.: ...
0
votes
2answers
61 views
3-tier architecture - Notify gui from lower layers
I am creating a 3 tier application in java which consists of a gui, a business logic layer and a database layer. All layers are client-sided.
From the definition of a multi tier architecture it is ...
0
votes
2answers
22 views
Best practice for consecutive logger calls in multithreaded environment
Consider this code:
if (param1 == null || param2 == null) {
logger.error("Failed to do stuff.");
logger.debug("param1: " + param1);
logger.debug("param2: " + param2);
}
It is very readable, ...
1
vote
2answers
42 views
What does it mean when a css property starts with a dash?
I just downloaded a css file from this website and it contains properties such as -webkit-transform and -moz-transform. What does the dash mean and under what circumstances is it required?
For the ...
0
votes
2answers
24 views
conventions for file that user would use to input settings for program
I'm writing a program which needs to take user input to know how to map characters in the sense the user needs to specify something like "a=>b" (a maps to b). There could be quiet a few of these ...
0
votes
3answers
47 views
Questions about Compilation
I've been wondering about the best ways to compile projects that are > 1000 lines of code. I just have some basic questions concerning the best way to have a project compiled. I'm using GCC, if it ...
-1
votes
5answers
35 views
Where to store class files? [closed]
I usually make a separate class library for my projects and then break it up into folders
Services
-all my .cs files that are service(business logic)
Data
- Mapping
- nhibernate mapping files
...
0
votes
1answer
52 views
Converting between SDP's sprop-parameter-sets and mkv's CodecPrivate
Is there some easy way to convert between h264 settings as stored in Matroska file:
+ CodecPrivate, length 36 (h.264 profile: Baseline @L2.0) hexdump
01 42 c0 14 ff e1 00 15 67 42 c0 14 da 05 07 e8
...
1
vote
1answer
34 views
RPM File Naming Convention - known guidelines?
I have way too many dependencies going:
OS (RHEL vs CentOS vs Suse vs Ubuntu)
OS Version Number
Compiler Name and Version Number
Dependent Libraries and their version numbers
Compiler options used ...
2
votes
4answers
93 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 ...
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 ...
0
votes
2answers
59 views
how to convert a Java POJO to JSON string?
I hava a POJO for which i set values, the pojo is:
public class CreateRequisitionRO extends AbstractPortfolioSpecificRO {
private static final long serialVersionUID = 2418929142185068821L;
...
5
votes
5answers
164 views
Java: Infinite Loop Convention [closed]
What is the convention for an infinite loop in Java? Should I write while(true) or for(;;)? I personally would use while(true) because I use while loops less often.
1
vote
3answers
66 views
Is it better to have more Java classes, or have fewer classes doing more work? [closed]
I'm currently working on a game. At the moment, I have one class (the game's environment) responsible for holding collections of game objects (enemies, weapons, etc.) and doing collision-checks, ...
0
votes
1answer
19 views
Webpage filename conventions
I'm just looking through a web project, and they've used a web page file naming convention based on the project plan docs.
It got me wondering: Are there security considerations of webpage ...
2
votes
1answer
39 views
C Library Double Underscore Confusion
I have read all the questions I can find about this, but nobody has yet addressed my confusion.
If I understand correctly, the use of a double underscore at the beginning of a method or variable name ...
1
vote
0answers
39 views
simple IF code convention [closed]
For simple IF conditions in JS, is it considered a good practice to do this?
if (a == b) {
foo();
}
else {
foo2();
}
OR should I just as well do?
if (a == b) foo();
else foo2();
7
votes
1answer
522 views
Durandal and ASP.NET MVC conventions
I'm currently evaluating Durandal for use in an enterprise ASP.NET MVC application.
However the default conventions used by Durandal seem to conflict with the MVC conventions I've grown accustomed ...
1
vote
2answers
92 views
What placeholder names (foobars) to use for types, functions and variables? [closed]
For the purpose of concept demonstration in c++ I need to use some placeholder naming scheme for types, functions, variables e.g. Foobar. Having several different entities to name and differentiate ...
1
vote
3answers
39 views
Setter and Getter conventions
public class Score {
private String score;
public String getScore() {
return score;
}
public void setScore(String score) {
this.score = score;
}
}
Working on ...
1
vote
0answers
10 views
What is “plugin authoring”?
First time I see plug-in authoring term in jQuery docs: http://docs.jquery.com/Plugins/Authoring
What is "plugin authoring"? How is it different from "plug-in development", "plug-in tutorial", ...
2
votes
2answers
86 views
Coding convention for space after pointer * [duplicate]
In Cocoa, what's the best convention on writing the * for pointer?
@property (nonatomic, retain) MyClass * instance;
or
@property (nonatomic, retain) MyClass *instance;
I noticed that the ...
0
votes
1answer
72 views
Categorizing C# Events, Delegates, Callbacks, etc
Simple question, I think: How do you categorize/name events-related items in C#?
For example, my current conventions look something like the following:
public class A
{
...
#region Delegates
...
0
votes
2answers
120 views
Chaining Up Events Through Abstractions C# WPF MVVM Conventions (What I'm doing works — is it “correct”?)
A conventions conundrum:
For simplicity's sake, let's say I have a View called FruitView with a label that says "Choose a fruit:" and choices such as apple, orange, pear, etc. in a ListBox.
Each ...
0
votes
3answers
66 views
JavaScript code convention - object declaration
I'm developing a JavaScript Style Guide and I'm aware that the only rule that can be applied on code conventions is to be consistent but I'm curious about this question since none of the major ...
6
votes
4answers
133 views
How to combine logging with an exception handling chain?
Suppose I have the following code:
void foo() {
/* ... */
try {
bar(param1);
} catch (MyException e) {
/* ??? */
}
}
void bar(Object param1) throws MyException {
...
0
votes
1answer
66 views
Use of ArgumentNullException when accessing arguments' properties
Suppose I have a class Foo with a complex property Bar. Then, suppose I have a method like the following in some other class:
public void DoSomething(Foo foo)
{
if (foo == null)
throw new ...
2
votes
1answer
64 views
Should class-level method calls in Ruby class definitions be idempotent?
I recently ran into an issue where calling load twice on a Ruby class caused bugs (here's a real-world example). This is because there were stateful method invocations taking place in the class body, ...
7
votes
1answer
192 views
What is the difference between “1.0f” and “1.f”?
As a worshipper of John Carmack, I was reading Id Tech's publicly-available Coding Conventions document (at ftp://ftp.idsoftware.com/idstuff/doom3/source/CodeStyleConventions.doc if you're ...
0
votes
1answer
41 views
Python “private” function coding convention
When writing a python module and functions in it, I have some "public" functions that is supposed to be exposed to outsiders, but some other "private" functions that is only supposed to be seen and ...
2
votes
1answer
98 views
Ruby convention for representing gender or sex
What is the ruby convention is for representing a person's gender or sex when working with it as a field in an object? There is a binary gender assumption (not that I agree with this, but data is ...
0
votes
2answers
54 views
Making classes for different units?
Let's say I have a function Rotate (float angle). When I call this function, I probably won't remember if this function takes the angle in degrees or radians. For this reason, I call functions like ...
0
votes
0answers
84 views
What is a line length “soft limit” and how do I interpret this in the PSR-2 convention?
I don't understand this part of php's PSR-2 convention:
The soft limit on line length MUST be 120 characters; automated style checkers MUST warn but MUST NOT error at the soft limit.
Lines SHOULD ...
0
votes
1answer
21 views
What's the installation location convention for compiled libraries for a cross-compiler?
I'm using mingw32msvc to cross-compile from linux to win32. This works well, and mingw uses Wine for this BTW.
Q: If I compile GLUT or FreeGLUT, where should I install the lib (as far as accepted ...
0
votes
2answers
81 views
Proper Java classes structure [closed]
I'm currently in the process of cleaning up a a large Java code base, and I was wondering what was the proper (standard?) structure/ordering of a Java class.
What I mean is:
Should public static ...
9
votes
2answers
169 views
Is there a C# method overload parameter ordering convention?
Is there any sort of convention in C# (or any object oriented language that supports method overloading) for the following situation?
Lets say I have a method foo:
public void Foo(int a){//does ...
1
vote
2answers
153 views
Is there a standardized method to swap two variables in Python? [closed]
In Python, I've seen two variable values swapped using this syntax:
left, right = right, left
Is this considered the standard way to swap two variable values or is there some other means by which ...
0
votes
1answer
30 views
Automatically converting coding conventions
When working on different projects, with different people and using different frameworks you often struggle to keep your code compliant to their conventions. Some teams get very strict about naming ...
0
votes
0answers
13 views
Is it acceptable to include Rest API Querysets for “higher level” resources?
This question is similar to Proper REST formatted URL with date ranges.
Their example of a sensible Rest API URL with a Queryset is:
...
0
votes
0answers
82 views
PHP convert multidimensional array to navigation menu
How can I convert this array to
$menu = array("administrator" =>
array("Equipment" =>
array("Equpment ...
0
votes
3answers
475 views
Converting extended ASCII string to hindi text
I am receiving a string text via USB communication in android in form of extended ASCII characters like
String receivedText = "5286T11ɬ ªË ¦¿¯¾ ¯¾ ɬ ¨¬°:A011605286 ª¿ª ¾®:12:45 ...
0
votes
2answers
54 views
What is the most convinient way to return second value from a function
Working with JavaScript from time to time, I try to use a pattern I was getting used to with another language. It's when the function result is about success of the operation and one of the parameters ...
-1
votes
3answers
58 views
Java conventions about primitive types
What are the Java conventions on primitive types? Should I be documenting each primitive type if I name it properly?
/**
* This is the variable that handles whether or not a person has turned on a ...
1
vote
1answer
69 views
Ninject conventions generic interface having different number of arguments than concrete class
Is there a way, using NInject conventions, to bind a generic interface that has a different number of type parameters than the concrete class that implements it?
For example:
public interface ...
0
votes
1answer
61 views
scikit-learn convention for label-inputs in data set
Is there any general format for label-inputs in scikit-learn datasets? I see it have list of labels for output in target_names. I want to follow scikit conventions and keep some data about labels in ...
2
votes
5answers
96 views
Does a convetion about the structure of a class exist? [closed]
When I write a class in Java, it (almost) always looks like this:
public class MyClass {
// attributes
// constructors
// methods:
// * "interesting" methods
// * getters ...
1
vote
1answer
101 views
Is there a Fluent NHibernate way to index all foreign keys without coding it?
Is that possible, with a convention maybe? I have hundreds of tables and a myriad of relationships, I'd like all foreign keys to be indexed and I'd hate to have to code that.
UPDATE
With @Vadim's ...







