ComputerGuy
ComputerGuy
I can't tell, but can you try and see what's wrong with this? Here's the project: [https://scratch.mit.edu/projects/546525463/](https://scratch.mit.edu/projects/546525463/) Here's the link to the repl: [replit program](https://replit.com/@DREWNOLT/realtime#index.js)
> It adapts to my device pretty well. Are you in landscape, or portrait mode?
One app that I noticed doesn't work on any device with an on-screen keyboard is the Terminal app.
That's probably more of a hardware limitation than a software issue, there isn't much memory on the pinetime. I do agree that there should be some sort of indication that...
> The latest version is 3.6.0. Please use that and confirm if the issue persists. The bug is also in the latest version.
> `$inspect` doesn't cause a debugger statement to be inserted which is still useful. Also, the print out form each is different `console.log` vs `@debug` vs `$inspect`. You can use...
> Maybe, just a rune called `$debug` that would work the same as as $inspect but would break execution with a `debugger;` statement. And, allow `$debug()` to have no parameters...
> I also like `$dev.inspect` and `$dev.break` or something like that as it would also indicate that these runes are only available in dev mode and are removed in the...
Perhaps instead of having it compile to this: ```js $.user_effect(()=>{ return $.trace(()=>stuff, "name") }); ``` It could instead use a `$.trace_effect` (and `$.trace_pre_effect`) function that took an effect function and...
> Since people already rely on `untrack` having this weird side effect, we can't "fix" the behavior as it would break some code bases. I think we need to introduce...