Skip to content

Instantly share code, notes, and snippets.

View adamwiggins's full-sized avatar

Adam Wiggins adamwiggins

View GitHub Profile
require 'rubygems'
require 'rest_client'
require 'yaml'
params = {
'api_key' => '...',
'project' => 'myproj',
'error_message' => "Testing sendalone notify",
'backtrace' => "",
'request' => {},
# RAILS_ROOT is read-only on Heroku. Write to tmp dir, which is read/write.
require 'acts_as_ferret'
ActsAsFerret.index_dir = "#{RAILS_ROOT}/tmp/index"
require 'rubygems'
require 'exceptional'
require 'sinatra'
Exceptional.api_key = "...your api key..."
module Exceptional
def self.handle_sinatra(exception, uri, request, params)
e = Exceptional.parse(exception)
#!/usr/bin/ruby
# change these to your liking
user = "mygpguser"
encrypted = "/path/to/file.gpg"
##########
require 'fileutils'
#!/usr/bin/env ruby
require 'rubygems'
def mp3tags(fname)
require 'mp3info'
Mp3Info.open(fname) { |mp3info| mp3info }
end
def oggtags(fname)
$ git push heroku master
Counting objects: 71, done.
Compressing objects: 100% (65/65), done.
Writing objects: 100% (71/71), 79.28 KiB, done.
Total 71 (delta 15), reused 0 (delta 0)
-----> Heroku receiving push
-----> Verifying repository integrity... done, looks like a Rails app.
Compiled slug size is 0.1MB
-----> Launching.......... done
task :export do
require 'sequel'
require 'fastercsv'
db = Sequel.connect(ENV['DATABASE_URL'])
table_name = ENV['table'].to_sym
table = db[table_name]
fields = table.first.keys
class MemCache
def self.cache
@@cache ||= MemCache.new('localhost:11211')
end
end
require 'rubygems'
require 'memcache'
class MemCache
def self.cache
@@cache ||= MemCache.new('localhost:11211')
end
end
MemCache.cache['abc'] = 123
syntax on
set ts=3 sw=3 si
set hlsearch
set backspace=indent,eol,start
command Rubytabs set tabstop=2 smarttab shiftwidth=2 autoindent expandtab backspace=start,indent
command Regtabs set ts=3 sw=3 noexpandtab