A programming idiom is the usual way to code a task in a specific language. Idiomatic programming is the use of the idioms of the programming language in order to take advantage of its virtues and avoid its pitfalls. This tag should be used in questions about best practices in some specific ...

learn more… | top users | synonyms

1
vote
2answers
85 views

Scala 2.10 - Octal escape is deprecated - how to do octal idiomatically now?

See https://issues.scala-lang.org/browse/SI-5205 and https://github.com/scala/scala-dist/pull/20 Octal escape value leading 0 has been deprecated from scala and I don't see an idiomatic alternative. ...
2
votes
3answers
54 views

idiomatic python, manage default arguments in functions

I usually encounter that most of the people manage default arguments values in functions or methods like this: def foo(L=None): if L is None: L = [] However i see other people doing something ...
2
votes
5answers
289 views

How to write a shortest and most idiomatic CLI calculator in Clojure

I like to learn a new language by making small tool like calculator. Although I already searched a lot idiomatic examples about specific cases(such as idiomatic usage of array and list), I have no ...
1
vote
2answers
69 views

What should I replace small structs with in Java?

I am building a mapping app in Java, and I have a question about passing around small objects. Say I want to represent the area that the window is showing as a rectangle, and I want to query which ...
1
vote
1answer
20 views

Create sibling file name in Python

What is the idomatic/canoncial/best way to get a sibling file (name) in Python 2.7? That is, if there is file like 'C:\\path\\file.bin' or '/path/file.bin', how to get ...
0
votes
4answers
107 views

Which form of Objective-C init method is preferred? [closed]

So far I've seen it done three ways: 1: - (instancetype)init { self = [super init]; if (self) { // ... } return self; } 2: - (instancetype)init { if (self = [super ...
6
votes
2answers
179 views

Idiomatic Haskell code to simplify recursion

I need to compute foo n = maximumBy (comparing p) [1..n], where p :: Int -> Int is slow. But I know that p n < n for all n > 0 and want to use this fact to speed up this computation the ...
0
votes
0answers
6 views

Static Settings class versus built-in application settings

Guys help me figure out which one is better to use static class that will have static constant public properties or built-in configuration/settings file all properties in a application scope?
3
votes
3answers
163 views

Procedurally generating large list of values in Haskell — most idiomatic approach? memory management?

