Peter Blackson

Results 88 comments of Peter Blackson

Should I indent wrapped lines in lists, or leave them unindented like above? Indentation for lists is harder to implement.

I may pick up the project as a developer and maintainer within a few months. I helped the vuelidate creators make vuelidate 6 years back.

Alternatively, to save space, you may shift the `usize`s left by 1. You gain the chance to encode start/end information in the lowest bit. Then your data structure is simply...

I used to maintain BitVec. It supports serialization with serde under a feature flag `serde_std`, so you may fork bloom and slap a serialize / deserialize with serde, plus a...

The Linux kernel uses a list of `vm_area_struct`s that hold all information stored in the architecture-specific page table and everything else needed to fully describe a memory area. http://duartes.org/gustavo/blog/post/how-the-kernel-manages-your-memory/

It's blinking on model A rev2. Just had to install any Linux distro on an SD card and replace `/boot/kernel.img` with compiled `kernel.bin`. Next step is detecting I2C devices.

@bytesnake Hi, the declaration of `exchange_free` in `kernel/heap.rs`is not accepted by Rust. A valid declaration is: ``` rust pub unsafe fn free(ptr: *mut u8) ``` I'm fixing this.

1) uninstall thestinger's nightlies 2) or set `RUST_ROOT` to `/usr` and use nightlies

Successfully prototyped here: https://gist.github.com/pczarn/c51dd53b5e194467a79ff5592856d14c#file-mini_earley_parser-rs-L327-L331