I hereby claim:
- I am lookfirst on github.
- I am latchkey (https://keybase.io/latchkey) on keybase.
- I have a public key ASAir9hZcjq-KxG3ogHhrxBAONZ4M2FXNDnoogKeRpBA3wo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| export SSHPASS="1" | |
| sshpass -e ssh -o "UserKnownHostsFile=/dev/null" -o StrictHostKeychecking=no -o LogLevel=ERROR user@$1 \ | |
| "echo $SSHPASS | sudo -S bash -c 'echo \"user ALL=(ALL) NOPASSWD:ALL\" > /etc/sudoers.d/00-user_nopasswd' 2> /dev/null" |
| import React, {useContext, createContext} from "react"; | |
| import {Schema} from "yup"; | |
| export const SchemaContext = createContext<Schema<any> | undefined>(undefined); | |
| interface SchemaProviderProps<T> { | |
| value: Schema<T>, | |
| children: React.ReactNode | React.ReactNode[], | |
| } |
| /** | |
| * Crypto pricing for Google Sheets. Caches values for 10 minutes. | |
| * | |
| * Tools -> Script editor, paste this in. | |
| * Create and populate the API key below. | |
| * | |
| * https://www.cryptocompare.com/coins/guides/how-to-use-our-api/ | |
| */ | |
| var CC_API_KEY=""; |
| var names = []; // add your names to the array however you want | |
| var password = '123123'; | |
| var psselector = "input[name='ps']"; | |
| var ps = $(psselector).val(); | |
| console.log(ps); | |
| var posts = []; | |
| names.forEach((name) => { | |
| var username = name; |
| Verifying that "jonstevens.id" is my Blockstack ID. https://onename.com/jonstevens |
I hereby claim:
To claim this, I am signing this object:
Save $25 for your Cloud Computing Solution with Digital Ocean.
| package com.remoteapi.bug; | |
| import com.google.appengine.api.datastore.*; | |
| import com.google.appengine.api.taskqueue.Queue; | |
| import com.google.appengine.api.taskqueue.QueueFactory; | |
| import com.google.appengine.api.taskqueue.TaskOptions; | |
| import com.google.appengine.tools.remoteapi.RemoteApiInstaller; | |
| import com.google.appengine.tools.remoteapi.RemoteApiOptions; | |
| import java.io.IOException; |
| #!/usr/bin/env node | |
| /* | |
| * This is Voost's own custom version of the handlebars compiler which walks | |
| * the whole tree and compiles all the files. It supports a directory | |
| * structure and creates the output files in the same structure. | |
| */ | |
| var optimist = require('optimist') | |
| .usage('Precompile handlebar templates.\nUsage: $0 template...', { | |
| 'f': { |
| #!/usr/bin/env node | |
| /* | |
| * This is Voost's own custom version of the handlebars compiler which walks | |
| * the whole tree and compiles all the files. It supports a directory | |
| * structure and creates the output files in the same structure. | |
| */ | |
| var optimist = require('optimist') | |
| .usage('Precompile handlebar templates.\nUsage: $0 template...', { | |
| 'f': { |