૮༼⚆︿⚆༽つ

Results 42 comments of ૮༼⚆︿⚆༽つ

Can be embedded into game engine might be a good idea. Webkit can't fit into game engine because their code base tightly coupled to it's Javascript VM. Having a way...

Check out [termimad][]! It's all-in-one crate for rendering markdown in terminal. Wrapping, table balancing, and scrolling are essential features of [termimad][]. [termimad]: https://github.com/Canop/termimad

I think for template feature, it can be split into 2 kinds of template. ## 1. Scaffold Template This template is a custom template for a very specific case. For...

Fyi, [wezterm](https://wezfurlong.org/wezterm/imgcat.html) (a cross-platform terminal emulator) support iTerm2 inline images protocol. The library they created called [termwiz](https://docs.rs/termwiz/latest/termwiz/caps/struct.Capabilities.html) has a helper to detect terminal capabilities, including whatever the running terminal support...

Hi, I've struct and trait that require lifetime. My first though about using `assert_impl_all` is I need to specify the lifetime in precise manner: ```rust assert_impl_all!(require; Transition, From, From

Just guessing, possibly something like [this](https://apt-team.pages.debian.net/python-apt/library/index.html).

Also, units pixel, megapixel, and px/inch along with bit, byte, kB, MB, and GB might come in handy to predefined and bundled in system of units "information".

I'm proposing [IDL][] to auto-generate serialization library for many different programming languages. Some library maintainer probably uses a bot to update their dependencies regularly. By having [IDL][] (which can serve...

Just want to add a my use case for this :slightly_smiling_face: ```yaml build: runs-on: ubuntu-latest strategy: matrix: target: [tmLanguage, sublime-syntax] steps: # ...several steps for producing an artifact - uses:...