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
# https://github.com/mhenrixon/sidekiq-unique-jobs/issues/161 | |
# Even worse: https://github.com/mhenrixon/sidekiq-unique-jobs/issues/234 | |
class SidekiqUniqueJobsHashCompactor | |
include Sidekiq::Worker | |
sidekiq_options queue: "slow" | |
def perform | |
# Skip if there are jobs queued... | |
return unless Sidekiq::Queue.all.select { |q| q.size > 100 }.blank? |
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
tl;dr: | |
$ set -o vi | |
$ bind '"\ee": emacs-editing-mode' | |
Then hit Esc-e | |
$ bind -P| grep edit | |
edit-and-execute-command can be found on "\C-x\C-e". | |
emacs-editing-mode is not bound to any keys | |
vi-editing-mode is not bound to any keys |
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
// NewNotBlankValidator - given field must be declared as a null.* type. This checks to make sure the | |
// field value is its zero or null, or filled in but NOT set to empty String | |
// e.g. {value="", err=false} is not valid. | |
func NewNotBlankValidator(db *gorm.DB) validator.Func { | |
return func(v *validator.Validate, topStruct reflect.Value, currentStruct reflect.Value, field reflect.Value, fieldType reflect.Type, fieldKind reflect.Kind, param string) bool { | |
switch fieldKind { | |
case reflect.String: | |
if field.String() == "" && field.IsValid() { | |
return false | |
} |
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
// TODO: Save this snippet for converting collections: | |
XXX.to[({type l[_] = collection.immutable.HashMap[UserInformationKind, String]})#l] |
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
module Moddy | |
def show_me | |
puts "Yop" | |
end | |
end | |
Class.new.extend(Moddy).show_me | |
Yop | |
# this may come in handy also: |
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
# To and from hash and params (Rails 4) | |
str = 'nonce=2147483647&version=2.0&client_id=8iR5q' | |
h = Rack::Utils.parse_query str | |
params = ActiveSupport::HashWithIndifferentAccess.new(h) | |
# back to string: | |
query_str = params.to_query | |
Rack::Utils.parse_query(query_str) == Rack::Utils.parse_query(str) | |
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
# | |
# config/delayed_job_config.rb | |
# | |
Delayed::Worker.logger = Logger.new(Rails.root.join('log', 'delayed_job.log')) | |
# The base logger is terrible. It only puts what you send. Nothing else. So I had to dig this up and add it. | |
class DJFormatter | |
def call(severity, time, progname, msg) | |
formatted_severity = sprintf("%-5s","#{severity}") | |
"#{Time.now.utc} [#{progname} #{formatted_severity} pid:#{$$}] #{msg.strip}\n" |
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
describe "StaticPages", type: :feature do | |
header_links = [ | |
{ name: 'Sign Up', link: '/signup', text: 'Contacts associated with purchases' }, | |
{ name: 'Log In', link: '/login', text: 'Forgot your user name or password?' } | |
] | |
footer_links = [ | |
{ name: 'Home', link: '/', text: 'Easily and efficiently track'}, | |
{ name: 'Plans & Pricing', link: '/plan', text: 'Standard Features'}, |
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
# | |
# Check: http://redis-rb.keyvalue.org/v2.2.0/ | |
# | |
if Redis_connect | |
case Rails.env | |
when "production" | |
opts = {:host => "YOUR HOST NAME OR IP", :port => "6379", :thread_safe => true } | |
when "staging" | |
opts = {:host => "YOUR HOST NAME OR IP", :port => "6379", :thread_safe => true } | |
else |
NewerOlder