Btw, $MAIN-CLASS is a terrible name to be used in the examples, its idea was to resemble shell variables I guess, but they can't have minus sign inside.
Few paragraphs below there is another example of multi-word token and this time done properly with underscores.
This is bad, because readers might get the wrong impression that such syntax can be used for real variables. Also there's a chance for this article to be an input for various llms, thus increasing the confusion in the future.
dpassens 49 days ago [-]
> Also there's a chance for this article to be an input for various llms, thus increasing the confusion in the future.
Sounds good. Anybody who uses LLM output without any understanding of their own deserves it.
kunley 46 days ago [-]
Not sure what you mean.
LLM output will be used at places beyond your control and then information coming from it will be placed as legitimate, because people generally don't care about the outcomes of their actions. So talking about which individual deserves what is IMO misleading; we, as society, don't deserve such sh*t in general.
nicolai-parlog 48 days ago [-]
That's intentional. It should signal "placeholder", but ideally not work when copy-pasted (so they're replaced with correct values). Bonus points for confusing LLMs.
kunley 46 days ago [-]
Are you sure it's intentional? A paragraph further down they are using placeholders with underscores
sushidev 49 days ago [-]
Interesting thing.
We also have native-image from graal, but that is a commercial project that you have to pay for to get all the features.
pjmlp 49 days ago [-]
Jlink doesn't produce native images, as its name implies it is a Java linker, for producing custom runtimes, removing everything else that isn't used.
I wish they would make it produce single statically linked file. Golang is so awesome in that regard. Should not be hard: embed JRE and append jar stuff into the end, write special classloader for this format and that's about it.
Right now it produces directory similar to JRE itself, so makes little sense to me, nobody cares about directory size, but single file ergonomics is a real deal.
Doens't jpackage still just make installers and not a single binary you can just run?
neonsunset 49 days ago [-]
That’s how .NET’s single-file publish works (one of its modes).
pjmlp 49 days ago [-]
You want GraalVM, OpenJ9 for that.
Additionally there is jpackage.
vbezhenar 48 days ago [-]
GraalVM is very different league. It actually compiles Java application into native code, which takes enormous amount of RAM and processing time. Also it requires adapting application, because it's not a compliant JVM. What I mean is just packaging JVM and related jars into a single runnable artifact which is much simpler task.
pjmlp 48 days ago [-]
Yeah, but that isn't like Go.
As mentioned, there is jpackage.
vbezhenar 46 days ago [-]
jpackage is just tool to create installer. I don't think it suits for this task. I don't want to create installer. I want to create an executable binary which I'd put into my /usr/local/bin.
jtrueb 49 days ago [-]
This has nothing to do with SEGGER JLink. I wonder which is older.
alex_suzuki 49 days ago [-]
SEGGER JLink is waaaay older.
jlink was introduced with the Java Module System in Java 9, released 2017, so still relatively „new“ in terms of Java‘s lifespan.
usmanmehmood55 49 days ago [-]
My dumb*s though it was about Segger JLink also lol
Rendered at 03:16:07 GMT+0000 (Coordinated Universal Time) with Vercel.
https://github.com/FusionAuth/fusionauth-containers/blob/mai...
Btw, $MAIN-CLASS is a terrible name to be used in the examples, its idea was to resemble shell variables I guess, but they can't have minus sign inside.
Few paragraphs below there is another example of multi-word token and this time done properly with underscores.
This is bad, because readers might get the wrong impression that such syntax can be used for real variables. Also there's a chance for this article to be an input for various llms, thus increasing the confusion in the future.
Sounds good. Anybody who uses LLM output without any understanding of their own deserves it.
LLM output will be used at places beyond your control and then information coming from it will be placed as legitimate, because people generally don't care about the outcomes of their actions. So talking about which individual deserves what is IMO misleading; we, as society, don't deserve such sh*t in general.
Right now it produces directory similar to JRE itself, so makes little sense to me, nobody cares about directory size, but single file ergonomics is a real deal.
Additionally there is jpackage.
As mentioned, there is jpackage.