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
console.log('Started'); | |
$.getScript("https://www.google.com/jsapi", function(data, textStatus, jqxhr) { | |
google.load("visualization", "1", {packages:["corechart"]}); | |
google.setOnLoadCallback(function(){ | |
alert('Chart API Loaded'); | |
}); | |
}); |
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
set AppleScript's text item delimiters to ":" | |
set front_app to front_app's text items | |
set AppleScript's text item delimiters to {""} --> restore delimiters to default value | |
set item_num to (count of front_app) - 1 | |
--display dialog item_num | |
--display dialog item item_num of front_app | |
set app_name to item item_num of front_app | |
set AppleScript's text item delimiters to "." | |
set app_name to app_name's text items | |
set AppleScript's text item delimiters to {""} --> restore delimiters to default value |
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
#Create blank branch | |
git symbolic-ref HEAD refs/heads/deploy_production | |
rm .git/index | |
git clean -fdx | |
touch .gitignore | |
git add .gitignore | |
git commit -m "Initial Commit" | |
#Add submodule as html | |
git submodule add -b production git@kaizen:somesite.com.git html |
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
Outer Div | |
.metabox-holder | |
.has-right-sidebar | |
Sidebar | |
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
#Create blank branch | |
git symbolic-ref HEAD refs/heads/gh-pages | |
rm .git/index | |
git clean -fdx | |
touch .gitignore | |
git add .gitignore | |
git commit -m "Initial Commit" | |
#Push to origin | |
git push origin gh-pages |