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 | |
# If we get an argument, use it for ssh port, otherwise use default of 22 | |
if [ -n "$1" ] | |
then | |
port=$1 | |
else | |
port=22 | |
fi |
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
<!-- | |
JSON-P Google Plus fetcher for Octopress | |
(c) Jolam Jiang // MIT License | |
--> | |
{% if site.googleplus_user %} | |
<section> | |
<!-- load jquery --> | |
<script type="text/javascript" src="https://www.google.com/jsapi?key={{ site.google_api_key }}"></script> | |
<script type="text/javascript"> | |
google.load("jquery", "1.7.1"); |