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 / slides.md
Created October 14, 2015 22:16
Build a Website in 90 Minutes with General Assembly

GeneralAssemb.ly

Build a Website in 90 Minutes with General Assembly


##Agenda

@code-for-coffee
code-for-coffee / scss.md
Created November 3, 2015 16:43
Sass Intro

HTML & CSS

Sass with SCSS


##Installing Sass

To globally install Sass on your computer, run gem install sass.

@code-for-coffee
code-for-coffee / file.md
Created November 4, 2015 01:58
HTML & CSS Layout

Sample HTML & CSS Layout

This layout uses floats to create a two column (content and sidebar) layout that may be used for any future project!

index.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
@code-for-coffee
code-for-coffee / rups.md
Created November 17, 2015 17:23
Ruby Rups

##Ruby Rups!

Round 1: Prime Time

  • Write a method called prime? that takes a single parameter called number and returns true if the parameter is a prime number, or false otherwise.
  • Use the Math.sqrt ...

Round 2: Fardingworth Falls

@code-for-coffee
code-for-coffee / rups2.md
Created November 17, 2015 17:25
Ruby Rups 2.0

#Ruby Practice - REPS (RUPS 2.0)!

Learning Objectives... or rather... REPS!!!!

  • ...REPS with creating methods
  • ...REPS with iteration
  • ...REPS with functions on numbers, strings, arrays
@code-for-coffee
code-for-coffee / readme.md
Last active December 9, 2015 03:52
Android Workshop

Android Workshop

  1. Download the latest version of Android Studio: http://tools.android.com/download/studio/builds/1-5-1
  2. Once you have downloaded Android Studio, you should then proceed to install it.
  3. After you have completed installation you will be prompted to import settings. Select I do not have a previous version of Studio...
  4. You'll now be walked through the welcome wizard. Select next.
  5. The next screen prompts you to locate the Java Development Kit (JDK). If you do not have the JDK, you'll need to download and install it to continue. You can find the JDK Version 8 here. If you need to install the JDK, take note of where it is installed. Below are a few of the default locations. The Detect button works rather well, but it isn't a bad idea to play it safe and take note.
  • Mac OS X Location: /Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home
  • Windows Location: `C:
@code-for-coffee
code-for-coffee / gitbook-pdf.md
Created January 13, 2016 17:35
Generating a PDF of a Gitbook (OS X)
@code-for-coffee
code-for-coffee / outline.md
Created January 26, 2016 16:11
Computer Science

CS 169: Object-Oriented Design Patterns

Bundle These Concepts

  • Models
  • Controllers
  • Views
  • Factory
  • Observer

Objectives

@code-for-coffee
code-for-coffee / 01_interview.md
Created January 27, 2016 16:35
Breaking Problems Down

Breaking Problems Downs

  1. I have a problem!
  2. You need to solve it!
  3. Interviewers want to see how you think!
  4. You need to be professional.
  5. Step by step breakdown.
  6. They want to see how you think, research, etc.
  7. Be prepared to draw, whiteboard, take notes, act as if you are yourself.
@code-for-coffee
code-for-coffee / utunni-effect.md
Last active January 27, 2016 17:13
Utinni-effect!

UtiNii!

http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/ee/ee12f650ebce9e2631ff86a3cb235bb7147bf644_full.jpg

  • Write a program that prints the numbers from 1 to 100.
  • But for multiples of three print “Uti” instead of the number and for the multiples of five print “Nii!”.
  • For numbers which are multiples of both three and five print “UtiNii!”