Haoran Ni

Results 4 issues of Haoran Ni

The .bib files store bibliography data which can be used in a LaTeX document. This PR registers ".bib" files with [Bibliography.jl](https://github.com/Humans-of-Julia/Bibliography.jl), which can handle parsing / importing / exporting /...

I want to add error bars to a grouped bar chart using `groupedbar` function using the following line. ```julia groupedbar(rand(3,2); yerror=rand(3,2)) ``` When I use the `gr()` backend, things work...

bug
help wanted

A minimal example is as follows ```rust #![allow(unused)] use binrw::BinRead; enum Foo { V1(u8), V2(u16), } #[derive(BinRead)] #[br(import(_version: &u8))] struct Data1 {} #[derive(BinRead)] #[br(import(_version: &u16))] struct Data2 {} #[derive(BinRead)] #[br(import(version:...

In our code base we often have the following patterns, where we heavily use the discriminants of the enum variants elsewhere. ```rust #[repr(u8}] pub enum Enum { V1(T1) = 0x01,...

enhancement