Skip to content

Instantly share code, notes, and snippets.

Hi Thatguy,
i'm trying to use Royal slider to do what you have code display groups of 3 images at time. I can't understand the lines
get_field(posts_category) , what dows this grab , what field is poist_category?
@vieira83
vieira83 / basic-js-greatest-hits.md
Created July 11, 2019 01:47 — forked from zcaceres/basic-js-greatest-hits.md
Articles Written to Help New JS Devs
@vieira83
vieira83 / authentication_with_express_postgres.md
Created January 28, 2020 03:58 — forked from laurenfazah/authentication_with_express_postgres.md
Authentication with an Express API and Postgres

Authentication with an Express API and Postgres

Setting Up

Let's make sure our Express app has the required base modules:

# within root of API
npm install --save express pg knex bcrypt
npm install --save-dev nodemon