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
<script src="http://www.buzzsprout.com/105/5806-episode-0-2-7-padrino-sinatra-based-ruby-web-framework.js?player=small" type="text/javascript" charset="utf-8"></script> |
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
<script src="http://www.buzzsprout.com/105/3738-episode-0-2-0-node-js-with-felix-geisendorfer.js?player=small" type="text/javascript" charset="utf-8"></script> |
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
<script src="http://www.buzzsprout.com/105/3596-episode-0-1-9-james-edward-gray-ii-on-ruby-textmate-and-red-dirt-ruby-conf.js?player=small" type="text/javascript" charset="utf-8"></script> |
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
<?php $api = new clAPI('http://twitter.com/statuses/public_timeline.xml'); ?> | |
<?php if ($api->parse('10 minutes')): ?> | |
<ul> | |
<?php foreach($api->get('status', 3) as $status): ?> | |
<li> | |
<a href="http://twitter.com/<?php echo $status->get('user/screen_name') ?>">@<?php echo $status->get('user/screen_name') ?></a>: | |
<a href="http://twitter.com/<?php echo $status->get('user/screen_name') ?>/statuses/<?php echo $status->get('id') ?>"><?php echo $status->get('text') ?></a> | |
</li> | |
<?php endforeach; ?> | |
</ul> |
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
<script src="http://www.buzzsprout.com/105/3197-episode-0-1-7-open-source-publishing-with-geoffrey-grosenbach-brandon-mathis-and-tim-caswell.js?player=small" type="text/javascript" charset="utf-8"></script> |
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
<script src="http://www.buzzsprout.com/105/3123-episode-0-1-6-ajax-org-frameworks-with-ruben-daniels-and-rik-arends.js?player=small" type="text/javascript" charset="utf-8"></script> |
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
<script src="http://www.buzzsprout.com/105/2703-episode-0-1-4-andy-gross-and-sean-cribbs-on-riak.js?player=small" type="text/javascript" charset="utf-8"></script> |
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
Feature: exit statuses | |
In order to specify expected exit statuses | |
As a developer using Cucumber | |
I want to use the "the exit status should be" step | |
Scenario: exit status of 0 | |
When I run "ruby -h" | |
Then the exit status should be 0 | |
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
<script src="http://www.buzzsprout.com/105/2563-episode-0-1-3-civic-hacking-with-luigi-montanez-and-jeremy-carbaugh-from-sunlight-labs.js?player=small" type="text/javascript" charset="utf-8"></script> |
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
// config file: nodejuice.js | |
// Example StaticMatic configuration. | |
// -> http://localhost:3010 | |
exports.sidekick = { | |
host : null, // Leave 'null' to listen on all hosts. | |
port : 3010, // access your server from this port. | |
fetch : { // point to your web server. | |
host : 'localhost', | |
port : 3000 |