0
votes
3answers
146 views
Style of programming [closed]
Hi, could anyone comment on my style (I know that this is c ver of doing things but that was my task to do) - just learning c++ and I would like to write in good style - (comments in fnc removed):
…
0
votes
1answer
31 views
How should I organise my functions with pyparsing?
I am parsing a file with python and pyparsing (it's the report file for PSAT in Matlab but that isn't important). here is what I have so far. I think it's a mess and would like some advice on how to …
2
votes
12answers
250 views
To iterate or to use a counter, that is the question
Whenever someone starts using the STL and they have a vector, you usually see:
vector<int> vec ;
//... code ...
for( vector<int>::iterator iter = vec.begin() ;
iter != vec.end() ;
…
15
votes
21answers
674 views
What should I do to improve my code/style of programming?
I am sure you guys know me. I am the person from your offshore team whose code puts you off and at times makes you pull your hair (bcoz you can't pull mine). My programming concepts are quite okay …
3
votes
6answers
347 views
Is Google’s “Go” language multi-value return statement an alternative to exceptions?
It seems to me Google's alternatives to exceptions are
GO: multi-value return "return val, err;"
GO, C++: nil checks (early return)
GO, C++: "handle the damn error" (my term)
C++: assert(expression) …
0
votes
1answer
33 views
Pyjamas import statements
I'm starting to use Pyjamas and I'm running into some annoyances. I have to import a lot of stuff to make a script work well. For example, to make a button I need to first
from pyjamas.ui.Button …
1
vote
6answers
143 views
C style printf/scanf
I've seen, here and elsewhere, many questions that, to get input data, use something like this:
...
printf("What's your name? ");
scanf("%s",name);
...
This is very reminiscent of the old BASIC …
1
vote
13answers
186 views
Long code blocks inside if statements or for loops
This is a cross language question on coding style.
I have to work with a lot of code that has very long code blocks, sometimes hundreds of lines, inside if statements or for loops. The code is …
2
votes
1answer
157 views
Examples of Spartan Programming in C#
I am interested in reading examples of code in C# that makes use of the Spartan Programming philosophy. Can you please provide a link to any open source project or online code sample that follows …
4
votes
12answers
303 views
Is it acceptable to have useless code?
I see that some programmers add code that, after all, does not anything useful. For instance (C#):
[Serializable]
class Foo {
// ...
string SerializeMe() {
return new …
1
vote
2answers
103 views
Should I use new Type() or just Type() for calling a constructor
Both syntaxes are equivalent (at least I suppose they are).
let o1 = new Object()
or
let o2 = Object()
Which way do you use more often? What about readability issues?
0
votes
5answers
106 views
Review my Django Model - Need lots of suggestions.
Hi all,
I am pulling a variety of information sources to build up a profile of a person. Once I do this I want to the flexibility to look at a person in a different ways. I don't have a lot of …
1
vote
6answers
175 views
Is it OK for an abstract base class have non-abstract methods?
An abstract base class (interface class) usually has all its member functions abstract. However, I have several cases where member functions consisting of calls to the abstract methods of the …
2
votes
5answers
74 views
Ruby Style: How to check whether a nested hash element exists
Consider a "person" stored in a hash. Two examples are:
fred = {:person => {:name => "Fred", :spouse => "Wilma", :children => {:child => {:name => "Pebbles"}}}}
slate = {:person …
1
vote
4answers
67 views
Is there a well-established naming convention for PHP namespaces?
So far, I've seen many different naming conventions used for PHP namespaces. Some people use PascalCase\Just\Like\For\Classes, some use underscored\lower_case\names, some even use the Java convention …
