Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
163 views

Elegant (and typical) workaround for OpenMP reduction on complex variable in C++?

I realize that reduction is only usable for POD types in C++. What would you do to implement a reduction for a complex type accumulator? complex<double> x(0.0,0.0), y(1.0,1.0); #pragma omp ...
8
votes
1answer
506 views

Tips for more elegant code with monads?

I finally got a hold on how to use monads (don't know if I understand them...), but my code is never very elegant. I guess is from a lack of grip on how all those functions on Control.Monad can really ...
5
votes
6answers
227 views

Elegant code question: How to avoid creating unneeded object

The root of my question is that the C# compiler is too smart. It detects a path via which an object could be undefined, so demands that I fill it. In the code, I look at the tables in a DataSet to see ...
3
votes
3answers
152 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 ...
2
votes
7answers
188 views

Java: Quick/Elegant way to check for null

In the program I'm currently writing, I find myself doing the following a lot... Map<String,List<String>> network = loadSerializedObj(file); // null if failed if(network != null) { ...
2
votes
5answers
173 views

Elegant pattern for mutually exclusive keyword args?

Sometimes in my code I have a function which can take an argument in one of two ways. Something like: def func(objname=None, objtype=None): if objname is not None and objtype is not None: ...
2
votes
17answers
484 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 is elegance a goal ...
2
votes
5answers
1k 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'm currently doing ...
1
vote
1answer
97 views

metrics for algorithms

Can anyone provide a complete list of metrics for rating an algorithm? For example, my list starts with: elegance readability computational efficiency space efficiency correctness This list is ...
1
vote
2answers
55 views

Do other languages have similar ArrayAccess features as PHP?

Long story short, there is a PHP feature called ArrayAccess which allows you to overload the [] operator (among other things I think) for your class, so you could have a custom class MyClass ...
1
vote
5answers
1k views

Efficient way to read a specific line number of a file. (BONUS: Python Manual Misprint)

I have a 100 GB text file, which is a BCP dump from a database. When I try to import it with BULK INSERT, I get a cryptic error on line number 219506324. Before solving this issue I would like to see ...
0
votes
4answers
600 views

What is the most elegant way to do “foreach x except y” in PHP?

I want to do something like this: foreach ($array as $key=>$value except when $key="id") { // whatever } ... without having to put an "if" clause inside the body of the loop. It is not guaranteed ...