Skip to content

Commit

Permalink
added hackday toolbox
Browse files Browse the repository at this point in the history
  • Loading branch information
codepo8 committed Jul 29, 2010
0 parents commit c617716
Show file tree
Hide file tree
Showing 31 changed files with 6,106 additions and 0 deletions.
88 changes: 88 additions & 0 deletions index.html
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,88 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>The Hackday Toolbox</title>
<link rel="stylesheet" type="text/css" href="yui.css">
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body class="yui-skin-sam">
<div id="doc2" class="yui-t5">
<div id="hd" role="banner">
<h1>The Hackday Toolbox</h1>
<p class="update">Version: 1.0 (28/07/2010) - <a href="">check for updates on GitHub</a></p>
</div>
<div id="bd" role="main">
<div id="yui-main">
<div class="yui-b">
<div id="intro">
<p>The Hackday Toolbox is a collection of demo code that should get you going when you are competing in a hackathon or hackday. It was compiled to avoid having to explain the same problems over and over again and instead to give you a simple example to start from.</p>
<p>This is not meant to be a document to surf but instead to try out and look at the source code. All the client-side examples have all the code in-line and you can start altering it to your needs. The PHP examples you need to look at the source in the editor of your choice.</p>
<p>You can <a href="">download the Hackday Toolbox at GitHub</a>. All the code here is <a href="http://wait-till-i.com/license.txt">licensed with BSD</a> - so go nuts.</p>
</div>
<h2>Hack demo code</h2>
<ul class="nav">
<li>Setup and general language information:
<ul>
<li><a href="phpforhacks/index.html">Using PHP for hacks</a></li>
</ul>
</li>
<li>Geo and location based services
<ul>
<li><a href="yql-geo-library/index.html">Getting all kind of geographical and visitor information with YQLGeo</a></li>
<li><a href="yahoo-maps/index.html">Using Yahoo Maps with GeoPlanet data</a></li>
</ul>
</li>
<li>YQL client side
<ul>
<li><a href="yql-with-javascript/index.html">Using YQL with JavaScript</a></li>
<li><a href="yql-with-php-simple/index.php">Using YQL with PHP (open data)</a></li>
<li><a href="yql-with-yui3/index.html">Using YQL with YUI3 (open data)</a></li>
<li><a href="yql-form/index.html">Showing a form to query YQL data with JavaScript</a></li>
<li><a href="yql-flickr-photos-js/index.html">Demo of showing Flickr photos using YQL and <code>flickr.photolist</code> in JavaScript</a></li>
<li><a href="yql-flickr-photos-yui/index.html">Demo of showing Flickr photos using YQL and YUI3</a></li>
<li><a href="yql-open-table-with-js/index.php">Using JavaScript in an open table</a></li>
</ul>
</li>
<li>YQL server side
<ul>
<li><a href="yql-with-php-simple/index.php">Using YQL with PHP (open data)</a></li>
<li><a href="yql-with-php-authenticated/index.php">Using YQL with PHP (oAuth authenticated data)</a></li>
<li><a href="yql-form/index.php">Showing a form to query YQL data with PHP</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="yui-b" id="sb">
<h2>Resources</h2>
<ul class="nav resource">
<li>PHP:
<ul>
<li><a href="http://php.net">PHP documentation</a></li>
</ul>
</li>
<li>YQL:
<ul>
<li><a href="http://developer.yahoo.com/yql">Official documentation</a></li>
<li><a href="http://developer.yahoo.com/yql/console">Interactive console</a></li>
<li><a href="http://github.com/yql/yql-tables">Open Tables repository on GitHub</a></li>
<li><a href="http://developer.yahoo.net/forum/?showforum=41&cookiecheckonly=1">Forum</a></li>
</ul>
</li>
<li>YUI:
<ul>
<li><a href="http://developer.yahoo.com/yui">Official documentation</a></li>
<li><a href="http://yuilibrary.com/forum/viewforum.php?f=15">Forums</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="ft" role="contentinfo">
<p>Hackday toolbox by <a href="http://wait-till-i.com">Chris Heilmann</a>.</p>
</div>

</div>
</body>
</html>
608 changes: 608 additions & 0 deletions phpforhacks/index.html

Large diffs are not rendered by default.

Loading

0 comments on commit c617716

Please sign in to comment.