Skip to content

Instantly share code, notes, and snippets.

View wilsonvetdev's full-sized avatar
🏠
Working from home

Wilson Ng wilsonvetdev

🏠
Working from home
View GitHub Profile
-- This is the first query:
SELECT DISTINCT year from population_years;
-- Add your additional queries below:
SELECT country, population, year
FROM population_years
WHERE country = 'Gabon'
ORDER BY population DESC;
@wilsonvetdev
wilsonvetdev / ReadMe.md
Last active August 27, 2019 17:47 — forked from mattkellough/ReadMe.md
Activity for students to practice creating before and after filters

#Before and After Filters

##Instructions

  1. Fork the code from the following Gist.
  2. Create your own Gist with a refactored version of this users controller using filters(before_action, and after_action)
  3. Submit the Gist of your refactored code in the prompt on Goodmeasure week 5
  4. Good Luck!