Marco A L Barbosa
Marco A L Barbosa
It take too long to compile cargo. An alternative is to use [cargo_metadata](https://crates.io/crates/cargo_metadata), which offers an api over the `cargo metadata` command.
**Description** Generate a large large file: ``` for i in $(seq 1 100000); do echo "int i$i;" >> a.c; done ``` Run cnip: ``` ./cnip a.c ``` Get the error:...
Consider adding support to use cargo watch in a [workspace](http://doc.crates.io/manifest.html#the-workspace-section) project. You can see with `cargo +nightly build --help` the kind of options for workspace projects.
Using Windows 10 and pressing AltGr + q inserts / in any application, except in DrRacket where it triggers undo. On Linux AltGr + q works fine on DrRacket and...
This can be observed when generating a pdf for `tests/xenia/paper.tex`. Using `tectonic` from master compiled with `cargo install --path .` and `xelatex` from Debian 9 in a i3-2330M 2.20GHz machine,...
Would be great to have this (copied from https://github.com/docopt/docopt/issues/294) ``` Naval Fate. Usage: naval_fate.py ship new ... naval_fate.py ship move [ship_options] naval_fate.py ship shoot naval_fate.py mine (set|remove) [mine_options] naval_fate.py [options]...
I'm interested in using lldap to authenticate linux users using pam, but it seams that lldap does not support pam, is this the case? If so, would someone provide some...
This allows using skulls on NixOs and others unix system that do not `bash` and `python` on `/bin` or `/usr/bin`.
I installed the full UEFI firmware (version 4.16) and it is working fine on my chromebook, but I have a issue with the keyboard. If I configure X11 to use...
Let's consider this example ``` julia julia> g = simple_graph(2, is_directed=false) Undirected Graph (2 vertices, 0 edges) julia> add_edge!(g, 1, 2) edge [1]: 1 -- 2 julia> out_edges(1, g)[1] ==...