Skip to content

Instantly share code, notes, and snippets.

View maxinspace's full-sized avatar
:shipit:
shippin' it

Maxim Larionov maxinspace

:shipit:
shippin' it
View GitHub Profile
@maxinspace
maxinspace / Gemfile
Created April 18, 2017 17:59 — forked from palkan/Gemfile
RSpec profiling with RubyProf and StackProf
gem 'stackprof', require: false
gem 'ruby-prof', require: false
@maxinspace
maxinspace / rspec-hell.rb
Created April 18, 2017 17:59 — forked from palkan/rspec-hell.rb
RSpec Hell: run examples concurrently (using threads)
module RSpecHell
def run_examples(reporter)
return super unless metadata[:hell] && !(metadata[:parent_example_group] && metadata[:parent_example_group].key?(:hell))
pool_size = ENV['HELL'].to_i
q = Queue.new
ordering_strategy.order(descendant_filtered_examples).each { |ex| q << ex }
workers = []
results = []
@maxinspace
maxinspace / rails_dev_deploy_setup.md
Created September 26, 2016 20:02 — forked from scootcho/rails_dev_deploy_setup.md
Rails ansible/docker deploy setup

Information of rails development and deployment setup

A list of rails development and deployment setup

Notes

  • Learn the IFTTT dash development env
  • Setup the services like db, nginx and others using docker with vagrant or docker-machine then develop rails/nodejs localy to gain development effeciency to avoid docker build every time

List of resourses

@maxinspace
maxinspace / INSTALLATION.md
Created October 26, 2015 15:08 — forked from DenisIzmaylov/INSTALLATION.md
OS X 10.11 El Capitan: fresh install with Node.js (io.js) Developer Environment

OS X 10.11 (El Capitan) / Node.js and io.js Developer Environment

Custom recipe to get OS X 10.11 El Capitan running from scratch with useful applications and Node.js Developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after fresh install.

Content