It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Like the 20Q, is there a published algorithm that allows a program to "learn" from user input?
Programs like junk mail filters learn from what you tell it and uses that information to make more insightful choices in the future when classifying an email as junk.
Mahout is one open source machine learning library. It has implementations of a few different algorithms
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm looking for resources on getting started with program analysis.
The only book I've found on the topic is the Nielson & Nielson book.
Other than that, it seems like there's only "compiler" books where "program analysis" would be a chapter, or something along those lines.
Do people know of any other resources? Thanks!
"Secure Programming with Static Analysis" might be useful.
There is a lecture series you might find useful as well
http://santos.cis.ksu.edu/schmidt/Escuela03/home.html
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
So I have an encrypted text I need to decrypt, where do I start and is there a program that automatically recognizes an algorithm ? Here is a snippet of what I need decrypted:
e302446c4b62c02dc77b3c896ef385c64244a83bd6702b215882d3f1b599ff69
Encrypted text is designed to resemble random numbers. Cryptographic algorithms are designed specifically to keep you from doing exactly what you are trying to do.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to monitor a process in windows to check what actions it performs on a particular file including renaming it, or encrypt it. I want to generate events for these actions.
its easier to monitor the file than the process. Take a look at FileSystemWatcher class. http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Please, explain like a child. I'm trying to explain this concept to a junnior programmer, but I haven't accomplished that he understood the topic.
Any ideas?
Client-Server:
You and your friends (clients) go to the icecream man (server) and order an ice.
Peer-to-peer:
You and all your friends come together and make ice for each other.
No network:
You have no ice (or make it yourself).
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Im searching for numerical algorithm realization for nonlinear equations system solver on PHP, C, C++, Java (with readable code :). Where I can find them?
Thx.
Look in Numerical Recipes -- the latest edition has reasonable C++ code. Even if they don't have code to exactly solve your specific application, there's a good chance they have something you can use.