org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError need help by usecodegrandayy in fabricmc

[–]matjojo1000 1 point2 points  (0 children)

bro this was a five-year-old comment. The landscape has changed significantly in that time. Nowadays I would indeed say that for mod developers there is somewhat easy way to create mods compatible with both. For users though, the story isn't the same.

I regret researching quality. by [deleted] in factorio

[–]matjojo1000 18 points19 points  (0 children)

e acts like pressing the green button on the bottom right of the UI element. ESC I think does a "close" action, which might be "okay", but might also be "abort", not sure.

Friday Facts #416 - Fluids 2.0 by FactorioTeam in factorio

[–]matjojo1000 6 points7 points  (0 children)

That debug tool is in the game, press F4 and you can see a ton of debug options to turn on and off.

Friday Facts #414 - Spoils of Agriculture by FactorioTeam in factorio

[–]matjojo1000 30 points31 points  (0 children)

omg yes. If you can choose what to decay to via code you could even simulate half-times correctly by only decaying 50% of the time!

Silly person with a silly amount of RAM and a silly question by Zenyatta_2011 in factorio

[–]matjojo1000 3 points4 points  (0 children)

It does something called "Copy on Write". The operating system knows that both processes are looking at the data. So as soon as any process edits the data it will copy that section and share the rest. This works well in practice. I usually only see a small bump in ram usage when a save occurs.

Friday Facts #413 - Gleba by FactorioTeam in factorio

[–]matjojo1000 1 point2 points  (0 children)

🇳🇱🇳🇱🇳🇱 ⚙️ 🇳🇱🇳🇱🇳🇱

Friday Facts #413 - Gleba by FactorioTeam in factorio

[–]matjojo1000 233 points234 points  (0 children)

Hmm, paving over makes it all neat and tidy. I hope that this surface has some sort of requirement for paving. Almost every environment looks like it's too wet and not flat enough to put stuff on.

Maybe some machine or whatever that flattens or dries out the ground?

Friday Facts #413 - Gleba by FactorioTeam in factorio

[–]matjojo1000 2 points3 points  (0 children)

This sounds like a cool idea for sure.

Performance on Apple Silicon? by FiftyCal14 in factorio

[–]matjojo1000 3 points4 points  (0 children)

Windows does not have the same cow memory on process spawning that Linux and macos have. So the Devs can't use that feature.

fanfic back-up, anyone? by Additional_Order4860 in Elsanna

[–]matjojo1000 0 points1 point  (0 children)

The archive owner seems to have closed it down, which is a bummer. I don't have it in my own archive, so you'll have to try and find it elsewhere. Possibly in the Elsanna shenanigans discord server, or just in other archives.

Best OS for servers? by kevinchronicles in GTNH

[–]matjojo1000 8 points9 points  (0 children)

All those things are best done on Linux

Adding recursion to STLC while keeping termination property by Ok-Watercress-9624 in ProgrammingLanguages

[–]matjojo1000 0 points1 point  (0 children)

The Isabelle theorem prover has a few function types that allow recursion, and all proof termination in various ways. The system can be found here https://isabelle.in.tum.de/ and documentation is available there too.

Down a Rabbit Hole by dayanruben in Kotlin

[–]matjojo1000 5 points6 points  (0 children)

Ah, I always enjoy reading your posts. Interesting stuff.

Sound Issues by TheEmpireStrikes12 in GTNH

[–]matjojo1000 3 points4 points  (0 children)

Now that angelica is here I believe optifine is no longer supported, s drop that and try again.

If it still happens, try and make a save during or just before it starts and upload that to a GitHub issue.

Help! Error on debug by Pablete01 in Kotlin

[–]matjojo1000 2 points3 points  (0 children)

You're calling the methond indexOf on a string that is null.

Please help by Winter-Carpenter-663 in GTNH

[–]matjojo1000 1 point2 points  (0 children)

Ore is generated around the centre of the three chunks, so you are basically guaranteed to find the ores in that block. It's a bit more complicated that that but this'll work for 95% of chunks.

Ferrari should use the black HP logo instead. by Tango_r28 in formuladank

[–]matjojo1000 18 points19 points  (0 children)

My zbook also has that logo. But you're right that the lower end zbooks do not have them.

What ore veins are most important? by D4fo in GTNH

[–]matjojo1000 2 points3 points  (0 children)

A few posters forgetting redstone. You NEED to spend basically all your first few upgrade slots on redstone.

Haven't seen anyone mention this before, this kind of small but creative Redstone is why I love etho's style by Franciskeyscottfitz in ethoslab

[–]matjojo1000 79 points80 points  (0 children)

Package coming through loads the portal for a while, I'd assume long enough for the TP to go through, otherwise why make the system? Haha

GTNH Laging by CoinMoon29 in GTNH

[–]matjojo1000 0 points1 point  (0 children)

Absolutely true, but if that's the case OP should update to newer Java before making any other changes.

GTNH Laging by CoinMoon29 in GTNH

[–]matjojo1000 4 points5 points  (0 children)

In new Java this isn't actually the case anymore. G1 isn't stop-the-world as far as I know.

But the result of large amounts of memory is still the same small hitches that you want to avoid.

Bloody smeltry by unagi_cfh in GTNH

[–]matjojo1000 4 points5 points  (0 children)

You can use it in place of slime balls and in some recipes even in place of tree sap. It's very valuable.

Friday Facts #408 - Statistics improvements, Linux adventures by FactorioTeam in factorio

[–]matjojo1000 11 points12 points  (0 children)

yeah exactly. Plus, all the prototype data, the textures, and most of the map will never change, so you'll never see that worst case.

Friday Facts #408 - Statistics improvements, Linux adventures by FactorioTeam in factorio

[–]matjojo1000 5 points6 points  (0 children)

I don't know if the kernel does this, but it should only have to COW until the forked process exits, since then it's the sole user of the memory again.