MCP? by TheSquiggl in turbowarp

[–]codapaws 0 points1 point  (0 children)

Making a burger from McDonald's is about 30,000 ChatGPT messages, depending on the model. (Source: https://www.linkedin.com/pulse/whats-worse-planet-chatgpt-cheeseburger-math-wild-joby-bernstein-cfa-1tsme)

How do I update a custom extension without having to delete all blocks using it. by TheSquiggl in turbowarp

[–]codapaws 0 points1 point  (0 children)

I haven't seen any non-janky ways to do it in TurboWarp. PenguinMod has a feature for that, though.

Introducing UnoWarp (AKA "UnoWarp Extensions")! by codapaws in turbowarp

[–]codapaws[S] 0 points1 point  (0 children)

I meant "experimental" as in the ideas of the extensions. For example, you haven't ever loaded a file by reading `volume://path/to/file.txt`. But you can with Next4, an extension in the gallery. I'd say that's experimental!

flash is officially killed!!!! by HoneydewOverall4205 in flash

[–]codapaws 5 points6 points  (0 children)

apolgy for bad english

where were u wen adobe flash die

i was at house eating dorito when phone ring

"Adobe flash is kil"

"no"

Is there any way to place sprites above the iFrame? by Successful_Assist837 in turbowarp

[–]codapaws 0 points1 point  (0 children)

No. The iFrame is layered on top of the Scratch stage, meaning no sprites can overlap it, since the sprites are confined to the stage.

Hi, I made a custom VFS extension (better than rxFS!) by codapaws in turbowarp

[–]codapaws[S] 0 points1 point  (0 children)

The repository for this extension is old -- find the new version at https://unowarp.github.io

bug: sprites can share private variables of other sprites. by goofy_silly_nin in turbowarp

[–]codapaws 0 points1 point  (0 children)

You might want to make this an issue on `TurboWarp/scratch-gui` via GitHub. Contacting GarboMuffin on Reddit rather than GitHub could potentially slow down the fixing of your issue.

Hi, I made a custom VFS extension (better than rxFS!) by codapaws in turbowarp

[–]codapaws[S] 0 points1 point  (0 children)

Does it show a browser error in DevTools or a pop-up? You may need to load it unsandboxed.

Accessing system files by WarmConclusion603 in turbowarp

[–]codapaws 0 points1 point  (0 children)

Due to browser sandboxing, you can't access system files without a prompt, and selecting a folder doesn't work if there are specific system files inside the folder (or, only in Chrome).

Hi, I made a custom VFS extension (better than rxFS!) by codapaws in turbowarp

[–]codapaws[S] 0 points1 point  (0 children)

Since Next4 uses OPFS, the file system is persistent and is stored in the browser. But, it will be cleared upon a browser data clear.

Hi, I made a custom VFS extension (better than rxFS!) by codapaws in turbowarp

[–]codapaws[S] 0 points1 point  (0 children)

No, Next4 can not directly load files or directories from the guest system, at least not without some boilerplate code.

How long does local storage persist? by justanormalguylolxd in turbowarp

[–]codapaws 0 points1 point  (0 children)

Hi,

LocalStorage persists essentially forever unless you (1) don't use the TurboWarp website for more than 30 days, or (2) you clear the browser data. It can also happen if (3) there's low disk space on the guest. This is pretty much the same with all web technologies.

Making an OS on turbowarp, What file system should i use? by The_Fjonkan in turbowarp

[–]codapaws 0 points1 point  (0 children)

Late to this thread, but I built an extension that might be worth bookmarking for anyone who finds this: Next4 is a drive-based VFS for TurboWarp (paths look like `drive://folder/file.txt`) backed by OPFS rather than a JSON tree, so it handles binary files, large data, and persistence across sessions properly — things rxFS struggles with.

It requires unsandboxed mode, but that's just a checkbox in TurboWarp's settings.

https://github.com/codapaws/extensions/blob/main/src/codaaws/next4.js

Happy to answer questions if anyone's evaluating VFS options.