I hereby claim:
- I am htunnicliff on github.
- I am htunnicliff (https://keybase.io/htunnicliff) on keybase.
- I have a public key ASBltx__9o-mTXO9LnSyk24F3Dtx3XkZa3IBp6oHDLAqXgo
To claim this, I am signing this object:
| <?php | |
| namespace App\Http\Controllers; | |
| use Illuminate\Http\Request; | |
| use App\Http\Requests; | |
| use App\User; | |
| use App\Email; | |
| use App\Element; |
| Ubuntu 14.04 | |
| Drupal 7 | |
| CiviCRM 4.7 |
| async function weather(key, ...args) { | |
| const url = `https://api.darksky.net/forecast/${key}/` + args.join(',') | |
| const config = { | |
| credentials: "same-origin", | |
| mode: 'no-cors', | |
| method: "GET", | |
| headers: { | |
| 'Accept': 'application/json' | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| // Embed this as a bookmarklet using `javascript: ...` | |
| (function () { | |
| var script = document.createElement('script'); | |
| script.src = "https://unpkg.com/[email protected]/dist/turbolinks.js"; | |
| document.head.appendChild(script); | |
| })(); |
| import Knex, { MySqlConnectionConfig } from "knex"; | |
| import * as Snowflake from "snowflake-sdk"; | |
| import { promisify } from "util"; | |
| const Dialect = require("knex/lib/dialects/mysql/index.js"); | |
| Dialect.prototype._driver = () => Snowflake; | |
| Dialect.prototype.wrapIdentifierImpl = (value: string) => value; | |
| Dialect.prototype.validateConnection = () => true; |
| import AppProviders from "@/components/AppProviders"; | |
| import AppShell from "@/components/AppShell"; | |
| import { withAuth } from "@/lib/auth0/with-auth"; | |
| import { AppProps } from "next/app"; | |
| import { ReactNode } from "react"; | |
| interface MyAppProps extends AppProps { | |
| err: Error; | |
| Component: AppProps["Component"] & { | |
| displayAppShell?: boolean; |
| #!/usr/bin/env node | |
| import NextEnv from "@next/env"; | |
| import axios from "axios"; | |
| import chalk from "chalk"; | |
| import dtsgenerator from "dtsgenerator"; | |
| import fs from "node:fs/promises"; | |
| import path from "node:path"; | |
| import { oraPromise } from "ora"; | |
| import prettier from "prettier"; |
| type HttpStatus = { | |
| // 2xx | |
| 200: 'Ok'; | |
| 201: 'Created'; | |
| 202: 'Accepted'; | |
| 203: 'Non-Authoritative Information'; | |
| 204: 'No Content'; | |
| 205: 'Reset Content'; | |
| // 4xx | |
| 400: 'Bad Request'; |