Jonathan Coates

Results 393 comments of Jonathan Coates

Two of these crashes are watchdog timeouts, which aren't a bug, but the other two are more suspicious: ``` java.lang.NoClassDefFoundError: dan200/computercraft/shared/peripheral/monitor/MonitorWatcher$PlayerUpdate at dan200.computercraft.shared.peripheral.monitor.MonitorWatcher.onWatch(MonitorWatcher.java:64) ~[computercraft:1.99.0] {re:classloading} at net.minecraftforge.eventbus.ASMEventHandler_766_MonitorWatcher_onWatch_Watch.invoke(.dynamic) ~[?:?] {} at...

Had a chat with the people on the Forge discord (were very useful, :hearts:), and general conclusion is that this really shouldn't be possible - something forcibly closed the file...

While /dev/urandom uses actual sources of entropy, are there any practical advantages of it over something like [this api](https://www.computercraft.info/forums2/index.php?/topic/12163-cryptographically-secure-random-number-generator/)? (well, maybe not this specific one - have a feeling ISAAC...

Now that #830 is done this should be possible. Now to work out if I want to do or not! I think it makes sense, just not sure if it's...

Taking this off 1.99 for now as I think the previous changes are going to cause problems enough - will let them sit for one release before breaking anything else.

Yes. https://github.com/SquidDev-CC/CC-Tweaked/blob/fff8353451451be5ae31e0f63d8e529b127fd186/src/main/java/dan200/computercraft/shared/peripheral/modem/wired/WiredModemPeripheral.java#L324-L334

Taking this off the 1.97.0 milestone - will hopefully look another day. My initial approach was just to scale the terminal by 0.5x, and keep the GUI the same ratio....

For reference, https://github.com/Creators-of-Create/Create/issues/2296 is the issue on the create side of things.

> Lua to my knowledge supports saving it's global environment to a file and loading it back up again Sadly it doesn't by default - OpenComputers uses a modified version...

> OpenComputer's allows you to advise the running environment on where it may freeze your code during execution if the loop is expected to take a long time. Hrmr, I...