Skip to content

Instantly share code, notes, and snippets.

View awright18's full-sized avatar

Adam Wright awright18

View GitHub Profile
@awright18
awright18 / resignation.txt
Created June 28, 2021 16:17 — forked from QuinnyPig/resignation.txt
Templated resignation letter
Dear BOSS,
Please accept this letter as formal notification that I am resigning from my position as JOB TITLE with COMPANY. My last day will be DATE OF LAST DAY.
Thank you so much for the opportunity to work in this position for the past DURATION. I’ve greatly enjoyed and appreciated the opportunities I’ve had to WTF DID YOU DO, and I’ve learned many things, all of which I will take with me throughout my career.
During my last two weeks, I’ll do everything possible to wrap up my duties and train other team members. Please let me know if there’s anything else I can do to aid during the transition.
I wish COMPANY continued success, and I hope to stay in touch in the future.
Sincerely,
@awright18
awright18 / dotnetlayout.md
Last active July 18, 2017 18:34 — forked from davidfowl/dotnetlayout.md
.NET project structure
$/
  .vscode/
  .fake/
  .nuget/
    nuget.exe
    nuget.config
  .paket/
    paket.bootstrapper.exe
    paket.targets
@awright18
awright18 / ProjectChooser.cs
Created February 4, 2017 17:29 — forked from uluhonolulu/ProjectChooser.cs
Custom VS Project Template Wizard
static class ProjectChooser
{
private static Project _webProject;
public static void FixOutputPath(this Project project) {
var webProject = project.DTE.Solution.FindWebProject();
SetOutputPathTo(project, webProject);
}
public static void AddMvcReference(this Project project) {