Skip to content

Instantly share code, notes, and snippets.

View cwoolum's full-sized avatar

Chris Woolum cwoolum

View GitHub Profile
@cwoolum
cwoolum / commonbuild.yml
Last active December 3, 2018 19:44
YAML builds in Azure Pipelines
parameters:
services: []
jobs:
- job: Build
pool:
name: Hosted Ubuntu 1604
steps:
- task: Docker@1
@cwoolum
cwoolum / carramrod.bas
Created April 20, 2018 17:44
Frogger in BASIC
1000 REM Frogger
1020 REM ------------------------
1030 CLS
1040 PRINT "=== Frogger ==="
1050 PRINT "UP: W"
1070 PRINT "LEFT: A"
1080 PRINT "RIGHT: S"
1081 LET I = 960
1082 LET X = 24
@cwoolum
cwoolum / BootstrapAgent.ps1
Last active October 20, 2017 17:56
Using this you can create a brand new build agent for VSTS
Write-Output "Running config with subdomain $Env:VSTS_SUBDOMAIN and token $Env:VSTS_PATTOKEN"
./config.cmd --unattended --url "https://$Env:VSTS_SUBDOMAIN.visualstudio.com" --auth PAT --token $Env:VSTS_PATTOKEN --pool default
./run.cmd