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 / 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"],

Slideshow Section: Introduction to Accessibility Testing Tools

Slide 1.1: Introduction to Accessibility Testing Tools

Provide an overview of the importance of accessibility testing in web development.
Explain how automated testing tools can help identify and fix accessibility issues.
Set the stage for the upcoming sections that explore different categories of accessibility testing tools.
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: ['eslint:recommended', 'plugin:react/recommended', 'plugin:@typescript-eslint/recommended'],
overrides: [],
parser: '@typescript-eslint/parser',
parserOptions: {