Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
1answer
694 views

Criticize simple monad

I'm learning monads, this is my first working one (aside from the trivial monad). Feel free to criticize everything in it ruthlessly. I'm especially interested in "more idiomatic" and "more elegant" ...
16
votes
5answers
2k views

How can I use “Dependency Injection” in simple php functions, and should I bother?

I hear people talking about dependency injection and the benefit of it all the time, but I don't really understand it. I'm wondering if it's a solution to the "I pass database connections as ...
14
votes
3answers
247 views

idiomatic C for const double-pointers

I am aware that in C you can't implicitly convert, for instance, char** to const char** (c.f. C-Faq, SO question 1, SO Question 2). On the other hand, if I see a function declared like so: void ...
11
votes
12answers
2k views

Idiomatic efficient Haskell append?

Anyone worth their salt in Haskell knows about lists, and the cons operator (:). Cons is our friend. But sometimes I want to add to the end of a list instead. xs `append` x = xs ++ [x] This, ...
11
votes
3answers
313 views

Best way to use “isa” method?

What is the "best" way to use "isa()" reliably? In other words, so it works correctly on any value, not just an object. By "best", I mean lack of un-handled corner cases as well as lack of potential ...
11
votes
5answers
380 views

Rationale behind Python's preferred for syntax

What is the rationale behind the advocated use of the for i in xrange(...)-style looping constructs in Python? For simple integer looping, the difference in overheads is substantial. I conducted a ...
10
votes
7answers
723 views

Idiomatic construction to check whether a collection is ordered

With the intention of learning and further to this question, I've remained curious of the idiomatic alternatives to explicit recursion for an algorithm that checks whether a list (or collection) is ...
10
votes
2answers
267 views

Learning Elisp - what are the highest quality libraries to read source code?

When learning a new programming language, "read source code" is a common advice received by the experts. However, with such a huge system like emacs, build over decades by many people, it is not so ...
10
votes
1answer
217 views

What is the idiomatic way to assoc several keys/values in a nested map in Clojure?

Imagine you have a map like this: (def person { :name { :first-name "John" :middle-name "Michael" :last-name "Smith" }}) What is the idiomatic way to change values associated with ...
10
votes
7answers
1k views

What is idiomatic code?

I'd be interested in some before-and-after c# examples, some non-idiomatic vs idiomatic examples. Non-c# examples would be fine as well if they get the idea across. Thanks.
9
votes
5answers
231 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 ...
9
votes
3answers
317 views

Better to return None or throw an exception when fetching URL?

I have a Scala helper method that currently tries to fetch a URL and return an Option[String] with the HTML of that webpage. If there are any exceptions (malformed url, read timeouts, etc...) or if ...
9
votes
7answers
418 views

How to learn to write idiomatic c++ code

I recently forced myself to study C++ and I just finished reading the book C++: The Complete Reference, by Herbert Schildt. I liked the book and think I got more or less the big picture. I noticed ...
9
votes
2answers
344 views

idiomatic way to replace (null x) function from common lisp in clojure

