I hereby claim:
- I am saiwolf on github.
- I am saiwolf (https://keybase.io/saiwolf) on keybase.
- I have a public key ASAQxHWxUrGrEihIqK0IgtzT8SmonB5nhwd6wVGV8ZIfRQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| using Microsoft.EntityFrameworkCore.Internal; | |
| using Microsoft.EntityFrameworkCore.Query; | |
| using Microsoft.EntityFrameworkCore.Query.Internal; | |
| using Microsoft.EntityFrameworkCore.Storage; | |
| using System; | |
| using System.Linq; | |
| using System.Reflection; | |
| namespace Some.Namespace.Here | |
| { |
| ### PowerShell template profile | |
| ### Modified By: Robert Cato <saiwolf@swmnu.net> | |
| ### Forked From, and All Credit Due: | |
| ### PowerShell template profile | |
| ### Version 1.03 - Tim Sneath <tim@sneath.org> | |
| ### From https://gist.github.com/timsneath/19867b12eee7fd5af2ba | |
| ### | |
| ### This file should be stored in $PROFILE.CurrentUserAllHosts | |
| ### If $PROFILE.CurrentUserAllHosts doesn't exist, you can make one with the following: |
| interface ITheme { | |
| mode: 'dark' | 'light' | 'hiContrast'; | |
| }; | |
| const defaultTheme: ITheme = { | |
| mode: 'light', | |
| }; | |
| if (!localStorage.getItem('theme')) { | |
| const themeJSON = JSON.stringify(defaultTheme); |