This file contains 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
# Lando is configured based on ‘recipes’ as config files. Paste the content below into a file .lando.yml. | |
# This recipe installs a LAMP stack, the WPCLI, and Node/npm. | |
# Check out my Lando ZSH plugin for greater efficiency: | |
# URL: https://github.com/JoshuaBedford/lando-zsh | |
name: {{ project_name_here }} | |
# recipe can be 'wordpress' or 'laravel' | |
recipe: wordpress | |
config: |
This file contains 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
[ | |
"Cassandra", | |
] |
This file contains 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
(* | |
Author: Joshua Bedford | |
Language: AppleScript | |
Reason: Working for a company where Exchange mail is deleted after x days, but need to keep mail longer locally. | |
Disclaimer: Based largely on Zettt's gist (https://gist.github.com/Zettt/6551639) | |
License: | |
MIT License | |
Copyright (c) 2018 Joshua Bedford |
This file contains 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 callTimeDifference(todayDate, trackDate, typeOfDate){ | |
setInterval(function(){timeDifference(todayDate,trackDate,typeOfDate);},1000); | |
var flag = true; | |
var difference = null; | |
var timer = null; | |
function timeDifference(today, dateToTrack, type){ | |
if(flag){ |