Skip to content

Instantly share code, notes, and snippets.

@jfalco
jfalco / irc-connect
Created December 16, 2012 16:01
irc-connect
#!/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
@jfalco
jfalco / plusposts.html
Created December 5, 2011 01:46 — forked from jo32/plusposts.html
Google Plus Sidebar for Octopress
<!--
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");