View Code.gs
function sync() { | |
// gcal IDs: email address if using default calendar | |
const SOURCE_ID = "XXXXXX"; | |
const DEST_ID = "YYYYYY"; | |
// SETTINGS | |
// how many days out to clone events | |
const ADVANCE_DAYS = 5; // integer | |
// title of cloned events | |
const TITLE = "Busy 📵"; |
View Gruntfile.js
/*global module: false */ | |
module.exports = function(grunt) { | |
"use strict"; | |
grunt.initConfig({ | |
compass: { | |
dist: { | |
options: { | |
sassDir: 'sass', | |
cssDir: 'css' | |
} |
View Week 3.js
var re = /^(20(0[0-9]|1[0-2])|1[0-9]{3})\/(0[1-9]|1[0-2])\/(0[1-9]|[1-2][0-9]|30)\s([0-1][0-9]|2[0-3]):([0-5][0-9])(:[0-5][0-9])?$/; |
View css_rule_order.css
selector | |
{ | |
list-style: …; /* if applicable */ | |
/* Box model/layout */ | |
box-*: …; | |
margin: …; | |
padding: …; | |
width: …; | |
min-width: …; |
View dabblet.css
.btn-back { | |
display : block; | |
position:absolute; | |
z-index : 0; | |
left:50px; | |
top:50px; | |
height:30px; | |
width:auto; | |
padding: 0 10px 0 6px; | |
background-size : 30px 30px; |
View CoffeeScript.plist
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- | |
BBEdit Language Module for CoffeeScript | |
Put this file in | |
~/Library/Application Support/BBEdit/Language Modules | |
or equivalent. | |
Based off of the examples shipped in the BBEdit SDK. |