Skip to content

Instantly share code, notes, and snippets.

View code-for-coffee's full-sized avatar

James code-for-coffee

  • Chicago, IL
View GitHub Profile
@code-for-coffee
code-for-coffee / installfest_easy.sh
Created September 19, 2016 23:27 — forked from billpatrianakos/installfest_easy.sh
Commands to install everything a student needs during a web development class
#!/usr/bin/sh
# Install Fest 2.0
##
# Welcome message
##
echo "################################"
echo "# Welcome to InstallFest v2.0 #"
echo "#==============================#"
@code-for-coffee
code-for-coffee / project5.md
Last active August 1, 2016 15:52
ADI Chicago Project 5

Project #5: Your Portfolio Project

Overview

You’ve come a long way, and it's time to show it. This will be your most advanced project to date, and if you put creativity into it, it'll hopefully be the thing you want to show off most prominently in your portfolio.

You get to call the shots and invent your own idea, choosing frameworks & tools that are appropriate for what you want to build. Pull from everything you've learned so far, and tackle something that'll push you a little outside of your comfort zone.

For this project, you'll be working on your own and using product development strategies learned in unit 3 to come up with a project proposal that will be reviewed with your instructional team; this proposal is done to make sure you are building something that can be accomplish in the limited time we have while making sure it's something that will challenge you.

@code-for-coffee
code-for-coffee / homework_7_4.md
Created July 14, 2016 21:05
API Practice Homework

Homework for Thursday, July 14th

  1. Use the Forecast.io API you registered to find the current temperature and weather conditions in the following locations. You'll need to find lat/long for these locations. The API usage is as follows - https://api.forecast.io/forecast/your_api_key/37.8267,-122.423:
  • Barcelona, Spain
  • Boston, US
  • Shanghai, China
  • Mombosa, Kenya
  • The North Pole
  1. Peruse the Pokemon API (pokeapi.co) to find your favourite pokemon and at least two abilities they have.
  2. Create a JSON file to represent yourself in your json_intro repository. It will be called me.json. Add the following keys and values: name, age, year_of_birth, hobbies, and likes_pizza.
@code-for-coffee
code-for-coffee / rails.md
Last active November 19, 2016 03:51
Intro to Ruby on Rails

Introduction to Rails

James Traver

Full Stack Web & Android Engineer @ GA Chicago


Agenda

Ruby Ruby on Rails

@code-for-coffee
code-for-coffee / intro_to_ruby.md
Last active June 18, 2016 01:02
Intro to Ruby

Introduction to Ruby

James Traver

Full Stack Web & Android Engineer @ GA Chicago


Agenda

@code-for-coffee
code-for-coffee / readme.md
Last active June 13, 2016 20:57
Active Calculator!

Active Calculator!

You are going to create a new Github repositoriy called active_calculator. Clone/sync it down to your computer to /adi/active_calculator/. It will contain 5 activities:

  • A main activity to select an action to perform
  • An activity to perform addition (TextViews, EditText Numbers, and Buttons)
  • An activity to perform subtraction (TextViews, EditText Numbers, and Buttons)
  • An activity to perform multiplication (TextViews, EditText Numbers, and Buttons)
  • An activity to perform division + show the remainder (TextViews, EditText Numbers, and Buttons)
@code-for-coffee
code-for-coffee / lab.md
Last active June 6, 2016 17:00
ArrayList Challenge
  1. Create an ArrayList of friends.
  2. Add all of your friends.
  3. Log the size of your friends.
  4. Then, the robot uprising happens! You survive! Your friends do not. Find out how to remove all of them at once from the ArrayList. Do it.
  5. Now, you've found some rocks, frogs, roaches, etc as friends.
  6. Create a new ArrayList of NewFriends
  7. Loop through all of your new friends
  8. And then watch the nuclear holocaust together.
  9. (This means use the method from step 4)
  10. Log the size of your list.
// data types!
// flash card time!
// one side: use case
// back side: variable type
// type || the name = assignment || a value
char capitolS = 'S'; // a single character
String myMessage = "Hello, you may buy all the booze.";
int funTimes = -42; // positive or negative whole value
@code-for-coffee
code-for-coffee / expressions_homework.md
Last active May 25, 2016 18:57
Expressions Homework

EXPRESSIONS HOMEWORK

https://media.giphy.com/media/BmmfETghGOPrW/giphy.gif

GOALS

  • You will practice writing expressions
  • Revisit algebraic expressions and order of operations
  • Research theorums and formulae used in the real world
  • Convert formula that adhere to the order of operations to programmtic expressions
package org.shakeitspeare.codeforcoffee.shakeitspeare;
import android.util.Log;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Date;
/**
* Created by codeforcoffee on 5/24/16.