Skip to content

Instantly share code, notes, and snippets.

View ajpulzone's full-sized avatar

Annie Pulzone ajpulzone

View GitHub Profile
@ajpulzone
ajpulzone / intermediate_sql.md
Created November 26, 2022 04:11 — forked from case-eee/intermediate_sql.md
Intermediate SQL

Intermediate SQL Workshop

  • Run psql
  • You may need to run CREATE DATABASE intermediate_sql;
  • To exit this shell, you can run CTRL d

Create tables

Let's create some tables in the database.

B2 Intermission Work
Answer these Check for Understanding questions as you work through the assignments.
HTML
What is HTML?
*The standard markup language for creating web pages. HTML stands for Hyper Text Markup Language.
What is an HTML element?
*An HTML element is everything from the start tag to the end tag (ex. <tagname> Content goes here... </tagname>
*There are some elements that do not have any content (ex. <br>). These are called empty elements.
@ajpulzone
ajpulzone / global_scope_examples.md
Created August 25, 2022 16:43 — forked from megstang/global_scope_examples.md
Global Scope Examples

Example 1

x = 10
puts x
puts y

Example 2

@ajpulzone
ajpulzone / mod_1_bee_drills_setup.md
Created July 19, 2022 05:21 — forked from josh-works/mod_1_bee_drills_setup.md
mythical creatures, prework, ruby exercises, turing, ruby

Make mod 1 easier than it otherwise would be: a guide

This guide will make Turing's mod 1 much easier than it otherwise would be.

note: please see the updated version of this guide; if you continue reading, you'll have a far inferior experience than if you head over here: https://josh.works/turing-backend-prep-01-intro

We'll do this by working on, (and completing) a few dozen small Ruby exercises.

You might be thinking:

Josh. This already sounds like a lot of work. I just finished my prework, and I know Turing's gonna be brutal. Why should I do all of this optional work, instead of enjoying my last few days of freedom?