This file contains 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-up a connection between the client and the server | |
var socket = io.connect(); | |
// let's assume that the client page, once rendered, knows what room it wants to join | |
var room = window.location.hash; | |
socket.on('connect', function() { | |
// Connected, let's sign-up for to receive messages for this room | |
socket.emit('room', room); | |
}); |
This file contains 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
.mejs-controls div.mejs-time-rail { | |
padding-top: 2px; | |
} | |
.mejs-controls .mejs-time-rail span { | |
height: 26px; | |
} | |
.mejs-container .mejs-controls{ | |
height: 40px; | |
background-color: #f3f3f3; | |
padding-left: 10px; |
This file contains 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
--- | |
layout: episode | |
date: 2013-01-09 21:25:18 | |
title: Episode 14 - Fishy Fingers | |
duration: 18:24 | |
length: 17068092 | |
link: http://pubpodcast.s3.amazonaws.com/pub014.mp3 | |
--- | |
Darren Scott and Adam Wilcox return for a new season of podcasts. In this episode they discuss dating, breakups, Jimmy Savile, and mistaken identity. |
This file contains 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
--- | |
layout: nil | |
--- | |
<?xml version="1.0" encoding="UTF-8"?> | |
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"> | |
<channel> |
This file contains 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
@media only screen and (max-width:650px) { table { width:100% } | |
.pagetop a:first-child { display:block;width:100%;padding:0px;margin:0px;clear:both;border:none; } | |
.pagetop a { padding:0px 0px 12px 0px; } | |
.title a { padding:8px 14px 8px 10px;margin:0px 0px 0px 0px;color:#000000;background-color:#ff6600;vertical-align:middle;line-height:200%; } | |
span.comhead { display:inline-block;padding-top:6px; } | |
.subtext a, .subtext a:hover, .subtext a:visited { margin-top:3px;padding:4px 11px 4px 11px;display:inline-block; } | |
.subtext a:last-child { border:solid 1px #ff6600; } | |
table tr td:nth-child(2) { padding: 2px 10px 2px 0px; margin-right:10px; } | |
table tr td.subtext { background-color:#f6f6ef;} } | |
textarea { width:100% } |