Tagged Questions

5
votes
12answers
341 views

What is so wrong with extract()?

Hey everyone, I was recently reading this thread, on some of the worst PHP practices. In the second answer there is a mini discussion on the use of extract(), and im just wonderin …
4
votes
2answers
64 views

CPU bound applications vs. IO bound

For 'number-crunching' style applications that use alot of data (reads: "hundreds of MB, but not into GB" ie, it will fit nicely into memory beside the OS), does it make sense to r …
2
votes
4answers
258 views

free secure distributed make system for linux

Are there any good language-agnostic distributed make systems for linux that are secure and free? Background Information: I run scientific experiments (computer-science ones) tha …
2
votes
9answers
1k views

Word Anagram Hashing Algorithm?

Given set of words, we need to find the anagram words and display each category alone using the best algorithm input: man car kile arc none like output: man car arc kile like …
1
vote
0answers
40 views

Patterns for non-layered applications

In Patterns of Enterprise Application Architecture, Martin Fowler writes: This book is thus about how you decompose an enterprise application into layers and how those laye …
1
vote
3answers
116 views

Fast min on span

Given a list of arrays and lots of setup time I need to quickly find the smallest value in some sub-span of each array. In concept: class SpanThing { int Data; SpanThing …
0
votes
0answers
13 views

Web service for live Forex data for Eastern Europe currency?

Is there a Web service for live Forex data for Eastern Europe currency? The yahoo data is updated with a couple of minutes delay, so I don't want to use that. I've seen some Java A …
0
votes
1answer
45 views

Best way to transpose a grid of data in a file

I have large data files of values on a 2D grid. They are organized such that subsequent rows of data in the grid are subsequent lines in the file. Each column is separated by a tab …
0
votes
1answer
170 views

Optimal update in resultset on Sybase IQ

Im looking to rewrite code that update a table on a Sybase IQ database v14 that does the following: selects all the records in the table and extracts some data to file updates th …
0
votes
1answer
286 views

Processing CSV files from the Web using embedded Java database

Short version: assuming I don't want to keep the data for long, how do I create a database programmaticly in HSQL and load some CSV data into it to? My schema will match the files …
0
votes
5answers
432 views

What is the best way to reduce cyclomatic complexity when validating data?

Right now I'm working on a web application that receives a significant amount of data from a database that has a potential to return null results. When going through the cyclomatic …
-1
votes
4answers
123 views

What are some good Perl modules for flow-based programming on files?

What are some good Perl modules to process files based on configurations? Basically I am working on taking data files, split them into columns, remove some rows based on some col …