I hereby claim:
- I am neil-s on github.
- I am neil (https://keybase.io/neil) on keybase.
- I have the public key with fingerprint 225E B71F 5570 6F47 EEBF 829F FD03 E888 0213 03F8
To claim this, I am signing this object:
| # Meteor packages used by this project, one per line. | |
| # Check this file (and the other files in this directory) into your repository. | |
| # | |
| # 'meteor add' and 'meteor remove' will edit this file for you, | |
| # but you can also edit it by hand. | |
| meteor-base # Packages every Meteor app needs to have | |
| mobile-experience # Packages for a great mobile UX | |
| mongo # The database Meteor supports right now | |
| blaze-html-templates # Compile .html files into Meteor Blaze views |
| window.doorbellOptions = { | |
| appKey: MY_APP_KEY | |
| }; | |
| jQuery.ajax({ | |
| url: "/get-doorbell-secret/", | |
| success: function (data) { | |
| $.each(data, function (key, val){ | |
| window.doorbellOptions[key] = val | |
| }) |
| function onOpen(e) { | |
| SpreadsheetApp.getUi().createAddonMenu() | |
| .addItem('Start', 'showLoginSidebar') | |
| .addToUi(); | |
| } | |
| function onInstall(e) { | |
| onOpen(e); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| sass: { | |
| options: { | |
| includePaths: ['bower_components/foundation/scss'] | |
| }, | |
| dist: { | |
| options: { |
| using Newtonsoft.Json; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace RevolutionizeTesting |
This is an example command for Backtick. A Backtick command consists of some executable JavaScript and a bit of metadata in JSON.
Here are the required steps to create a command:
Create a new Gist with a command.js and command.json file.
Write your JavaScript in command.js. This will be injected into and executed on the page the user is currently on when they run it.
Add some metadata to the command.json file:
| #include <iostream> | |
| #include "hello.hh" | |
| template<class T> void Stack<T>::append(T val) { | |
| Item **pp = &head; | |
| while(*pp) {pp = &((*pp)->next);} | |
| *pp = new Item(val); | |
| } | |
| template<class T> void Stack<T>::push(T val) { |