Learning OpenCMS [closed] - java

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 am finding for the good resources to learn OpenCMS. Please provide the guideline/best practices to develop an OpenCMS based websites. Any kind help is appreciated.

There's a wiki.
There are books available. I've only read this one, which was helpful but is targeted more at improving an intermediate skillset rather than being an introduction.
There is also a mailing list.
Of course, you can also subscribe to the Stackoverflow OpenCMS tag feed, although it doesn't see a lot of action.

To get started, you should IMHO start with creating a simple site. The first thing you need will be a template.
There is a good article in the wiki about that subject:
http://www.opencms-wiki.org/wiki/Example_template_with_tree_menu

In the meantime documentation improved a lot and can be found on http://documentation.opencms.org/.

Related

SonarQube guide for customize rules [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've been working with SonarQube for just a little I have downloaded the project from the https://docs.sonarqube.org/display/PLUG/Writing+Custom+Java+Rules+101 page, I jumped to create my own rules, but I still lack a lot more knowledge by how customizing them, I don't know how to visit the nodes and changing them depending on the element found on the syntax, the SonarQube page doesn't explain more than the custom exercise, is there a specific guide for this?
https://docs.sonarqube.org/display/PLUG/Writing+Custom+Java+Rules+101 exercise
This is done with AST, it's implemented with Visitor Pattern.
The easiest way is to check examples provided by SonarSource: https://github.com/SonarSource/sonar-custom-rules-examples
Some examples of AST can be found at Java Parser book
I have done some examples for old version 5.2, you can check them at: https://github.com/devwebcl/sonarqube-plugins-java-5.2

API for finding the category of a domain [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 4 years ago.
Improve this question
Is there an API for finding the category of a domain? I'm looking for an alternative to reading the website's meta tags with jsoup.
For example a query with allmusic.com should yield music, while one for arsenal.com should yield sports.
The ideal candidate can be used easily with Java. :-)
P. S: The system does not have to be perfect.
These should help:
http://www.similarweb.com/pricing
https://www.webshrinker.com/
https://zvelo.com/zvelo-products/zvelodb/
https://aws.amazon.com/awis/
All of those allow you to get Categories for a given domain. Not free, but then that was not specified.
Seems that I have to rely on my old idea, which scans the website's meta tags and its URL.
Maybe I could use Wikipedia's API to find an article and then look at its categories.

java library for computing of derivatives and integrals [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 want to develop a small application in JAVA, for personal use, that solves the derivatives and integrals. Can you tell me some good library to do this, and some example?
Thanks
Commons Math contains the ability to integrate using different methods - see here, section 4.5. The example here shows you how to use the TrapezoidIntegrator, the others work pretty much in the same way.
SO post
Library reference hosted on google code.You can also use JLink with Mathematica to send your calculations part to mathematica and get appropriate results back.

What is the best place to find software development conference listings? [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 8 years ago.
Improve this question
I am interested in an array of software ideas and use more than one language, is there somewhere that concisely lists software development conferences year by year? I'd like to know what options are out there for this year and searching by ideology/language isn't practical in my opinion to get an overall.
Some ideologies/languages that interest me (but open to others):
TDD (with various languages, not just Java)
Agile (w/Scrum, Kanban)
Java
C++
.NET/C#
Development Tools (IDE, Debuggers, etc...)
Not a listing but I use http://www.infoq.com/ to watch videos of past conferences.
ConfRadar is a really nice to tool to find out about conferences. I am sure you'll find what you are looking for.
Just a list of conferences which I see useful http://lanyrd.com/topics/software-development/
Plancast just launched an O'Reilly section. Not exactly what you're looking for, but might be useful.
http://plancast.com/oreilly

best (or at least good) guide to Java annotations [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
There must be a good book/PDF/HTML file that describes the essentials & good practices of annotations in Java. I sort of know what they are from other good Java books, but I'm looking for something that would teach me most of what I would need to know to make good use of them. (preferably in PDF/HTML so I can print it out & read at my leisure, book ok also but those go out of date so fast...)
Any recommendations?
edit: I found the Sun guides, as well as tutorials like these from O'Reilly and DevX, and the section of Effective Java that covers them... OK, so I know what they are and what tools to read them, but that doesn't tell me much about how they are put to use in practice. (other than a little bit in Effective Java and the O'Reilly article above that suggest their use in automated testing frameworks)
Some opinions on annotations:
http://web.archive.org/web/20120115164115/http://faler.wordpress.com/2007/11/21/when-to-use-and-not-to-use-java-annotations
This guy is very much against them:
https://web.archive.org/web/20060702222249/http://www.softwarereality.com/programming/annotations.jsp
Best Practices: http://willcode4beer.com/opinion.jsp?set=annotations_gotchas_best_practices
Hope this helps. Let us know what you find.

Categories

Resources