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
[user] | |
name = Your Name Here | |
email = [email protected] | |
[github] | |
user = your_github_username | |
token = your_github_api_key | |
[core] | |
editor = nano | |
pager = | |
[color] |
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
#!/usr/bin/env python | |
# By David, Jonathan, David, and Zarino | |
import sys | |
names = sys.argv | |
score = 0.0 | |
p1 = names[1].lower() |
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
//jsonData contains data in the appropriate format | |
var json_table = new google.visualization.Table(document.getElementById('table_div_json')) | |
var json_data = new google.visualization.DataTable(jsonData, 0.6); | |
json_table.draw(json_data, { | |
showRowNumber: true | |
}); |
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
// Invoke using something like: | |
// HTML: <img src="foobar.png" width="400" height="300" alt="Example" /> | |
// JQUERY: $('img').zoompan({sw: 400, sh: 300, lw: 2851, lh: 2135}); | |
(function($){ | |
$.fn.zoompan = function(settings) { | |
settings = jQuery.extend({ | |
sw: 100, // small image width | |
sh: 100, // small image height |
NewerOlder