Skip to content

Instantly share code, notes, and snippets.

View hhff's full-sized avatar
♻️
not ur dad's plant-based solarpunk marxist

Hugh Francis hhff

♻️
not ur dad's plant-based solarpunk marxist
View GitHub Profile
@hhff
hhff / pokedex.md
Last active April 23, 2021 21:32 — forked from conordavidson/pokedex.md
Pairing Interview — Pokédex

For this interview we'll be building a lightweight CRUD app. We'll start by creating some system diagrams and wireframes then build out a server and client.

The application is called Pokedéx.io (we use .io because it's a brilliant startup).

We have some basic functional requirements for this application:

  • We will list Pokémon on a page. We'll pull from the Pokeapi (https://pokeapi.co/) to get this list.
  • Users can create an account and login. They can authenticate using email & password, Oauth with Google, or the slick new magic link strategy! Up to you!
  • Once authenticated, users can capture Pokémon. Next to each Pokémon in the list, there will be a capture button. When capturing a Pokémon, the user will be given the oppurtunity to name the capture and add a note. A user can retroactively update this name and note. Captures must be persisted and users cannot capture a Pokémon more than once.

We also have some fun features that we'd like to diagram (but not build):

@staltz
staltz / introrx.md
Last active June 2, 2024 11:03
The introduction to Reactive Programming you've been missing
@robedge
robedge / gist:2044588
Created March 15, 2012 14:51 — forked from salomvary/html5.html
HTML: minimal html5 boilerplate
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
@rstacruz
rstacruz / index.md
Last active November 3, 2023 09:56
Rails models cheatsheet

Rails Models

Generating models

$ rails g model User

Associations

belongs_to

has_one