Skip to content

Instantly share code, notes, and snippets.

View olitreadwell's full-sized avatar

Oli Treadwell (he/him) olitreadwell

View GitHub Profile
@olitreadwell
olitreadwell / creamy beef recipe.md
Last active May 31, 2024 04:23
Crock Pot Creamy Beef and Mushroom Stew Plus sides

Crock Pot Creamy Beef and Mushroom Stew Plus sides

Shopping List for Creamy Beef and Mushroom Stew with Sides (NZ Edition)

For the Stew:

  • Meat and Dairy:
    • 1.5 kg cubed beef stew meat (or the equivalent in grams)
    • 170 grams cream cheese, softened
    • 2 cans (about 300 grams each) cream of mushroom soup
@olitreadwell
olitreadwell / recipe.md
Created May 26, 2024 04:52
Slow Cooker Creamy Italian Sausage, Spinach, and Tortellini Soup

Enhanced Slow Cooker Creamy Italian Sausage, Spinach, and Tortellini Soup

Base Ingredients (10 items):

  1. Italian Sausage (1.5 pounds, remove casing if needed)
  2. Cheese Tortellini (1.5 packages, about 30 ounces, refrigerated or frozen)
  3. Baby Spinach (6 cups, fresh)
  4. Chicken Broth (6 cups)
  5. Heavy Cream (1.5 cups)
  6. Diced Tomatoes (2 cans, 14.5 ounces each, with juice)
  7. Onion (1 large, diced)
@olitreadwell
olitreadwell / README.md
Created September 29, 2023 19:58
Master Your Coding Bootcamp Journey with the "Phase-X-Project-Starter" Strategy

Master Your Coding Bootcamp Journey with the "Phase-X-Project-Starter" Strategy 🚀

too long; didn't read:

  1. Each phase of your code course, create a new github repo project folder called "Phase-X-Project-Starter"

  2. Use one of your assignments as the starting point for this project by copying all the files into this new folder.

  3. As you complete assignments, update "Phase-X-Project-Starter" with the new code features you learn and commit your changes to GitHub. >

@olitreadwell
olitreadwell / rubric.md
Last active September 29, 2023 16:55
Grading Rubric for LinkedIn Post

Grading Rubric for Engaging LinkedIn Blog Post

Professional Tone and Language

  • 1: Tone is too casual or too formal, and language is either too simplistic or filled with jargon.
  • 3: Tone is generally professional but may waver at times. Language is mostly appropriate.
  • 5: Consistently maintains a professional tone and uses industry-specific language that is also accessible.

Leverage Rich Media

@olitreadwell
olitreadwell / README.md
Last active September 27, 2023 18:33
Deploying a Flask API and PostgreSQL database on Render

Deploying a Flask API and PostgreSQL database on Render

Checklist

Deploying a Flask App with Render - https://render.com/docs/deploy-flask

Explain what it means to deploy an application Observe how to configure an application for deployment Observe how to deploy an application to render

@olitreadwell
olitreadwell / 2023-09-25-flatiron-acc-phase-5-checklist.md
Last active September 25, 2023 17:42
2023-09-25-flatiron-acc-phase-5-checklist
@olitreadwell
olitreadwell / 2023-08-29-submission-downloader.sh
Created August 29, 2023 19:31
Download flatiron phase submissions: project, videos, blogs
#!/bin/bash
log_message() {
local message="$1"
echo "$(date +"%Y-%m-%d %H:%M:%S") - $message" >> "${processed_dir}/process_log.txt"
}
# Utility function to extract user's name from a file
extract_name() {
local file="$1"
@olitreadwell
olitreadwell / 2023-07-29-ip-passthrough-guide.md
Created July 29, 2023 17:16
2023-07-29-ip-passthrough-guide
@olitreadwell
olitreadwell / eslintrc.js
Created June 29, 2023 18:44
beginners-eslint
{
"env": {
"browser": true,
"es2021": true
},
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"plugins": ["import"],