Skip to content

Instantly share code, notes, and snippets.

View jasheloper's full-sized avatar

Jashele T. jasheloper

View GitHub Profile
@jasheloper
jasheloper / buildweek_web27_resources.md
Last active January 13, 2020 15:21
Chef Portfolio 3
@jasheloper
jasheloper / restaurantpassport.sql
Last active January 13, 2020 15:20
restaurant passport sql statements
<! -- Select Retaurants Table: This is all our restaurants & what user went where, their rating notes, & everything else:
->
select * from restaurants_table
<! -- User name, City | Restaurant Name, City, Rating ->
@jasheloper
jasheloper / web27_Jashele.md
Last active February 17, 2020 20:24
daily stuff for TL - organization
@jasheloper
jasheloper / a-100-Days-of-Code.md
Last active February 27, 2020 18:10
100 Days of Code version 1.0
@jasheloper
jasheloper / info.md
Last active January 18, 2020 21:33
Restaurant Passport Build Week Project, a team collaboration project built at Lambda School | December 2019 - January 2020

Restaurant Passport

About

Any foodie worth their weight in salt should always have ideas of where to eat in their home city whenever the opportunity arises (date night, a rare free night, girls night, bachelor party, etc.). If you are tired of defaulting to the same dive spot because of "decision fatigue" every week, RestaurantPassport is the solution. View the restaurants you've been to, have suggestions at your fingertips for any occasion and taste, and brag to your friends about all the cool eateries you've been to!



Restaurant Passport Team

| TEAM MEMBER | TITLE | ROLE |

@jasheloper
jasheloper / 001_work_sample_jashele_tillman.md
Last active January 23, 2020 18:24
Jashele Tillman - Work Sample

Sample Project

Summary

As a way to showcase my work in Web Development, I built a responsive 1-page portfolio website from the ground up.

Overview

Project Type Team Subject Link
@jasheloper
jasheloper / Context-API.md
Last active March 26, 2022 22:35
Context APi example

Import

Creating a Context:

import React, { createContext } from "react";

Using a Context:

@jasheloper
jasheloper / React-Router.md
Last active March 7, 2021 19:32
React Router example

Install

npm install react-router-dom

Import

@jasheloper
jasheloper / Dynamic-Routing-with-Fetch-API.md
Last active March 27, 2022 05:48
Dynamic Routing with Fetch API

Fetching Data from an API + using Dynamic Routing

Let's say I want to fetch data from an API but I also want to link each individual piece of data to its own individual page.

Import

import React, { useState, useEffect } from "react";