Skip to content

Instantly share code, notes, and snippets.

View jorroll's full-sized avatar

John jorroll

View GitHub Profile
@jorroll
jorroll / gmail-notes-add-on-terms-of-service.md
Last active December 10, 2020 00:29
Terms of Service for the Gmail Notes Add-On

Gmail Notes Add-On Terms of Service

Last updated: 12/9/20. I (John Carroll) reserve the right, at my sole discretion, to change, modify, or alter the Terms of Use at any time. Such changes shall become effective immediately upon the posting thereof.

This add-on has been published by John Carroll for public benefit. The add-on itself is open source and made available under an MIT license. Usage of the add-on is free (subject to any Google marketplace restrictions).

When using the add-on, you acknowledge and agree that it's being provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitniss for a particular purpose and noninfringment. In no event shall the author or copyright holder be liable for any claim, damages or other liability, whether in action of contract, tort or otherwise, arising from, out of or in connection w

@jorroll
jorroll / gmail-notes-add-on-privacy-policy.md
Created December 9, 2020 21:09
Privacy Policy for the Gmail Notes Add-On
@jorroll
jorroll / select-other.component.scss
Last active June 18, 2019 21:07
Select "Other" Angular Material Component
@import 'variables/color';
$red: map_get($mat-red, 500);
form-select-other {
display: flex;
flex-direction: column;
flex: 1;
.mat-form-field, .mat-form-field-wrapper {
@jorroll
jorroll / neo4jrb_syntax_experimentation.rb
Last active September 28, 2017 02:11
Neo4jrb Syntax Experimentation
person.rel(in: :OWNER, {value: 1}).node(:Person, :"Person::Superhero", {id: 13}).rel(out: :ACCOUNT).node.pluck(:balance)
person.rel(in: Owner, {value: 1}).node(Person::Superhero, {id: 13}).rel(out: :ACCOUNT).node(Account).pluck(:balance)
Cypher.match(Opportunity::Current[date: Date.today](:n) - Rel::More -> Shift::Current)
Cypher.match("(n #{Opportunity::Current[date: Date.today]})-[]->(#{Shift::Current})")
Cypher.match("(n #{Opportunity::Current} {date: $date_time})-[]->(#{Shift::Current})")
This file has been truncated, but you can view the full file.
/**
* React v15.4.1
*/
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.React = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){
/**
* Copyright 2013-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* L
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,