Hi,
I wrote a C# application that is running well on XP but freeze on Vista/7.
I got an application dump (dmp file) for analysing the problem.
I don't understand how to get the stack trace in C# (as I have of course the source code).
I loaded symbols but it doesn't seem to load managed code, here is the stack trace :
ntdll.dll!_KiFastS...
Hi guys, I don't have much experience doing image analysis so I thought I'd ask more enlightened individuals :)
Basically what I want to do is analyse an image and work out what the most common colours are (these will be averages obviously).
Does anybody know of an effective way to do this? If at all possible I'd like to avoid using an...
I'm looking for some powerful j2ee servlet Filters that make it simpler to track, monitor, block, analyse etc. Java web applications and (Tomcat/Glassfish etc.) web servers.
I'm more of a programmer than a heavy-duty server administrator, so the reason I'm looking for a software solution is that I don't want to spread out configuration ...
I've been asked to study and document the existing system for a tertiary hospital. The hospital consist of administrative (Accounts, Admin, Engineering,...) and clinic units (Pharmacy, The process by which a patient gets in and out of the hospital,...).
I would need to understand how data flows in and out and the business process.
It'...
Hi,
I am using Firbird 2.5 for some applications. What I miss is a performance analyses tool, e.g. for Visual Studio, which shows what methods / queries have been executed over time.
I am thinking of a tool like Apple's Instruments:
Is there anything like this?
Thanks,
Norbert
...
Can anyone gives us tricks, uses case, book and any other ressources for how to Capture and manage requirements from a statement of work(SOW).
...
Hi,
I have a web site that uses IBM Websphere Portal technology with an Apache web server inside. The content for the web site is stored in Oracle's UCM (the web content management system).
When a user of the web site asks for a web page, a request like this is logged in the Apache log
10.32.3.111 - - [26/Jun/2010:11:16:09 +1000] "GE...
Currently, I am working on a folder of Excel which consist of database (number) size of 1.34GB 63 files and growing. I can continue to work in Excel but I have to separate one large piece of file into several sub-files which is not very convenience and sometimes confusing when it come to calculation, analysis and graphic.
I wonder if th...
Okay guys - simple question. I have some data in a MySQL database that I want to visualise. Now some methods for doing this are:
Axiis
GetPivot
ManyEyes
Are there any others?
Max.
...
I was browsing through fflick, nicely made app on top of twitter. How do they
collect millions of tweets?
accurately (mostly) categorize tweets into postive or negative sentiments?
...
I know it's easy to get the CSS that is applied to a single node in HTML, using tools like the Firebug extension for Firefox, etc.
But is there a way to see all the CSS that is in effect on an entire page, or a larger fragment of HTML?
Specifically, we are cleaning up our one extremely large CSS file into smaller modules and would like...
Does exist any program that detects the bitrate of an mp3?
I'm not talking about the effective bitrate that the file has been encoded with, but the real bitrate that can be calculated only by frequency spectrum analysis.
For example, to explain more clearly what i mean for the two kinds of bitrates:
if i have an mp3 encoded in 128kbps w...
To make matter more specific:
How to detect people names (seems like simple case of named entity extraction?)
How to detect addresses: my best guess - find postcode (regexes); country and town names and take some text around them.
As for phones, emails - they could be probably caught by various regexes + preprocessing
Don't care about...
Hello everyone. I am looling for tool that can eat my Adobe Flex source code (written in Adobe Flex Builder 3.0.2, Eclipse plugin) or built SWF and produce call graph, class inheritance diagram and so on. Purpose - I've got a project with actually no time to dig in complicated calculations performed there (it's an interactive Flash game ...
I want to run some analysis on networked data having multiple modes(i.e. multiple types of network nodes) and multiplex relations(i.e. multiples types of network edges).
The analysis is probably about SNA or applying any algorithm from graph theory, e.g. tie strength, centrality, betweenness, node distance, block, cluster, etc.
The sou...
I have developed some ideas about system construction, that are a little different to mainstream development. I am developing a demonstration/proof of concept project.
So far, I have found that useful information about the completeness of a system can be gathered by taking an indirect view of the development. This indirect view is ba...
Simple concept we are basically doing some auditing, comparing what came in, and what actually happened during processing. I am looking for a better way to execute a query that can do side by side table comparisons with columns that are slightly differnt in name and potentialy type.
DB Layout:
Table (* is the join condition)
Log (Un-a...
I have the following function:
int mult(int y, int z)
{
if (z == 0)
return 0;
else if (z % 2 == 1)
return mult(2 * y, z / 2) + y;
else
return mult(2 * y, z / 2);
}
What I need to do is prove its correctness by induction. Now the trouble I'm having is that even though I know it works since I ran it I can't follow eac...
Hi all,
public class Elevator ()
{
Button firstFloorbutton = ButtonFactory.getButtonInstance(this, 1);
Button secondFloorbutton = ButtonFactory.getButtonInstance(this, 2);
Button thirdFloorbutton = ButtonFactory.getButtonInstance(this, 3);
Button fourthFloorbutton = ButtonFactory.getButtonInstance(this, 4);
Fan fan1 = ...
I have this feature_list that contains several possible values, say "A", "B", "C" etc. And there is time in time_list.
So I will have a loop where I will want to go through each of these different values and put it in a formula.
something like for(i in ...) and then my_feature <- feature_list[i] and my_time <- time_list[i]
then i put ...