Finished in 18.184895s, 58.8400 runs/s, 130.3829 assertions/s.
1070 runs, 2371 assertions, 0 failures, 0 errors, 0 skips
real 0m25.964s
user 0m11.628s
sys 0m2.011s
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
#!/usr/bin/env bash | |
set -euo pipefail | |
TRIES=0 | |
until [ $TRIES -eq 10 ] || nc -z localhost 3000; do | |
sleep 0.1 | |
TRIES=$(( TRIES+1 )) | |
done |
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
// ==UserScript== | |
// @name Agile Poker Fullscreen | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @updateURL https://gist.github.com/zzak/2dc3c582db686c02b4ec1fd313bb6e42/raw/agile-poker-fullscreen.user.js | |
// @description Make the Agile Poker modal dialog fullscreen (desktop friendly) | |
// @author Zachary Scott <zzak> | |
// @match https://agile-poker-production.herokuapp.com/* | |
// @require https://cdnjs.cloudflare.com/ajax/libs/arrive/2.4.1/arrive.min.js | |
// @grant GM_addStyle |
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
references: | |
defaults: &defaults | |
working_directory: ~/app | |
docker: | |
- image: circleci/node:8.1.4-browsers | |
npm_permissions: &npm_permissions | |
run: | |
name: set-user-permissions |
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
~/code/ruby => git shortlog -s -n --all --since=2012 | |
7701 nobu | |
2156 svn | |
1686 naruse | |
1629 usa | |
1550 nagachika | |
1393 akr | |
1219 ko1 | |
703 hsbt | |
624 kazu |
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
wget https://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc | |
sudo apt-key add erlang_solutions.asc | |
sudo apt-add-repository "https://packages.erlang-solutions.com/ubuntu yaketty contrib" | |
sudo apt-get update | |
sudo apt-get install erlang |
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
## Shibuya.lisp#50 | |
twitter: @shibuya_lisp | |
hashtag: #lispmeetup | |
event: https://lisp.connpass.com/event/52912/ | |
survey: https://twitter.com/shibuya_lisp/status/834710395868766208 | |
cl-cudd | |
decision diagram |
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
Warming up -------------------------------------- | |
Forwardable 148.719k i/100ms | |
Send 334.975k i/100ms | |
Simple call 380.722k i/100ms | |
Calculating ------------------------------------- | |
Forwardable 1.999M (± 5.0%) i/s - 10.113M in 5.073999s | |
Send 7.768M (± 5.4%) i/s - 38.857M in 5.018102s | |
Simple call 10.120M (± 6.8%) i/s - 50.636M in 5.027285s |
This is a gist to track the feature development for Sinatra 2.0.
Keep an eye on the CHANGELOG which is updated as features and bug fixes land. We generally try to keep this limited to "major" changes to cut down on cruft.
At the moment, there's a milestone for 2.0.0 on the issue tracker. But we'll try to land as many features as we can in the next release. No promises.
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
MRuby::CrossBuild.new('x86_64-apple-darwin14') do |conf| | |
toolchain :clang | |
# include the default GEMs | |
conf.gembox 'default' | |
[conf.cc, conf.objc, conf.asm].each do |cc| | |
cc.command = 'x86_64-apple-darwin14-clang' | |
end | |
conf.cxx.command = 'x86_64-apple-darwin14-clang++' |
NewerOlder