Redux: attempting a simple overview
Recently I've been lucky enough to start out on a greenfield project, (and it's a whopper!) lucky lucky me! Now although there's a lot of nifty techniques being used, there's one that I'm really...
Show off your latest creation and get feedback. Build a test case for that pesky bug. Find example design patterns and inspiration for your projects.
Recently I've been lucky enough to start out on a greenfield project, (and it's a whopper!) lucky lucky me! Now although there's a lot of nifty techniques being used, there's one that I'm really...
CSS Variables
The following is a write up to explain the excellent presentation by Lea Verou titled "CSS Variables: var(--subtitle)" at FITC Toronto Web Unleashed 2016. The slides can be found here....
Add voting to rails app
Add votes to your rails app using act_as_votable gem.
Step 1 :
Add acts_as_votable to your gemfile.
gem 'acts_as_votable', '~> 0.10.0'
Run bundle install.
Step 2 :
...