0
votes
2answers
34 views
What is the idiomatic way to set class/instance variables in a class definition in Ruby?
For instance, in Python, I can create a class like this:
class foo(object):
bar = 'x'
def __init__(self, some_value):
self.some_attr = some_value
...where bar is …
4
votes
7answers
379 views
What C++ idioms should C++ programmers use?
Question
What C++ idioms should C++ programmers know?
By C++ idioms, I mean design patterns or way of doing certain things that are only applicable for C++ or more applicable for …
9
votes
2answers
317 views
JavaScript idiom: create a function only to invoke it.
I am learning YUI and have occasionally seen this idiom:
<script>
(function x(){ do abcxyz})();
</script>
Why do they create a function just to invoke it?
Why …
6
votes
13answers
2k views
Best ruby idiom for “nil or zero”
I am looking for a concise way to check a value to see if it is nil or zero. Currently I am doing something like:
if (!val || val == 0)
# Is nill or zero
end
But this seems ver …
3
votes
6answers
106 views
How do I keep time without cumulative error?
How can you keep track of time in a simple embedded system, given that you need a fixed-point representation of the time in seconds, and that your time between ticks is not precise …
7
votes
8answers
459 views
What is the pythonic way to detect the last element in a python ‘for’ loop?
I'd like to know the best way (more compact and "pythonic" way) to do a special treatment for the last element in a for loop. There is a piece of code that should be called only be …
2
votes
4answers
152 views
Multiple Exits From F# Function
I could do this easily in C++ (note: I didn't test this for correctness--it's only to illustrate what I'm trying to do):
const int BadParam = -1;
const int Success = 0;
…
1
vote
5answers
205 views
Idiomatic Python has_one
I just invented a stupid little helper function:
def has_one(seq, predicate=bool):
"""Return whether there is exactly one item in `seq` that matches
`predicate`, with a mi …
14
votes
13answers
1k views
What are some C++ related idioms, misconceptions, and gotchas that you’ve learnt from experience?
What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience?
An example:
class A
{
public:
char s[1024];
char *p;
A::A()
{
p …
4
votes
3answers
158 views
Expressing quantities with units prettily in Scala
I need support for quantities with units. I'd like the type system to enforce unit correctness as much as possible. For example, it shouldn't be possible to combine grams with doll …
6
votes
9answers
596 views
Good or Bad C++ Idiom - Objects used purely for constructor/destructor?
I have a few classes which do nothing except in their constructors/destructors. Here's an example
class BusyCursor
{
private:
Cursor oldCursor_;
public:
BusyCursor( …
8
votes
4answers
158 views
“GetOrCreate” - does that idiom have an established name?
Ok, consider this common idiom that most of us have used many times (I assume):
class FooBarDictionary
{
private Dictionary<String, FooBar> fooBars;
...
FooBar …
1
vote
2answers
70 views
Good short example program to accentuate various languages’ style & idioms?
I'm putting together some brief pages on programming and programming languages for a corporate wiki. We are not a software or IT company, but we have many technical employees (eng …
3
votes
2answers
61 views
Whats the proper idiom for naming django model fields that are python reserved names?
I have a model that needs to have a field named complex and another one named type. Those are both python reserved names. According to PEP 8, I should name them complex_ and type_ …
1
vote
3answers
83 views
Idiomatic application data for Mac vs. Windows vs. Linux
I'm a Mac user, so I know that for Mac OS X, I'd like my games packaged up in a nice .app bundle (like Aquaria did, for example). But what is the standard on Windows? And what is t …
