Skip to content

Instantly share code, notes, and snippets.

View hamouj's full-sized avatar

Jasmine Hamou hamouj

View GitHub Profile

Calendaring - CFU

Mod 0

Mod 0-Week 1 (October 10-16) Mod 0-Week 1 Mod 0-Week 2 (October 17-23) Mod 0-Week 2 Mod 0-Week 3 (October 24-30)

@hamouj
hamouj / git_cfu.md
Last active October 12, 2022 04:12

Git - Check For Understanding

Git Workflow

Follow the steps below to practice the Git workflow. Be ready to copy-and-paste your Terminal output as confirmation of your work.

  1. Create a directory called git_cfu. Inside of that directory, create a file called thoughts.md.
  2. Initialize the directory.
  3. Use git status to ensure you are set up for tracking using Git.
  4. Add your thoughts.md to the staging area.
@hamouj
hamouj / b2_intermission_work.md
Last active January 26, 2023 21:59 — forked from mikedao/b2_intermission_work.md
B2 Intermission Work Submission

B2 Intermission Work

HTML

  1. What is HTML?

    Answer: Hyper Text Markup Language (HTML) is the standard markup language for web pages and consists of elements.

  2. What is an HTML element?

Answer: Elements are labels for pieces of content and determines how to display the content. Elements consist of a start tag, content, and an end tag unless it is an empty element.

@hamouj
hamouj / Consultancy Project Requirements.md
Last active April 9, 2023 16:26
Consultancy Project Requirements

The project requirements are as follows:

- [ ] Consume two or more external APIs

- [ ]  Build APIs that return JSON responses

- [ ] Use an external OAuth provider to authenticate users

- [ ] Refactor code for better code organization/readability
@hamouj
hamouj / Be Good DTR.md
Last active April 11, 2023 04:20
Be Good DTR

Be Good: Project DTR

Beginning DTR

What are your learning goals for the project?

  • Huy: Google OAuth, VCR, caching
  • Jasmine: Google OAuth, caching
  • Kara: Google OAuth, caching, make user stories
  • Matt: Observability
  • Mel: Google OAuth, VCR, Bootstrap
@hamouj
hamouj / json_contract.md
Last active April 15, 2023 17:19 — forked from KaraJoHo/json_contract.md
BE - Do Good Requests/Endpoints

Good Deeds

Request: get "/api/v1/good_deeds"

Response:

{
  "data": [{
    "id": “1”,
@hamouj
hamouj / todo_api_contract.md
Last active May 23, 2023 19:35
To Do Guru API Contract

getHousehold Query

Request

query getHousehold($email: String!) {
    household (email: $email) {
        id
        name
        members {
            id
            name