mastodon.gamedev.place is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mastodon server focused on game development and related topics.

Server stats:

5.2K
active users

#java

94 posts71 participants3 posts today
Continued thread

Since I don't feel like writing #Java I took a detour into getting #PyGhidra working, which was included with my #flatpak install, but had some issues installing dependencies to the virtual environment it created. Managed to run the commands it was trying to run manually with some tweaks and now I can launch Ghidra with Python support successfully.

Not sure how I could potentially update the flatpak and submit a PR, but I'm calling that out of scope so I can get back to the actual project

One reason for my rejection of #SpringBoot for #java programs was their insistence on taking over object construction, and treating all objects as mutable. Mutability causes severe problems when multithreading and multiprocessing, features readily available in Java for quite some time. Now, Spring is deprecating #autowired in favor of immutable constructors, removing much of my initial criticism. Time for a second look!