Jonathan

Results 214 comments of Jonathan

@shepmaster How is the progress going?

@shepmaster Well your WIP branch doesn't seem to exist anymore, the Rust Playground does not seem to use the prefers-color-scheme CSS media query and your last comment was over a...

Add this to the CSS: ```css @media (prefers-color-scheme: dark) { body { background: #202124; } } ``` Add this to the JavaScript: ```javascript const userPrefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;...

@SamikshaSankar it's been a long time, but it would be great if you could give it a go

> would be nice to have the possibility to toggle the spell-checker on and off while writing I think the spellchecker should be removed since browsers already come with built-in...

> I can still see some use for it with for forms in languages that a browser would not be set to. But maybe off by default? In that case...

Maybe this would be useful if you want a REPL or print function #1773

Furthmore the stdlib is not documented. #1761

Microsoft SQL Server have support for JSON too. https://learn.microsoft.com/en-us/sql/t-sql/functions/json-query-transact-sql?view=sql-server-ver16

I really like the f-string approach too. However, maybe it should be easy format the date according to a standard instead of having to specify the format yourself. There are...