Get Started for #ApacheCamel in #VSCode
#apache_camel #jbang #camel_tooling #kaoto #vscode #redhat #debug_adapter #language_support
#apachecamel #vscode #Apache_Camel #jbang #camel_tooling #Kaoto #redhat #debug_adapter #language_support
Nice work #VoxxedBrussels, even the quickie-sessions got recorded and published! "Having fun with @pi4j and #JBang on the @RaspberryPi" is now available...
https://www.youtube.com/watch?v=w4AR4hWP3Qk
The source files used in the demo can be found on https://github.com/Pi4J/pi4j-jbang
#voxxedbrussels #jbang #javaonraspberrypi
Join me tomorrow for a "quickie" at #VoxxedDaysBrussels "Having fun with @pi4j and #JBang on the @RaspberryPi".
#voxxeddaysbrussels #jbang #java #javaonraspberrypi
RT @j2r2b
This is brilliant! π
To use a custom version of a java lib with @jbangdev you can reference its GitHub URL (powered by @jitpack).
Use-case:
You submit a PR to have a change integrated upstream, but until it is merged and released you can use this version in a #Jbang script
w00t! Stackd podcast episode #63 is out! One CLI to Rule them All
@aalmiray joins @kito99 and @dhinojosa to talk about #jreleaser, #jbang, #Jarviz, #AI, whether or not #Java is over the hill, #http4s, #picocli, #jcommander, and much more: https://www.pubhouse.net/2020/01/stackd-43-year-end-review.html
#jreleaser #jbang #jarviz #ai #java #http4s #picocli #jcommander
Posting to π#Mastodon using βοΈ#JBang + π#JReleaser = π€©
export MSTD_HOST=<your-mstd-host>
export MSTD_TOKEN=<your-mstd-token>
jbang https://gist.github.com/aalmiray/b4c3b7f3db7b5d253814169d20d8fe26 'Hello world'
In the Azul blog post "9 Outdated Ideas About Java", I take a look into some false assumptions and outdated ideas about #Java based on early versions.
Because of the work by the community, you can't compare Java from the early days with the versions that have been released every 6 months since 2018. And with excellent tools like #jshell, #jpackage, #jbang, #sdkman, plugins by @gluonhq, and many more, the developer experience has seen a tremendous evolution.
#java #jshell #jpackage #jbang #sdkman #openjdk
I started working on a new #Java library to load and save #LottieFiles and #dotLottie, plus a #JavaFX player.
The very early steps are taken. A website on https://lottie4j.com thanks to #JBang, Mastodon account on @lottie4j, different Lottie JSON files can already be loaded and saved back to the same JSON, and a very first visual output showing there is some valid data being handled.
Sources: https://github.com/lottie4j
The JavaFX player component will be a very big challenge...
#java #lottiefiles #dotlottie #javafx #jbang
Lately I found myself in the need of quickly run some Cypher on a remote Neo4j instance but had no binary at hand. Remembered that we created a #jbang catalog that exactly contains the needed tool. π
Thought it might be a good idea to share this with you: https://youtu.be/SfsKjRgOVHs
RT @rotnroll666
Quick #JBang #Java script to run Google Format via CLI without jumping through dependencies issues yourself:
https://gist.github.com/michael-simons/4966ad1be971453a2ae726fe19126d69
Hey Google folks, why not add at least an options for using tabs? :)
Quick #JBang #Java script to run Google Format via CLI without jumping through dependencies issues yourself:
https://gist.github.com/michael-simons/4966ad1be971453a2ae726fe19126d69
Hey Google folks, why not add at least an options for using tabs? :)
Want more #Java? Ok, I hear you. Here's the Java script I use to generate those⦠https://github.com/michael-simons/biking2/blob/public/src/cli/CreateGalleries.java
#Jbang for dependency management, #Picocli for well CLI, #thumbnailator and #metadata-extractor for image and exif data processing.
#java #jbang #picocli #thumbnailator #metadata
How nice it is when great technologies work together!
I added a maven project (created pom with openjfx.io) to https://github.com/johanvos/qkd-java (Quantum Key Distribution sample) and configured it to use the same source as the #jbang samples I already had.
Opened in Apache Netbeans, ran the samples that use StrangeFX and Strange (https://github.com/redfx-quantum/strange) and it worked from the first time! (writing this took me longer ;) )
#JavaFX #Strange #JBang #Netbeans #QuantdumComputng #QKD
#jbang #javafx #strange #netbeans #quantdumcomputng #qkd
The #Raspberry_Pi, @pi4j, and #JBang are a perfect combination to experiment with electronics, find out more from @eitch and @frankdelporte on :foojay: Today: https://foojay.io/today/controlling-a-led-strip-with-pi4j-and-jbang
#raspberry_pi #jbang #foojaytip
Creating a simple HTTP server with an endpoint using Helidon and jbang:
https://gitlab.com/-/snippets/2457044
#java #helidon #jbang
This is a standalone dockerfile with embedded #java and using #jbang for building as answer to https://bit.ly/3rQrNa3 Try out using: `docker build -t myapp . && docker run -p 8080:8080 myapp` https://bit.ly/3Lb68kp
///usr/bin/env jbang "$0" "$@" ; exit $?
//DEPS io.quarkus:quarkus-resteasy:2.7.3.Final
import io.quarkus.runtime.Quarkus;
import javax.enterprise.context.ApplicationScoped;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
@Path("/hello")
@ApplicationScoped
public class quarkusapp {
@GET
public String sayHello() {
return "hello";
}
public static void main(String[] args) {
Quarkus.run(args);
}
}
Runable via
$ jbang quarkusapp