Dummy data generator [closed] - test-data

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can you suggest sites where I can generate dummy data based on my requirement for testing purposes of my project?
Note: I need a dummy data for usage of VMs and physical servers in terms of memory, CPU, disk, I/O utilization in percentage. Is there any site which provides utility to generate this kind of data?

Check out InfoChimps, they may have the sort of data your are after. But if you're just looking for numbers, it should be exceptionally trivial to just generate them yourself.

Maybe you can try http://www.generatedata.com/#generator

Obviously late to the discussion but in case anyone finds their way here. The baseball database contains some moderately large datasets (160,000+ records in the Fielding table, I believe).

Check out my MySQL Datagenerator. Perhaps that is what you are looking for...

Related

Is there any library for K-Nearest-Neighbor Graph construction for large scale data in C++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am looking for some open source C++ libraries for KNN sparse graph construction for large scale data set. Could you recommend me some libraries, please? Thanks.
Maybe STANN (Simple, Thread-safe Approximate Nearest Neighbor) is what you want.
Here you can find the according paper.
I also found Neighborhood Graph Library, but In did not use it yet.
Checkout https://code.google.com/p/nndes/ and http://www.kgraph.org/ . Both support arbitrary user-defined distance metrics.

Is there a command line tool or a library which can convert between indesign templates and CSS/Html? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
This question does not appear to be about programming within the scope defined in the help center.
Improve this question
I'm looking to (programmatically) convert a repository of Adobe Indesign template files (.indd) to something more easily manipulated by humans (ie, CSS/HTML files).
I'm more interested in an accurate conversion, than a fully readable one - the resulting files will be read by humans, and eventually made more readable.
Is there a tool or library I can use for this purpose?
Actually the only viable solution to convert from InDesign to html5 seems to be the "In5" plugin developed by Ajar Productions. I doubt it'll allow for bulk conversion but it seems to make a good job as regards accuracy.
Product and a detailed list of its features here: http://www.ajarproductions.com/pages/products/in5/

Which tool can be used to generate a diagram of functions executed annotated with execution times? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm using Drupal and would like to get a graph of functions called annotated with the times the functions took to execute. I found this image which demonstrates what I'm looking for:
However, I can't find a tool that can produce a similar image. What kind of tool am I looking for?
XHProf can generate call graph images similar to this, but not exactly the same. I believe Google searching using keywords PHP call graph or drupal call graph will provide you more information.
You can use XDebug and KCachegrind.

how to assure my implementation is in standard form (avoid bad coding)? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
There are standard ways to implement most of the common funcionalities.
For example it is recommended to use String Buffers when concatenating larger Strings rather than using Concatenating operator.(which I randomly found)
Where can I find a collection of "recommendations" like this to avoid bad coding ?
There are a number of sites for "coding conversions" anyway.
(Googling didn't help.Do you have a better "search string"?)
Have a read through...plenty of useful information. Google's coding standards for C++
these things vary by language; what holds true for one may not for another. you probably should be googling "code smell" rather than "coding standards".
With the help of John Flatness's comment ,relevant Google search string would be "best practices".
some quickly found links for Java best best practices are javapractices.com,
precisejava.com
and for C#
csharphelp.com,codeproject.com
a link about the StringBuffer

xquery performance & patterns resources [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can anyone suggest me some good reading about Xquery performance and design patterns.
I am not looking for something specific to webapp or DB, just about Xquery and Engines.
Thanks in advance
You should take a look to http://patterns.28msec.com
Additionally to user457056's pointer, you could read something about the XQuery Execution Model. If you are looking for performance numbers, I can't help.
http://developer.marklogic.com/inside-marklogic is very MarkLogic specific, but has lots of good details on what makes MarkLogic fast.

Resources