Skip to content

Instantly share code, notes, and snippets.

View LeahNelson's full-sized avatar

Leah Nelson LeahNelson

View GitHub Profile

Cro Metrics Front-End Engineering Application

Thanks for your interest in working with us! To apply:

  • Create a "new private gist" (link in github header once you're logged in) with the Raw Text of this .md file (do not fork this gist). Please name your gist application.md so that it's formatted correctly (not a .txt file)
  • We're considering only US based applicants. We're also an all remote company who operates on thin margins to drive down the cost of testing for our clients. As such, we play to our strengths and hire outside more competitive markets like New York, San Francisco, and Washington State. We ask that you submit desired minimum rates so that we can move forward accordingly based on application quality. This will not lock you into those rates from a negotiation standpoint, but are rather used to help us all move forward knowing we're not outside what we can fit into our business model.
  • Answer the following questions in the spaces provided and send your gist to matthew.gossage@crome
@LeahNelson
LeahNelson / cat.rb
Created July 24, 2015 16:31
Ruby Lesson 25
class Pet
attr_reader :color, :breed
attr_accessor:name
def initialize(color, breed)
@color = color
@breed = breed
@hungry = true
end
def feed(food)
puts "Mmmm, " + food + "!"
@LeahNelson
LeahNelson / cat.rb
Created July 22, 2015 21:31
Ruby Lesson 24
class Cat
attr_reader :color, :breed
attr_accessor:name
def initialize(color, breed)
@color = color
@breed = breed
@hungry = true
end
def feed(food)
puts "Mmmm, " + food + "!"
@LeahNelson
LeahNelson / fav_foods.rb
Created July 22, 2015 15:15
Ruby Lesson 23
def fav_foods
food_array = []
3.times do
puts "Name a favorite food."
food_array << gets.chomp
end
p food_array
puts "Your favorite foods are #{food_array.join(", ")}."
food_array.each do |food|
@LeahNelson
LeahNelson / program.rb
Last active August 29, 2015 14:25
Ruby Lesson 22
def greeting
puts "Please enter your name:"
name =gets.chomp
puts "hello" + " " + name
end
greeting
@LeahNelson
LeahNelson / program.rb
Created July 20, 2015 17:02
Ruby Lesson 21
def greeting
puts "Please enter your name:"
name =gets.chomp
puts "hello" + " " + name
end
greeting
@LeahNelson
LeahNelson / index.html
Last active August 29, 2015 14:25
Portfolio lesson 20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Leah Nelson</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
@LeahNelson
LeahNelson / scripts.js
Created July 17, 2015 19:34
Portfolio lesson 19
var myKitties = [{title: "First Project", pic:"img/cuba-web.jpg"},
{title: "Second Project", pic: "img/rome-web.jpg"},
{title: "Third Project", pic: "img/sagrada-familia-web.jpg"},
{title: "Fourth Project", pic: "img/landscape.jpg"}];
$(document).ready(function(){
$(".message-box").css("background-color","pink");
$("#button").click (function() {
@LeahNelson
LeahNelson / scripts.js
Created July 8, 2015 17:19
Portfolio lesson 18
$(document).ready(function(){
$(".message-box").css("background-color","pink");
$("#button").click (function() {
console.log( "clicked" );
var comment = $(".message-box").val();
console.log(comment);
$("#visible-comment").html(comment);
return false;
});
@LeahNelson
LeahNelson / scripts.js
Created July 7, 2015 18:27
Portfolio lesson 17
$(document).ready(function(){
$(".message-box").css("background-color","pink");
$("#button").click (function() {
console.log( "clicked" );
var comment = $(".message-box").val();
console.log(comment);
$("#visible-comment").html(comment);
return false;
});