I hereby claim:
- I am AdamMaras on github.
- I am adammaras (https://keybase.io/adammaras) on keybase.
- I have a public key whose fingerprint is B45E 17ED BC89 1E07 FEB6 F5D5 2095 14FB 59B3 58C7
To claim this, I am signing this object:
| import { render } from "vdom-generator"; | |
| function* Clock(props, update) { | |
| let clockText = new Date().toTimeString(); | |
| const timer = setInterval(() => { | |
| clockText = new Date().toTimeString(); | |
| update.onAnimationFrame(); | |
| }, props.interval); |
| Register-ScheduledTask ` | |
| -Action (New-ScheduledTaskAction ` | |
| -Execute ((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe")."(default)") ` | |
| -Argument 'https://github.com/trending') ` | |
| -Trigger (New-ScheduledTaskTrigger -Weekly -DaysOfWeek Monday -At 3am) ` | |
| -TaskName "GitHub Trending" ` | |
| -Description "Weekly check of GitHub trending repos." |
I hereby claim:
To claim this, I am signing this object:
| export default function createInjectMiddleware(map) { | |
| return store => next => action => { | |
| if (typeof action !== "object" | |
| || typeof action.payload !== "function" | |
| || action.meta == null | |
| || action.meta.inject == null) { | |
| return next(action); | |
| } | |
| const defaultInjections = { |
| using System; | |
| using System.Collections.Concurrent; | |
| using System.IO; | |
| using System.Reflection; | |
| public static class AssemblyExtensions | |
| { | |
| private const int PortableExecutableHeaderLocationOffset = 60; | |
| private const int LinkerTimestampLocationOffset = 8; | |