- 17 Posts
- 12 Comments
yoavlaviOPto Programming•Announcing August! An Emmet-like language that produces JSON, TOML, or YAML, written in Rust5·2 years agoQuickly creating or editing objects. The main target would be editor extensions, image a snippet that expands to an object on tab for instance
yoavlaviOPto Rust•Announcing August! An Emmet-like language that produces JSON, TOML, or YAML, written in Rust5·2 years agoNickel looks like something akin to Nix (JSON with functions), whereas August’s goal is to allow you to quickly write a snippet that expands to your target document (e.g. via an editor extension) like Emmet. You can think of August like a snippet or shortcut to typing (or editing) a document rather than its own configuration language
yoavlavito Games@lemmy.world•Switch 2 would arrive in the second half of 2024 and development kits are already outEnglish191·2 years agoI heard that they’ve named it the “SwitchCube Advance SP 3DS”
Multiple, they don’t have to accept input but they can like in the DuckDuckGo example. The idea is to set up easy to type commands you can execute quickly
yoavlaviOPto Programming•Melody 0.19.0 | A language that compiles to regular expressions and aims to be more readable and maintainableEnglish1·2 years agoIt’s more readable and maintainable than ECMAScript regular expressions, which it compiles into
yoavlaviOPto Programming•Melody 0.19.0 | A language that compiles to regular expressions and aims to be more readable and maintainableEnglish123·2 years agoI wouldn’t consider Melody a new flavour of regex as it compiles to ECMAScript regular expressions.
I’d consider being more verbose than regular expressions as a great thing for what this project aims to do, regular expressions are very write optimized which is the wrong (IMO) tradeoff to make in a shared codebase (or even your personal code that’s more than a few days old) where code is read much more often.
yoavlaviOPto Programming•Melody 0.19.0 | A language that compiles to regular expressions and aims to be more readable and maintainableEnglish91·2 years agoAwesome idea, will definitely take it into consideration when that feature is available. Melody actually has a VSCode extension with highlighting and snippets, could be added to that
yoavlaviOPto Programming•Melody 0.19.0 | A language that compiles to regular expressions and aims to be more readable and maintainableEnglish20·2 years agoThat’s not supported yet but is planned (see the “reverse compiler” feature in the README)
yoavlavito iOS Beta@lemmy.world•Are there new languages with quickpath in in the 17 beta?2·2 years agodeleted by creator
yoavlavito iOS Beta@lemmy.world•Are there new languages with quickpath in in the 17 beta?2·2 years agoAs far as I can see they haven’t added it for Czech. I do however see it in Hebrew and don’t think it was previously supported
Thank you!
We developed this for our platform and CLI (which are Rust based) which is a bit of a different use-case than a one-off manual run of a linter (in which the difference perhaps wouldn’t be as dramatic), although performant tooling for the end user should still be something we strive for IMO.
The “fast JS runtime” was Bun in this case, which we tried specifically because it has faster startup (and we also use in our CLI as a runtime for user defined functions). Most people would be using Node which is much more popular and likely have an even slower startup time.