spec
|--- apis #do not put into controllers folder.
|--- your_api_test_spec.rb
|--- controllers
|--- models
|--- factories
|--- views
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>JQuery Review</title> | |
</head> | |
<body> | |
<h1>JQuery Review</h1> | |
<div class="part-1"> | |
<h2> Part 1</h2> | |
<p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Do Now 5.0.2</title> | |
</head> | |
<body> | |
<h1>JQuery Review</h1> | |
<div class="part-1"> | |
<h2> Part 1</h2> | |
<p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Do Now 5.0.2</title> | |
</head> | |
<body> | |
<h1>JQuery Review</h1> | |
<div class="part-1"> | |
<h2> Part 1</h2> | |
<p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Do Now 5.0.2</title> | |
<link href="https://fonts.googleapis.com/css?family=Playfair+Display"> | |
</head> | |
<body> | |
<h1>JQuery Review</h1> | |
<h2> Part 1</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family:"Gill Sans", Calibri, sans-serif; | |
background-color: #fffc00; | |
color: #1f0eff; | |
font-size: 20px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family:"Gill Sans", Tahoma, sans-serif; | |
background-color: #fffc00; | |
color: #1f0eff; | |
font-size: 20px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
An attempt to write a cli tic-tac-toe game in node | |
and es6/2015 using as many pure functions as possible. | |
The main logic is a series of pure functions that are tested | |
and the interactive part uses node's readline module and is not tested. | |
The github repo with tests and how to run: https://github.com/edgenard/node-es6-ttt | |
Note: I was able create an immutable gameStore with deepCopy. The computer player is unbeatable. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="An HTML page with errors"> | |
<meta charset="utf-8"> | |
<title>A Webpage</title> | |
<body> | |
<p> | |
My First Webpage! | |
Find the two errors! |
NewerOlder