masklinn
masklinn
Currently `cargo doc` will build documentation for the crate and its dependencies, which is useful as (outside of the core Rust distribution) you get a one stop shop of documentation...
According to e.g. #142, it seems like `cargo asm --target=$TARGET` should work, but when I try it `cargo asm` replies: ``` [ERROR]: cargo asm could not find any output files!%...
I'm not sure how to resolve this. I think the ease of getting and using documentation offline is one of the strength of Rust, but because `cursive_core::Cursive::new` is linking *downstream*...
Slides2 includes fullscreen API support: https://github.com/nyergler/hieroglyph/blob/71c214614276d38e58ef031235115b1c8fff82b3/src/hieroglyph/themes/slides2/static/js/slide-deck.js#L239 But slides and single-level don't. This is bothersome in OSX because much of the browser chrome remains in the OS's built-in "fullscreen mode" (the...
These information seem to be largely redundant (mappings of namespace URIs to prefixes), and only the former seems to actually be used in the code (to normalise namespaces / prefixes)....
`psycopg2.psycopg1` is a straightforward Python file which imports psycopg2 and reimplement psycopg1-compatible cursors (API-wise e.g. `dictfetchall`) on top of psycopg2. There's an import of _psycopg but it's not used and...
The [`format!` idiom](https://github.com/rust-unofficial/patterns/blob/master/idioms/concat-format.md) notes: > It is possible to build up strings using the push and push_str methods on a mutable String, or using its + operator. However, it is...
The current output when debug-printing a Match (especially from a large haystack) is pretty terrifying as it shows the entire source string, and unless one's taken a gander at the...
Opening this to ask whether that's been considered (a search didn't turn up anything and discussions are not enabled): [ParserConfig](https://docs.rs/xml-rs/latest/xml/struct.ParserConfig.html) allows some fairly extensive customisation to the emittable `XmlEvent` variants,...
It mentioned an `XmlEvent::Error` which does not exist (anymore?) also updated some of the wording while at it.