Skip to content

Instantly share code, notes, and snippets.

@ipepe
ipepe / start_redis_for_development.sh
Created March 16, 2017 09:00 — forked from anonymous/start_redis_for_development.sh
commandline to start redis for developers
#!/bin/bash
docker run -p 6379:6379 --restart=unless-stopped -d --name redis redis:alpine
@ipepe
ipepe / rails_proficiency.txt
Last active January 2, 2019 05:54 — forked from romansklenar/rails_proficiency.txt
Proficiency requirements for Rails developer
Expert
Understands Ruby internals and is aware of multiple layers of software inner workings.
Senior (enterprise)
Analyse and profile an application for performance and memory issues
Analyses and profile an application for security issues
Understand database modeling and query analysis
Tune a production deployment (Passenger, Thin, Apache etc)
Understand and use Ruby metaprogramming