A programming idiom is a way to overcome a programming language limitation and/or to write commonly-used code with a purpose that is separated from a literal meaning of the code. Also, an idiom is a preferred way to write code, when there is more than one obvious way to do it.
0
votes
0answers
17 views
Looking for idiom database to download
I'm working on a creative writing mobile app and I'm looking for a database of idioms. I can't seem to find a "downloadable" database of idioms for free or purchase. Has anybody come across any? I did ...
-1
votes
3answers
57 views
python equivalent to perl's @{$obj->method($args)} or %{$obj->method($args)}
Title demonstrates the perl idiom I wish to convey in my python script. I realize this could be construed as bad practice, potentially due to (lack of) exception handling. Though nonetheless I find ...
1
vote
2answers
38 views
Is there an idiomatic Objective-C technique to make an init method return a stub implementation for testing?
I am writing a unit test for a class Foo, which has a collaborator, Bar. I want to use a manually-built stub implementation of Bar in Foo's test.
If I were doing this in Java, I would give Foo a ...
4
votes
2answers
89 views
Type classes, associated families -> containers, keys, and elements: Who is who?
Reading about type families on haskellwiki, I see the example
class Collects ce where
type Elem ce
empty :: ce
insert :: Elem ce -> ce -> ce
This makes sense to me, as I use my ...
4
votes
1answer
47 views
Better pythonic idiom for this repeated piece code pattern
I find myself using this code pattern quite a bit, and every time I do I think there might be a better, clearer way of expressing myself:
do_something = True
# Check a lot of stuff / loops
for thing ...
1
vote
1answer
30 views
Rails ActiveRecord update nested attributes in place
In rails, using update_attributes on a model will create nested models based on association_attributes. Is there an idiomatic way to make it UPDATE the nested models in place?
For example:
...
-5
votes
3answers
79 views
Does C++ 11 introduce any new ways to break from a nested for loop?
Consider a case of a for inside an other for
int f( ... )
{
for (int i = start_a; i < end_a; i++)
{
for (int j = start_b; j < end_b; j++)
{
// make some computation
if( ...
5
votes
1answer
63 views
Represent a class as a dict or list
I've classes that is used for getting data from one system, making some modifications and then outputting them into another system. Which usually goes the way of converting it into a dict or a list ...
0
votes
1answer
60 views
Ruby iterators — get next item/items
In parsing a file, I want to look for a line and then start parsing there:
inFile.each_line do |line|
if line == 'User E'
#start parsing next line
end
end
How do you recommend I do ...
1
vote
1answer
97 views
Clojure: Idiomatic use of atom and ref?
I am working out a bit of Clojure code that will take a ref to a map and increment a key value pair in the map. I think I am using ref correctly, but Im not sure about atom. Do I need to use swap! ...
10
votes
2answers
237 views
What is the template<typename T, T t> idiom?
I was reading this and was trying to understand what N3601 was about. It said this idiom comes up a lot in a web search, but I couldn't find anything. What is the
template<typename T, T t>
...
-1
votes
3answers
53 views
What do I do instead of grep'ing the output of ps?
Everyone knows how annoying this is:
[mybox:~ #] ps aux | grep myservice
root 2273 0.0 0.0 4360 760 ? Ss 18:06 0:00 /usr/sbin/myservice
root 18590 0.0 0.0 4100 788 ...
2
votes
2answers
58 views
Idiom for automatically creating missing values in map using Java
I often use maps to store values in loops, such as a set/list of objects pertaining to the same class/group, or an AtomicInteger that I want to increment. I thus often write the following kind of ...
1
vote
5answers
142 views
How can I keep my thrown exception for the finally block?
I have the following code:
try {
/* etc. 1 */
} catch (SomeException e) {
/* etc. 2 */
} catch (SomeException e) {
/* etc. 3 */
} finally {
/*
* do something which depends on ...
0
votes
1answer
44 views
what is the terminology or idiom for using an object of the class to get a reference to its contents?
A previously question on static references was closed as vague. In any event, I now know the the answer (and will hopefully remember the "solution"), but what is this technique called?
The most ...
1
vote
1answer
41 views
Is there an idiomatic way to get_or_create then update an object in Django?
I have a Django model called StaffSettings which contains various configuration options for users in my Django app. Each User has at most one entry in the StaffSettings table.
Assume that one setting ...
1
vote
1answer
65 views
Need MySQL idiom for checking whether string contains any of a set of characters
I need to run the following MySQL query:
SELECT id, name FROM mytable
WHERE NOT CONTAINS_ANY(name, ';.<>#$!');
except that there doesn't seem to be anything like CONTAINS_ANY (taking two ...
0
votes
1answer
57 views
Is the use of return in Ruby not idiomatic? [closed]
I have been refactoring some code today and have made a lot of my methods much neater with fairly heavy use of return. One thing that occurred to me is how infrequently I have seen return used in ...
2
votes
1answer
80 views
Using relational model (keys) to make references to other objects, good or bad idea?
In my previous job, most of program processing relied on persistent data stored on a DB.
So the DB data model leaded the runtime programs data structures. Thus it was very convenient for us to use ...
5
votes
2answers
169 views
Idiom for strict typedef in C++
Is there an idiom for a strict typedef in C++, possibly using templates?
Something like:
template <class base_type, int N> struct new_type{
base_type p;
explicit new_type(base_type i = ...
-1
votes
5answers
134 views
what is the work-around to “non-static variable cannot be referenced from a static context”? [closed]
There's a particular idiom to putting a method, or perhaps anonymous inner class, somehow, into the main method of a driver class:
package net.bounceme.dur.misc;
import net.bounceme.dur.misc.Foo;
...
1
vote
4answers
109 views
They said javascript code in HTML considered bad practice, how to solve this?
So, I understand that mixing javascript into HTML is bad, even in head. But lets see this code (I want to remove items the from list)
.
.
.
<div>item1 <a href="#" onclick="return ...
4
votes
3answers
109 views
Javascript idiom: What does if (x === +x) do? [duplicate]
Reading through the source code of underscore.js I stumbled upon the following line:
... if (obj.length === +obj.length) { ...
That's a bit confusing for me. What is actually being compared here? I ...
1
vote
1answer
172 views
Idiomatic Scala to iterate over all substrings [closed]
Something less imperative than this:
def subs(s: String) = for {start <- 0 to s.length; end <- i to s.length} yield s.substring(start, end)
1
vote
4answers
111 views
Return-if-value idioms (conditional returning)
Recently I've found myself using the following idiom in some of my functions:
[...]
def validate(self):
# Possibly do something "expensive" to calculate whether data is valid or not
if ...
5
votes
2answers
158 views
Access operator functions by symbol
I need a function which takes one of python's operator symbols or keywords as a string, along with its operands, evaluates it, and returns the result. Like this:
>>> string_op('<=', 3, 3)
...
4
votes
3answers
384 views
C++ code for state machine
This was an interview question to be coded in C++:
Write code for a vending machine: Start with a simple one where it just vends one type of item. So two state variables: money and inventory, ...
2
votes
5answers
73 views
Setting all setters of o1 according to corresponding getters of o2
In Java, I have a method that modifies properties of object to according to the corresponding properties of the object from.
public static void shape(SomeType from, SomeType to) {
to.setA( ...
1
vote
2answers
69 views
Cycling a variable around a power of two range
What construct is preferable, and why?
A:
if(i < 1023)
++i;
else
i = 0;
B:
++i;
if(i == 1024)
i = 0;
C:
i = (i + 1) & 1023;
or other?
I like alternative C because it is small ...
4
votes
2answers
141 views
Why use Python's “else” clause in try/except block? [duplicate]
Possible Duplicate:
Python try-else
I'm not seeing the benefit of it, at least based on the example I just read in Dive Into Python:
try:
from EasyDialogs import AskPassword
except ...
0
votes
1answer
34 views
Django Save Model Idiom
Let's say you've got a ActiveDirectoryUser model:
class ActiveDirectoryUser(models.Model):
object_guid = models.CharField(max_length=200, unique=True)
mail = models.EmailField(unique=True)
...
1
vote
2answers
112 views
Idiomatic way to copy cell values “down” in an R vector [duplicate]
Possible Duplicate:
Populate NAs in a vector using prior non-NA values?
Is there an idiomatic way to copy cell values "down" in an R vector? By "copying down", I mean replacing NAs with the ...
0
votes
4answers
75 views
What is the Ruby idiom for appending an element to an array that may not be initialized yet?
I found that << can not be used by Array unless it has already been initialized. I currently write it like this:
unless @app
@app = my_array
else
@app << my_array
end
Is there a ...
1
vote
3answers
102 views
Polymorphic templated classes with polymorphic template parameters
In a simplistic design, a class B inherits a class A polymorphically.
A templated class, Base<T> has a T* member that is used for further operations. A Derived<T> inherits from ...
17
votes
4answers
391 views
Python nested looping Idiom
I often find myself doing this:
for x in range(x_size):
for y in range(y_size):
for z in range(z_size):
pass # do something here
Is there a more concise way to do this in ...
0
votes
2answers
97 views
Correct way to create or update with multiple belongs_to in Rails
New to Rails and Ruby and trying to do things correctly.
Here are my models. Everything works fine, but I want to do things the "right" way so to speak.
I have an import process that takes a CSV and ...
0
votes
2answers
34 views
Ruby counterpart of Lua _ variable name
When fiddling with redis gem I found #multi and #pipelined methods, which allow grouping operations, whose results are later returned as an array.
getresult, delresult = redis.multi do
redis.get ...
0
votes
1answer
53 views
Which javascript functions f satisfy: f(x,y) = f(a,b) IFF x = a and y = b?
I'm using SlickGrid and the related DataView's groupBy functionality. I would like to group by a pair of columns, but groupBy only allows grouping by a single value.
To get around that (in the ...
2
votes
1answer
270 views
Perl: qx or Die
Simple task:
I have a script with line:
qx(wget -P $destination $file) || die "i can't download file: $file!\n";
but every time (if it was success or not), the script dies.
How should i change ...
2
votes
1answer
81 views
What is an idiomatic method of listening for events in Go?
A few months ago I was thinking how to implement a closable event loop in Go, for an RPC library. I managed to facilitate closing the server like so:
type Server struct {
listener net.Listener
...
4
votes
5answers
248 views
Idiomatic Ruby filter for nil-or-empty?
I'm looking for a more idiomatic way to filter out nil-or-empty elements of an array.
I have many methods of the form:
def joined
[some_method, ...
6
votes
1answer
144 views
How to implement idiomatic logging in a Go library?
What is an idiomatic way to perform logging in Go?
1
vote
2answers
81 views
Best idiom for creating a separate singleton for every type argument to a generic class?
(Perhaps the complementary question to "How to create a generic singleton class in java?":)
class MyClass<T> {
private static Map<Class<MyClass<?>>, MyClass<?>> ...
1
vote
1answer
90 views
Followup to returning nil from a [[class alloc] init]
As follow-up of sorts to Is returning nil from a [[class alloc] init] considered good practice?, there's a case that I haven't seen any discussed much: what to do with an init that fails some ...
12
votes
2answers
361 views
The preferred way to set matplotlib figure/axes properties
Say I have a matplotlib axes called ax, and I want to set several of its properties. Currently, I do it like this:
ax.set_yscale('log')
ax.set_xlim([0,10])
ax.set_xlabel('some label')
But it gets ...
4
votes
1answer
193 views
Python -> C++ idiom: Storing lambda expressions in a map/container
I'm learning C++ (via Qt4) leveraging my python/pyqt4 experience, and I cannot seem to grasp the proper idiom for storing lambda expressions into a container for use as callbacks.
I have a struct ...
3
votes
2answers
67 views
Idiomatic Python way of naming a method that converts the object to another format
I'm looking for what is the most idiomatic way of naming a method that for instance converts the data of a class to xml.
If I were doing this in Ruby I would make a method named to_xml for instance, ...
3
votes
3answers
115 views
Better way to write this code? [closed]
I have the following code and I think it stinks because of repetition of vi. How can I write it better?
vi = '([a-zA-Z0-9_\-\.]+)'
handlers = [
(r'/register', RegistrationHandler),
...
2
votes
2answers
148 views
Idiomatic ruby for generating permutations?
I'm wondering what the idiomatic version of this function for generating permutations would look like in Ruby. I understand that [1,2,3].permutation.to_a will generate the same result, but I'm more ...
1
vote
3answers
57 views
What's a more rubyesque way of doing this?
I'm checking a session hash for some oAuth values and then setting them if they don't exist. This is my existing code:
unless session[:oauth][:request_token].nil? && ...

