Skip to content

Instantly share code, notes, and snippets.

View mikebridge's full-sized avatar
🤔
Thinking

Mike Bridge mikebridge

🤔
Thinking
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>SoundCloud OAuth 2 User Agent Authentication Flow Demo</title>
<script type="text/javascript" charset="utf-8" src="javascript/jquery-1.4.2.js"></script>
<script type="text/javascript" charset="utf-8">
$(function () {
var extractToken = function(hash) {
@mikebridge
mikebridge / rspec_formatter_for_emacs.rb
Created October 18, 2011 23:05 — forked from kiyoka/rspec_formatter_for_emacs.rb
RSpec formatter for Emacs E-x compile feature
require 'rspec/core/formatters/progress_formatter'
# Example of a formatter with custom bactrace printing. Run me with:
# ruby bin/spec xxxxx.rb -r ./test/rspec_formatter_for_emacs.rb -f CustomFormatter
class CustomFormatter < RSpec::Core::Formatters::ProgressFormatter
def backtrace_line(line)
return nil if configuration.cleaned_from_backtrace?(line)
str = line.gsub(/([^:]*\.rb):([0-9]+):in /) do
path = "#{$1}"
lineno = "#{$2}"