This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Configuration> | |
<Add OfficeClientEdition="64" Channel="PerpetualVL2016"> | |
<Product ID="ProPlusRetail"> | |
<Language ID="en-us"/> | |
<ExcludeApp ID="Skype"/> | |
<ExcludeApp ID="Access"/> | |
<ExcludeApp ID="Groove"/> | |
<ExcludeApp ID="Lync"/> | |
<ExcludeApp ID="OneDrive"/> | |
<ExcludeApp ID="OneNote"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Defined in /home/sdrm/.config/fish/functions/covrun.fish @ line 2 | |
function covrun | |
# Run coverage run for rust project using grcov | |
set -lx CARGO_INCREMENTAL 0 | |
set -lx RUSTFLAGS "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort" | |
set -lx RUSTDOCFLAGS "-Cpanic=abort" | |
# rm -rf /tmp/covrun-* | |
set -l tempdir (mktemp -d -t covrun-XXXXXXXXXXXX) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Afghane | |
Albanaise | |
Algérienne | |
Allemande | |
Américaine | |
Andorrane | |
Angolaise | |
Antiguaise | |
Argentine | |
Arménienne |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Small utility to wait for port to open. | |
# | |
# usage: | |
# ./port-wait.sh hostname port [timeout=10] | |
# | |
# ex: | |
# ./port-wait.sh 127.0.0.1 3000 |