Open source XQuery projects [closed] - open-source

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Do you know about any open source projects written in XQuery? The larger the better. I want to improve my XQuery skills by reading existing code.

xprocxq is/was an implementation of XProc in XQuery, and is the only significant XQuery open source project I know of.
For a less conventional example of XQuery, I would recommend a look at the XQSharp raytracer (caveat: I am a developer for XQSharp).

GIT Hub
Pomengrante ( XQuery deployment project )
MarkLogic CQ ( Browser Based Xquery Query tool )
XQuery-OAuth
Google code
XQMVC -- simple MVC framework for XQuery
http://developer.marklogic.com/
XQRunner
XQDebug ( browser based step by step debugging )
Semantic
and so on.

This is a self answer:
Google Search http://www.google.com/codesearch "for file:.xq$" gives about 1000 matches. Most of them small scripts.

We host and/or link to a good number of XQuery open source projects at http://developer.marklogic.com/code. There is plenty of code to read there for you.

See the XQuery Wikibook for a number of documented example XQuery applications

Related

JSON Schema Documentation Generators [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I have looked all over google for hours trying to find a good JSON Schema documentation generator, but I can't seem to find any good ones. Every one listed on http://json-schema.org/implementations has some problem. For Matic, I don't like the look (Actually having brackets, and showing $schema), for Doca, it doesn't work on windows, and for Docson, it can't handle infinite loops. Basically, I want a JSON Schema documentation generator that can
Handle infinite reference loops in a good way
Can work on windows
Has an output that doesn't show the output like Matic, but more like Docson.
Has a static output, so the user doesn't have to click anything
I found a hit that works very well. https://github.com/bootprint/bootprint-json-schema is a node module that has the perfect system.
https://github.com/adobe/jsonschema2md - As it's name suggests, generated Markdown from JSON Schema files.
There is also PRMD, although I think it has similar limitations:
https://github.com/interagent/prmd
Hopefully with JSON Hyper-Schema draft-07 about to be published, there will be a new generation of API documentation systems to follow.

Where can I get detailed understanding of mysql-server's codebase? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any resource of how mysql's source code (https://github.com/mysql/mysql-server) works?
Any flow diagrams related to code's folders and files.
The official docs includes a section called MySQL Internals. There are sections included about navigating the source tree and what is where.
If you can look past his blatant towing of the company line (e.g. his apparent claims that the "real" MySQL will always be better and more awesome than MariaDB or Percona, because... Oracle!) and that he seems to imply that if you make any change to the source, you have to give those changes to Oracle and should probably send them a bunch of money, too... then there is some good material to be found in a book called Expert MySQL, which includes a decent low-level view of how it works and code snippets walking you through some source code tweaks to add new functionality.
But, there is a large amount of in-line documentation embedded in the code itself.
how "source code works"? it is in sources i guess
https://en.wikipedia.org/wiki/C_(programming_language)
https://en.wikipedia.org/wiki/C%2B%2B
https://www.google.ru/search?q=flow+diagram+mysql&newwindow=1&safe=off&espv=2&biw=1600&bih=852&tbm=isch&tbo=u&source=univ&sa=X&ved=0CBsQsARqFQoTCPXHzsTD88cCFcYlcgodYHME-w&dpr=0.9#imgrc=MrlmbXUK6VPJjM%3A

XSD structure to CSV as path,type,cardinality [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I need XSD unloaded into CSV file to build a mapping doc. The CSV is a list of all tags defined in XSD, in format path,type,cardinality. Something like:
tag1/tag2/tag3,E,0..n
tag1/tag2/tag3#attr1,A,0..n
tag1/tag2/tag4,E,1..1
XSD may import schemas. Is there a tool to accomplish this task? Thanks.
I've posted a possible solution here. If it is something you're willing to try, then download the tool and the sample files; please follow the document for step by step guidance. If you run into any issues, send me an email using the contact info (support) on the web site.
The cardinality problem, again, is very tricky. The sample I've prepared for you (all the download links are in the document) is one of the test cases I was using, except that I had to come up with a specific template for your file layout. One issue that seems to be subject to debate is how to calculate the value for XPaths that, from an XML Schema perspective, traverse choice compositors. Another, not so controversial maybe, is how to calculate the cardinality for particles under repeating compositors, etc.

Tool for building intelligent agent? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Suggest me any open source based platform/IDE/framework/toolkit for developing intelligent agent. I don't have any background in this area, would like to use a tool or any tutorial in building intelligent agent.
If you don't have any background at all, I suggest you start with something simple.
I had quite a good experience with dmangame, a simple Python engine where you can script the behaviour of agents.
The good point is that the installation is very simple, you know where to code your Python scripts for AI, there is a nice API for it. And you've got a nice graphical interface to see directly what you code.
Edit : By the way, look at this similar question
Weka is probably the most comprehensive open source AI toolkit. It's positioned as a tool for "data mining" but don't let that put you of - it's a general toolset for machine learning which is exactly what you need if you want to build an intelligent agent.
You can use any IDE you like with it (it's Java based so that gives you a range of great open source IDEs such as Eclipse or Netbeans, but you can also call the Weka libraries from other languages if you like).
It also has some of its own tools build it (for visualisation and exploring data sets etc.)

Are there any open-source code-generation projects out there? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm using an in-house code generator in which we supply all the metadata regarding our objects, and it generates our database, and object model including validation logic. Once we load all the data in the database, we use classic ASP <% %> to build our templates. I would like to know what open-source frameworks similar to this that are out there.
Thanks!
You can also check openArchitectureWare (http://www.openarchitectureware.org/) which is Eclipse-based.
Have you looked at mygeneration? It's not exactly open source but it's free, and the scripts are totally open. The most common usage is to generate the data layer given a database schema, but you can be more creative than that.
There's also Cog, which allows you to run Python scripts inside of source files. The included Cog module allows printing into the file that it's currently working on. Cog is licensed under MIT.
Check out Star UML it's open source and has some decent code generation capabilities.
I'd also look into Eclipse Plug-in options, I'm sure they're available I just haven't worked with any.
MyGeneration Code Generator is now Open Source.