Thea Heinen
Thea Heinen
iai uses a hardcoded relative path "target/iai/cachegrind.out.{}" for outputs which isn't the correct target directory in some cases. Particularly when you are using a multi-crate workspace (which uses a shared...
see #583 and #492 I modified this for my own purposes and I stopped at "it works for my use case and doesn't make any tests fail". I don't think...
Per RFC 5545 every ical VEvent object is required to have a string UID property which is used for duplicate detection. Ideally this should be copied into the "id" property...
Hello! My workflow when using firefox with Panorama Tabs has been to slowly pile up tab groups for everything i'm working on at the moment. I tell firefox to restore...
A pattern I do a lot when CTFing is "read a blob of data, apply regex, extract data". It's not exactly a huge issue but its still a few extra...
Hello! The [published rust bindings ](https://crates.io/crates/keystone) on the rust package manager are a couple versions behind the bindings in this repository so it doesn't work if you have an updated...
I ran into some trouble with today's (2020/day 4) problem because the generator was passing a truncated form of the input files sans any trailing newlines. I'm unclear as to...
`pub fn buffer(&self) -> &'a [u8]` instead of `pub fn buffer(&'a self) -> &'a [u8]`. &'a is the lifetime of the underlying buffer, not the Pdu struct. Borrowing self as...
this line breaks on my machine (tshark 3.2.3) https://github.com/alexforster/pdu/blob/master/tests/tests.rs#L162 ```text ❯ tshark -n -o ip.defragment:false -o ipv6.defragment:false -o tcp.desegment_tcp_streams:false -T pdml -r /home/sky/git/pdu/tests/pcaps/gre-erspan.pcap | rg frag_offset ``` seemingly `value` is...
Hi! In versions 0.15.3 to 0.17.0 Zola would colocate files without an extension. I serve files without an extension on my website fairly frequently and would prefer to avoid renaming...