In Common Lisp you use the (null x) function to check for empty lists and nil values. Most logically this maps to (or (nil? x) (= '() x)) In clojure. Can someone suggest a more idiomatic way to ...
9
votes
2answers
2k views

Idiomatic jQuery delayed event (only after a short pause in typing)? (e.g. timewatch/typewatch/keywatch)

Here is some jQuery for a search box that I expect is actually an antipattern, and am sure there is a much better solution for that I would love to be pointed towards: I will describe it in comments ...
8
votes
3answers
207 views

What's idiomatic clojure for :use

I've seen several different ways for :use in clojure--what's the idiomatic/preferred method? #1 (ns namespace.core (:use [[something.core] [another.core]])) or #2 EDIT: Use this with ...
8
votes
3answers
1k views

F# and ADO.NET - idiomatic F#

I'm just starting to learn F#. I wrote this F#/ADO.NET code last night. In what ways would you improve the syntax - make it feel like idiomatic F#? let cn = new OleDbConnection(cnstr) let sql ...
8
votes
6answers
383 views

How do I change this to “idiomatic” Perl?

I am beginning to delve deeper into Perl, but am having trouble writing "Perl-ly" code instead of writing C in Perl. How can I change the following code to use more Perl idioms, and how should I go ...
6
votes
2answers
115 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 ...
6
votes
4answers
208 views

Aggregating values in a data frame based on key

I've got a piece of aggregation code that works well enough but runs a bit slow against a data frame with 10e6 rows. I'm not that experienced in R so apologies for my cringe worthy code! I just want ...
6
votes
6answers
372 views

Idiomatic Scala way to deal with base vs derived class field names?

Consider the following base and derived classes in Scala: abstract class Base( val x : String ) final class Derived( x : String ) extends Base( "Base's " + x ) { override def ...
6
votes
1answer
196 views

Idiomatic in Clojure: (drop 1 str) or (rest str)?

Simple question here for Clojure. Which is more idiomatic when dealing with strings? Which is more idiomatic when dealing with other data types? Which is more efficient? (drop 1 str) or (rest ...
6
votes
2answers
309 views

Clojure-idiomatic way to initialize a Java object

I am trying to find a Clojure-idiomatic way to initialize a Java object. I have the following code: (let [url-connection (let [url-conn (java.net.HttpURLConnection.)] (doto url-conn ...
6
votes
3answers
540 views

Idiomatic Clojure for solving dynamic programming algorithm

I decided to work through the CLRS Introduction to Algorithms text, and picked the printing neatly problem here. I worked through the problem and came up with an imperative solution which was ...
6
votes
2answers
287 views

When are guard expressions appropriate?

Here is an example I wrote that uses if-else branches and guard expressions. When is one more appropriate over the other? The main reason I want to know this is because languages typically have a ...
5
votes
1answer
144 views

What is the idiomatic way to swap two elements in a vector

Is there a better or more concise way to do the following? (defn swap [v i1 i2] "swap two positions in a vector" (let [e1 (v i1) e2 (v i2)] (-> (assoc v i1 e2) (assoc ...
5
votes
2answers
337 views

Is there an analogue to Java IllegalStateException in Python?

IllegalStateException is often used in Java when a method is invoked on an object in inappropriate state. What would you use instead in Python?
4
votes
2answers
94 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 ...
4
votes
4answers
66 views

Should I put method calls in initialize when using Ruby?

I am building a Calendar object. It is important that I have both a date object and date as a string. class Calendar def initialize(on, off, date_string) @on = on.to_i @off = off.to_i ...
4
votes
6answers
152 views

How do I return a clojure map with fixed keys and conditional values?

I have a function that returns a map. The keys are static, but the values are conditional. Like this: (defn map-returning-function [x y] {:a (if (some-test-fn x) "one value" "other value" :b ...
4
votes
2answers
240 views

Can this Haskell kata solution be made more idiomatic?

I'm relearning Haskell after a 10 year hiatus, partly to see what's changed and partly as an antidote to days spent in C#, SQL and JavaScript and partly as it's cool all of a sudden ;-) I decided to ...
4
votes
5answers
323 views

How to make this code more compact and idiomatic?

Hullo all. I am a C# programmer, exploring F# in my free time. I have written the following little program for image convolution in 2D. open System let convolve y x = y |> List.map (fun ye ...
3
votes
3answers
56 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 ...
3
votes
1answer
216 views

Using nnet for prediction, am i doing it right?

I'm still pretty new to R and AI / ML techniques. I would like to use a neural net for prediction, and since I'm new I would just like to see if this is how it should be done. As a test case, I'm ...
3
votes
2answers
51 views

Looking for idiomatic way to regex-process a text file in Ruby

I'm looking for idiomatic way to regex-process a text file in Ruby, and here's the best thing I've been able to come up with so far. It removes all " chars: #!/usr/bin/env ruby src_name = ARGV[0] ...
3
votes
3answers
193 views

F# - creating 100 objects into a List - most functional and idiomatic way

In F# what is the most functional and idiomatic way of creating or "newing up" 100 new objects into a List. I guess for an example we could use DateTime as an example object.
3
votes
1answer
174 views

clojure functions, let & return values

Is it unwise to return a var bound using let? (let [pipeline (Channels/pipeline)] (.addLast pipeline "codec" (HttpClientCodec.)) ;; several more lines like this pipeline) Is the binding ...
3
votes
2answers
116 views

PowerShell idiom to test for existence of a command?

I'd like a function to test for the existence of a command (cmdlet, function, alias, etc.) in PowerShell. It should behave like this: PS C:\> Test-Command ls True PS C:\> Test-Command lss ...
3
votes
1answer
122 views

Structuring Of Classes

I am supposed to write codes to simulate the working of three Encryption techniques:- Caesar Cipher, Columnar Transposition and RSA. I made an interface named Encryption public interface Encryption ...
3
votes
3answers
212 views

Idiomatic way to pass a method name for evaluation in Clojure?

I'm passing the name of a function for use in another method. (defn mapper [m function] (cond (= '() m) '() true (cons (function (first m)) (mapper (rest m) function)))) ...
3
votes
6answers
200 views

Pythonic way to functions/methods with a lot of arguments

Imagine this: def method(self, alpha, beta, gamma, delta, epsilon, zeta, eta, theta, iota, kappa): pass The line overpass the 79 characters, so, what's the pythonic way to multiline it?
3
votes
2answers
537 views

Declaring an integer Range with step != 1 in Ruby

UPDATE 2: For posterity, this is how I've settled on doing it (thanks to Jorg's input): 100.step(2, -2) do |x| # my code end (Obviously there are plenty of ways to do this; but it sounds like ...
2
votes
2answers
35 views

Idiomatic `Number` object to number literal conversion in JavaScript

Number function > var x = new Number(5) > x === 5 false > Number(x) === 5 true valueOf method > var y = new Number(5) > y === 5 false > y.valueOf() === 5 true Which is the ...
2
votes
2answers
76 views

What's the idiomatic python equivalent of get() for lists?

Calling get(key) on a dictionary will return None by default if the key isn't present in a dictionary. What is the idiomatic equivalent for a list, such that if a list is of at least size of the ...
2
votes
7answers
208 views

Scala: Detecting a Straight in a 5-card Poker hand using pattern matching

For those who don't know what a 5-card Poker Straight is: http://en.wikipedia.org/wiki/List_of_poker_hands#Straight I'm writing a small Poker simulator in Scala to help me learn the language, and ...
2
votes
3answers
143 views

Ruby idiom: method call or else default

What's the proper way of doing this in Ruby? def callOrElse(obj, method, default) if obj.respond_to?(method) obj.__send__(method) else default end end
1
vote
2answers
29 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? ...
1
vote
3answers
98 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 ...
1
vote
1answer
91 views

Loading CakePHP Helpers

This is a multi part question. Background: I'm building my first site using CakePHP, and I like it so far. I've got a DB setup, initial data loaded, and a few models, views, and controllers to ...
1
vote
3answers
123 views

How to make this condition more Scala-like

I have the following method: def generateAssociatedImages : List[ImageFileEntry] = { if ( this.page > 1 && this.page < this.fileEntry.pageCount ) { List( copyWithPage( ...

1 2