> due to the mlibc code using the char value from the format string, the values above 127 passed by OpenJDK would be handled as negative integers It's 2025 and I still don't get why Java needed signed chars and bytes. Why completely disregard the convenience of using them for array access/etc..
Show HN: My hobby OS that runs Minecraft
31–39 of 39 posts
Re: Show HN: My hobby OS that runs Minecraft
#32Earlier quoted context omitted.
The one that annoys me is that people think implicit type conversions are dangerous for some reason, so they also disallowed `char a = 10; short b = a;` without writing a cast even though this makes no sense.
The signedness of `char` is implementation-defined, it is signed on x86 but unsigned on ARM. So assigning a plain char to a wider integer type is suspicious, did the programmer expect sign-extension or zero-extension?
Personally I think explicit typecasts are even more suspicious, because introducing explicit semantics is worse than implicit semantics if the explicit ones are wrong.
Re: Show HN: My hobby OS that runs Minecraft
#33Well done and thanks for sharing, it's great to see people making a hobby OS and it's awesome that it plays Minecraft! How long have you been working on Astral?
Re: Show HN: My hobby OS that runs Minecraft
#34This is very impressive! When I saw the title, I thought it would be classicube, but no, it's actual minecraft.
Re: Show HN: My hobby OS that runs Minecraft
#35That's quite a milestone and achievement, well done! Your current Features list reads far beyond hobby level! It certainly puts my own hobby phone OS to shame. I'm still working out touch screen driver, and I only have IBM/437 bitmap fonts so far, which turned out to be far too small for these modern phone screens, for surely it cant be my tired old eyes... Can I ask how you keep yourself motivated on such a complex,…
Re: Show HN: My hobby OS that runs Minecraft
#36That's quite a milestone and achievement, well done! Your current Features list reads far beyond hobby level! It certainly puts my own hobby phone OS to shame. I'm still working out touch screen driver, and I only have IBM/437 bitmap fonts so far, which turned out to be far too small for these modern phone screens, for surely it cant be my tired old eyes... Can I ask how you keep yourself motivated on such a complex,…
Sometimes I take long breaks but I always end up coming back. I find doing multiple things in my projects at the same time to help me not burn out as easily.
Good luck with the rest of your project.
Re: Show HN: My hobby OS that runs Minecraft
#37Now all we need to do is run your OS on a redstone virtual machine inside of Minecraft, then run Minecraft on it. That way you'll have Minecraft inside your Minecraft.
Re: Show HN: My hobby OS that runs Minecraft
#38Better than Windows 11 already. I can't run Bedrock or Java without first signing into the Microsoft Store on "my" PC.
Re: Show HN: My hobby OS that runs Minecraft
#39Well done and thanks for sharing, it's great to see people making a hobby OS and it's awesome that it plays Minecraft! How long have you been working on Astral?
Hi, this iteration I have been working on since 2023, but it uses some code in some places from the old iteration which I was working on during 2022 and 2023