Nathan Lilienthal

Results 241 comments of Nathan Lilienthal

No, thank you!

I find myself wanting to iterate over the variants of enums often, I'd love to see this get into Rust.

This seems like a pretty big deal to me.

FWIW, here is a program which I am building to send ICMP echo requests, and using `tshark` am noticing the incorrect values for the `icmp.type` field. ``` rust #![feature(ip_addr)] extern...

lol, yea layer 3 is what I need. Such a simple thing to overlook. However I'm still concerned about the value of the packet size.

> For anyone else having trouble with this, I have a solution that doesn't require personal access tokens but keeps stores the reference to the child repo commit in one...

I ended up just embedding the private keys for read-only deploy keys in the yml workflow files directly as ENV variables then following this advice with the hard coded strings...

FWIW, I can also seem to replicate this with the following (taken from @BurntSushi's example): ```rust extern crate docopt; use docopt::Docopt; const USAGE: &'static str = " Usage: prog [--output=FILE]...

@estysdesu that's good to hear. Out of curiosity what terminfo are you using (check using `echo $TERM`).

Here's a hacky workaround I whipped up (sorry for the whitespace changes). I only updated `find_elements` but the same hack can be applied to other functions I'm sure. ```diff diff...