- Download this application skeleton.
- Convert the app to use AJAX.
- Add any files you changed to your gist and submit your code.
This file contains 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
def is_fibonacci?(i) | |
fib1 = Math.sqrt((5*(i**2)+4)) | |
fib2 = Math.sqrt((5*(i**2)-4)) | |
puts fib1 == fib1.floor || fib2 == fib2.floor ? true : false | |
end |
This file contains 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
<script src="zoo.js"></script> |
This file contains 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> | |
<link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css"> | |
<link rel="stylesheet" href="main.css"> | |
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800"> | |
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900"> | |
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css"> | |
</head> |
This file contains 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
- Crime Prediction App (Nathan) | |
- Crowdsourced Birthday Drink App (Ty) | |
- Clinical Trial Patient Web App (Katy) | |
- Annotate & Collect Links, maybe by categories (Meara) | |
- Real Talk Conversations (Chirag) | |
- Gunshot triangulation - mimicking data (Nathan) | |
- If you have a bad day, see Nathan's face app (Ty) | |
- Recreate AIM with the sound effects and look (Katy) | |
- Secure chat (Nathan) | |
- Visualize the tools/gems/languages in your github project (Katy) |
This file contains 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
class Die | |
attr_accessor :selected | |
def initialize | |
@selected = false | |
end | |
end |
This file contains 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
asdfvas |
This file contains 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>exercism.io</title> | |
<style></style> | |
</head> | |
<body> | |
<h1>The Process</h1> |
This file contains 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
class RPNCalculator | |
def evaluate(rpn_string) | |
rpn_arr = rpn_string.split(' ') | |
operating_arr = [] | |
rpn_arr.each do |element| | |
operating_arr << case element | |
when /\d+/ then element.to_i | |
when '+' then operating_arr.pop + operating_arr.pop | |
when '*' then operating_arr.pop * operating_arr.pop |
This file contains 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>Title of the page </title> | |
</head> | |
<body> | |
The page content here. | |
</body> | |
</html> |
OlderNewer