Skip to content

Instantly share code, notes, and snippets.

View jeanmw's full-sized avatar

Jean Weatherwax jeanmw

  • First Round Capital
  • San Francisco
View GitHub Profile
@jeanmw
jeanmw / AtomPlugins.md
Created May 10, 2017 22:19 — forked from ladydangerdame/AtomPlugins.md
Make your life as a Web Developer easier with these Atom plugins!

Open up your settings in Atom, select 'install' from the menu on the left and search for these helpful plugins:

1. Atom-beautify

    Probably the best of all... Clean up and indent HTML, CSS, JavaScript, PHP, Python, Ruby and more...!
    Right click to use!

2. Open-in-browser

Pretty obvious by the name, allows you to open files in your browser from Atom by right clicking!

@jeanmw
jeanmw / authentication_with_bcrypt_in_rails_4.md
Created December 15, 2016 18:11 — forked from eerwitt/authentication_with_bcrypt_in_rails_4.md
Simple Authentication in Rail 4 Using Bcrypt

#Simple Authentication with Bcrypt

This tutorial is for adding authentication to a vanilla Ruby on Rails app using Bcrypt and has_secure_password.

The steps below are based on Ryan Bates's approach from Railscast #250 Authentication from Scratch (revised).

You can see the final source code here: repo. I began with a stock rails app using rails new gif_vault

##Steps