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:
| 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; |
| // 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); | |
| })(); |
I hereby claim:
To claim this, I am signing this object:
| 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' | |
| } | |
| } |
| Ubuntu 14.04 | |
| Drupal 7 | |
| CiviCRM 4.7 |
| <?php | |
| namespace App\Http\Controllers; | |
| use Illuminate\Http\Request; | |
| use App\Http\Requests; | |
| use App\User; | |
| use App\Email; | |
| use App\Element; |