I hereby claim:
- I am kirschbaum on github.
- I am kirschbaum (https://keybase.io/kirschbaum) on keybase.
- I have a public key ASCCyNqa6Zrer5c39KM7YUxRVKwFTjVHcUXiZjxDiG9TvAo
To claim this, I am signing this object:
function sync() { | |
var id="XXXXXXXXXX"; // CHANGE - id of the secondary calendar to pull events from | |
var today=new Date(); | |
var enddate=new Date(); | |
enddate.setDate(today.getDate()+7); // how many days in advance to monitor and block off time | |
var secondaryCal=CalendarApp.getCalendarById(id); | |
var secondaryEvents=secondaryCal.getEvents(today,enddate); |
I hereby claim:
To claim this, I am signing this object:
function showWatchers() | |
{ | |
var root = angular.element(document.getElementsByTagName('body')); | |
var watchers = []; | |
var f = function (element) { | |
angular.forEach(['$scope', '$isolateScope'], function (scopeProperty) { | |
if (element.data() && element.data().hasOwnProperty(scopeProperty)) { | |
angular.forEach(element.data()[scopeProperty].$$watchers, function (watcher) { |
var myApp = angular.module('myApp', []); | |
myApp.directive('googleplace', function() { | |
return { | |
require: 'ngModel', | |
scope: { | |
ngModel: '=', | |
details: '=?' | |
}, | |
link: function(scope, element, attrs, model) { |
include_recipe "apt" | |
include_recipe "openssl" | |
include_recipe "apache2" | |
include_recipe "apache2::mod_php5" | |
include_recipe "apache2::mod_rewrite" | |
include_recipe "apache2::mod_deflate" | |
include_recipe "apache2::mod_headers" | |
include_recipe 'php' | |
include_recipe "php::module_apc" | |
include_recipe "php::module_memcache" |
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="gallois" | |
# Example aliases |