Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

87
votes
83answers
9k views

What is “elegant” code? [closed]

I see a lot of lip service and talk about the most "elegant" way to do this or that. I think if you spend enough time programming you begin to obtain a sort of intuitive feel for what it is we call ...
30
votes
7answers
7k views

How to elegantly ignore some return values of a MATLAB function?

I was wondering if it was possible to get the nth return value from a function without having to create dummy variables for all n-1 return values before it. Let's say I have the following function in ...
25
votes
13answers
1k views

What are some elegant features or uses of Perl?

What? Perl Beautiful? Elegant? He must be joking! It's true, there's some ugly Perl out there. And by some, I mean lots. We've all seen it. Well duh, it's symbol soup. Isn't it? Yes ...
22
votes
9answers
1k views

Python elegant assignment based on True/False values

I have a variable I want to set depending on the values in three booleans. The most straight-forward way is an if statement followed by a series of elifs: if a and b and c: name = 'first' elif a ...
17
votes
8answers
605 views

What is an elegant way to check if 3 variables are equal when any of them can be a wildcard?

Say I have 3 char variables, a, b and c. Each one can be '0', which is a special case and means it matches every char. So if a is '0', I only need to check if b == c. I want to check if a == b == c, ...
15
votes
7answers
380 views

pythonic way to iterate over part of a list

I want to iterate over everything in a list except the first few elements, e.g.: for line in lines[2:]: foo(line) This is concise, but copies the whole list, which is unnecessary. I could do: ...
13
votes
9answers
651 views

Cleaning up code littered with InvokeRequired

I know that when manipulating UI controls from any non-UI thread, you must marshal your calls to the UI thread to avoid issues. The general consensus is that you should use test InvokeRequired, and if ...
13
votes
15answers
3k views

PHP templates - with PHP

What's the most elegant templating (preferably in pure PHP!) solution you've seen? Specifically i'm interested in handling: Detecting in a repeating block whether it's the first or last element ...
11
votes
1answer
2k views

Passing extra data to find_or_create

