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 want to represent the chemical structure drawing in my windows application. I found some softwares are available in the market like "BKChem","Metlab","ChemDraw","SMILE (Simplified molecular input line entry specification)","BioChemDraw". but unfortunately i am unable to found any of above's plug in/API's with dot net please let me know. this is very high priority for me for now.
First of all, I'm not at all a .net expert
In the field of chemical structure conversion and drawing, OpenBabel is really the broadest. Unfortunately for you, I only used it from command line, never through API.
BUT, there is a C# API for OpenBabel documented here. And it seams that it can output SVG which is an open drawing standard.
We have written a C# tool for this:
http://chem4word.codeplex.com/
It has been developed over several years and works inside .NET and MS-WORD.
Related
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 2 years ago.
Improve this question
I'm looking for a function that is able to convert a string from "ㅂㅏㅇㅇㅏㄷㅣ" to "방아디".
I've been stuck on this for a week now. I've found user-created python functions that do exactly what I want: https://github.com/jonghwanhyeon/hangul-jamo , https://github.com/bluedisk/hangul-toolkit , etc.
but unity does not support python, and I need to interface with C# code.
Does anyone know of such a thing for C#?
Thanks everyone~
In the past I have used a code I have found in GitHub that was working great for english-italian, and it's this one https://gist.github.com/grimmdev/979877fcdc943267e44c
I also know another plugin which is more complex but can translate more efficiently : https://github.com/bbepis/XUnity.AutoTranslator
If you can't achieve a Korean translation in this way you should try a System Language class like in this example: https://answers.unity.com/questions/1196793/best-practice-for-multiple-languages.html
With the last method you will Always be able to translate but you need to translate word per word and maybe it's not what you are searching for
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 5 years ago.
Improve this question
In Linux there're many tools to read and convert the comments in code into a HTML/PDF document. I am now working on a .Net project, and I am wondering if we have similar tools to convert the comments in .Net code into a HTML/PDF document?
I tried Google, but did not give me any useful result :( Maybe I am not search with the right keywords.
You might want to look at Sandcastle: http://broadcast.oreilly.com/2010/09/build-html-documentation-for-y.html
Sandcastle is a tool that generates HTML / Visual Studio help bundles based on your code comments and actual code itself.
It's relatively easy to use once you get it set up.
But beware! Big projects can cause OutOfMemoryExceptions.
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 am looking for a spatial index library in C# that has to be able to index geometries (circles, polygons, polylines) as well as answer intersection questions. I found NetTopologySuite (NTS) and some other one-file solution project but I wonder if I missed anything significant?
NTS is pretty good but somewhat heavy. The second one is a one man art and apparently I have to pick it up and maintain myself. I wonder if I can find something that is supported and tested.
I am looking for C# one but if I can get hands on Java one, I can adapt that.
libspatialindex seems to have all the features you want, but it's in C++
JSI is a Java project, but it only works with rectangles.
I am not 100% sure but i guess Solr and Elastic search supports spatial index. They are in Java and they support REST.
I found some good examples here http://www.rtreeportal.org/
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 am wondering if anyone knows of an open source c# library for beautifying javascript. I would like to make use of such a library within my asp net website to make debugging messy javascript easier.
There are currently many online websites for this (ie. http://jsbeautifier.org/) however I would like to have access to such a utility within c#, even if it is just a wrapper for communicating with an online API.
You can use jsbeautifylib.
http://jsbeautifylib.codeplex.com/
It's the file/folder you found :)
Also there is a C# port of js-beautify by Denis Ivanov here
And in the simplest of form, there is JSBeautify.cs
The site you pointed out suggests a command line tool. Wouldn't it be enough for you?
To beautify from the command-line you
can use provided beautify-cl.js
script, using Rhino javascript engine.
See the file contents for the details.
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 built a GIS application around Twitter and now its getting some interest.
But one of the requirements is that they don't want any outside dependencies.
So I'll need to mimic Twitters functions.
Anyone know of any open source Twitter projects?
Laconica?
http://laconi.ca/trac/
Identica demos it nicely:
http://identi.ca/
Jaiku is a microblogging service very similar to Twitter. Google bought Jaiku a few years ago and made its engine open source. You can find it here:
http://code.google.com/p/jaikuengine/
If you're looking for a .NET alternative. There is Yonkly. Is an open source Twitter clone written using ASP.NET MVC. You can find the source here:
http://www.codeplex.com/yonkly
I have used laconi.ca in the past, it is easy to figure out and highly customizable (for how young it is).