Skip to content

Instantly share code, notes, and snippets.

using System.IO;
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
List<String> finalist = new List<string>(Josephina(10, 2, 3));
foreach (object i in finalist)
using System.IO;
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
Console.WriteLine("Hello World");
List<String> finalist = new List<string>(Josephina(10, 2, 3));
<?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

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:

@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.

@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 / 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 / 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 / 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?