Félix Saparelli
Félix Saparelli
To make the patterns available globally **without** butchering the built-in patterns file and without permission issues: 1. Rename `Defs.txt` to `hatch-patterns.svg`. 2. Insert this at the top: ```svg Hatch Patterns...
https://github.com/openstyles/stylus/wiki/Usercss That will allow using directly with e.g. [Stylus](https://github.com/openstyles/stylus) as userstyles rather than with the userscript.
[Cargo Binstall](https://github.com/ryankurte/cargo-binstall) makes the install go like `cargo binstall jless`.
From #255: A bit of an odd one. Basically, the headers are collapsed "upwards", then a gutter is revealed on column hover, and then the entire header is revealed on...
From #255: Instead of having the compose panel push the columns to the right, it appears "on top" of the rest of the view, so the display doesn't move. It...
The [Dhall](https://dhall-lang.org/) configuration language. [Rust implementation](https://github.com/Nadrieril/dhall-rust). ```dhall let user = "bill" in { home = "/home/${user}" , privateKey = "/home/${user}/.ssh/id_ed25519" , publicKey = "/home/${user}/.ssh/id_ed25519.pub" } ```
Some configs will have sensitive tokens or secrets in them. In those cases I'd like to be able to either warn or enforce that config files have proper permissions, like...
This popped out from a mistake I made: ``` $ :i 'dared dream' :i not found. Trying with npx... /home/.local/share/lib/node_modules/npm/node_modules/npm-package-arg/npa.js:265 throw invalidTagName(spec) ^ Error: Invalid tag name ":i": Tags may...
One annoyance with [cargo xtask](https://github.com/matklad/cargo-xtask/) patterns is that in many cases, the `xtask` command only works from the root of the workspace. Cargo Watch could solve this, though, because things...
The default is currently just `**/target/` (`*/target/**` before 9.0), which ignores _all_ folders named `target`. This can be undesirable, so we could figure out where the target-dir is, and only...