Skip to content

Instantly share code, notes, and snippets.

View ivandi1980's full-sized avatar
💭
I may be slow to respond.

ivandjoh ivandi1980

💭
I may be slow to respond.
View GitHub Profile
@ivandi1980
ivandi1980 / authentication_with_express_postgres.md
Created January 14, 2022 05:10 — 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
@ivandi1980
ivandi1980 / HeaderStyles.js
Created January 2, 2022 07:34 — forked from adrianhajdin/HeaderStyles.js
Build and Deploy a Google Maps Travel Companion Application | React.js
import { alpha, makeStyles } from '@material-ui/core/styles';
export default makeStyles((theme) => ({
title: {
display: 'none',
[theme.breakpoints.up('sm')]: {
display: 'block',
},
},
search: {