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:
| --- | |
| applyTo: "**/*.ts" | |
| --- | |
| # Instructions for Writing Code with the DCI Paradigm | |
| > **DCI: Data, Context, Interaction** | |
| > DCI separates _what the system is_ (data) from _what the system does_ (behavior), bridging human mental models and code. | |
| > Follow these instructions when generating code in the DCI style. |
| export { load } from 'sveltekit-flash-message/server'; |
| import { RateLimiter } from 'sveltekit-rate-limiter/server'; | |
| import { superValidate } from '$lib/server'; | |
| import { setFlash } from 'sveltekit-flash-message/server'; | |
| import { fail } from '@sveltejs/kit'; | |
| import type { Actions } from '@sveltejs/kit'; | |
| import { schema as contactSchema } from './schema.js'; | |
| const limiter = new RateLimiter({ | |
| rates: { |
| import type { Actions, PageServerLoad } from './$types'; | |
| import { superValidate } from 'sveltekit-superforms/server'; | |
| import { schema } from './schemas'; | |
| export const load = (async () => { | |
| const form = await superValidate(schema); | |
| return { form }; | |
| }) satisfies PageServerLoad; | |
| export const actions = { |
| @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 |
| 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; |
| ### 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: |
| #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 |
I hereby claim:
To claim this, I am signing this object:
| @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 |