23 results for "whoa":
Aiming for correctness with types
actually did write that. And it actually did work. Oh whoa, RFC 3779 talks about that - it's an "abbreviated prefix". So 127.1 should work? $ ping 127.1
PING 127.1 (127.0.0.1) 56(84) bytes of data.
64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.018 ms
64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.022 ms
Whoa. How nice! I guess we all
Fine, we'll relocate our own binary!
Section,
#[deku(id = "4")]
File,
#[deku(id = "6")]
Tls,
#[deku(id = "10")]
IFunc,
#[deku(id_pat = "_")]
Other(u8),
}
Whoa, whoahey, that's a lot of code, isn't it? Yeah, but it's not that bad, is it? We're just making some nice abstractions, as usual, and using what deku gives us to parse symbols easily. Now that we
So you want to live-reload Rust
And it works as an executable: $ ./libmain.so
Hello, rain!
And as a library:// in `load.c`
int main(void) {
// was "main"
void *lib = dlopen("./libmain.so", RTLD_LAZY);
// etc.
}
$ gcc -Wall load.c -o load -ldl
$ ./load
Hello, venus!
Whoa, that's neat! Can we take a look at LD_DEBUG output for this run? Sure, let's g-...but this