- Nookchamps Half Marathon
- http://www.nookachamps.com/
- Great, low key run. I run this every year.
- Labor Day Half
- http://labordayrun.com/
- Good, flat course.
- Well organized and supported.
- BMO Vancouver Marathon / Half Marathon
- http://bmovanmarathon.ca/runvan-half-marathon/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Chocolatey | |
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')) | |
# Install Git | |
choco install git -y | |
choco install tortoisegit -y | |
if (($env:Path.Split(';') -contains "C:\Program Files\Git\bin") -eq $false) { | |
$env:Path += ";C:\Program Files\Git\bin"; | |
[System.Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::Machine ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Windows.Forms; | |
using environment_monitor.Properties; | |
namespace environment_monitor | |
{ | |
static class Program | |
{ | |
/// <summary> | |
/// The main entry point for the application. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using NUnit.Framework; | |
namespace PathTests | |
{ | |
[TestFixture] | |
public class PathVariableTests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$projectName = "<project name>" | |
Get-Package -projectName $projectName | ForEach-Object {UnInstall-Package -Id $_.Id -projectName $projectName -Force;Install-Package -Id $_.Id -Version $_.Version -IgnoreDependencies -projectName $projectName} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var userName = "<user name>"; | |
var password = "<password>"; | |
var organization = "<user name or Organization Name"; | |
var filter = "<what I'm looking for>"; | |
Console.WriteLine("Querying Github..."); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Test] | |
[TestCase("America/Los_Angeles")] | |
[TestCase("Australia/Sydney")] | |
public void ShowLocalTimes(string timezone) | |
{ | |
var someDate = DateTime.Now.ToUniversalTime(); | |
var instant = Instant.FromDateTimeUtc(someDate); | |
var timeZone = DateTimeZoneProviders.Tzdb.GetZoneOrNull(timezone); | |
var localTime = instant.InZone(timeZone); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using NodaTime.TimeZones; | |
using NUnit.Framework; | |
namespace what_time_is_it | |
{ |