I hereby claim:
- I am terminalpixel on github.
- I am terminalpixel (https://keybase.io/terminalpixel) on keybase.
- I have a public key ASBtunpo3akFcxP9-UMdCX8fs5pkoJpbToQQMpSh5xFQ3Ao
To claim this, I am signing this object:
| # Description: Boxstarter Script | |
| # Author: grant.codes | |
| # Inspired by https://github.com/microsoft/windows-dev-box-setup-scripts | |
| # Install at http://boxstarter.org/package/url?https://gist.githubusercontent.com/grantcodes/a31ee0b151da1f6304a756260a95bb45/raw/windows-setup.ps1 | |
| #---- TEMPORARY --- | |
| Disable-UAC | |
| #--- Fonts --- | |
| choco install cascadiacode -y |
| { | |
| "log": { | |
| "version": "1.2", | |
| "creator": { | |
| "name": "Insomnia REST Client", | |
| "version": "insomnia.desktop.app:v7.1.1" | |
| }, | |
| "entries": [ | |
| { | |
| "startedDateTime": "2020-03-18T11:07:31.832Z", |
| // Basic in-reply-to block mvp | |
| /** | |
| * BLOCK: indieweb-blocks | |
| * | |
| * Registering a basic block with Gutenberg. | |
| * Simple block, renders and saves the same content without any interactivity. | |
| */ | |
| // Import CSS. |
| const express = require('express'); | |
| const cors = require('cors'); | |
| const bodyParser = require('body-parser'); | |
| const request = require('request'); | |
| const jwt = require('jsonwebtoken'); | |
| const qs = require('querystring'); | |
| const config = require('../config'); | |
| const router = express.Router({ | |
| caseSensitive: true, |
| export default function (htmlString, url) { | |
| let rels = {}; | |
| let baseUrl = url; | |
| const doc = new DOMParser().parseFromString(htmlString, 'text/html'); | |
| const baseEl = doc.querySelector('base[href]'); | |
| const relEls = doc.querySelectorAll('[rel][href]'); | |
| if (baseEl) { | |
| const value = baseEl.getAttribute('href'); |
| tap 'caskroom/cask' | |
| tap 'homebrew/bundle' | |
| tap 'homebrew/versions' | |
| tap 'mopidy/mopidy' | |
| tap 'neovim/neovim' | |
| brew 'calc' | |
| brew 'fish' | |
| brew 'node' | |
| brew 'keybase' | |
| brew 'midnight-commander' |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Get admins for vendor | |
| * @param int $vendor_id ID of vendor | |
| * @return arr Array of user objects | |
| */ | |
| function get_vendor_admins( $vendor_id = 0 ) { | |
| global $wc_product_vendors; | |
| $admins = array(); | |
| if( $vendor_id > 0 ) { | |
| $vendor_info = get_option( $wc_product_vendors->token . '_' . $vendor_id ); |
| <TaskerData sr="" dvi="1" tv="4.7u3m"> | |
| <Task sr="task7"> | |
| <cdate>1442417787447</cdate> | |
| <edate>1442422772371</edate> | |
| <id>7</id> | |
| <nme>Wakeup Alarm</nme> | |
| <pri>100</pri> | |
| <Action sr="act0" ve="7"> | |
| <code>547</code> | |
| <Str sr="arg0" ve="3">%playlist_length</Str> |
| #! /bin/bash | |
| # Add PPAs { | |
| # | |
| # chrome | |
| # | |
| wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - | |
| sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' |