Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content Type" contet="text/html; charset-utf-8"/>
<title>Aditya Site</title>
<link rel="stylesheet" href="style.css" type="text/css" media="screen" >
</head>
@amahesh0501
amahesh0501 / jquery_example.html
Last active December 31, 2015 11:39 — forked from dbc-challenges/jquery_example.html
Intro to jQuery for Phase 0
<!DOCTYPE html>
<html>
<head>
<title>DOM manipulation with jQuery</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<h1> Hello. Welcome to the jQuery DOM Manipulation Challenge! </h1>
@amahesh0501
amahesh0501 / 0.2.1-boggle_class_from_methods.rb
Last active December 28, 2015 02:09 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
class BoggleBoard
def initialize (board)
@board=board
end
def create_word(*coords)
puts coords.map { |coord| @board[coord.first][coord.last]}.join("")
end
def get_row(row)
@amahesh0501
amahesh0501 / 0.2.1-boggle_class_from_methods.rb
Last active December 27, 2015 10:49 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
class Boggle_game
def initialize (board)
@board=board
end
def create_word(*coords)
coords.map { |coord| @board[coord.first][coord.last]}.join("")
end
def get_row(row)