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.
It's hard. I don't know where to start, do I use JUnit or a library for PHP?
The problem is I keep testing things and it works out really bad. Shall I give you a code example?
Software testing is only as good as the known defects that you discover. I recommend unit, functional, and regression testing while relying on a continuous integration tool. This will allow changes to be propagated and tested as soon as possible.
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 10 years ago.
With so many social networks, new services and ubiquitous computing the new age of big data is finally here and is difficult to imagine a future without huge amounts of data. It seems in languages like Java there are popular platforms like Hadoop with a great ecosystem.
I wonder what is the state of art in Smalltalk. Is anyone doing big data with Smalltalk? Any libraries, applications or experience reports? Recommendations or advices?
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.
Is it possible to generate ABAP code and execute it in memory without writing code to DB?
Yes. Use Google. Use Google. Use Google. Use Google. Use Google. (I have to write at least 30 characters although I really don't have anything else to say besides that wanting to generate code dynamically is usually a sign you're on the wrong track.)
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.
which box method is used in Jmeter tester(black box/ white box)?
what are the future enhancement of this tester?
give me methodes and techniques of JMeter tester?
how it is better than any other software tester??
JMeter do blackbox performance testing.
For full project info see http://jmeter.apache.org/, they have no public roadmap or plans.
Start with their wiki, there's a lot of information and links: http://wiki.apache.org/jakarta-jmeter/
There's still discussions what is better: JMeter, QTP, LoadRunner etc. Make peace, not holywar :)
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 have a .dll and I need some code from it. How do I get the code from a .dll?
If by code you mean the textual instructions that were used to generate the machine code in the library, the best you can really do at this point is assembly language. Nearly any debugger will let you view the assembly.
If you meant the original high level language, your out of luck.
You can't. You can open it up in a hex editor, but there is no way to get the original source code from compiled output. This is the basis for the entire closed-source (proprietary) software industry.
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.
whats the simplest way to do screen scraping using c# and .net 4.0?
are their libraries i can reuse? i think i heard of an html tool pack for this but can not find it now...
The parsing should be done with the HTML Agility Pack. I've never used it so I don't know if it will connect to the web pages for you or not. If not, you should be able to use the WebClient class.