Skip to content

Instantly share code, notes, and snippets.

View rubenchristoffer's full-sized avatar
:shipit:

Ruben Christoffer Hegland-Antonsen rubenchristoffer

:shipit:
  • Tietoevry
  • Norway
View GitHub Profile

Target audience

.NET Core developers using Travis CI builds who want code coverage automatically generated and uploaded to Coveralls.

Generating code coverage

Add the coverlet.msbuild NuGet package to your test project:

dotnet add package coverlet.msbuild
@mdPlusPlus
mdPlusPlus / compile_newest_stable_kernel_with_acso_patch.sh
Last active April 10, 2025 20:00
Download, patch, compile and install the newest stable Linux kernel with the ACS override patch (Ubuntu / Debian)
#!/bin/bash
function install_dependencies() {
echo "Installing dependencies..."
sudo apt -qq update
sudo apt -qq install -y curl git wget
# sudo apt -qq install -y bison flex kernel-package libelf-dev libssl-dev
sudo apt -qq install -y bison flex libelf-dev libssl-dev
}