Does any know if there is MongoDB-CSharp driver documentation? - mongodb

I'm looking at using the MongoDB-CSharp driver for MongoDB on a small test project. The downloads have binary and source, but I can't find any documentation anywhere.
Does anyone know if there's documentation for MongoDB-CSharp, or should I just be reading the source??
Thanks

I've been looking at the source :-). I found the Linq Integration Tests in the typedcollections branch to be a good start:
http://github.com/samus/mongodb-csharp/blob/typedcollections/source/MongoDB.Tests/IntegrationTests/Linq/MongoQueryTests.cs
Craig's wiki is good too, but I only found that last weekend.
You may want to give the typedcollections branch a look rather than the downloads because that's were all the recent development has been going on.

MongoDB-CSharp is about to release a beta. With it comes some wiki documentation. You can check out the pre-release docs at http://wiki.github.com/craiggwilson/mongodb-csharp/. Can you tell me what other types of information would be useful?

Related

kibana-4.3 how to develop plugin

Where can I find a developer guide to kibana, that explain me how the system work and all the things i need to know for developing kibana plugin?
Or if someone could publish snippets of sample plugin.
I've started cloning statusPage plugin, but I don't want to do revers engineering to understand the platform.
On the website, the is no type of developer manual.
Thank you
You can refer to the following links to learn How to develop Kibana Plugins:-
http://logz.io/blog/kibana-visualizations/
https://www.timroes.de/2015/12/02/writing-kibana-4-plugins-basics/
The official answer from 6+ months ago seems to be "don't":
We're working to develop an external API but would caution you away
from making custom changes as things still move pretty fast and
internal APIs are likely to change even in patch versions.
Also, "there are no public plugin APIs right now" (8/2015)
Hard to find any information to date. I recommend you to look at the plugin generator released some days ago:
Generator Kibana Plugin Structure
There are two plugins I found where you can have a look at the code to understand the structure. The first is the Sense plugin, the second Timelion. Timelion matches more to the structure of the generator.
Sense Github
Timelion GitHub
I suggest understanding plugin structure and code for traffic plugin (https://github.com/sbeyn/kibana-plugin-traffic-sg) which would be one of the simplest plugins to understand and you could directly add it to your installed plugin folder in kibana and see it working.
Other than that I would also suggest you do read timroes blogs (https://www.timroes.de/2015/12/02/writing-kibana-4-plugins-basics/) for developing kibana plugins
and last I would also suggest using elasticsearch discussion forum for kibana related issues as well for quicker responses:
https://discuss.elastic.co

Vote extension for MediaWiki?

Those listed on their website are quite old and don't work with latest code. I tried, but not luck, the code is outdate. Anyone know a good plugin?
VoteNY works with latest stable (1.24.2), as far as I can see and in my testing on a live wiki.

Where are the Tesseract API docs?

I've looked all over the Google code site but am just not finding anything that explains how to use Tesseract from an API perspective. Anyone know where I can find this?
The latest documentation is now available here and here.
Unofficial documentation for the current version 3.02 can be found here.
Unofficial documentation for version 1.04 can be found here
UPDATE 2012/05/26
You can download it from here (version 3.01): http://code.google.com/p/tesseract-ocr/downloads/detail?name=tesseract-3.01-doc-html.tar.gz&can=2&q=
Now the tesseract project has moved to github, and it provide the tesseract ocr online docs as pdf: https://github.com/tesseract-ocr , you can download to read.
I suggest starting here for a quick introduction and tutorial:
https://github.com/tesseract-ocr/tesseract/wiki/APIExample
Which includes a link to:
https://github.com/tesseract-ocr/tesseract/blob/master/api/baseapi.h
It may be best to look at the raw source for baseapi (linked above) because the code/comments don't seem to cooperate perfectly well with doxygen (at least for that file's docs). However, you can presently find a doxygen-generated API reference at:
tesseract::TessBaseAPI Class Reference
Which is probably what you ultimately want to use as a top-level reference.

Any good tutorials on the Build and Analyze feature in Xcode?

I would like to know is there any tutorial to use xcode build and anylyse tool...
pls provide me links which points on it.
Thanks for any help
Check this apple link,
http://developer.apple.com/library/ios/#documentation/DeveloperTools/Conceptual/XcodeProjectManagement/220-Analyzing_Code/static_analysis.html#//apple_ref/doc/uid/TP40006917-CH4-SW2
It will tell how to do this
Jayahari V's link now seems to be broken, partly replaced by http://developer.apple.com/library/ios/#documentation/ToolsLanguages/Conceptual/Xcode4UserGuide/Debugging/Debugging.html%23//apple_ref/doc/uid/TP40010215-CH3-SW1. If you still have the Xcode 3.2 documentation installed locally, searching for “Static Analysis in Xcode 3.2” gives a longer, though older, explanation. The technical documentation is being worked on: http://lists.cs.uiuc.edu/pipermail/cfe-dev/2011-March/013659.html. In the meantime, use the source, e.g., https://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Checkers/Checkers.td?view=co for a list of checkers and their help text.

Webservices on iPhone using Wsdl2Objc?

I have recently downloaded the most recent build of this awesome tool WSDL2OBJC from google code here: http://code.google.com/p/wsdl2objc/
After a bit of tweaking and downloading the latest version of the trunk from the svn repo I got a version that created the code for a WSDL I am using and compiles great and actually installs on my phone!
However, I'm not doing anything with it yet, because I am not really sure how to. There is very little in the way of sample code on the site, and there is a sample file in the project if you download it, but again it is very complicated and there are no real bits of documentation.
Has anyone managed to successfully use this stuff? It seems SOOO powerful and useful but from a look around the Internet, no one knows how to use it. We (all) would love someone who has figured it out to post a simple project or detailed walk-through of implementing this so we can put the code that lots of people have worked hard on to good use.
If anyone has found a blog entry or has this information it would be great to see!
I am totally stuck... with no errors. I would love to know how to use this now that it's all compiled successfully!
I wrote a short tutorial: http://brismith66.blogspot.com/2010/05/iphone-development-accesing-soap.html I hope it's helpful.