Tagged Questions

13
votes
23answers
659 views

How to overcome the programmer’s block ?

How do you do when, during the development of your application, you can't decide yourself what to do next. You have no problem technically speaking, you have no problem to write clean code BUT you …
10
votes
8answers
978 views

Determining Word Frequency of Specific Terms

Hi, I'm a non-computer science student doing a history thesis that involves determining the frequency of specific terms in a number of texts and then plotting these frequencies over time to determine …
10
votes
15answers
470 views

How do you prevent over complicated solutions or designs?

Many times we find ourselves working on a problem, only to figure out the solution being created is far more complex than the problem requires. Are there controls, best practices, techniques, etc …
7
votes
8answers
199 views

Pre-sorting analysis algorithm?

It's a well-known isssue with Quicksort that when the data set is in or almost in sort order, performance degrades horribly. In this case, Insertion Sort, which is normally very slow, is easily the …
7
votes
7answers
1k views

Algorithms or libraries for textual analysis, specifically: dominant words, phrases across text, and collection of text

I'm working on a project where I need to analyze a page of text and collections of pages of text to determine dominant words. I'd like to know if there is a library (prefer c# or java) that will …
7
votes
3answers
237 views

Test Reporting

We are migrating our test report data (unit, regression, integration, etc..) from an XML format to a database format for better analysis. Right now the majority of our test analysis is done using the …
7
votes
9answers
706 views

Mathematical analysis of a sound sample (as an array of numbers)

I need to find the frequency of a sample, stored (in vb) as an array of byte. Sample is a sine wave, known frequency, so I can check), but the numbers are a bit odd, and my maths-foo is weak. Full …
6
votes
4answers
375 views

How can I determine how loud a WAV file will sound?

I have a bunch of different audio recordings in WAV format (all different instruments and pitches), and I want to "normalize" them so that they all sound approximately the same volume when played. …
6
votes
6answers
785 views

What’s the most insidious way to pose this problem?

My best shot so far: A delivery vehicle needs to make a series of deliveries (d1,d2,...dn), and can do so in any order--in other words, all the possible permutations of the set D = {d1,d2,...dn} …
6
votes
4answers
462 views

Comparison of Python and Perl solutions to Wide Finder challenge

I'd be very grateful if you could compare the winning O’Rourke's Perl solution to Lundh's Python solution, as I don't know Perl good enough to understand what's going on there. More specifically I'd …
5
votes
4answers
416 views

C: Sorting Methods Analysis

I have alot of different sorting algorithms which all have the following signature: void <METHOD>_sort_ints(int * array, const unsigned int ARRAY_LENGTH); Are there any testing suites for …
5
votes
6answers
638 views

Find out the real file type

I am working on an ASP web page that handles file uploads. Only certain types of files are allowed to be uploaded, like .XLS, .XML, .CSV, .TXT, .PDF, .PPT, etc. I have to decide if a file really …
4
votes
3answers
144 views

big O homework question

I need to state the big o of the following fragment: sum =0; for (int i=1; i<n; i++) { for (int j=1; j< n/i; j++) { sum = sum +j; } } I know the outer loop is O(n) but I am having a …
4
votes
3answers
521 views

Algorithms for named entity recognition

Hello! I would like to use named entity recognition (NER) to find adequate tags for texts in a database. I know there is a Wikipedia article about this and lots of other pages describing NER, I …
4
votes
3answers
498 views

Bpm audio detection Library

I'm looking for a library that simplify tempo/bpm audio detection. Something similar to this http://adionsoft.net/bpm/ , but to use on *NIX machines. Any language, but preference goes to php, perl, …

1 2 3 4 5 7 next
15 30 50 per page