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
| <h1 style="text-align:center;" class="red">World Maker Faire New York: Live</h1> | |
| [ustream id=6783644 live=1 hwaccel=1 version=3 width=940 height=529] | |
| <div class="row"> | |
| <div class="span6"> | |
| <h2 style="text-align:center;"><a class="red" href="http://makerfaire.com/location/innovation-stage/" title="Innovation Stage">Innovation Stage</a></h2> | |
| [ustream id=33074077 live=1 hwaccel=1 version=3 width=460 height=297] | |
| </div> | |
| <div class="span6"> | |
| <h2 style="text-align:center;"><a class="red" href="http://makerfaire.com/location/innovation-stage/" title="Innovation Stage">Innovation Stage</a></h2> | |
| [ustream id=33074077 live=1 hwaccel=1 version=3 width=460 height=297] |
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
| <csinclude record="cs_lay/93" field="pre" current="comm" page="faire" faire="ba11" nav="bayarea/2011" show_sponsors="y" newsletter="yes"/> | |
| <csif cond="{cs.cgi.x-date}" eq="2011-05-22"> | |
| <h2>Maker Faire Bay Area 2011 At-a-Glance Sunday May 22, 2011</h2> | |
| <p><strong>View </strong> | |
| <a href="http://makerfaire.com/bayarea/2011/schedule/grid.csp">Saturday</a> | |
| | |
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
| <div id="maincol-wide-800"> | |
| <div class="clr"></div> | |
| <div class="content"> | |
| <a name="content"></a> | |
| <table class="blog" cellpadding="0" cellspacing="0"><tbody><tr><td valign="top"><div> | |
| <table class="contentpaneopen"> | |
| <tbody><tr> | |
| <td valign="top" colspan="2"> | |
| <script type="text/javascript"> |
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 | |
| function x_get_issue_archive_link( $atts, $content = null ) { | |
| global $post; | |
| return '<a href="' esc_url( get_post_meta( get_the_ID(), 'issue-archive-1-link', true) . '">' . wp_kses_post( do_shortcode( $content ) ) . '</a>'; | |
| } | |
| add_shortcode( 'archive-link', 'x_get_issue_archive_link' ); |
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
| int led1 = 13; | |
| int led2 =12; | |
| int button=7; | |
| int value=0; | |
| int ledon=0;// 0 = led off, 1 = led on | |
| // the setup routine runs once when you press reset: | |
| void setup() { | |
| // initialize the digital pin as an output. | |
| pinMode(led1, 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
| <div class="carousel slide" id="myCarousel-1234"> | |
| <div class="carousel-inner"> | |
| <div class="item active"> | |
| <a href="http://makerfairenyc.eventbrite.com/"><img class="alignnone size-full wp-image-9960" alt="Tickets are on sale for NYC!" src="http://makerfaire.files.wordpress.com/2013/07/2.jpg?h=300" /></a> | |
| <div class="carousel-caption"> | |
| <h3>Tickets are on sale for World Maker Faire New York 2013.</h3> | |
| </div> | |
| </div> | |
| <div class="item"> | |
| <a href="http://makerfairenyc.eventbrite.com/"><img class="alignnone size-full wp-image-9960" alt="Tickets are on sale for NYC!" src="http://makerfaire.files.wordpress.com/2013/07/1.jpg?h=300" /></a> |
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
| { | |
| "device": "Arduino", | |
| "url": "http://makeprojects.com/Project/Build+an+LED+Photometer/3021/1", | |
| "guide": { | |
| "author": { | |
| "text": "Eric Weinhoffer", | |
| "userid": 15040 | |
| }, | |
| "categories": [ | |
| "Arduino", |
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
| [maker-camp-project | |
| title="Repeat After Me Memory Game" | |
| project_url="http://makezine.com/projects/repeat-after-me-a-mintronics-memory-game/" | |
| img="http://i1.wp.com/make-images.s3.amazonaws.com/KeXBEDVlV3lGPffR.jpg" | |
| date="Weekend Project" | |
| link="http://makezine.com/projects/repeat-after-me-a-mintronics-memory-game/" | |
| link_title="Make It"] | |
| In this project, we'll turn a MAKE MintDuino microcontroller and a Mintronics Survival Pack into a replica of retro electronic memory games like Simon and the Tandy Pocket Repeat game sold by RadioShack in the 1980s. |
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 | |
| /** | |
| * Modal Window Builder | |
| */ | |
| function make_modal_builder( $atts, $content = null ) { | |
| extract( shortcode_atts( array( | |
| 'launch' => 'Launch Window', | |
| 'title' => 'Modal Title', | |
| 'btn_class' => '', |