Skip to content

Instantly share code, notes, and snippets.

View supercodingninja's full-sized avatar
😇
Continually Blest, Thankful, Hopeful.

Frederick Thomas supercodingninja

😇
Continually Blest, Thankful, Hopeful.
View GitHub Profile
@supercodingninja
supercodingninja / Social Network Profile_Codecademy.js
Created May 29, 2017 07:16
Social Network Profile_Codecademy created by supercodingninja - https://repl.it/IV8A/0
<!DOCTYPE html>
<html>
<head>
<title>Frederick</title>
</head>
<body>
<img src=https://scontent-lga3-1.xx.fbcdn.net/v/t1.0-9/18699892_303141600127221_8542844042594414290_n.jpg?oh=a6a8bb4ea5c331ad3571573b87485b0d&oe=59AAD921>
<p>I am an American male, in the Greater Seattle area, whose in his mid 30's. I like what William W. Purkey stated,
<br>
<br><em>“You’ve gotta dance like there’s nobody watching,
@supercodingninja
supercodingninja / Social Network Profile_Codecademy.js
Created May 29, 2017 07:21
Social Network Profile_Codecademy created by supercodingninja - https://repl.it/IV8A/0
<!DOCTYPE html>
<html>
<head>
<title>Frederick</title>
</head>
<body>
<img src=https://scontent-lga3-1.xx.fbcdn.net/v/t1.0-9/18699892_303141600127221_8542844042594414290_n.jpg?oh=a6a8bb4ea5c331ad3571573b87485b0d&oe=59AAD921>
<p>I am an American male, in the Greater Seattle area, whose in his mid 30's. I like what William W. Purkey stated,
<br>
<br><em>“You’ve gotta dance like there’s nobody watching,
@supercodingninja
supercodingninja / Social Network Profile_Codecademy.js
Created May 29, 2017 07:22
Social Network Profile_Codecademy created by supercodingninja - https://repl.it/IV8A/0
<!DOCTYPE html>
<html>
<head>
<title>Frederick</title>
</head>
<body>
<img src=https://scontent-lga3-1.xx.fbcdn.net/v/t1.0-9/18699892_303141600127221_8542844042594414290_n.jpg?oh=a6a8bb4ea5c331ad3571573b87485b0d&oe=59AAD921>
<p>I am an American male, in the Greater Seattle area, whose in his mid 30's. I like what William W. Purkey stated,
<br>
<br><em>“You’ve gotta dance like there’s nobody watching,
@supercodingninja
supercodingninja / Printable Photo Page, With Links_Codecademy.js
Created May 29, 2017 08:04
Printable Photo Page, With Links_Codecademy created by supercodingninja - https://repl.it/IVrq/0
@supercodingninja
supercodingninja / index.css
Created May 30, 2017 01:46
null created by supercodingninja - https://repl.it/IWvP/7
img {
display: block;
height: 100px;
width: 300px;
margin: auto;
}
p {
text-align: center;
font-family: Garamond, serif;
@supercodingninja
supercodingninja / index.css
Created May 30, 2017 04:30
null created by supercodingninja - https://repl.it/IWxg/1
p {
font-family: Garamond, serif;
}
#intro {
font-weight: bold;
color: #000000;
}
div p {
@supercodingninja
supercodingninja / index.css
Created May 30, 2017 06:11
HTML & CSS_Pseudo Selectors_Links_Codcademy created by supercodingninja - https://repl.it/IXII/0
a:link {
text-decoration: none;
color: #008B45;
}
a:hover {
color: #00FF00;
}
a:visited {
@supercodingninja
supercodingninja / IXdH-0.js
Created May 30, 2017 13:38
null created by supercodingninja - https://repl.it/IXdH/0
//Rock destroys scissors.//
//Scissors cut paper.//
//Paper covers rock.//
//Here lies the conundrum: The Circle of Life.//
/*This code will break the game into 3 phases:
a. User makes a choice
b. Computer makes a choice
c. A compare function will determine who wins*/
@supercodingninja
supercodingninja / My First Coding Adventure, with Justin Bieber (Why?!)_Codecademy.js
Last active May 30, 2017 14:07
My First Coding Adventure, with Justin Bieber (Why?!)_Codecademy created by supercodingninja - https://repl.it/IXfo/0
// Check if the user is ready to play!
prompt ("ARE YOU READY FOR VICTORY?");
confirm ("I AM READY FOR VICTORY!!!");
var age;
age = prompt ("What's your age");
if (age < 13)
{console.log ("You are allowed to play; but we take no responsibility.")}
else {console.log ("You're ready to play with the big boys! PLAY ON!")}
console.log ("You are at a Justin Bieber concert, and you hear this lyric 'Lace my shoes off, start racing.'");
console.log ("Suddenly, Bieber stops and says, 'Who wants to race me?'");
@supercodingninja
supercodingninja / Rock, Paper, Scissors Game, with Pseudo Coding_Codecademy.js
Created May 30, 2017 14:55
Rock, Paper, Scissors Game, with Pseudo Coding_Codecademy created by supercodingninja - https://repl.it/IXdG/1
//Rock destroys scissors.//
//Scissors cut paper.//
//Paper covers rock.//
//Here lies the conundrum: The Circle of Life.//
/*This code will break the game into 3 phases:
a. User makes a choice
b. Computer makes a choice
c. A compare function will determine who wins*/