Skip to content

Instantly share code, notes, and snippets.

@allebb
allebb / Jenkinsfile
Created February 15, 2020 12:20
A Jenkinsfile demonstating a build pipeline in Jenkins using Docker Agents for multiple PHP version testing.
pipeline {
agent any
stages {
stage('Checkout') {
steps {
git(url: 'https://github.com/allebb/jenkdock-demo.git', branch: 'master')
}
}
stage('Test') {
@allebb
allebb / test_flighttrack_download.geojson
Created August 28, 2022 14:39
Test example of FsHub Downloaded Flight Track
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@allebb
allebb / sdt_install_ubuntu.sh
Last active September 24, 2022 00:45
Install SDT on Ubuntu
#/usr/bin/env bash
sudo apt-get update && sudo apt-get install -y dotnet-runtime-6.0 wget
sudo mkdir -p /opt/sdt
sudo wget -O /opt/sdt/sdt https://blog.bobbyallen.me/sdt_v107
sudo rm -f /usr/bin/sdt
sudo chmod +x /opt/sdt/sdt