Dan Kolsoi

Results 260 comments of Dan Kolsoi

Oh, interesting! I thought tests.rs was needed, like a mod.rs. I'll remove it in my next commit to master since it might break code coverage which looks for the tests...

I also think the width should be customizable. The size attribute applies only to height

Would this allow you to add visibility modifiers to methods? IE `u8, pub foo, pub set_foo: x, y;` I can't seem to access the methods from other modules since they...

Huh, nushell supports directory based envvars?: https://www.nushell.sh/blog/2020-06-09-nushell_0_15_0.html#per-directory-environment-variables-samhedin Can't seem to find this in the latest version tho https://www.nushell.sh/book/environment.html

OpenAPI support is definitely a good idea! Looking forward to seeing how that goes. I guess my idea was leaning towards it being its own documentation endpoint because I got...

What about Inconsolata-g + Powerline Awesome? It would be great if this repo also included Awesome powerline fonts

Thank you so much for the quick reply! A couple questions: 1) Isn't that a different version of `Date`? That example worked fine, it's the 2nd example (`Date2`) that didn't...

> Sorry, I didn't actually compile your example to get it fully working, ... No worries! > But I'm not sure if having a u16 and packing it down to...

This also surprisingly doesn't work which is just two bytes: ```rust #[derive(PackedStruct)] #[packed_struct(bit_numbering="msb0")] pub struct TwoBytes { #[packed_field(bytes="0..=1", endian="msb")] pub tb: Integer, } ``` ```shell error[E0599]: no method named `pack`...

Will the sync client also be getting this support?