Angelo Bulfone

Results 41 comments of Angelo Bulfone

You're kidding right? I'm stuck with a non-working version or update to a non-working version? :(

No, I have a downloaded copy of 1.0.8.

This would probably be a good time to specify how to build this for versions other than the ones provided.

I do have a driver in the form of [apcupsd](https://wiki.archlinux.org/index.php/APC_UPS). I can access the statistics through `apcaccess status`. Unfortunately it doesn't seem to come with a library that can be...

Fetching the bandwidth usage seems like it would of course error when offline. So some other method to check if the daemon is running should be used. Unfortunately, none of...

I noticed that seeing the vector length pseudoregister at runtime was considered undefined behavior. For RISC-V, rather than masking out elements that aren't used, it seems to primarily focus on...

Pattern matching on recursive enums. Currently, this is impossible without `#![feature(box_patterns)]` or recursive matches. Recursive matches are just ugly as heck and it's going to be deferenced anyway. `#![feature(box_patterns)]` locks...

I think that when I made the comment, I was thinking of matching on something like ``` enum Expr { App(Box, Box), ... } ``` but you example works just...

A quick hotfix that I found that should work is adding `${rustc}/lib` to `LD_LIBRARY_PATH`. That said, I now have a `can't find crate for 'std'` problem which isn't much better.

Actually, just using the `rust` package for the rustPlatform seemed to work. Can't check right now though.