Skip to content

Instantly share code, notes, and snippets.

@sassygrody
sassygrody / 0.2.1-boggle_class_from_methods.rb
Last active August 29, 2015 13:56 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1boggle class challenge
class BoggleBoard
def initialize(dice_grid)
@dice_grid = dice_grid
end
def create_word(*coords) #splat
coords.map { |coord| @dice_grid[coord.first][coord.last]}.join("") #dice_grid[row][column]
end
@sassygrody
sassygrody / hacker_news.css
Created March 25, 2014 18:04
phase0_week8_judge_html_css.txt
Steps:
Add the HTML and CSS files to your gist. The HTML and CSS files should be reformatted so they are more readable.
Answer the following questions in this file:
(Remember, this should be useful for others in your cohort,
so write for an audience that does not know anything about your website.)
Which website did you evaluate?
1) How does this website follow HTML Best Practices? Are there any places where
@sassygrody
sassygrody / hacker_news.css
Created March 25, 2014 18:05
phase0_week8_judge_html_css.txt
Steps:
Add the HTML and CSS files to your gist. The HTML and CSS files should be reformatted so they are more readable.
Answer the following questions in this file:
(Remember, this should be useful for others in your cohort,
so write for an audience that does not know anything about your website.)
Which website did you evaluate?
1) How does this website follow HTML Best Practices? Are there any places where
I can't access any gists.... what is going on?
Github says
"WHOOPS! can't find the gist of the gist you were looking for."
@sassygrody
sassygrody / jquery_example.html
Last active August 29, 2015 13:59 — forked from dbc-challenges/jquery_example.html
Intro to jQuery for Phase 0
<!DOCTYPE html>
<html>
<head>
<title>DOM manipulation with jQuery</title>
<!-- Add a link to jQuery CDN here script here -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery_example.js"></script>
</head>
<body>
@sassygrody
sassygrody / zoo.js
Last active August 29, 2015 14:06 — forked from dbc-challenges/zoo.js
//------------------------------------------------------------------------------------------------------------------
// YOUR CODE: Create your Zoo "object literal" and Animal "constructor" and "prototypes" here.
//------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------
// DRIVER CODE: Do **NOT** change anything below this point. Your task is to implement code above to make this work.
//------------------------------------------------------------------------------------------------------------------

Sabbaticals: Have Your Cake And Eat It Too

I love the saying "Have your cake and eat it too" but in this case it's more like, Sabbaticals: Keep Your Job And Take A Lot Of Time Off To Learn, Reset, And Regenerate.... or maybe this saying isn't working for this title.

Last year I took 2 months off of work. It was a unique, wonderful, privileged existence, and the best decision I've made in years. Even though I wasn't getting paid, I had a job, health insurance, and time to do whatever I wanted.

Why would my company offer a sabbatical?

I hear employee retention is a good thing! The tech industry is prone to high turnover. Things move fast here and the people want to move with it! This is good except that employee turnover is expensive, disruptive, and often a bad sign. I've worked at Tandem for almost 5 years and with several other employees for 4+ years, so I want to say our retention rate is high. This is because there are clear processes and policies to help employees feel supported, valued, and ca

@sassygrody
sassygrody / example.js
Created January 24, 2020 19:31
Fetch data in React Functional Component
// The goal: get data from JS Fetch API (an async function) and render data
// Example 1 (basic):
// add an async function inside of useEffect that will await the result of the Fetch request
// set the state to be rendered in the JSX
// add id to the useEffect dependency list to prevent page from constantly refetching data
import React, { useState, useEffect } from 'react'
import FetchService from './FetchService'
import SessionService from './SessionService'

EWODs

Instructions

Perform each exercise at the follow intervals: 35/45/55/45/35 (seconds)

Example of round 1:

  • do exercise 1 for 35; take 8s break; then exercise 2 for 35; take 8s break
  • do excerise 1 for 45; take 8s break; then exercise 2 for 45; take 8s break
  • do excerise 1 for 55; take 8s break; then exercise 2 for 55; take 8s break
  • do excerise 1 for 45; take 8s break; then exercise 2 for 45; take 8s break
@sassygrody
sassygrody / walgreens-vaccine-scheduling.md
Last active March 31, 2021 19:56
How-To Schedule a Welgreens Vaccine Appointment

How-To Schedule a Walgreens Vaccine Appointment

For those of you who have been hearing about the challenges of scheduling a Covid-19 vaccine appointment, I can say that these challenges are real. It is a confusing system and my first attempts felt very uncomfortable, even as someone who works with software. This guide hopes to help prepare anyone who has yet to schedule an appointment or anyone who wants insight into the Walgreens process.

About This Guide

The following are instructions based on aggregate experiences in downtown Chicago, IL and all scheduling was done a computer web browser (these instructions should be transferable to mobile or tablet but there may be discrepencies).

The instructions are specific to the Illinois vaccination process and the questionairre/scheduling prcoess differs slightly from state to state.