Skip to content

Instantly share code, notes, and snippets.

View rpearce's full-sized avatar
👶
infant and toddler duty

Robert Pearce rpearce

👶
infant and toddler duty
View GitHub Profile
@rpearce
rpearce / songs_iteration_to_csv_challenge.rb
Last active August 27, 2015 02:36
Songs Iteration and CSV Writing Challenge
songs = [
{
id: 1,
title: "Mother",
author: "Pink Floyd",
album: "The Wall"
},
{
id: 2,
title: "Since I've been Loving You",
@rpearce
rpearce / songs_map_challenge.rb
Last active August 27, 2015 02:36
Songs Map Challenge
songs = [
{
id: 1,
title: "Mother",
author: "Pink Floyd",
album: "The Wall"
},
{
id: 2,
title: "Since I've been Loving You",
@rpearce
rpearce / song_class_challenge.rb
Last active August 27, 2015 16:00
Song Class Challenge
class Song
# your code here
end
song = Song.new(
id: 1,
title: "Mother",
author: "Pink Floyd",
album: "The Wall"
)
@rpearce
rpearce / SassMeister-input.sass
Created November 12, 2014 16:07
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
@mixin dimensions($width, $height: 0)
@if $height == 0
width: $width
height: $width
@else
@rpearce
rpearce / bad_code-v1.rb
Last active August 29, 2015 14:20
Some of the worst code I've ever written!
`make clean;`
`make setup;`
Dir.glob('./*.pdf') do |pdf_file|
`pdftotext #{pdf_file} -raw;`
end
require 'pry'
require 'csv'
@rpearce
rpearce / test.html
Last active August 29, 2015 14:22
Great tooltip that sadly isn't accessible :(
<p>
Slow-carb Tumblr High Life biodiesel, stumptown keytar art party mumblecore PBR next level chillwave McSweeney's meh butcher Bushwick.
Twee try-hard meditation viral, master cleanse butcher pour-over Pitchfork Vice <span data-tooltip="This is a wide tooltip">farm-to-table</span> paleo Portland brunch.
Ugh plaid lomo YOLO food truck, mustache migas +1 viral health goth tousled. Tofu chambray Portland chillwave chia authentic.
Typewriter hoodie freegan Intelligentsia fashion axe. <span data-tooltip="Something to say here">Listicle +1 craft beer tattooed mlkshk jean</span> shorts, Banksy ethical selfies Pitchfork Portland irony.
Tattooed four loko cardigan, ugh cold-pressed heirloom ennui meditation fap literally authentic migas.
</p>
@rpearce
rpearce / tooltip.css
Last active August 29, 2015 14:22
Accessible CSS3 Tooltip
[data-has-tooltip] {
position: relative;
display: inline-block;
box-sizing: border-box;
border-bottom: 0.167rem dashed #b4e7f8;
cursor: help;
}
[data-tooltip],
[data-tooltip]:after {
visibility: hidden;
func greet(name: String, day: String, special: String) -> String {
return "Hello \(name), today is \(day), and the special is \(special)."
}
greet("Bob", day: "Tuesday", special: "Catfish")
@rpearce
rpearce / teaching_functions.js
Last active August 29, 2015 14:28
Teaching Functions
function greet(name, day, special) {
// your code here
}
greet('Robert', 'Tuesday', 'fried catfish'); // This should return the String "Hello, Robert. Today is Tuesday, and the special is fried catfish."
// ==========================================================
function sumOf(numbers) {
// your code here
}
@rpearce
rpearce / teaching_switches.js
Created August 25, 2015 11:39
Teaching Switches
var str = "great minds think alike";
var output = [];
str.split('').forEach(function(letter) {
switch (letter) {
// your code here
}
});
output.join(''); // should be "grtmndsthnklk"