OK, mein allererster Blogpost. Ehrlich gesagt, mache ich das auch für mich selbst (Gedankenstütze), zudem möchte ich anderen hiermit ein wenig helfen, wie Einträge anderen mir stets helfen. Es geht hier im die "Installation" einer aktuellen JAVA JDK als portable Version (z.B. für USB Stick oder die Synchronisation zwischen verschiedenen Rechnern) auf Windows 7 (sollte…
The Visualization ToolKit (VTK) is an open source, freely available software system for 3D computer graphics, image processing, and visualization used by thousands of researchers and developers around the world.
The Crawljax team is pleased to announce the crawljax-2.0 release. This release supports multi-browser crawling and includes many improvements. Crawljax is
The Gephi Toolkit project package essential modules (Graph, Layout, Filters, IO...) in a standard Java library, which any Java project can use for getting
@Produces("image/*")
public Response getImage(@PathParam("image") String image) {
File f = new File(image);
if (!f.exists()) {
throw new WebApplicationException(404);
}
String mt = new MimetypesFileTypeMap().getContentType(f);
return Response.ok(f, mt).build();
}