Skip to content

Instantly share code, notes, and snippets.

View CCirbo's full-sized avatar

Candice Cirbo CCirbo

  • Turing School of Software & Design
View GitHub Profile
@CCirbo
CCirbo / README.md
Created June 15, 2025 00:37 — forked from hofmannsven/README.md
Git CLI Cheatsheet

Ruby in 100 Minutes

About Ruby

Ruby was written to make the programmer's job easy and not care if the computer's job is hard. In this brief introduction we'll look at the key language features you need to get started.

Key Language features

  1. Instructions and Interpreters
@CCirbo
CCirbo / block_scope_examples.md
Created June 14, 2025 23:08 — forked from megstang/block_scope_examples.md
Block Scope Examples 14-19

Example 14

numbers = [1,2,3]
total = 0
numbers.each do |number|
  total += number
end

p total
@CCirbo
CCirbo / argument_scope_examples.md
Created June 14, 2025 23:08 — forked from megstang/argument_scope_examples.md
Argument Scope Examples 10-13

Example 10

def print_variable(x)
puts x
end

print_variable(4)
@CCirbo
CCirbo / method_scope_examples.md
Created June 14, 2025 23:08 — forked from megstang/method_scope_examples.md
Method Scope Examples 6-9

Example 6

def print_variable
  x = 10
  puts x
end
print_variable
puts x
@CCirbo
CCirbo / global_scope_examples.md
Created June 14, 2025 23:08 — forked from megstang/global_scope_examples.md
Global Scope Examples

Example 1

x = 10
puts x
puts y

Example 2

Steps to get a React App up and running

Create React App

Create React app:

npx create-react-app NAMEOFYOURAPP

To run your app:

@CCirbo
CCirbo / b2_intermission_work.md
Last active August 31, 2024 16:00 — forked from mikedao/b2_intermission_work.md
B2 Intermission Work Submission

B2 Intermission Work

Answer these Check for Understanding questions as you work through the assignments.

HTML. +++++++++++++++++++++++++++++++++++++++++++++

1. What is HTML?

  • HTML stands for Hyper Text Markup Language. It is the standard markup language for creating Web pages. It consists of a series of elements and the elements tell the browser how to display the content. Elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.

2. What is an HTML element?

Mod 0 Gist - Candice Cirbo

She/Her - 2405 Cohort - Backend

About Me

I am a former office manager of an HVAC company where I handled human resources, payroll, taxes and everything in between. I became interested in Turing after I tried one of their weekend coding classes. After that weekend, I realized I wanted to pursue a career in computer programming and that Turing was the best school to help me achieve that goal.

Intro Video Link

Link