This file contains hidden or 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
| # Turn on Developer Mode | |
| # Open Settings -> Update and Security -> For developers | |
| # Don't reboot yet | |
| # Run in powershell administrator: | |
| Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux | |
| # accept reboot | |
| ## Install Ubuntu | |
| # run in powershell administrator: |
This file contains hidden or 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
| Downtown/West Portland: | |
| Seres Restaurant and Bar (Chinese) | |
| Andina | |
| The Original Dinerant (Breakfast) | |
| Masu Sushi | |
| Bamboo Sushi SW | |
| Thai Peacock Restaurant | |
| Pine State Biscuits | |
| Urban Farmer Portland | |
| Portland City Grill |
This file contains hidden or 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 Hangfire.Common; | |
| using Hangfire.States; | |
| using Hangfire.Storage; | |
| namespace Hangfire.Pro | |
| { | |
| /// <summary> |
This file contains hidden or 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
| function dateReviver(key, value) { | |
| if (typeof value === 'string') { | |
| var a = /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.\d*)?)Z$/.exec(value); | |
| if (a) { | |
| return new Date(Date.UTC(+a[1], +a[2] - 1, +a[3], +a[4], +a[5], +a[6])); | |
| } | |
| } | |
| return value; | |
| }; |