Something I've always wondered about rails is the ability to pass extra data to find_or_create methods in rails. For example, I can't do the following User.find_or_create_by_name('ceilingfish', ...
11
votes
13answers
792 views

Is returning early from a function more elegant than an if statement?

Myself and a colleague have a dispute about which of the following is more elegant. I won't say who's who, so it is impartial. Which is more elegant? public function set ...
9
votes
3answers
259 views

Get the nth item of a generator in Python

Is there a more syntactically concise way of writing the following? gen = (i for i in xrange(10)) index = 5 for i, v in enumerate(gen): if i is index: return v It seems almost natural ...
9
votes
10answers
391 views

What to do with over-complicated inherited code

Ever since I gained experience at a software house I have found it difficult to tolerate code not neatly structured, without any form of architecture or beauty or clarity whether or not it works i.e. ...
8
votes
8answers
402 views

More elegant way to do this in Ruby

I've started with Ruby and am finding new, shorter, elegant ways to write code everyday. In solving Project Euler problems, I've written a lot of code like if best_score < current_score ...
7
votes
3answers
156 views

What are some elegant ways to abstract out repetitive exception handling in python?

When handling exceptions in python, I find myself repeating code quite often. The basic pattern is something of the form: try: action_here() except CommonException1: ...
6
votes
7answers
362 views

Elegant check for null and exit in C#

What is an elegant way of writing this? if (lastSelection != null) { lastSelection.changeColor(); } else { MessageBox.Show("No Selection Made"); return; } changeColor() is a void ...
6
votes
10answers
1k views

Version number comparison

Python must have a more elegant solution to this ... maybe one of you can help: I want to write a cmp-like function returning -1, 0 or 1 for version numbers, allowing for an arbitrary number of ...
5
votes
5answers
185 views

What's the most elegant way to write this for loop in Python?

Basically I want to go from -1 to 1 in n steps, including -1 and 1: x = -1.0 n = 21 for i in range(n): print x x += 0.01 -1.0 -0.9 -0.8 ... 0.8 0.9 1.0 How can I write this in the most ...
5
votes
3answers
188 views

Ruby: elegant array initialization and return in Ruby

I have a method: def deltas_to_board_locations(deltas, x, y) board_coords = [] deltas.each_slice(2) do |slice| board_coords << x + slice[0] board_coords << y + ...
5
votes
4answers
404 views

Examples of elegant, concise code in Clojure

I'm looking for enlightening examples of concise and elegant code in Clojure - mainly to learn new techniques and improve my own style. Can you offer any nuggets of pure genius?
5
votes
3answers
136 views

What is the most elegant way in Perl to expand an iterator into a list?

I have an iterator with this interface: $hit->next_hsp The current implementation to listify it is: my @list; while ( my $hsp = $hit->next_hsp ) { push( @list, $hsp ); } Now I'm thinking ...
5
votes
4answers
220 views

Who is doing investigations into measurement of functionality and usability?

I am seeking pointers to assist the direction of my research into providing assessements of functionality, usability or elegance in system development. Can you provide references to work being done ...
5
votes
5answers
1k views

The most elegant way to generate permutations in SQL server

Given a the following table: Index | Element --------------- 1 | A 2 | B 3 | C 4 | D We want to generate all the possible permutations (without repetitions) using the ...
5
votes
7answers
2k views

How to convert an alphanumeric phone number to digits

UPDATE: The final version of my utility looks like this: StringBuilder b = new StringBuilder(); for(char c : inLetters.toLowerCase().toCharArray()) { switch(c) { case '0': ...
4
votes
6answers
194 views

Elegant way to negate a numeric value based on a boolean value

I have a decimal variable that I would like to negate if a boolean variable is true. Can anyone think of a more elegant way to do it than this: decimal amount = 500m; bool negate = true; amount *= ...
4
votes
6answers
170 views

Can this be written as a python reduce function?

Can you make this more pythonic by using the map and/or reduce functions? it just sums the products of every consecutive pair of numbers. topo = (14,10,6,7,23,6) result = 0 for i in ...
4
votes
6answers
254 views

x or y: acceptable idiom, or obfuscation?

I have to extract values from a variable that may be None, with some defaults in mind. I first wrote this code: if self.maxTiles is None: maxX, maxY = 2, 2 else: maxX, maxY = self.maxTiles ...
4
votes
3answers
171 views

python: elegant way to deal with lock on a variable?

I have code that looks like something like this: def startSearching(self): self.searchingLock.acquire() searching = self.searching if self.searching: self.searchingLock.release() ...
4
votes
7answers
257 views

What's the more elegant way to declare a const in C#

I'm refactoring a library in C# and I found a lot of upper case constants: INTERVAL, TIME, SECONDS. I think this a kind of unnecessary, and personally I prefer declare everything with camel case. ...
4
votes
3answers
909 views

Passing functions which have multiple return values as arguments in Python

So, Python functions can return multiple values. It struck me that it would be convenient (though a bit less readable) if the following were possible. a = [[1,2],[3,4]] def cord(): return 1, 1 ...
4
votes
11answers
2k views

Perl Challenge - Directory Iterator

You sometimes hear it said about Perl that there might be 6 different ways to approach the same problem. Good Perl developers usually have well-reasoned insights for making choices between the ...
3
votes
3answers
150 views

Javascript this object inside intervals/timeouts

I have a method that is a big setInterval statement, and it needs access to the this object of the object that owns the method from inside the interval. I implemented a simple closure, but it doesn't ...
3
votes
4answers
160 views

How should I refactor this Haskell code to make it more elegant?

As an exercise I wrote a short Haskell function that returns the first four characters of a string, concatenated. I had great trouble converting the chars to strings and resorted to an ugly replicate ...
3
votes
6answers
189 views

Returning the first method that works, more elegant way?

Recently I've found myself writing methods which call other methods in succession and setting some value based on whichever method returns an appropriate value first. What I've been doing is setting ...
3
votes
2answers
474 views

What's an elegant algorithm for fitting differently sized rectangles into a circle?

I have a bunch of rectangles of variable size which I need to fit together roughly into a circle, presumably with the largest ones at the center. NB. The circle is not of a fixed size - that's just ...
3
votes
5answers
184 views

Clarity vs. Obfuscation writing code

Sometimes there are a solution that it's simple and elegant but imposible to understand by all. What do you think about this expresion, exchange value of two variables, without auxiliar variable: ...
3
votes
5answers
607 views

Elegant way to bias random boolean

I'd like to create a random boolean in JavaScript, but I want to take the previous value into account. If the previous value was true, I want it to be more likely for the next value to be true. At the ...
3
votes
5answers
260 views

Learning Python

Was coding something in Python. Have a piece of code, wanted to know if it can be done more elegantly... # Statistics format is - done|remaining|200's|404's|size statf = open(STATS_FILE, 'r').read() ...
3
votes
2answers
191 views

What is the most elegant way to validate the presence of ONLY one out of two attributes using Rails?

class Followup < ActiveRecord::Base belongs_to :post belongs_to :comment end This model needs to only have either a post or a comment, but only one of the two. Here's the rspec for what I'm ...
3
votes
1answer
291 views

Is there an elegant way to bridge two devices/streams in ASIO?

Given two stream-oriented I/O objects in Asio, what is the simplest way to forward data from one device to the other in both directions? Could this be done with boost::iostreams::combination or ...
3
votes
2answers
1k views

Combining recursive iterator results: children with parents

I'm trying to iterate over a directory which contains loads of PHP files, and detect what classes are defined in each file. Consider the following: $php_files_and_content = new ...
2
votes
7answers
87 views

Is there a nicer/elegant way to assign JavaScript split values to variables?

Just feels like there's probably a nicer way. var values = resp.split(':'); var delta = values[0]; var newvalue = values[1]; var admin = values[2];
2
votes
5answers
69 views

Is there a %w{ }--like way to create array of fixnums in Ruby?

Is there a way to create an array of Fixnums using ruby's % notation? It's obviously quite trivial to write, for example [edit: changed example to nonconsecutive digits] digits = %w{4 8 15 16 23 ...
2
votes
3answers
184 views

Scala collectFirst with function returning Option[U]

I've had this situation occur a number of times in the library I'm writing, and I'm not particularly satisfied with the solutions I've come up with so far. Let's say that I have an expensive function ...
2
votes
3answers
62 views

Find fallback element in jQuery

Javascript has very nice syntax for fallbacks and defaults, as long as unsuccessful calls return a falsy value: var element = findElement() || findSomeOtherElement() || makeALastAttempt(); jQuery ...
2
votes
2answers
73 views

Is there a more elegant way for unpacking keys and values of a dictionary into two lists, without losing conistence?

What I came up with is: keys, values = zip(*[(key, value) for (key, value) in my_dict.iteritems()]) But I am not satisfied. What do the pythonistas say?
2
votes
3answers
71 views

how to couple 'reasons' with return values, elegantly

What often happens in code I'm writing is I'll have a function that checks a condition dependent on many other conditions, e.g.: def is_foo(bar): if X: return True if Y: return False if ...
2
votes
3answers
106 views

Retrofitting an Incremental ID column with UPDATE

I have a MySQL table with an ID column, intended to be imported from external data, but for this one case there were no IDs provided. Therefore, I have a column of pure zeros. I need to update this ...
2
votes
2answers
144 views

Removing elements that have consecutive dupes [closed]

Possible Duplicate: How do you remove duplicates from a list in Python whilst preserving order? I was curios about the question: Eliminate consecutive duplicates of list elements, and how ...
2
votes
2answers
513 views

Execute bash script from URL

Say I have a file at the URL "http://mywebsite.com/myscript.txt" that contains a script: #!/bin/bash echo "Hello, world!" read -p "What is your name? " name echo "Hello, ${name}!" And I'd like to ...
2
votes
2answers
96 views

Cyclic function/type dependency in F#

I have a question about the best way to go about the following I Have a class B, I have a combinator on B, let foo : B -> int. I want the class B to have the combinator encapsulated as a method, so ...

1 2 3