I hereby claim:
- I am ciscoheat on github.
- I am ciscoheat (https://keybase.io/ciscoheat) on keybase.
- I have a public key whose fingerprint is E709 AD73 FCD9 B916 60D9 1D3B E9B6 A3C2 24D2 5822
To claim this, I am signing this object:
| <Canvas xmlns="..." xmlns:x="..." ...> | |
| <Canvas.Resources> | |
| <Storyboard | |
| x:Name="mouseEnterAnimation"> | |
| <ColorAnimation | |
| Duration="00:00:0.2" | |
| To="Purple" | |
| Storyboard.TargetProperty= | |
| "(Shape.Fill).(GradientBrush. | |
| GradientStops)[1]. |
| function r(f){/(un|ing)/.test(document.readyState)?setTimeout(r,9,f):f()} |
| class UUID { | |
| public static function uuid() { | |
| // Based on https://gist.github.com/LeverOne/1308368 | |
| var uid = new StringBuf(), a = 8; | |
| uid.add(StringTools.hex(Std.int(Date.now().getTime()), 8)); | |
| while((a++) < 36) { | |
| uid.add(a*51 & 52 != 0 | |
| ? StringTools.hex(a^15 != 0 ? 8^Std.int(Math.random() * (a^20 != 0 ? 16 : 4)) : 4) | |
| : "-" | |
| ); |
| // Code for this article: | |
| // https://github.com/ciscoheat/mithril-hx/wiki/Typesafe-web-routes-with-Haxe-in-less-than-100-lines | |
| #if macro | |
| import haxe.Serializer; | |
| import haxe.Unserializer; | |
| import haxe.macro.Context; | |
| import haxe.macro.Expr; | |
| import sys.io.File; |
| @echo off | |
| setlocal enabledelayedexpansion | |
| if [%1]==[] goto usage | |
| if [%1]==[init] goto init | |
| if [%1]==[watch] goto watch | |
| for %%i in ("%1") do ( | |
| set filepath=%%~di%%~pi | |
| set filename=%%~ni |
I hereby claim:
To claim this, I am signing this object:
| #if nodejs | |
| import haxe.Timer; | |
| import js.Node; | |
| import js.node.Path; | |
| import js.npm.Winston; | |
| import js.npm.winston.transports.Console; | |
| import js.npm.winston.transports.File; | |
| #if !no_papertrail | |
| import js.npm.winston.transports.Papertrail; | |
| #end |
| ### Keybase proof | |
| I hereby claim: | |
| * I am ciscoheat on github. | |
| * I am ciscoheat (https://keybase.io/ciscoheat) on keybase. | |
| * I have a public key whose fingerprint is A969 E858 3A9F B743 FE09 8EC0 9E88 8154 F58D CFB3 | |
| To claim this, I am signing this object: |
| import type { Problem } from './Problem' | |
| /** | |
| * Javascript error class based on RFC7807. | |
| * @link https://www.rfc-editor.org/rfc/rfc7807 | |
| */ | |
| export class APIError extends Error implements Problem { | |
| type: string; | |
| title?: string; | |
| status?: number; |
| @echo off | |
| IF "%1" == "" ( | |
| echo Usage: rimraf ^[^/f^|-f^|--force^] dir | |
| EXIT /B 1 | |
| ) | |
| IF "%1" == "/f" GOTO rimraf | |
| IF "%1" == "/F" GOTO rimraf | |
| IF "%1" == "-f" GOTO rimraf |