find 10 ids
Benchmark.measure {100.times {CompletedSheet.find(ids)}}| no| small | ssd_1g_elastic |
| javascript:(function() { | |
| alert(Array.from(document.querySelectorAll('.commit-message .issue-link')).map( | |
| function(i) { | |
| var _i = i.closest('.commit-message'); | |
| if (_i.textContent.trim().match(/^Merge pull request/)) { | |
| return {num: i.textContent, title: _i.querySelector('.commit-desc').textContent}; | |
| } | |
| }).filter(data => data !== undefined).sort(function(a, b) { return a.num >= b.num ? 1: -1}).map(function(i) { | |
| return "* " + i.num + " " + i.title.replace(/\[\#(\d+)\]/g, "([$1](https://www.pivotaltracker.com/story/show/$1))"); | |
| }).join("\n")); |
| migrations = Mongoid::Migrator.new(:up, 'db/migrate', nil).migrations.map(&:version) | |
| target = migrations.last | |
| start = 0 | |
| finish = migrations.index(target) | |
| migrations[start..finish].each do |m| | |
| DataMigration.create(version: m) unless DataMigration.where(version: m.to_s).exists? | |
| end |
| [miscellany] | |
| enable-auto-props = yes | |
| [auto-props] | |
| * = svn:needs-lock=true |
| javascript:(function(){ alert('bundle exec mina deploy to=staging branch='+$('.merge-pr-more-commits code a').text()) })(); |
| var _ = Underscore.load(); | |
| var HeadingCounter, | |
| __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }; | |
| HeadingCounter = (function() { | |
| HeadingCounter.name = 'HeadingCounter'; | |
| HeadingCounter.HEADINGS = [DocumentApp.ParagraphHeading.HEADING1.toString(), | |
| DocumentApp.ParagraphHeading.HEADING2.toString(), |
| # kondo @ kuga in ~ | |
| $ emacs --version | |
| GNU Emacs 24.3.1 | |
| Copyright (C) 2013 Free Software Foundation, Inc. | |
| GNU Emacs comes with ABSOLUTELY NO WARRANTY. | |
| You may redistribute copies of Emacs | |
| under the terms of the GNU General Public License. | |
| For more information about these matters, see the file named COPYING. | |
| # kondo @ kuga in ~ | |
| $ sshfs --version |
$ wkhtmltopdf --version
wkhtmltopdf 0.12.3-dev-79ff51e (with patched qt)
$ wkhtmltopdf --print-media-type --orientation Portrait --header-html ./header.html --footer-html ./footer.html body.html out.pdf
then
Loading pages (1/6)
Counting pages (2/6)
Resolving links (4/6)
| #!/bin/bash | |
| _LOCALS=$(ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1') | |
| LOCALS=(`echo ${_LOCALS}`) | |
| #LOCAL=$(ipconfig getifaddr en0) | |
| EXTERNAL=$(curl -4 --silent http://icanhazip.com) | |
| LITEMS="" | |
| for ((i=0; i<${#LOCALS[*]}; i++)) do | |
| ITEM=$(cat <<-EOS | |
| <item uid="localip_$i" arg="${LOCALS[i]}"> |
| source 'https://rubygems.org' | |
| ruby '2.3.3' | |
| gem 'browser' | |
| gem 'carrierwave' | |
| gem 'cells', '~> 3.0' | |
| gem 'crummy' | |
| gem 'date_validator' | |
| gem 'devise' | |
| gem 'devise-i18n' |