0
votes
1answer
25 views
how do tell if its better to standardize your data matrix first when you do principal component analysis in R ?
Hi guys ,
Im trying to do principal component analysis in R . There is 2 ways of doing it , I believe.
One is doing principal component analysis right away the other way is st …
1
vote
2answers
42 views
How to implement CRUD operations in UML
I was wondering if any analysts/architects have a solution for the hundreds of CRUD operations I would have to add to nearly every class in my UML diagram.
Do you let each class …
0
votes
5answers
45 views
Minimalistic visitor stats based on PHP?
Does anybody know a minimalistic, nice-looking visitor statistics suite based on PHP that displays visitor stats in a end-user friendly way.
I know Google Analytics, and the big n …
1
vote
1answer
63 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
4answers
61 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
8answers
107 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
15 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 …
0
votes
1answer
45 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
61 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
408 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
209 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 …
2
votes
4answers
136 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 ( …
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, …
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 …
