Explore >> Select a destination


You are here

forensicitguy.github.io
| | andreabergia.com
16.9 parsecs away

Travel
| | This post is part of the Writing a JVM in Rust series. I have written a JVM in Rust A JVM in Rust part 2 - The class files format ??thispost A JVM in Rust part 3 - Parsing class files A JVM in Rust part 4 - The Java bytecode A JVM in Rust part 5 - Executing instructions A JVM in Rust part 6 - Methods and exceptions A JVM in Rust part 7 - Objects and GC A JVM in Rust part 8 - Retrospective In this post, I will discuss the .
| | akos.ma
16.9 parsecs away

Travel
| | Once upon a time, there was a programming environment made by Microsoft called Visual J++.
| | blog.nuculabs.de
16.9 parsecs away

Travel
| | Hello everyone! ?? This is a follow-up post to the previous one, long story short I started taking the course from fast.ai to learn more about Deep Learning. I've built a simple Image Tagging model using the Resnet architecture (don't worry about the paper I did not read it, GitHub Copilot suggested it while writing this blog post). FastAI is a high-level Python library that allows you to train complex ML models really fast and efficiently. After training my model, I've exported it into the ONNX format and in this post we're using the model in a Java application.
| | danielcompton.net
88.7 parsecs away

Travel
| One of Maven's dependency management features is the classifier. Classifiers let you create multiple different artifacts from the same POM. You might use this to publish variations with native libraries for each OS, or to support different Java versions. This is also how sources and javadoc artifacts are created. In Maven you can specify a dependency on a version with like this: io.netty netty-transport-native-epoll 4.1.74 linux-x86_64 To specify this dependency with Clojure's deps.