This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.row { | |
display: flex; | |
justify-content: space-between; | |
} | |
.one.column, | |
.one.columns { width: 4.66666666667%; } | |
.two.columns { width: 13.3333333333%; } | |
.three.columns { width: 22%; } | |
.four.columns { width: 30.6666666667%; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function delete_events() | |
{ | |
// Copy and Paste this script at https://script.google.com and then run it | |
// This script modified from code found at this Stackoverflow question and answer: | |
// https://webapps.stackexchange.com/questions/19513/how-to-delete-all-events-on-many-dates-all-at-once-but-not-the-whole-calendar-in | |
var fromDate = new Date(1995,0,1,0,0,0); | |
var toDate = new Date(2015,0,1,0,0,0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// based on: https://gist.github.com/paulirish/12fb951a8b893a454b32 | |
// which is based on: https://gist.github.com/paulirish/12fb951a8b893a454b32 | |
const $ = document.querySelector.bind(document); | |
const $$ = document.querySelectorAll.bind(document); | |
Node.prototype.on = window.on = function (name, fn) { | |
this.addEventListener(name, fn); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get Sibling Elements with Filter | |
// The getSiblings() and getChildren() code has been customized by @michaelwhyte | |
// from code found on this Stackoverflow question: | |
// https://stackoverflow.com/questions/842336/is-there-a-way-to-select-sibling-nodes | |
// | |
// The code from the stackoverflow question is based on | |
// jQuery's siblings() code | |
function getSiblings(n, filter) { | |
return getChildren(n.parentNode.firstChild, n, filter); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"php.validate.executablePath": "C:/MAMP/bin/php/php7.1.5/php.exe" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"php.suggest.basic": false, | |
"php.validate.enable": false | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"emmet.triggerExpansionOnTab": true, | |
"path-autocomplete.extensionOnImport":true, | |
"editor.fontSize": 36, | |
"workbench.colorTheme": "Default Light+", | |
"terminal.integrated.fontSize": 24, | |
"git.ignoreMissingGitWarning": true, | |
"workbench.editor.enablePreview": false, | |
"editor.formatOnSave": true, | |
"html.format.enable": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This code modified from: | |
https://css-tricks.com/shipping-system-fonts-github-com/ | |
*/ | |
body { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"emmet.triggerExpansionOnTab": true, | |
"path-autocomplete.extensionOnImport": true, | |
"editor.fontSize": 36 | |
} |