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
exportEvernote() | |
on exportEvernote() | |
set outputDir to (do shell script "echo ~/Downloads/") | |
set theDate to current date | |
set timeStamp to (do shell script "date +'%y-%m-%d-%T'") | |
tell application "Evernote" |
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
#!/bin/bash | |
[ $# -eq 0 ] && { echo "Usage: $0 <projectName>"; exit 1; } | |
PROJECT=$1 | |
echo "Creating project in ./$PROJECT" | |
mkdir -p $PROJECT/{js,jvm,project} | |
mkdir -p $PROJECT/shared/src/{main,test}/{scala,resources} | |
cd $PROJECT |