type: PIN
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
type: PIN
Consumer key: IQKbtAYlXLripLGPWd0HUA
| class HTMLInclude extends HTMLElement { | |
| static observedAttributes = ['href']; | |
| async attributeChangedCallback(name, value) { | |
| if (name === 'href') { | |
| this.innerHTML = await (await fetch(value)).text(); | |
| } | |
| } | |
| } | |
| customElements.define('html-include', HTMLInclude); |
| 'use strict'; | |
| // from https://github.com/jokeyrhyme/wow-healer-bootcamp/blob/master/utils/combineReducers.js | |
| /** | |
| @param {Object} reducers | |
| @returns {Function} | |
| */ | |
| export default function (keyedReducers = {}, ...reducers) { | |
| return function (state = new Map(), action) { |
git fsck --unreachable | grep commit | cut -d ' ' -f3 | xargs git log --merges --no-walk --grep=WIP
git stash apply <stash_commit_hash>
| :focus:not(:focus-visible) { outline: none } |
| <?php | |
| /** | |
| * Format seconds like a zero padded hh:mm:ss string | |
| * Usage: | |
| * calcDuration(3705); // "1:01:45" | |
| * | |
| * @param integer $seconds | |
| * @return string | |
| */ | |
| function calcDuration($seconds) |
| license: gpl-3.0 |
| #!/usr/bin/env node | |
| /* | |
| PO parser from http://jsgettext.berlios.de/lib/Gettext.js | |
| adapted for Node.js and modified to be more like po2json.pl | |
| - Zach Carter <zcarter@cse.usf.edu> | |
| */ | |
| /* | |
| Pure Javascript implementation of Uniforum message translation. |
| /** | |
| * Helper to get a color value from the color-map | |
| * Usage: | |
| * background-color: palette(some-special-blue); | |
| * | |
| * @param $key The color name (key from the map) | |
| */ | |
| @function palette($key) { | |
| @if map-has-key($ci-palette, $key) { | |
| @return map-get($ci-palette, $key); |
| { | |
| "parser": "babel-eslint", | |
| "extends": [ | |
| "eslint:recommended", | |
| "plugin:react/recommended", | |
| "eslint-config-prettier" | |
| ], | |
| "parserOptions": { | |
| "ecmaVersion": 2018, | |
| "sourceType": "module", |