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
<input type="email" name="email" x-autocompletetype="email" autocomplete="email" autocorrect="off" autocapitalize="off" spellcheck="false" placeholder="Email"> | |
<input type="text" class="numberInput unknown" name="card_number" x-autocompletetype="cc-number" autocompletetype="cc-number" autocomplete="cc-number" placeholder="Card number"> | |
<input type="tel" class="cvcInput" name="cc-csc" x-autocompletetype="cc-csc" autocompletetype="cc-csc" autocomplete="false" maxlength="4" placeholder="CVC"> |
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
# A sample Gemfile | |
source "https://rubygems.org" | |
gem "html-pipeline" | |
gem "github-markdown" | |
gem "github-linguist" |
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 'thread' | |
# A synchronization barrier enables multiple threads to wait until all threads | |
# have all reached a particular point of execution before any thread | |
# continues. | |
class Barrier | |
# Initialize new barrier. The _count_ argument specifies the number of threads | |
# that must call #wait before any of them successfully return from the call. | |
# The value specified by _count_ must be greater than zero. |
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 'benchmark' | |
puts "\n\n" | |
puts RUBY_VERSION | |
iterations = 100_000 | |
Benchmark.bmbm do |bm| | |
bm.report 'Hash#dup' do | |
WHITELIST1 = { :protocols => { :from => 'constant' } } |
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
highlight TechWordsToAvoid ctermbg=red ctermfg=white | |
autocmd FileType markdown match TechWordsToAvoid /\c\<\(obviously\|basically\|simply\|of\scourse\|clearly\|just\|everyone\sknows\|however\|so,\|easy\)\>/ | |
autocmd BufWinEnter *.md match TechWordsToAvoid /\c\<\(obviously\|basically\|simply\|of\scourse\|clearly\|just\|everyone\sknows\|however\|so,\|easy\)\>/ | |
autocmd InsertEnter *.md match TechWordsToAvoid /\c\<\(obviously\|basically\|simply\|of\scourse\|clearly\|just\|everyone\sknows\|however\|so,\|easy\)\>/ | |
autocmd InsertLeave *.md match TechWordsToAvoid /\c\<\(obviously\|basically\|simply\|of\scourse\|clearly\|just\|everyone\sknows\|however\|so,\|easy\)\>/ | |
autocmd BufWinLeave *.md call clearmatches() |
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
$ export BYEBYE=ruby | |
$ ps x | grep $BYEBYE | cut -d' ' -f1 | xargs kill -9 |
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
# Count all keys which match a wildcard from database 1 | |
redis-cli -n 1 KEYS "foo:*" | wc -l | |
# Delete all keys which match a wildcard from database 1 | |
redis-cli -n 1 KEYS "foo:*" | xargs redis-cli -n 1 DEL |
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
# .git/config | |
[diff "office"] | |
binary = true | |
textconv = /usr/bin/java -jar /usr/local/share/tika-app.jar --text |
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
class NodesPresenter < SimpleDelegator | |
def initialize(id_or_object) | |
@node = id_or_object.is_a?(Integer) ? NodeDecorator.find(id_or_object) : id_or_object.decorate | |
super @node | |
end | |
def ancestor(key) | |
NodesPresenter.new(@node.ancestor(key)) | |
end |
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
--colour --drb --require rspec/instafail --format RSpec::Instafail |