I have a function that takes a series of random numbers/floats, and uses them to generate a value/structure (ie, taking a random velocity and position of the point a ball is thrown from and outputting ...
0
votes
2answers
61 views

Use of def in clojure [closed]

When writing idiomatic Clojure code, when should I use def, and when should I avoid it?
2
votes
2answers
151 views

Pythonically inserting multiple values to a list

I want to turn this list: l=["Three","Four","Five","Six"] into this one: ['Three', 3, 'Four', 4, 'Five', 5, 'Six', 6] and I used this code (which works well) to do it: for i,j in ...
1
vote
1answer
174 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
3answers
259 views

Ruby idiom for substring from index until end of string

Just wondering if there's a Ruby idiom for extracting a substring from an index until the end of the string. I know of str[index..-1] which works by passing in a range object to the String's [] method ...
2
votes
5answers
103 views

More idiomatic and elegant way of Clojure function

I have a function which finds the least distance between nodes in graph, written in Ruby. I translated it to Clojure, but in my opinion it looks terrible. The representation of data looks like this: ...
1
vote
5answers
92 views

Turning this simple block to idiomatic Python code

def run(first, second): sum=[] for i in range(len(first)): third.append(second[i]+first[i]) return sum print run([1,2,3],[10,20,30]) The code works fine and prints out a list ...
0
votes
0answers
49 views

Style: Idiomatic.JS and jQuery Deferred Objects

My project's style is based off of the Idiomatic.JS style guide. I'm using jQuery's Deferred Objects. Here's a regular usage, with my current style: updateStream.createNewToken(foo, bar) ...
2
votes
3answers
184 views

Idiomatic Clojure for picking between random weighted choices

While dabbling in Clojure I completed a small example program to pick a random choice from a list of choices. The basic idea is to iterate over the choices (which are assigned a weight) and turn ...
5
votes
2answers
164 views

Most Pythonic Way to Build Dictionary From Single List

I have a list of day names (typically Monday-Saturday, though special cases apply) that I want to create a dictionary out of. I want to initialize the value of each day to zero. If I had a list of ...
6
votes
1answer
144 views

How to implement idiomatic logging in a Go library?

What is an idiomatic way to perform logging in Go?
3
votes
2answers
168 views

Compose immutable F# map of list of strings

In C# I could build a Dictionary<string, List<string>> pretty easy. If I was reading through a large database of items I could do the following: var dict = new Dictionary<string, ...
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, ...
4
votes
1answer
178 views

scala: improve readability and style of this piece of code

The following is a pretty common play framework 2 controller: def save(ideaId : Long) = CORSAction { request => Idea.findById(ideaId).map { idea => request.body.asJson.map { json => ...
3
votes
1answer
162 views

Idiomatic Clojure way to find most frequent items in a seq

Given a sequence of items I want to find the n most frequent items, in descending order of frequency. So for example I would like this unit test to pass: (fact "can find 2 most common items in a ...
0
votes
0answers
104 views

Idiom for recursively applying JSON object_hook to nested member?

I'm writing a base class which loads JSON objects, in a Pythonic way. Not sure I am using object_hook correctly here? If not please show me the right idiom. I convert the value in the (key,value) ...
2
votes
8answers
145 views

List comprehensions for side effects - idiomatically correct or an abomination?

I have a list of cheese objects. Cheese has a method that does a bunch of stuff with the db and whatnot, called out_of_stock(). So: [cheese.out_of_stock() for cheese in cheeses] It feels sloppy to ...
3
votes
1answer
187 views

When to use dup, and when to use clone in Ruby? [closed]

What's the differences between ruby dup and clone method? describes the difference in the behavior of dup and clone. But when should I use dup, and when should I use clone instead? Examples from ...
0
votes
5answers
418 views

Asynchronous map/reduce in Javascript/JQuery

What's the idiomatic way to do the following in Javascript (jQuery)? Spawn a set of asynchronous jobs Collect partial results When every job has completed, combine partial results The above can be ...
0
votes
3answers
118 views

How to write more Pythonic Code

I started learning python today from the tutorial on the official site. When reading about filter(function, sequence) i thought of making a function that returns if a number is prime to use it with ...
2
votes
1answer
114 views

ruby typical eql? and == implementations

I've been reading about the differences between eql? and == in ruby, and I understand that == compares the values while eql? compares the value and the type According to the ruby docs: For objects ...
0
votes
1answer
113 views

ruby where to define structs

I know I can define new structs in ruby by doing Person = Struct.new(:first_name, :last_name) What I'm wondering is what is the appropriate place to define this struct (and other structs I'll be ...
5
votes
3answers
116 views

How to replace(fill) None entries on List of Options from another List using idiomatic Scala?

I have a List[Option[MyClass]] with None in random positions and I need to 'fill' that list again, from a List[MyClass], maintaining the order. Here are sample lists and expected result: val listA = ...
0
votes
1answer
76 views

Idiomatic Ruby for creating an object representing a node in a tree that's aware of its parent

I'm working on a Ruby binding for a REST API and am struggling with what would be considered idiomatic Ruby for a piece of it. To illustrate with a simplified example, the resources represented by ...
3
votes
2answers
172 views

Two nested for of for and map?

When I need to generate a sequence which needs "two loops", is it better to do something like this: (for [x (range 1 4)] (map #(* x %) (range 6 9))) or something like this: (for [x (range 1 4)] ...
2
votes
2answers
286 views

How can I make this method more Scalalicious

I have a function that calculates the left and right node values for some collection of treeNodes given a simple node.id, node.parentId association. It's very simple and works well enough...but, well, ...
5
votes
3answers
105 views

When writing a single package meant to be used as a command, which is idiomatic: name all identifiers as private or name all identifiers as public?

In Go, public names start with an upper case letter and private names start with a lower case letter. I'm writing a program that is not library and is a single package. Is there any Go idiom that ...
6
votes
1answer
370 views

Symfony framework; idiomatic way to store a user's role

In my Symfony 2 application I want to use the standard Authorization system of users and roles (http://symfony.com/doc/2.0/book/security.html) My User is an entity stored in a database with doctrine ...
2
votes
2answers
3k views

Finding an item that matches predicate in Scala

I'm trying to search a scala collection for an item in a list that matches some predicate. I don't necessarily need the return value, just testing if the list contains it. In Java, I might do ...
2
votes
2answers
86 views

Idiomatic scala way of creating unnamed extracting func

Given that there is a functionfoo[A, B, C]( func: (a: A, b: B, c: C) => B) and I want to pass in this function def secondOfThree[A, B, C](a: A, b: B, c: C): B = b I can call foo with ...
4
votes
2answers
553 views

Idiomatic Scala List Comprehension - first item that matches

Folks, I've been writing some code in Scala lately to teach myself the language and in some recent experiments, I've used an NLP library to produce a set of part-of-speech tagged words from a user's ...
1
vote
3answers
265 views

Idiomatic clojure conditionally calling a function

I have a clojure function that needs to push information into a map if a particular condition is true, using that map as a parameter for another function. I have the following, but it feels clumsy ...
1
vote
3answers
145 views

Function to find not only the minium value of a sequence, but also its index in F#

I have a sequence and I need to find both the minimum value of the sequence, and that value's index in the sequence - effectively some sort of "Seq.mini" function along the lines of Seq.mapi or ...
5
votes
4answers
227 views

Idiomatic way to “merge” multiple lists of the same length in F#?

I have a number of lists - each instance of which contains 9 floating point numbers. What I effectively need to do is produce one new list that takes the first element from each of my lists and adds ...
1
vote
1answer
166 views

Rails 3 - What is the correct way to create a resource that has nested attributes?

I'm building a Wedding website that will allow guests to login with an invitation code and RSVP online. My models are as follows: Invitation class Invitation < ActiveRecord::Base ...
6
votes
2answers
137 views

A better way than counting the length of a list of units

I sometimes find myself writing code like this: someFunc :: Foo -> Int someFunc foo = length $ do x <- someList guard someGuard return () Or equivalently: someFunc foo = length [() | x ...
1
vote
2answers
464 views

Ruby Built In Method to Create Multidimensional Array From Single Dimensioned Array

If I have an array like this: [0, 1, 2, 3, 4, 5], is there a built in method to create this: [[0, 1, 2], [3, 4, 5]] given a width of 3? If there is no built in method, how could I improve on this? ...
9
votes
5answers
274 views

Idomatic Scala solution to imperative code

What are some ideas for expressing this function in 'idiomatic' Scala. Or more precisely, is there a way to remove the local vars without sacrificing readability? def solve(threshold: Int)(f: Int ...
1
vote
3answers
270 views

How to properly use 'for..in' list comprehension inside Coffeescript object indentation?

I'm just getting started with Coffeescript, so I may be asking something really trivial, but this "bug" recently tripped me up: class Foo toJSON_1: -> title: 'toJSON_1' items: i for i in ...
3
votes
3answers
183 views

Whats the most idiomatic way to declare a list of local javascript variables?

I know all of the below versions work, and I've see them all in the wild to varying degrees. Just wondering if there is one fairly standard idiomatic way among these (are there any references to ...
7
votes
2answers
151 views

What are the implications of using def vs. val for constant values

What are the implications of using def vs. val in Scala to define a constant, immutable value? I obviously can write the following: val x = 3; def y = 4; var a = x + y; // 7 What's the difference ...
0
votes
2answers
84 views

What are the differences between these options for a simple interface to a field?

I was just staring at the following code and wondered if there was really a need to fill 12 lines of source. private static IUnityContainer _container; public static IUnityContainer Container ...

1 2 3