Tagged Questions

0
votes
4answers
55 views

Static analysis of .net assembly

I have a C# project for which I need to find the all private methods which are not called from any other public method directly or indirectly. In addition, for each private method …
1
vote
1answer
58 views

analyzing The Spider Soliaire game !! [closed]

I have to write a report to discuss the spider solitaire game and I'm really not into games. Where I can find articles and stuff about the spider solitaire game? I tried google bu …
0
votes
1answer
11 views

OpenUP-like process to analyse existing software?

In a class I've been taking for grad-school, we've been covering the OpenUP process as an approach to design new software. It occurred to be that often times in software engineer …
1
vote
8answers
102 views

What kind of specs, documents, analysis do you get from superiors when starting a project?

I currently work in a small business (15-20 employees, 5 programmers) where most projects are custom built CMS and a few web applications products. Since I started working there, …
4
votes
3answers
139 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 …
0
votes
1answer
38 views

Example of a school website (college and highschool) which is functional and accessible

I'm looking for good example of school websites that I can get some inspiration it could be Highschool or College. I'm planning to build a template or platform of a school websit …
1
vote
1answer
60 views

Reading Website pages

Hi, my question is as follows: assume there is a website called website.com/a the website is being developed using PHP, Perl, Ruby and other languages. i want to be able from …
4
votes
4answers
400 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 te …
0
votes
1answer
173 views

Frequency Analyzer in C#

Hi, I'm looking for a C# source code that performs a frequency analysis on a WAV file and displays the results in a graph, similar to the one displayed in apps like WavePad. Do yo …
0
votes
2answers
69 views

Speed up text comparisons (with sparse matrices)

I have a function which takes two strings and gives out the cosine similarity value which shows the relationship between both texts. If I want to compare 75 texts with each other, …
2
votes
4answers
125 views

Learning how to analyse a project

Hi, I've just stumbled into the job of analysing a project for one of my company's clients (an SMB). I am a .Net developer (5 years) with little experience in analysing software ( …
3
votes
4answers
159 views

Analyzing time-dependent, event log from SQL

I have an event log in a SQL Server database. Essentially it records when a call was made and when that call ended at a call center (as two different records), as well as a few oth …
0
votes
7answers
2k views

Tool for analyzing java core dump

If i make java core dump with gcore then what is the best tool to analyze it? I need to be able make jmap, jstack, jstat etc and also i need to see values of all variables. Somet …
13
votes
23answers
638 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 c …
6
votes
4answers
340 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 vol …

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