Skip to content

Instantly share code, notes, and snippets.

View seth-at-at's full-sized avatar

Seth Moser seth-at-at

  • turing.io
  • Denver, CO
View GitHub Profile
# Documentation Guidelines for Cold Outreach I Deliverable:
* Name of contact
* Tae Kim
* Date of contact
* March 15th, 2017
* Outcome (i.e., did you get a response? If not, what is your follow-up plan? Did you meet? When? What was the result?)
* Date of feedback conversation: Mod 1, Knight writer project
* How did you prepare for the conversation?
I didn't
* How did the conversation go for you? What was easy about the conversation? What was more difficult?
I think it went well, learning what others see my stengths and weeknesses as is interesting. I think the whole conversation was easy but I'm not one to care about critisicm.
* What principles of feedback did you use in the conversation?
We just followed the DTR and talked about everything we did.
* Any other comments:
N/A
  • What does it mean to concatenate files? Find an image of an example concatenated file. Why would we want to concatenate files?

It appends one file to another http://orange.readthedocs.io/en/latest/_images/Concatenate-Example.png Saves space

  • What does it mean to precompile files? What does this have to do with coffeescript and sass files?

compiled into an intermediate form that is faster to process for the compiler.

# Feedback III Reflection
* What are you doing well as a pair programmer and collaborator?
Communicating and problem solving
* How do you use your strengths as a team member?
Provide a different perspective on problems
* How would you like to continue to develop your strengths?
Work more with people that think similar to me.

Sessions, Cookies, and Flashes

  1. If we didn't have cookies and sessions, what would happen?
  • We would not have a convenient way to store data from users
  1. What is a cookie?
  • Cookies are small files which are stored on a user's computer very similar to a hash
  • They are designed to hold data specific to a particular client and website.
  1. What's the difference between a cookie and a session?

HTML/CSS Basics

Warmup

  • The purpose of HTML (hypertext markup language) is standard for describing the structure and presentation of information
  • The purpose of CSS is to be a stylesheet to create how the language will look on the web page
  • div/span/a/input
  • The purpose of a class in CSS and an ID is to be able to select multiple things without having to retype over and over.
  • You can grab all by using ( * { } )

HTML

1. Give one difference between Modules and Classes.
Modules are static, classes you can manipulate.
2. Defining Modules
module Doughy
def self.has_carbs?
true
end
end
class Pizza
class PizzaOven
def cook_pizza
"mmm 'za"
end
end
class Student
attr_reader :name
def initialize(name = "name")
#Floats and Integers
What’s the difference between a float and integer?
* Floats are exact values while Integers are rounded to the nearest whole number
What’s are the similarities and differences between BigNum and FixNum?
* Fixnum is () Bignum is ()
What will 4.0 / 2 return?
* 2.0
#Floats and Integers
What’s the difference between a float and integer?
* Floats are exact values while Integers are rounded to the nearest whole number
What’s are the similarities and differences between BigNum and FixNum?
* Fixnum is () Bignum is ()
What will 4.0 / 2 return?
* 2.0