Skip to content

Instantly share code, notes, and snippets.

View premun's full-sized avatar

Přemek Vysoký premun

  • Microsoft
  • Prague, Czech Republic
  • X @premun_
View GitHub Profile
@premun
premun / VMR experiments.md
Last active September 20, 2023 19:59
`dotnet/dotnet` experiments
@premun
premun / xharness-script.sh
Last active November 22, 2021 15:46
Quick XHarness debug
#!/bin/bash
set -ex
mkdir xharness
cd xharness
curl -o app.zip https://helixde8s23ayyeko0k025g8.blob.core.windows.net/helix-job-887183ce-9e51-42c7-8f91-7115351158c468dcea120bb455ba3/xharness-payload-system.numerics.vectors.tests.zip
tar -xzvf app.zip
rm app.zip *.sh
@premun
premun / Install-XHarness.ps1
Last active November 16, 2021 16:21
Install-XHarness.ps1
### This script is a quick way to install XHarness in a local folder.
### .NET SDK is installed too, everything in a local folder which can be deleted afterwards.
###
### Use the following command to run this script from anywhere:
### iex ((New-Object System.Net.WebClient).DownloadString('https://aka.ms/get-xharness-ps1'))
param (
[Parameter(Mandatory = $false)]
[string]
$Version = "*"
@premun
premun / Bash bookmarks
Last active July 9, 2021 14:26
Folder bookmarks in bash
# This is a compilation of scripts that will allow you to manage directory bookmarks
#
# I recommend setting following macros:
alias ba='[where you put these]/set.sh'
alias bl='[where you put these]/get.sh'
alias br='[where you put these]/delete.sh'
g() {
cd "$(bl $1)"