Skip to content

Instantly share code, notes, and snippets.

@syyyr
syyyr / script.js
Created March 5, 2025 13:14
tampermonkey: GitHub PR: expand CI check list
// ==UserScript==
// @name GitHub PR: expand CI check list
// @namespace http://tampermonkey.net/
// @version 2025-03-05
// @description Remove scrolling GitHub Action checks on PRs
// @author Václav Kubernát
// @match https://github.com/*/*/pull/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant none
// ==/UserScript==
@syyyr
syyyr / gdb-ctest.bash
Created April 29, 2021 13:48
gdb-ctest.bash
#!/bin/bash
set -eu
if [[ $# != 1 || "$1" = "--help" || "$1" = "-h" ]]; then
echo "$0 - runs a ctest inside gdb, including fixtures and environment"
echo "Usage: $0 <test_name>"
echo
echo "Options:"
echo " <test_name> Test to be ran. The same for 'ctest -R <test_name>'"
echo