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
[master] clifff@~/Programming/code_jam/hangman: rake | |
(in /Users/clifff/Programming/code_jam/hangman) | |
Testing hangman.rb against works/sample.in... | |
Great success! | |
Testing hangman.rb against fails/B-small-attempt0.in... | |
Not a total failure! | |
Testing hangman.rb against fails/B-small-attempt4.in... | |
FAIL. Current program matched a known bad output! |
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 lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<script type="text/javascript" src="js/lastfm.api.md5.js"></script> | |
<script type="text/javascript" src="js/lastfm.api.js"></script> | |
<script type="text/javascript" src="js/lastfm.api.cache.js"></script> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> | |
<script> | |
/* Create a LastFM object */ |
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
class BarChartTest < Test::Unit::TestCase | |
def test_bar_chart | |
@chart = GoogleVisualr::BarChart.new | |
@chart.add_column('string', 'Year') | |
@chart.add_column('number', 'Sales') | |
@chart.add_column('number', 'Expenses') | |
@chart.add_rows(4) | |
@chart.set_value(0, 0, '2004') | |
@chart.set_value(0, 1, 1000) | |
@chart.set_value(0, 2, 400) |
NewerOlder