I hereby claim:
- I am mjc on github.
- I am projct (https://keybase.io/projct) on keybase.
- I have a public key ASD4cqm9IEAT8sbSVfLXVPJNRFi66uua7_7BHZEToAf9WAo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| read -r -d '' profile <<'EOF' | |
| { | |
| "PresetList" : [ | |
| { | |
| "AlignAVStart" : true, | |
| "AudioCopyMask" : [ | |
| "copy:aac", | |
| "copy:ac3", |
| #!/bin/sh | |
| set -o errexit | |
| # @TODO detect fd and fallback to find | |
| pngs=$(fd -e png .) | |
| jpgs=$(fd -e jpg .) | |
| #pngs=$(find . -iname "*.png") | |
| #jpgs=$(find . -iname "*.jpg") | |
| optimize_a_png() { |
| defmodule FizzBuzzTest do | |
| use ExUnit.Case | |
| # to run tests: mix test | |
| # to get an irb equivalent with your code loaded in it: iex -S mix | |
| # to get a pry in your code: `require IEx;IEx.pry()` | |
| # Phase 1: make the test pass. | |
| # Phase 2: implement the fizz/buzz check as a pattern match | |
| # Phase 3: move the pattern match into multiple function clauses. |
I hereby claim:
To claim this, I am signing this object:
| require "bundler" | |
| require "active_model_serializers" | |
| require "roar" | |
| require "roar/json/json_api" | |
| require "benchmark" | |
| require "ffaker" | |
| Post = Struct.new(:id, :author, :body, :draft) do | |
| include ActiveModel::Serializers::JSON | |
| end |
| #!/usr/local/bin/ruby -w | |
| require 'rational' if RUBY_VERSION =~ /^(1.8)/ # for 'gcd' method | |
| class Integer | |
| def primz? | |
| residues = [1,7,11,13,17,19,23,29,31,37,41,43,47,49,53,59,61] | |
| res1 = [1,13,17,29,37,41,49,53] | |
| res2 = [7,19,31,43] |
| source 'https://rubygems.org' | |
| gem 'benchmark-ips' | |
| gem 'ruby-progressbar' |
| #!/usr/bin/env ruby | |
| require 'pathname' | |
| path = Pathname.new(ENV['HOME']).join("Library","Application Support","VanDyke","SecureCRT","Config”,”Sessions”,”**.ini") | |
| paths = Dir.glob(path) | |
| paths.each do |path| | |
| lines = File.readlines(path) | |
| hostname = nil | |
| username = nil | |
| lines.each do |line| | |
| result = line.match(/S:"(.+)"=(.+)/) |
Blank rails app with puma, serving a high_voltage static homepage (https://github.com/mjc/blankrails), warmed with 5 minutes of traffic.
MRI 2.1.2: 4 puma workers
Running 15s test @ http://localhost:3000
1 threads and 10 connections
Thread Stats Avg Stdev Max +/- Stdev