Jonathan Coates
Jonathan Coates
It's a client side limitation in the underlying sound library. See `com.mojang.blaze3d.audio.Library`, where it creates the pools of sound channels: ```java int channels = this.getChannelCount(); int streamingLimit = Mth.clamp((int)Mth.sqrt((float)channels), 2,...
I guess there are also some questions here about how to handle case-sensitivity of filesystems. We need to make sure the in-memory representation mirrors what actually happens on the filesystem....
Oh, interesting! I thought this was a file-system wide option - hadn't realised this was per-directory. Unfortunately it looks like this requires WSL to be enabled, so not sure if...
I wonder if it'd make more sense to add a `getHeaders` method, like we do for HTTP responses. Though there's an argument that's a property of the initial connection, rather...
> Just to clarify, is it just a computer that has an upper limit of disk space? Computers and floppy disks. It's 1MB by default (and 128KB for floppies), though...
> Two-step exit process perhaps? You hit 'e' and it shows [Exit] [Save and exit]? Oh, that was the plan. I think I just also want to provide some context...
[Someone hit the confusing UX for read-only files today](https://www.reddit.com/r/ComputerCraft/comments/13w6wh5/wont_let_me_type_in_text_editor_for_fucking_coding/). One never really realises how bad something is until you see it in action.
Can you explain what you're trying to do here? If you've got a wireless modem connected to a wired network, I'd expect it to have a constant position, and so...
Right, that makes sense, thanks! I think my main concern is that `gps.locate` returns the position of the adjacent block, which in this set up will be the wired modem...
I'm kinda hoping we can reuse our new lexer for syntax highlighting in edit. However, we don't want to have to re-concatenate the whole file for each change, so I...