Skip to content

Instantly share code, notes, and snippets.

View dermoumi's full-sized avatar
📎
bashing the keyboard

Dermoumi S. dermoumi

📎
bashing the keyboard
View GitHub Profile
@dermoumi
dermoumi / word-excel.xml
Last active August 29, 2021 19:16
Office Pro Plus 2016 install Word and Excel only
<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"/>
# 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)
@dermoumi
dermoumi / nationalities_french.txt
Created October 16, 2017 09:54
Liste de nationalités (Français) en format texte
Afghane
Albanaise
Algérienne
Allemande
Américaine
Andorrane
Angolaise
Antiguaise
Argentine
Arménienne
#!/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