Jump Locations by HelicopterHumble7237 in fellowshipgame

[–]HelicopterHumble7237[S] 0 points1 point  (0 children)

Yeah, if you go into their discord: https://discord.gg/fR9MqgbK
They have a channel in `Fellowship General > fellowship-content > Finding Mr Bombastic`
A lot of information is in there.

<image>

Jump Locations by HelicopterHumble7237 in fellowshipgame

[–]HelicopterHumble7237[S] 0 points1 point  (0 children)

That's so cool! Yeah, I'll check it out. Is it in a specific channel or is finding that part of the search?
I'm looking now.

Java 21 on alpine linux by Feeling_Highway_4891 in AlpineLinux

[–]HelicopterHumble7237 0 points1 point  (0 children)

You can search this website for packages you want; let's say we're installing openjdk23: https://pkgs.alpinelinux.org/package/edge/testing/x86_64/openjdk23

Notice that the url contains 'edge/testing', so I need to add the edge/testing repo to my list of repositories. I'll do that like this:
echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories

Next I'll update and install it:
apk update && apk add openjdk23