YOSHIOKA Takuma

Results 30 issues of YOSHIOKA Takuma

## I tried this code ```rust #[derive(Default)] struct Foo { strings: Rodeo, } ``` ## I expected this to happen The code compiles. ## Instead this happened This does not...

bug

These methods enables users to traverse tree without borrowing arena for long. They would be useful especially when modifying nodes being traversed. Using these methods, https://github.com/saschagrunert/indextree/issues/75#issuecomment-1253565930 can be written more...

Current `zellij list-sessions` is human-friendly, but appends ` (current)` to the last active session, so it can be ambiguous if some mistake or bad apps created a session name that...

U+2014 EM DASH は時間経過の表現、引用、括弧の代わりなどで使われるダッシュ記号で、 U+2013 EN DASH よりも長く表記するのが一般的です。 > 短いenダッシュ「–」(Unicode U+2013、JIS X 0213 1-1-30) と長いemダッシュ「—」(Unicode U+2014、JIS X 0213 1-1-29) の2つがある。それぞれ、長さが欧文フォントのn、mの幅に等しいことが、名前の由来である。 > > (中略) > > ASCIIにはどちらも存在しないので、enダッシュはハイフンマイナス「-」で、emダッシュはハイフンマイナス2つ「--」で代用される。 > > ——[ダッシュ (記号)...

Some of predefined text mime-types (such as `mime::HTML` and `mime::XML`) have `;charset=utf-8` parameter, but browsers' default `Accept` header does not. (See [List of default Accept values - HTTP | MDN](https://developer.mozilla.org/en-US/docs/Web/HTTP/Content_negotiation/List_of_default_Accept_values)...

question

This change prevents the window from appearing when `--tray` is specified. Fixes #38.

https://github.com/Nemo157/cargo-lichking/blob/4cd86f04c8a17e9f6b3dc1079ef7edbc7fa584ed/src/license.rs#L119 I googled a little and BSD-2-Clause dependency seems to be redistributable as MIT (IANAL), but I cannot find clear trustable answer whether it is allowed or not. * "BSD-new"...

I haven't read the parser thoroughly, but it looks like `to_mdast()` always returns `mdast::Node::Root(_)` on success, even if the source document looks like a simple "inline" text. If so, isn't...

Yeah I know this is generally bad thing to do, but I'm seriously considering rewriting this crate. 3+ years of Rust experience since the first release of this crate (and...

`std::ops::Deref` should be only used for smart pointer types, and it is considered as an anti pattern to use it to "derive" parent type. * [Deref Polymorphism - Rust Design...