feat (VideoComponent): Allow downloading as a GIF
fix (Billing): Don't allow freeloaders to freeload so much
docs (changes to documentation)
style (formatting, missing semi colons, etc; no code change)
refactor (refactoring production code)
test (adding missing tests, refactoring tests; no production code change)
chore (updating grunt tasks etc; no production code change)
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
class ApplicationJob < ActiveJob::Base | |
around_perform do |job, block| | |
Honeycomb.start_span(name: job.class.name) do |span| | |
span.add_field 'type', 'worker' | |
span.add_field 'queue.name', job.queue_name | |
block.call | |
end | |
end | |
end |
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
'use strict'; | |
const aws = require('aws-sdk'); | |
const s3 = new aws.S3({ apiVersion: '2006-03-01' }); | |
const polly = new aws.Polly({region: 'eu-west-1'}); | |
const md5 = require('md5'); | |
const request = require('request'); | |
var params = { | |
OutputFormat: 'mp3', | |
Text: 'Hola', |
I hereby claim:
- I am qrush on github.
- I am qrush (https://keybase.io/qrush) on keybase.
- I have a public key ASBPz-9RTY-gqFJYfQd1Li7b6D5ipOU0jjNSwcXFkrOT7wo
To claim this, I am signing this object:
Install phantomjs (http://phantomjs.org)
brew
has a recipe for phantomjs, but it has moved on to version 2.0.0, and we still require 1.8.2 (at newest), and we can't get that old and dirty with brew
anymore.
On a Mac:
mkdir -p ~/root
wget https://phantomjs.googlecode.com/files/phantomjs-1.8.2-macosx.zip -O ~/root/phantomjs-1.8.2-macosx.zip
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
2016-05-22T14:15:53.638473114Z app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"exd8mOZhgm+jagtodSs/Rh4FGP4ewIqOpL7jX/SLYnhOWHZIgfMBBz6jLQIpCPb7qp7rLxe5zxI+lOrErYF0Yg==", "show"=>{"featured"=>"false", "unknown_setlist"=>"0", "raw_setlist"=>"Notes\r\n\r\nNumbers and Facts\r\nOrigami\r\nAll Night Long > \r\nTriangle\r\nStrange Times\r\nSkyway > \r\nDave's Song\r\nKitty Chaser (Explosions)", "extra_notes"=>"Marty teases in Origami and Dave's", "embeds"=>""}, "commit"=>"Update setlist", "show_id"=>"2016-05-21"} |
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
for t in `git tag | tac` | |
do | |
echo ">>>>>>>>>>" | |
echo $t | |
git reset --hard $t | |
git lfs fetch | |
git checkout -f $t | |
git lfs checkout | |
while [ $? -ne 0 ]; do | |
git lfs fetch |
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
# http://sartak.katron.org/misc/pbf/images/088.jpg | |
OPTIONS=catname:Mittens | |
# http://sartak.katron.org/misc/pbf/images/146.jpg | |
OPTIONS=horsename:Silver Bullet | |
# http://sartak.katron.org/misc/pbf/images/127.jpg | |
OPTIONS=dogname:Barf | |
OPTIONS=hilite_pet | |
OPTIONS=fruit:milkshake | |
OPTIONS=autopickup,pickup_types:$!/="+? |
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
begin | |
require 'bundler/inline' | |
rescue LoadError => e | |
$stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler' | |
raise e | |
end | |
gemfile(true) do | |
source 'https://rubygems.org' | |
gem 'rails', github: 'rails/rails' |
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
# NOTE: When updating Wine, please check Wine-Gecko and Wine-Mono for updates | |
# too: | |
# - http://wiki.winehq.org/Gecko | |
# - http://wiki.winehq.org/Mono | |
class Wine < Formula | |
desc "Wine Is Not an Emulator" | |
homepage "https://www.winehq.org/" | |
head "git://source.winehq.org/git/wine.git" | |
stable do |
NewerOlder