Skip to content

Instantly share code, notes, and snippets.

View jamie-tillman's full-sized avatar

jamie-tillman

View GitHub Profile
@jamie-tillman
jamie-tillman / scenario-boxstarter.ps1
Last active November 30, 2023 19:03
Boxstarter script to install Scenario private powershell module - requires internal usercode and password
Update-ExecutionPolicy Unrestricted
#Boxstarter.WinConfig\Install-WindowsUpdate -getUpdatesFromMS -acceptEula
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco feature enable -n=allowGlobalConfirmation
choco feature enable -n=useRememberedArgumentsForUpgrades
choco install boxstarter -y
choco install dotnet-6.0-sdk -y
@jamie-tillman
jamie-tillman / Who-The-A-Method-for-Hiring.md
Created September 26, 2022 19:53 — forked from laugri/Who-The-A-Method-for-Hiring.md
Who: The a Method for Hiring - Geoff Smart and Randy Street - Summary

This is my summary of "The A method for recruiting" by Geoff Smart and Randy Street.

"I feel great ! I have a fantastic team working with me now. [...] It's all because I have a team of A players."

The "A" method for recruiting

  • Make a scorecard for the position
  • Source candidates
  • Select a candidate
  • Sell the job to them
graph TD
AF[Affiliate]-->|Provides special link|A[Customer]
A -->|Visits Affiliate Order Form| B(Order Form)
B --> |Form completed|Z(Master Services Agreement)
Z --> |MSA Electronically Signed|C{Save / Push Data}
C -->|Customer/Subs created| D[Stripe]
C -->|PDF/Data records saved| E[Civi]
C -->|Email sent with attachments| A
@jamie-tillman
jamie-tillman / Electronic-Non-Vocal.xml
Created April 13, 2022 16:05
A pseudo-playlist of non-vocal electronic music tracks and artists I've collected over the years
<Playlist>
<Entry>
<Artist>Spice Barons</Artist>
<Album>Future Perfect State</Album>
<Track>Future Perfect State</Track>
</Entry>
<Entry>
<Artist>Spice Barons</Artist>
<Album>Future Perfect State</Album>
<Track>Bioluminous</Track>
@jamie-tillman
jamie-tillman / Program.cs
Created July 19, 2021 12:06
Example of using Castle Windsor and Castle.Windsor.MsDependencyInjection with DotNetCore HostBuilder
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Castle.MicroKernel.Registration;
using Castle.Windsor;
using Castle.Windsor.MsDependencyInjection;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;