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 can't find any documentation for Jagatoo, except for a single PDF in the doc folder. Is there any at all?
Would make it a lot easier to read about the structure, rather than investigating it all.
Read the source code.
Source code really is the best documentation in the absence of adequate documentation. I find that if I really want to wrap my head around a framework or library, the best thing to do is to dedicate an evening (or weekend, depending) to a proper deep dive of the source code. The added benefit is then that you know exactly where missing functionality needs to go if you want to implement it yourself, and better yet, contribute it back to the Open Source community.
PS I presumed you meant that the PDF on this page is the only one you could find.
You could potentially also look at how Xith3D makes use of JAGaToo.
Related
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 have just learned JAVA and am wanting to play around with it. I keep seeing Eclipse repeated as the best IDE to write JAVA in. I have been working with it and it appears to be much to complicated for what I am wanting to do. I don't want multiple windows for multiple classes and functions. Basically learning how to use write JAVA in Eclipse seems like an entire different language than the JAVA I learned.
I am simply looking for something similar to notepad that assists you with your code writing (adds ending brackets, color coded).
Please Help!!!
The most simple is Notepad++ http://notepad-plus-plus.org/
hope it fits your needs, its extreme in its simplicity, but works.
(and its free)
Occupy a place for Sublime. Black background looks cooler.
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 writting an editor program. Like any good editor, it should have opening, saving and all the similar functions that go with it (usually found under the "File" menu in editor programs). However, I'm not sure how to write the code to be both functional and well structured.
Since what I'm talking about is major part of so many programs, I'm sure that some kind of standardized way of writing such code exists.
Can you point me to somewhere where I could find informations about that? I'm sure there must be books that deal with this matter, I just don't know what keywords to google to get viable resutls...
Any help is appreciated!
EDIT:
What have I tried so far?
Various combinations of Filechoosers and dialogs with boolean and String markers, always failing in the end, either due to code becoming chaos or getting lost in it's structure and failing to unify my markers.
I could put in some effort and make a working code, but since this is such a widespread problem I'm sure it's been done before, and what is most important, it has been done far better than I could ever do it. It's not that I'm lazy, I just want it to be done as best as possible.
I'm also not asking for the best source or book, but a source or a book. So I'm not encouraging a disscusion by asking for the best suggestion, I just want any suggestion I can get.
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
This question might not be suitable for this site, but after long search, I have come here to ask experts.
I am going to work with JPEG compression. The library I have to use is Kakadu 2.2. However I haven't found any documentation stating all the functions/methods the library provides like other api do (Android, Windows Phone etc).
So the question is, is there any documentation or list of all functions that I can use for development.
Regards
Since Kakadu is closed source, they don't provide good documentation for free on the internet. If you've purchased their product, you should ask them for a list of functions, or simply peruse the source code where possible.
If you have any choice in the matter then you may be better off with libjpeg as it's free and pretty standard. Then again, I have no idea what you are using this for.
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
I want to convert Japanese kanjis to romaji (or kana) in Android.
The most popular library for this is Kakasi, it is not always right (can't be) but still very good.
PROBLEM: It is not in Java. I need a Java library.
Do you know any maintained Java open source library that does that?
A guy called Kenichi has posted a kakasi-java-0.4.0-src.tar.gz on his blog saying he saved the file but the original project does not exist anymore. Anyone knows more about this? Is the project still living somewhere else, or is this file my best starting point?
The project is dead but now it's living somewhere else:
https://github.com/nicolas-raoul/kakasi-java
Have you tried http://www.atilika.org it's by far the most complete solution I've found.
I searched Kakasi/Java but I could not find. The site must have been completely closed.
But for another way, this web service might help you:
http://www.kawa.net/works/ajax/romanize/japanese-e.html
それでは頑張ってください!
I have found another one: Mecab
It seems to have a Java version: http://code.google.com/p/mecab/source/browse/#svn%2Ftrunk%2Fmecab%2Fjava
UPDATE: Unfortunately Mecab-java is just a JNI binding, not 100% pure Java, which makes it more difficult to use on Android for instance.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other 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 looking for a library to handle iCalendar data in Java.
Open source, well-documented implementations with a good object model are preferred. iCal parsing capabilities are less important to me, but still nice to have.
Does anyone have any recommendations?
A challenger appears! Please give biweekly a try. I'm looking for lots of feedback on how it can be improved.
I had limited success with iCal4j (intro) on a project last year.
It seems to be a fairly popular choice for ical work in the java community.
If I remember correctly the API can be slightly confusing at first glance.
However It's pretty solid in the long run.
Good luck,
Brian