Skip to content

Instantly share code, notes, and snippets.

View yankeyhotel's full-sized avatar
👾

Matt McClard yankeyhotel

👾
  • Habitat
  • United States
View GitHub Profile
@yankeyhotel
yankeyhotel / Button.js
Created August 25, 2022 15:24
React button group | target parent onClick w/ props
import React from 'react';
const Button = (props) => {
const name = props.name;
const msg = props.msg;
const id = props.id;
const color = (msg === 'on') ? 'green' : 'red';
return (
<div style={{ padding: '1rem', border: '1px solid' + color }}>
<iframe src="https://player.vimeo.com/video/200746983?autoplay=1&loop=1&autopause=0&muted=1" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
@yankeyhotel
yankeyhotel / html
Created September 19, 2018 19:23
youtube embed w/ mute and autoplay and loop
<iframe width="560" height="315" src="https://www.youtube.com/embed/ZHiVC_51KkI?rel=0&controls=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen=""></iframe>
<div id="muteYouTubeVideoPlayer"></div>
<script async="" src="https://www.youtube.com/iframe_api"></script>
<script>
function onYouTubeIframeAPIReady() {
var player;
player = new YT.Player('muteYouTubeVideoPlayer', {
videoId: 'ZHiVC_51KkI', // YouTube Video ID
@yankeyhotel
yankeyhotel / shopify-money.js
Created July 24, 2018 20:14 — forked from stewartknapman/shopify-money.js
The Shopify.formatMoney method extracted from option_selection.js for stand-alone purposes.
var Shopify = Shopify || {};
// ---------------------------------------------------------------------------
// Money format handler
// ---------------------------------------------------------------------------
Shopify.money_format = "${{amount}}";
Shopify.formatMoney = function(cents, format) {
if (typeof cents == 'string') { cents = cents.replace('.',''); }
var value = '';
var placeholderRegex = /\{\{\s*(\w+)\s*\}\}/;
var formatString = (format || this.money_format);
@yankeyhotel
yankeyhotel / Google-Sheet-Form-Post.md
Created October 15, 2016 16:43 — forked from willpatera/Google-Sheet-Form-Post.md
Post to google spreadsheet from html form

Overview

This collection of files serves as a simple static demonstration of how to post to a google spreadsheet from an external html <form> following the example by Martin Hawksey

Run example

You should be able to just open index.html in your browser and test locally.

However if there are some permissions errors you can make a quick html server with python. Open terminal and cd to the directory where the gist files are located and enter python -m SimpleHTTPServer. By default this creates a local server at localhost:8000

@yankeyhotel
yankeyhotel / whatWidth.js
Created September 16, 2016 16:11
Create a div that shows the pixel dimensions for developing responsive sites
// =========================================
// NOTE: whatWidth for Dev only
// =========================================
(function() {
window.addEventListener("resize", resizeThrottler, false);
var resizeTimeout;
function resizeThrottler() {
// ignore resize events as long as an actualResizeHandler execution is in the queue
if ( !resizeTimeout ) {
@yankeyhotel
yankeyhotel / futures_wait.js
Created April 19, 2016 15:45 — forked from deanrad/futures_wait.js
Wait on Array of Futures
// server/server.js
var Future = Npm.require('fibers/future');
Meteor.methods ({
testFutures: function(array) {
// var future = new Future;
// setTimeout(function() {
@yankeyhotel
yankeyhotel / find.js
Created August 12, 2015 21:21
Find a value of greater than or null in Mongo Collection
var coupon = Coupons.findOne({
codes: { $in: [coupon_code] },
valid: true,
redeem_by: { $lte: now },
$or: [
{ end_date: { $gte: now } },
{ end_date: null }
]
});
@yankeyhotel
yankeyhotel / throwError.js
Created July 28, 2015 22:22
How to throw an error in a Meteor method
Meteor.methods({
test: function() {
throw new Meteor.Error("name of the error", "Here is the reason");
}
});
Meteor.call('test', function(error, response){
if (error) {
console.log("error", error);
} else {
@yankeyhotel
yankeyhotel / indexedArray.js
Created July 27, 2015 17:11
Add an index to #each loop
/**
* Add an index to each loop
*/
UI.registerHelper('indexedArray', function(context, options) {
if (context) {
return context.map(function(item, index) {
item._index = index + 1;
return item;
});
}