find 10 ids
Benchmark.measure {100.times {CompletedSheet.find(ids)}}| no| small | ssd_1g_elastic |
| 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(), |
| javascript:(function(){ alert('bundle exec mina deploy to=staging branch='+$('.merge-pr-more-commits code a').text()) })(); |
| [miscellany] | |
| enable-auto-props = yes | |
| [auto-props] | |
| * = svn:needs-lock=true |
| 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 |
| 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")); |
| #!/usr/bin/env ruby | |
| require "rubygems" | |
| require "net/http" | |
| require "uri" | |
| require "cgi" | |
| require "json" # gem install json | |
| require 'pathname' | |
| class SPARQL |
| # require 'coffee-script' | |
| # fb = require './fizzbuzz' | |
| # console.log(fb.fizzbuzz v for v in [1..15]) | |
| exports.fizzbuzz = (v)-> | |
| f = not(v % 3) | |
| b = not(v % 5) | |
| unless f or b | |
| return v | |
| "#{if f then 'Fizz' else '' }#{if b then 'Buzz' else ''}" |
| #include <Poco/Path.h> | |
| #include <Poco/Format.h> | |
| #include <iostream> | |
| #include <unistd.h> | |
| int main(int argc, char** argv) { | |
| std::cout << Poco::format(" current() (Current directory): %s", Poco::Path::current()) << std::endl; | |
| Poco::Path p(Poco::Path::current()); | |
| std::cout << Poco::format(" .. : %s", p.forDirectory("..").absolute().toString()) << std::endl; |
| // g++ -g -O0 -Wall -fPIC -I/usr/local/include/ -L/usr/local/lib/ -lmsgpack main.cc -o main | |
| #include <iostream> | |
| #include <msgpack.hpp> | |
| struct Result { | |
| public: | |
| msgpack::type::raw_ref message; | |
| Result() {} | |
| MSGPACK_DEFINE( message); |