event id | event name | payload |
---|---|---|
1234 | artist_was_created | artist_id: 1111, name: 'Beatles' |
1235 | artist_name_was_corrected | artist_id: 1111, new_name: 'The Beatles' |
1236 | performance_was_claimed_on_recording | performance_claim_id: 7171, user_id: 2222, recording_id: 3131, performance: 'singer' |
This file contains hidden or 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
require 'google/cloud/datastore' | |
module Ruba | |
# This use the Google Datastore as a key value storage. | |
# One could argue that Memcache would be more appropriate. | |
# usage: | |
# | |
## class DoSomething | |
## include GoogleKeyVal | |
## |
id | name |
---|---|
1111 | The Beatles |
This file contains hidden or 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
require 'active_support/core_ext/hash' | |
require 'benchmark' | |
Benchmark.bm do |x| | |
x.report("string") do | |
1_000.times do | |
data_str = { | |
"id" => "06e99a1b-4020-4380-ab27-1a3e0c5e557c", | |
"type" => "Person", | |
"score" => "100", |
This file contains hidden or 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
# Ruby API server install | |
# ------------------------ | |
# instal dev tool: git for clone, gcc & make to compile ruby, libssl-dev to compile ssl for ruby | |
# g++ is for gem dependencies | |
sudo apt-get install gcc git make libssl-dev g++ | |
This file contains hidden or 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
module DelayedJobScopes | |
extend ActiveSupport::Concern | |
included do | |
scope :error, -> (error) { failed.where('last_error ILIKE (?)', "%#{error.strip}%") } | |
scope :failed, -> { where('last_error IS NOT NULL') } | |
scope :queues, -> (queues) { where(queue: queues) } | |
end | |
def id_in_args |
This file contains hidden or 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
# @gf3’s Sexy Bash Prompt, inspired by “Extravagant Zsh Prompt” | |
# Shamelessly copied from https://github.com/gf3/dotfiles | |
# Screenshot: http://i.imgur.com/s0Blh.png | |
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then | |
export TERM=gnome-256color | |
elif infocmp xterm-256color >/dev/null 2>&1; then | |
export TERM=xterm-256color | |
fi |
This file contains hidden or 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
# after cloning the repo of rbenv | |
cd ~/.rbenv | |
git pull | |
cd plugins/ruby-build | |
git pull | |
rbenv install -l | |
rbenv install 2.1.2 |
This file contains hidden or 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
require 'ostruct' | |
require 'forwardable' | |
class MockActiveRecord < OpenStruct | |
def save(opts); end | |
alias_method :save!, :save | |
def attributes | |
to_h.symbolize_keys |
NewerOlder