Skip to content

Instantly share code, notes, and snippets.

@schleary
schleary / Tarot Reader Logic Assessment.md
Last active August 29, 2015 14:02
Simple Explanation of a Logic Problem

###T A R O T   R E A D E R   L O G I C   A S S E S S M E N T === ###1). What were the weights of the cats? *** The weights of the cats were 1 kilogram, 6 kilograms, and 6 kilograms.

###2). How did you arrive at that answer? Show your process.

@schleary
schleary / Cave Gnome Logic Assessment.md
Last active August 29, 2015 14:02
Markdown Explanation of a Solution to a Logic Problem Involving Painted Gnomes

###G N O M E   C A V E   L O G I C   A S S E S S M E N T === ###1). How did they do this? *** * The first gnome to leave the cave had little to do but stand out front and wait for the others.
  • The second gnome came out and simply stood next to the first. Regardless of whether they were painted the same color or not, they were instantly sorted; they were either grouped together as the same color, or sorted with one color on each side.

  • Then the third gnome came out, and did one of two things: if the first two gnomes were differently colored, then the third gnome simply stood between them, to be automatically absorbed by the correct side. If, however, the first two gnomes were painted the same color, this third gnome self-sorted by standing at either end of the first two. In this way, gnome #3 was sorted, regardless of color.

@schleary
schleary / Holly_Leary_Resume.md
Last active August 29, 2015 14:02
Resume in Markdown

**H O L L Y   M.  L E A R Y** === 507 W. Mercer st. 601 Seattle, WA 98119 schleary@gmail.com 607.232.9210

###S U M M A R Y

@schleary
schleary / TechnicalReadingAssessment.md
Last active August 29, 2015 14:02
RubyGem Bundler Reading Assessment

###T E C H N I C A L   R E A D I N G   A S S E S S M E N T

###1). What does the command “bundle gem foodie” do?


The command bundle gem foodie creates a gem named foodie, along with a corresponding scaffold directory consisting of files Gemfile, Rakefile, .gitignore, foodie.gemspec, lib/foodie.rb, lib/foodie, and lib/foodie/version.rb. If Git is installed, bundle gem foodie will also initialize a Git repository within the directory to be used for commits.


###2). In what folder do we put our test files?

@schleary
schleary / MusicFile.txt
Last active February 14, 2020 21:11
Mimics a simple music player
Blue Suede Shoes
Elvis Presley
Elvis Presley: Legacy Edition
With A Little Help From My Friends
The Beatles
Sgt. Pepper's Lonely Hearts Club Band
Seven Nation Army
The White Stripes
Elephant
Long Line Of Cars
@schleary
schleary / BadCabbage.java
Created July 14, 2014 18:45
Caterpillar Game
import java.awt.Color;
import java.awt.Point;
import uwcse.graphics.*;
import java.awt.Point;
import java.util.ArrayList;
import javax.swing.JOptionPane;
import uwcse.graphics.*;
public class BadCabbage extends Cabbage {
Oval circle;
@schleary
schleary / Customer.java
Created August 13, 2014 17:26
Amazon Customer Product Simulation
import java.util.Scanner;
/**
* @author Holly Leary
*
* Customer class - Extra credit part one completed
*
*/
public class Customer {
@schleary
schleary / Behavioral Cut-App.md
Last active August 29, 2015 14:14
Behavioral Cut-App

PRODUCT PLAN: Behavioral Cut-App

Problem Statement

Sometimes it seems like life is 90% upkeep and waiting. Washing the dishes, doing laundry, taking the bus, shopping for groceries, packing lunches, watering the plants, responding to emails, going to the gym, taking out the garbage, feeding the cat, cooking dinner, and on and on and on...

Sometimes it feels like we're going through life on autopilot, and it can often feel like we don't even have time to live and experience our own lives.

PRODUCT PLAN: Wat Do? [Seattle]

Problem Statement

Sometimes it's hard to figure out what to do. The possibilities are endless, but sometimes it's hard to know what those possibilities are. The Wat Do app is a tool any user can use to randomly generate ideas for activity suggestions, based as many or as few filters as the user wishes to input.

##V1 Features:

<?php
/*
* Converts CSV to JSON
* Example uses Google Spreadsheet CSV feed
* csvToArray function I think I found on php.net
*/
header('Content-type: application/json');
// Set your CSV feed