Skip to content

Instantly share code, notes, and snippets.

@smcquay
smcquay / chat.html
Last active December 10, 2015 02:58
<html>
<head>
<title>Chat Example</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
var conn;
var msg = $("#msg");
var log = $("#log");
@smcquay
smcquay / ldsconf.py
Created October 4, 2011 04:51 — forked from travisbhartwell/gist:1257132
Python Script to download October 2011 General Conference Archives
#!/usr/bin/python
"""
This is a handy script to download the media from General Conference for
your own use. Execute this script with the appropriate options to download the
files you wish.
The only non-Python standard library dependency is BeautifulSoup.
"""