Daniel Ly

Results 12 comments of Daniel Ly

Wow, a triple dereference. Can you show the code?

I tried a `{n,m}` repetition with Unicode properties and it blew up horribly. ```rust // cargo-deps: logos="0.13" use logos::{Lexer, Logos}; #[derive(Logos, Debug, PartialEq)] pub enum Words { #[regex("[ \n\r\t]+")] WhiteSpace,...

> Is this text full of unique characters, or do you extract the characters from the text? 15 kB is just the source code of the character set. > I've...

It looks there's a fourth possibility: just use the built-ins, because some built-ins are same as the mentioned unicode categories! For example $$alphabetic might correspond to the category L. Yay!!

I had also some macro weirdness, Never a crash, only text corrupting behavior. Perhaps it's the same bug. I never managed to reproduce it. In about 200 days of using...

I thought about a plugin system also using the `PluginSystem` trait proposed by @mattwparas: a plugin is a separate process communicating by an RPC channel (perhaps using the crate [rpc-ipc](https://crates.io/crates/ipc-rpc))....

Here what I watched: The file picker cursor disappears if I focus a different Zellij pane and becomes hollow if I focus a different application. Using sway and foot. It...

I needed to do some url rewriting. Here's as an example what I did directly in `web-dev-server.config.js`: ``` // remap /**/*.ts and /**/*.js to /ts/**/*.ts and let esbuild transform //...

I used middleware, not sure whether it was the best thing, but it worked. See my previous post.

These are my forks: https://github.com/nalply/fraction and https://github.com/nalply/complex and this is my project using these libraries: https://github.com/nalply/flical. I took the liberty to vendor the forks with git submodules and also to...