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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>LogIn</title> | |
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script> | |
</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
def search_text(text, keyword): | |
i = 0 | |
while(i < len(text)): | |
line = '' | |
while not (text[i] == '.'): | |
line += text[i] | |
i += 1 | |
print line | |
line = line.split(' ') | |
if keyword in line: |
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
$(document).ready(function() { | |
// convert all a/href to a#href | |
$("body").delegate("a", "click", function(){ | |
var href = $(this).attr("href"); // modify the selector here to change the scope of intercpetion | |
// Push this URL "state" onto the history hash. | |
$.bbq.pushState(href,2); | |
// Prevent the default click behavior. |
We can make this file beautiful and searchable if this error is corrected: It looks like row 10 should actually have 10 columns, instead of 7 in line 9.
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
,RegDate,first_Name,last_Name,Email_Address,HomePhone,Street,City,State,Zipcode | |
1,11/12/08 10:47,Allison,Nguyen,[email protected],6154385000,3155 19th St NW,Washington,DC,20010 | |
2,11/12/08 13:23,SArah,Hankins,[email protected],414-520-5000,2022 15th Street NW,Washington,DC,20009 | |
3,11/12/08 13:30,Sarah,Xx,[email protected],(941)979-2000,4175 3rd Street North,Saint Petersburg,FL,33703 | |
4,11/25/08 19:21,David,Thomas,[email protected],650-799-0000,9 garrison ave,Jersey City,NJ,7306 | |
5,2/2/09 11:29,Chris,Sackett,[email protected],613 565-4000,173 Daly Ave,Ottawa,ON, | |
6,11/12/08 15:00,Aya,Fuller,[email protected],778.232.7000,2-1325 Barclay Street,Vancouver,BC,90210 | |
7,11/12/08 16:05,Mary Kate,Curry,[email protected],(202) 328 1000,1509 Jackson Street,Baltimore,MD,21230 | |
8,11/12/08 17:18,Audrey,Hasegan,[email protected],530-919-3000,1570 Old Ranch Rd.,Placerville,CA,95667 | |
9,11/13/08 1:32,Shiyu,Armideo,[email protected],8084974000,644 Ike |