Skip to content

Instantly share code, notes, and snippets.

View ricklopez's full-sized avatar

Rick Lopez ricklopez

  • Me
  • San Francisco, CA
View GitHub Profile
@ricklopez
ricklopez / docker-builder.sh
Created February 21, 2020 22:31 — forked from didip/docker-builder.sh
Small helper script that automates Docker building and pushing
#!/bin/bash
set -ex
PARENT_DIR=$(basename "${PWD%/*}")
CURRENT_DIR="${PWD##*/}"
IMAGE_NAME="$PARENT_DIR/$CURRENT_DIR"
TAG="${1}"
REGISTRY="hub.docker.com"
@ricklopez
ricklopez / flexbox.md
Last active March 19, 2020 01:55 — forked from spoike/flexbox.md
Flexbox CSS Cheatsheet

Flexbox Cheatsheet

Flex Container

default to row.

@ricklopez
ricklopez / napkin-one
Created July 16, 2020 02:27 — forked from RandyWritesCode/napkin-design.md
"back of napkin" designs of the basic layout of my Punisher Season Two Trivia - Quiz App
@ricklopez
ricklopez / napkin-one.md
Last active July 16, 2020 02:28 — forked from RandyWritesCode/napkin-design.md
"back of napkin" designs of the basic layout of my Punisher Season Two Trivia - Quiz App

Add and Image

![Title](https://user-images.githubusercontent.com/58892815/87619469-44f86d80-c6ea-11ea-9e30-7439299774bd.jpg)

Title

@ricklopez
ricklopez / serverless.yml
Created April 7, 2021 02:49 — forked from DavidWells/serverless.yml
DynamoDB custom index serverless.yml example
service: service-name
provider:
name: aws
runtime: nodejs6.10
functions:
myfunc:
handler: handler.myfunc