Skip to content

Instantly share code, notes, and snippets.

View cdevroe's full-sized avatar
:octocat:
Probably writing.

Colin Devroe cdevroe

:octocat:
Probably writing.
View GitHub Profile
@cdevroe
cdevroe / Rails Server Error
Created January 4, 2011 21:17
I get this when running 'rails server'
/Library/Ruby/Gems/1.8/gems/activerecord-3.0.3/lib/active_record/connection_adapters/mysql_adapter.rb:30:in `mysql_connection': undefined method `init' for Mysql:Class (NoMethodError)
@cdevroe
cdevroe / direct upload.php
Created March 7, 2011 18:49 — forked from kyleslattery/direct upload.php
ViddlerPHPUpload
<?php
include('phpviddler.php');
$user = 'YOUR USERNAME';
$pass = 'YOUR PASSWORD';
$api_key = 'YOUR API KEY';
$callback_url = 'CALLBACK';
$v = new Viddler_V2($api_key);
@cdevroe
cdevroe / gist:858967
Created March 7, 2011 18:47
ViddlerRubyUpload
<%
## Controller stuff!
# Assuming... require 'rubygems'
# Assuming... require 'viddler-ruby'
# Create the client and authenticate it
viddler = Viddler::Client.new 'YOUR API KEY'
viddler.authenticate! 'USERNAME', 'PASSWORD'
upload = viddler.get 'viddler.videos.prepareUpload'
@cdevroe
cdevroe / gist:1869562
Created February 20, 2012 14:56
JSONP example for Viddler
<html>
<head>
<title>JSONP Example Using jQuery</title>
<script type="text/javascript" language="javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" language="javascript">
function writeMsg(msg)
{
if (window.console) {
console.log(msg);
}
@cdevroe
cdevroe / gist:2423630
Created April 19, 2012 19:42
ViddlerResumableVideo
<html>
<head>
<title>Viddler: Resumable video player demonstration</title>
</head>
<body>
<h1>Viddler: Resumable video player demonstration</h1>
<p>This demonstration goes along with <a href="http://blog.viddler.com/cdevroe/resumable-video/">this Viddler blog post</a>.</p>
<p>Here is a short video from a recent trip to Ireland. If you come back you should start watching the video right where you've left off.</p>
@cdevroe
cdevroe / gist:3749861
Created September 19, 2012 14:04
Forked "Recent Photos" widget Wordpress plugin
<?php
/*
Plugin Name: Recent Posts Photos
Plugin URI: http://www.ProgrammersCountry.com
Description: Displays Recent Posts Photos from the media library in the sidebar. If the post does not contain a photo it is not displayed.
Version: 0.0.2
Author: Asad Iqbal
Author URI: http://www.ProgrammersCountry.com
With edits by Colin Devroe | http://cdevroe.com/
@cdevroe
cdevroe / Template_Client-Call.txt
Created November 19, 2015 17:56
Client Call Text Document Template
Template: Client Call % Client Name % - % Date %
# Call information
Dial-in information:
- Number:
- Pin:
- URL:
Parties on call:
@cdevroe
cdevroe / hypertext-member-blogs.opml
Last active December 10, 2015 23:59
Hypertext Member Blogs
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Hypertext Member Blogs</title>
</head>
<body>
<outline text="Hypertext Member Blogs" title="Hypertext Member Blogs">
<outline type="rss" text="Colin Devroe" title="Colin Devroe" xmlUrl="http://cdevroe.com/feed" htmlUrl="http://cdevroe.com/"/>
<outline type="rss" text="Hypertext" title="Hypertext by Justin Blanton" xmlUrl="http://feeds.feedburner.com/jblanton" htmlUrl="http://hypertext.net"/>
@cdevroe
cdevroe / barley_repeatablesections
Created February 15, 2013 22:05
Barley: Repeatable Sections Example
<!-- repeat:blogpost:5 -->
<your code />
<!-- endrepeat -->
<!-- repeat:my_section:10 -->
<your code />
<!-- endrepeat -->
@cdevroe
cdevroe / Barley_blogindex
Created February 15, 2013 22:07
Barley_exampleblogindex
<!-- repeat:blogpost:5 -->
<article>
<h2 class="title">
<a href="%URL%">%TITLE%</a>
</h2>
<div class="meta">
<h4 class="author">
Written by <span class="emphasize">%AUTHOR%</span> <span class="date">Published on <a href="%URL%" class="published_on" data-barley-publish-post="%ID%">%PUBLISHED_ON%</a></span>
</h4>
</div>