Skip to content

Instantly share code, notes, and snippets.

View Kmacpher's full-sized avatar

Karen MacPherson Kmacpher

View GitHub Profile
@Kmacpher
Kmacpher / videos.txt
Created May 6, 2017 16:32
Review videos for Admissions Prep
canPlayBanjo - https://www.youtube.com/watch?v=A4FD1XtiE1o&feature=youtu.be
maxOfThree - https://www.youtube.com/watch?v=J5mUUn75Mec&feature=youtu.be
Vowel Count - https://www.youtube.com/watch?v=7FE2gVN6WUc&feature=youtu.be
underToCamel - https://www.youtube.com/watch?v=6O5wkRsWirc&feature=youtu.be
11:05 - Palindrome - https://www.youtube.com/watch?v=dZINp1sMSaI
11:35 - First Repeating Letter - http://www.youtube.com/watch?v=EFPEmNi6ooY
12:05 - Utopian Tree - https://www.youtube.com/watch?v=PiGeQXKNiMo
12:35 - Nested Loops - http://www.youtube.com/watch?v=kLpE1cXZN8o
1:05- Rotate - http://www.youtube.com/watch?v=hcXxkDQ9qR4
@Kmacpher
Kmacpher / bootstrap.html
Created August 16, 2016 16:24
Adding In Bootstrap
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guessing Game</title>
<!-- Bootstrap and CSS here-->
<link rel='stylesheet' type='text/css' href='style.css'>
<link rel='stylesheet' type='text/css' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'>
</head>
@Kmacpher
Kmacpher / classesAndIdsSolution.html
Created August 14, 2016 20:10
End of step 'Classes and Ids'
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guessing Game</title>
<!-- Bootstrap and CSS here-->
<link rel='stylesheet' type='text/css' href='style.css'>
</head>
<body>
@Kmacpher
Kmacpher / gettingStartedWithHtml.html
Last active February 15, 2018 20:23
GG step 1 solution
<div id='app'>
<div id='headers'>
<h1 id='title'>Play the Guessing Game!</h1>
<h3 id='subtitle'>Guess a number between 1-100!</h3>
</div>
<div id='main'>
<div>
<input placeholder="#" maxlength='3' autofocus=autofocus></input>
@Kmacpher
Kmacpher / startingPoint.html
Last active October 25, 2018 21:21
Guessing Game Starting Code
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guessing Game</title>
<!-- Bootstrap and CSS here-->
<style>
.center {
text-align: center;
}