5
votes
8answers
163 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 arbit …
1
vote
6answers
98 views
What is the correct way to convert from a for loop to a while loop?
I have a for loop of the form:
for (int i = from; i < to; i++) {
// do some code (I don't know exactly what, it is subject to change)
}
And I want to convert it to a while …
5
votes
7answers
318 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': …
0
votes
3answers
116 views
What’s the most elegant method for determining if an array is associative or not?
I have some code that may be passed either an indexed array of values, or an associative array of value pairs. (The parameter is then used to construct radio buttons.) What's the m …
0
votes
16answers
306 views
If we create code which isn’t elegant, have we failed?
The question of 'what is elegance?' has been asked before, and rather than arguing about that, I think we could probably all agree we know it when we see it.
But I'd like to know …
12
votes
6answers
827 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 f …
15
votes
13answers
935 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 …
5
votes
14answers
854 views
PHP templates - with PHP
Hi,
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 …
1
vote
1answer
107 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::c …
1
vote
2answers
67 views
Seeking Modularity In SQL Server 2005 - Returning Multiple Recordsets To A Stored Procedure
Hi,
I've had this problem a few times and solved it the same way. But it's not pretty and I was wondering if anyone knew of anything a bit more elegent...
The Basic Aim:
- I hav …
0
votes
6answers
164 views
How can I use ?? to combine these two lines into one?
I would like to get the two attribute-assignment lines below into one line since I'm going to build them into an application where they will be numerous.
Is there a way to express …
47
votes
74answers
5k views
What is “elegant” code?
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 w …
0
votes
7answers
165 views
Custom sorting problem, always force 0 to back of ascending order?
Premise
This problem has a known solution (shown below actually), I'm just wondering if anyone has a more elegant algorithm or any other ideas/suggestions on how to make this more …
7
votes
10answers
251 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 o …
0
votes
5answers
141 views
chop unused decimals with javascript
I've got a currency input and need to return only significant digits. The input always has two decimal places, so:
4.00 -> 4
4.10 -> 4.1
4.01 -> 4.01
Here's how I …
