I hereby claim:
- I am ryannosaurusrex on github.
- I am ryannosaurusrex (https://keybase.io/ryannosaurusrex) on keybase.
- I have a public key ASCmgpW0YP-qQLDMTUAGT9QQpd7SwrY_2EwpJyCpFz44ewo
To claim this, I am signing this object:
| #addin "nuget:?package=Cake.Watch" // Put this at the top to pull in the Cake.Watch package for use. | |
| // Add this task in your build file somewhere. You can update which target to run, the file pattern to watch, and even the toast notification. | |
| Task("Watch") | |
| .Does(() => { | |
| var settings = new WatchSettings { | |
| Recursive = true, | |
| Path = "./", | |
| Pattern = "*.*" | |
| }; |
| Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
| Enable-RemoteDesktop | |
| cinst fiddler4 | |
| cisnt nodejs.install | |
| cinst git-credential-winstore | |
| cinst console-devel | |
| cinst filezilla | |
| cinst poshgit | |
| cinst skype |
| function showNotification(title, body) { | |
| var notification = new Notification(title, { body }); | |
| notification.onclick = e => { | |
| alert("Clicked!"); | |
| }; | |
| } | |
| Notification.requestPermission(permission => { | |
| console.log(permission); | |
| if(permission==="granted") { |
I hereby claim:
To claim this, I am signing this object:
| SELECT TOP (1000) | |
| p.[Id] as PersonId | |
| ,COALESCE( [FirstName] , '' ) as FirstName | |
| ,COALESCE([NickName], '') AS NickName | |
| ,COALESCE([MiddleName], '') AS MiddleName | |
| ,COALESCE([LastName], '') AS LastName | |
| ,[BirthDate] as Birthdate | |
| ,[AnniversaryDate] as Anniversary | |
| --,MedicalNotes | |
| ,g.id as HouseholdID |
| using namespace System.Management.Automation | |
| using namespace System.Management.Automation.Language | |
| if ($host.Name -eq 'ConsoleHost') | |
| { | |
| Import-Module PSReadLine | |
| } | |
| #Import-Module PSColors | |
| #Import-Module posh-git | |
| Import-Module -Name Terminal-Icons |