Evan Cameron

Results 20 issues of Evan Cameron

I don't think the font plays very well with ligatures, this is Fira Code with Operator Mono and ligatures enabled in vscode ![Screenshot from 2020-05-11 14-51-55](https://user-images.githubusercontent.com/1128302/81600220-424e6480-9397-11ea-9d99-b36fdb1914ec.png)

help wanted

So looking at the output of `yay` and `aura -O`, they produce different results. `yay` also delineates between "missing" and "orphaned". Here's the output of `aura -O` on my machine:...

I have defined a `NOT NULL` column: ``` CREATE TABLE IF NOT EXISTS foo( ip INTEGER NOT NULL, client_id BLOB, PRIMARY KEY(ip) ); ``` After the update to 0.6.0, wherever...

db:sqlite

## Feature Request ### Crates none ### Motivation Doing anything dynamic can get pretty hairy: ```rust let builder = SubscriberBuilder::builder(); if something { builder = builder.json(); } else { builder...

kind/feature
crate/subscriber
meta/breaking

This hasn't worked in a while for me, I'm on ArchLinux: ``` ~ 49s ❯ sudo nordnm sync -a us normal udp _ _ _ _ _ ___ ___ |...

You can't have a repeated option with a default it looks like: ``` #[derive(FromArgs, PartialEq, Debug, Clone)] /// Foo #[argh(description = "foo")] pub struct TestArgs { /// test repeated with...

the example code has this: ``` // This is a bit of a hack that relies on knowing the binary representation of // strings... "abd" works, but "abz" doesn't... let...

using rustup installed racer with `cargo install racer` `apm install language-rust linter-rust racer` I added my rust src path and the path to cargo in the racer settings. path to...

``` ❯ flame 0.0.0.0 -p 9953 -Q 10 flaming target "0.0.0.0" (0.0.0.0) on port 9953 with 10 concurrent generators, each sending 10 queries every 1ms on protocol udp ``` "10...

bug
good first issue

in [getting started- hardware](https://docs.rust-embedded.org/book/start/hardware.html) the book/code says: ``` // exit QEMU // NOTE do not run this on hardware; it can corrupt OpenOCD state // debug::exit(debug::EXIT_SUCCESS); ``` then later when...