<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Michael Belfiore | Author &amp; Speaker on Innovation</title>

<link rel="stylesheet" href="http://michaelbelfiore.com/wp-content/themes/Minimal/style.css" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="Michael Belfiore RSS Feed" href="http://michaelbelfiore.com/?feed=rss2" />
<link rel="alternate" type="application/atom+xml" title="Michael Belfiore Atom Feed" href="http://michaelbelfiore.com/?feed=atom" />
<link rel="pingback" href="http://michaelbelfiore.com/xmlrpc.php" />

<!--[if lt IE 7]>
	<link rel="stylesheet" type="text/css" href="http://michaelbelfiore.com/wp-content/themes/Minimal/css/ie6style.css" />
	<script type="text/javascript" src="http://michaelbelfiore.com/wp-content/themes/Minimal/js/DD_belatedPNG_0.0.8a-min.js"></script>
	<script type="text/javascript">DD_belatedPNG.fix('img#logo, #header #search-form, #slogan, a#left_arrow, a#right_arrow, div.slide img.thumb, div#controllers a, a.readmore, a.readmore span, #services .one-third, #services .one-third.first img.icon, #services img.icon, div.sidebar-block .widget ul li');</script>
<![endif]-->
<!--[if IE 7]>
	<link rel="stylesheet" type="text/css" href="http://michaelbelfiore.com/wp-content/themes/Minimal/css/ie7style.css" />
<![endif]-->

<script type="text/javascript">
	document.documentElement.className = 'js';
</script>

<meta content="Minimal v.2.2" name="generator"/><link rel='stylesheet' id='shortcodesStyleSheets-css'  href='http://michaelbelfiore.com/wp-content/themes/Minimal/epanel/shortcodes/shortcodes.css?ver=3.0.1' type='text/css' media='all' />
<script type='text/javascript' src='http://michaelbelfiore.com/wp-includes/js/jquery/jquery.js?ver=1.4.2'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://michaelbelfiore.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://michaelbelfiore.com/wp-includes/wlwmanifest.xml" /> 
<link rel='index' title='Michael Belfiore' href='http://michaelbelfiore.com' />
<meta name="generator" content="WordPress 3.0.1" />
	<script type='text/javascript'>
	// <![CDATA[
	
		<!---- et_switcher plugin v2 ---->
		(function($)
		{
			$.fn.et_shortcodes_switcher = function(options)
			{
				var defaults =
				{
				   slides: '>div',
				   activeClass: 'active',
				   linksNav: '',
				   findParent: true, //use parent elements to define active states
				   lengthElement: 'li', //parent element, used only if findParent is set to true
				   useArrows: false,
				   arrowLeft: 'a#prev-arrow',
				   arrowRight: 'a#next-arrow',
				   auto: false,
				   autoSpeed: 5000,
				   slidePadding: '',
				   pauseOnHover: true,
				   fx: 'fade',
				   sliderType: ''
				};

				var options = $.extend(defaults, options);

				return this.each(function()
				{
									
					var slidesContainer = jQuery(this).parent().css('position','relative'),
						$slides = jQuery(this).css({'overflow':'hidden','position':'relative'}),
						$slide = $slides.find(options.slides).css({'opacity':'1','position':'absolute','top':'0px','left':'0px','display':'none'}),
						slidesNum = $slide.length,
						zIndex = slidesNum,
						currentPosition = 1,
						slideHeight = 0,
						$activeSlide,
						$nextSlide;
					
					if (options.fx === 'slide') {
						$slide.css({'opacity':'0','position':'absolute','top':'0px','left':'0px','display':'block'});
					} else {
						$slide.filter(':first').css({'display':'block'});
					}
					
					if (options.slidePadding != '') $slide.css('padding',options.slidePadding);
					
					$slide.each(function(){
						jQuery(this).css('z-index',zIndex).addClass('clearfix');
						if (options.fx === 'slide') zIndex--;
						
						slideH = jQuery(this).innerHeight();
						if (slideH > slideHeight) slideHeight = slideH;
					});
					$slides.css('height', slideHeight);
					$slides.css('width', $slides.width());
									
					var slideWidth = $slide.width(),
						slideOuterWidth = $slide.outerWidth();
					
					$slide.css('width',slideWidth);
					
					$slide.filter(':first').css('opacity','1');
					
					if (options.sliderType != '') {
						if (options.sliderType === 'images') {
							controllersHtml = '<div class="controllers-wrapper"><div class="controllers"><a href="#" class="left-arrow">Previous</a>';
							for ($i=1; $i<=slidesNum; $i++) {
								controllersHtml += '<a class="switch" href="#">'+$i+'</a>';
							}
							controllersHtml += '<a href="#" class="right-arrow">Next</a></div><div class="controllers-right"></div></div>';		
							$controllersWrap = jQuery(controllersHtml).prependTo($slides.parent());
							jQuery('.controllers-wrapper .controllers').css('width', 65 + 18*slidesNum);
						}
						
						var etimage_width = $slide.width();
			
						slidesContainer.css({'width':etimage_width});
						$slides.css({'width':etimage_width});
						
						if (options.sliderType === 'images') {
							slidesContainer.css({'height':$slide.height()});
							$slides.css({'height':$slide.height()});
							
							var controllers_width = $controllersWrap.width(),
							leftPosition = Math.round((etimage_width - controllers_width) / 2);
						
							$controllersWrap.css({left: leftPosition});
						}	
					}
					
					
					if (options.linksNav != '') {
						var linkSwitcher = jQuery(options.linksNav);
						
						var linkSwitcherTab = '';
						if (options.findParent) linkSwitcherTab = linkSwitcher.parent();
						else linkSwitcherTab = linkSwitcher;
						
						if (!linkSwitcherTab.filter('.active').length) linkSwitcherTab.filter(':first').addClass('active');
										
						linkSwitcher.click(function(){
							
							var targetElement;

							if (options.findParent) targetElement = jQuery(this).parent();
							else targetElement = jQuery(this);
							
							var orderNum = targetElement.prevAll(options.lengthElement).length+1;
							
							if (orderNum > currentPosition) gotoSlide(orderNum, 1);
							else gotoSlide(orderNum, -1); 
							
							return false;
						});
					}
					
					
					if (options.useArrows) {
						var $right_arrow = jQuery(options.arrowRight),
							$left_arrow = jQuery(options.arrowLeft);
											
						$right_arrow.click(function(){				
							if (currentPosition === slidesNum) 
								gotoSlide(1,1);
							else 
								gotoSlide(currentPosition+1),1;
							
							if (options.linksNav != '') changeTab();
													
							return false;
						});
						
						$left_arrow.click(function(){
							if (currentPosition === 1)
								gotoSlide(slidesNum,-1);
							else 
								gotoSlide(currentPosition-1,-1);
							
							if (options.linksNav != '') changeTab();
							
							return false;
						});
						
					}
					
									
					function changeTab(){
						if (linkSwitcherTab != '') { 
							linkSwitcherTab.siblings().removeClass('active');
							linkSwitcherTab.filter(':eq('+(currentPosition-1)+')').addClass('active');
						}
					}
					
					function gotoSlide(slideNumber,dir){
						if ($slide.filter(':animated').length) return;
					
						$slide.css('opacity','0');
																			
						$activeSlide = $slide.filter(':eq('+(currentPosition-1)+')').css('opacity','1');
										
						if (currentPosition === slideNumber) return;
										
						$nextSlide = $slide.filter(':eq('+(slideNumber-1)+')').css('opacity','1');
										
						if ((currentPosition > slideNumber || currentPosition === 1) && (dir === -1)) {
							if (options.fx === 'slide') slideBack(500);
							if (options.fx === 'fade') slideFade(500);
						} else {
							if (options.fx === 'slide') slideForward(500);
							if (options.fx === 'fade') slideFade(500);
						}
						
						currentPosition = $nextSlide.prevAll().length + 1;
						
						if (options.linksNav != '') changeTab();
						
						if (typeof interval != 'undefined' && options.auto) {
							clearInterval(interval);
							auto_rotate();
						}
											
						return false;
					}
					
					
					if (options.auto) {
						auto_rotate();
						var pauseSlider = false;
					}
					
					if (options.pauseOnHover) { 				
						slidesContainer.hover(function(){
							pauseSlider = true;
						},function(){
							pauseSlider = false;
						});
					}
					
					function auto_rotate(){
						
						interval = setInterval(function(){
							if (!pauseSlider) { 
								if (currentPosition === slidesNum) 
									gotoSlide(1,1);
								else 
									gotoSlide(currentPosition+1),1;
								
								if (options.linksNav != '') changeTab();
							}
						},options.autoSpeed);
						
					}
					
					function slideForward(speed){
						$nextSlide.css('left',slideOuterWidth+'px');
						$activeSlide.animate({left: '-'+slideOuterWidth},speed);
						$nextSlide.animate({left: 0},speed);
					}
					
					function slideBack(speed){
						$nextSlide.css('left','-'+slideOuterWidth+'px');
						$activeSlide.animate({left: slideOuterWidth},speed);
						$nextSlide.animate({left: 0},speed);
					}
					
					function slideFade(speed){					
						$activeSlide.css({zIndex: slidesNum}).fadeOut(700);
						$nextSlide.css({zIndex: (slidesNum+1)}).fadeIn(700);
					}
					
				});
			} 
		})(jQuery);
		<!---- end et_switcher plugin v2 ---->
		
		/////// Shortcodes Javascript ///////
		
		/// tooltip ///
		
		$et_tooltip = jQuery('.et-tooltip');
		
		$et_tooltip.live('mouseover mouseout', function(event){
			if (event.type == 'mouseover') {
				jQuery(this).find('.et-tooltip-box').animate({ opacity: 'show', bottom: '25px' }, 300);
			} else {
				jQuery(this).find('.et-tooltip-box').animate({ opacity: 'hide', bottom: '35px' }, 300);
			}
		});
		
		/// learn more ///
		
		$et_learn_more = jQuery('.et-learn-more .heading-more');
		
		$et_learn_more.live('click', function() {
			if ( jQuery(this).hasClass('open') ) 
				jQuery(this).removeClass('open');
			else 
				jQuery(this).addClass('open');
				
			jQuery(this).parent('.et-learn-more').find('.learn-more-content').animate({ opacity: 'toggle', height: 'toggle' }, 300);
		});
	
	// ]]>
	</script>

</head>
<body id="home">
	<div id="page-wrap">
			
		<div id="header">
			<!-- Start Logo -->
				<a href="http://michaelbelfiore.com">					<img src="http://michaelbelfiore.com/wp-content/themes/Minimal/images/logo.png" alt="Logo" id="logo"/></a>
				
				<p id="slogan">Author &amp; Speaker on Innovation</p>
					
			<!-- End Logo -->
					
			<!-- Start Searchbox -->
				<div id="search-form">
					<form method="get" id="searchform1" action="http://michaelbelfiore.com/">
						<input type="text" value="search this site..." name="s" id="searchinput" />
					</form>
				</div>
								
			<!-- End Searchbox -->
				
				<div class="clear"></div>
				
									<ul class="superfish nav clearfix">
													<li class="current_page_item"><a href="http://michaelbelfiore.com">Home</a></li>
						
							<li class="cat-item cat-item-3"><a href="http://michaelbelfiore.com/?cat=3" title="View all posts filed under Blog">Blog</a>
</li>
						
						<li class="page_item page-item-2"><a href="http://michaelbelfiore.com/?page_id=2" title="About">About</a></li>
<li class="page_item page-item-37"><a href="http://michaelbelfiore.com/?page_id=37" title="Contact">Contact</a></li>
<li class="page_item page-item-12"><a href="http://michaelbelfiore.com/?page_id=12" title="Mad Scientists">Mad Scientists</a></li>
<li class="page_item page-item-7"><a href="http://michaelbelfiore.com/?page_id=7" title="Rocketeers">Rocketeers</a></li>
<li class="page_item page-item-15"><a href="http://michaelbelfiore.com/?page_id=15" title="Speaking">Speaking</a></li>
					</ul> <!-- end ul.nav -->
													
		</div> <!-- end #header -->

		<!-- Start Featured -->	
	<div id="featured" class="clearfix">
		<a href="#" id="left_arrow">Previous</a>
		<a href="#" id="right_arrow">Next</a>
			
	<!-- Featured Content -->
		<div id="featured_content"> 
			<!-- Featured Articles -->	
						
				<div class="slide">
					<a href="http://michaelbelfiore.com/?page_id=7">
						<img width="406" height="226" src="http://michaelbelfiore.com/wp-content/uploads/2010/11/rocketeers-406x226.jpg" class="thumb wp-post-image" alt="Rocketeers" title="Rocketeers" />					</a>
					<div class="description">
						<h2><a href="http://michaelbelfiore.com/?page_id=7">Rocketeers</a></h2>
						
												
						<p>How did SpaceX design, build, and fly America’s next manned spaceship for less than the cost of a single Space Shuttle Mission? How is Virgin carving out a brand-new (and very lucrative) market for suborbital space travel? How are garage rocket scientists changing the way NASA has done business for the last 50 years? What lessons can other companies seeking to change their own industries draw from the new space companies? Find out in <i>Rocketeers</i>.</p>
						<a href="http://michaelbelfiore.com/?page_id=7" class="readmore"><span>Read More</span></a>
					</div> <!-- end .description -->
				</div> <!-- end .slide -->
			
						
				<div class="slide">
					<a href="http://michaelbelfiore.com/?page_id=12">
						<img width="406" height="226" src="http://michaelbelfiore.com/wp-content/uploads/2010/11/madscientists-406x226.jpg" class="thumb wp-post-image" alt="Mad Scientists" title="Mad Scientists" />					</a>
					<div class="description">
						<h2><a href="http://michaelbelfiore.com/?page_id=12">Mad Scientists</a></h2>
						
												
						<p>Aside from an obscure 1974 study sponsored by DARPA itself, <i>The Department of Mad Scientists: How DARPA Is Remaking Our World, from the Internet to Artificial Limbs</i>, is the first book to tell the inside story of America’s innovation agency. How has DARPA maintained its edge for more than 50 years on a budget that is 1/2 of 1 percent of the overall defense budget? What factors contribute to its success? How can other organizations capture some of the DARPA magic for themselves? <i>The Department of Mad Scientists</i> provides valuable insights.</p>
						<a href="http://michaelbelfiore.com/?page_id=12" class="readmore"><span>Read More</span></a>
					</div> <!-- end .description -->
				</div> <!-- end .slide -->
			
						
				<div class="slide">
					<a href="http://michaelbelfiore.com/?page_id=15">
						<img width="406" height="226" src="http://michaelbelfiore.com/wp-content/uploads/2010/11/belfiore-medtronic-406x226.jpg" class="thumb wp-post-image" alt="Speaking" title="Speaking" />					</a>
					<div class="description">
						<h2><a href="http://michaelbelfiore.com/?page_id=15">Speaking</a></h2>
						
												
						<p>Inspire your team with exciting commentary and up-to-the-minute reporting on technology breakthroughs in the realms of aerospace, commercial space flight, robotics, MEMS, artificial intelligence, medical technology, and much more. Along the way, you and your team will learn Michael’s 7 Secrets of Innovation, gleaned from is travels through the frontiers of innovation, and how they can be applied to your own efforts.</p>
						<a href="http://michaelbelfiore.com/?page_id=15" class="readmore"><span>Read More</span></a>
					</div> <!-- end .description -->
				</div> <!-- end .slide -->
			
					
		</div> <!-- end #featured_content -->
		<!-- End Featured Articles -->
		<!-- Featured Menu -->
		<div id="controllers" class="clearfix"></div>
				
		<!-- End Featured Menu -->			
	</div> <!-- end #featured -->
	<!-- End Featured Content -->
	
<!-- End Featured -->				<div id="services" class="clearfix">
						
				<div class="one-third first">
											
<img src="http://michaelbelfiore.com/wp-content/uploads/2010/11/icon-4.jpg" alt="" class="icon" />
<h3 class="title"><a href="http://michaelbelfiore.com/?page_id=23">Rocketeers Video</a></h3>


<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="213" height="189" src="http://www.youtube.com/embed/eNk60_pxk6M?rel=0" frameborder="0"></iframe></p>
 
<a href="http://michaelbelfiore.com/?page_id=23" class="readmore"><span>Read more</span></a>									</div> <!-- end .one-third -->
				
				<div class="one-third">
											
<img src="http://michaelbelfiore.com/wp-content/uploads/2010/11/icon-4.jpg" alt="" class="icon" />
<h3 class="title"><a href="http://michaelbelfiore.com/?page_id=25">Michael on TVO</a></h3>


<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="213" height="189" src="http://www.youtube.com/embed/aZ8zZvBIcQs?rel=0" frameborder="0"></iframe></p>
 
<a href="http://michaelbelfiore.com/?page_id=25" class="readmore"><span>Read more</span></a>									</div> <!-- end .one-third -->
				
				<div class="one-third">
											
<img src="http://michaelbelfiore.com/wp-content/uploads/2010/11/icon-2.gif" alt="" class="icon" />
<h3 class="title"><a href="http://michaelbelfiore.com/?page_id=27">Get the Newsletter</a></h3>


<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica} span.s1 {letter-spacing: 0.0px} -->Sign up for my occasional newsletter for in-depth commentary and insights on the innovations poised to change the world, plus lessons learned for your own breakthrough projects. I’ll never share your email address with anyone else and you can unsubscribe any time.</p>
 
<a href="http://michaelbelfiore.com/?page_id=27" class="readmore"><span>Read more</span></a>									</div> <!-- end .one-third -->
				
			</div> <!-- end #services -->
			



	<div id="content" class="clearfix">
		<div id="content-area">
							<div class="entry clearfix homepage">
				
						  
<h2 class="title"><a href="http://michaelbelfiore.com/?page_id=2">About</a></h2>

<img width="137" height="140" src="http://michaelbelfiore.com/wp-content/uploads/2010/11/Belfiore_headshot-137x140.jpg" class="thumbnail-post alignleft wp-post-image" alt="About" title="About" />
<p>Michael Belfiore is an author, journalist, and speaker on the innovations shaping our world. He has written about game-changing technologies for Popular Science, Popular Mechanics, New Scientist, Smithsonian, Invention &amp; Technology, Financial Times, and other outlets. He is a member of the nominating team for Popular Science magazine’s annual Best of What’s New issue, and he has been a finalist for the International Aerospace Journalist of the Year Award.</p>
<p>Michael has appeared as a commentator on the Fox Business Network, CTV&#8217;s Canada AM, NPR&#8217;s Marketplace and Morning Edition, Showtime&#8217;s Penn &amp; Teller: BS!, and C-SPAN. He has delivered his message of change at Noblis, Medtronic, the Perimeter Institute for Theoretical Physics, and other organizations.</p>
<p>Michael&#8217;s <em>Rocketeers: How a Visionary Band of Business Leaders, Engineers, and Pilots Is Boldly Privatizing Space</em> is the first book to chronicle the birth of the commercial space age and show how innovative companies are radically changing how we reach space and creating potentially vast new markets in the process.</p>
<p>His book <em>The Department of Mad Scientists: How DARPA Is Remaking Our World, from the Internet to Artificial Limbs</em> is the first book to go behind the scenes at the Pentagon agency that gave us the Internet, the first satellite positioning system, and many other game-changing innovations.</p>
<p>Michael lives in New York’s Hudson River Valley with his wife and two daughters.</p>
<p><a title="photo by Wendy Kagan" href="http://michaelbelfiore.com/wp-content/uploads/2010/11/Belfiore_headshot.jpg" target="_blank">Download a high-resolution version of Michael&#8217;s photo.</a></p>
						  
						  
				</div> <!-- end .entry -->
				
		</div> <!-- end #content-area -->
		
		
					<div id="sidebar" class="clearfix">
	 
	</div> <!-- end sidebar -->				
	</div> <!-- end #content --> 
	 <div id="footer" >
		<div id="footer-content">
			
								
				<ul class="bottom-menu"> 
			<li class="current_page_item"><a href="http://michaelbelfiore.com">Home</a></li>
		<li class="page_item page-item-2"><a href="http://michaelbelfiore.com/?page_id=2" title="About">About</a></li>
<li class="page_item page-item-37"><a href="http://michaelbelfiore.com/?page_id=37" title="Contact">Contact</a></li>
<li class="page_item page-item-12"><a href="http://michaelbelfiore.com/?page_id=12" title="Mad Scientists">Mad Scientists</a></li>
<li class="page_item page-item-7"><a href="http://michaelbelfiore.com/?page_id=7" title="Rocketeers">Rocketeers</a></li>
<li class="page_item page-item-15"><a href="http://michaelbelfiore.com/?page_id=15" title="Speaking">Speaking</a></li>
</ul>			
			<p id="copyright">Designed by  <a href="http://www.elegantthemes.com" title="Elegant Themes">Elegant WordPress Themes</a></p>
		</div> <!-- end #footer-content -->
	</div> <!-- end #footer -->
</div> <!-- end #page-wrap -->
	 
				
		<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"></script>
	<script type="text/javascript" src="http://michaelbelfiore.com/wp-content/themes/Minimal/js/jquery.cycle.all.min.js"></script> 
	<script type="text/javascript" src="http://michaelbelfiore.com/wp-content/themes/Minimal/js/jquery.easing.1.3.js"></script>	
	<script type="text/javascript" src="http://michaelbelfiore.com/wp-content/themes/Minimal/js/superfish.js"></script>	
	<script type="text/javascript">
	//<![CDATA[
		jQuery.noConflict();
	
		jQuery('ul.superfish').superfish({ 
			delay:       200,                            // one second delay on mouseout 
			animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
			speed:       'fast',                          // faster animation speed 
			autoArrows:  true,                           // disable generation of arrow mark-up 
			dropShadows: false                            // disable drop shadows 
		}).find("> li > ul > li:last-child, > li > ul > li > ul > li:last-child, > li > ul > li > ul > li > ul > li:last-child").addClass("last");
		
		jQuery(".js #featured, .js div#tabbed").css("display","block");

				
		var $featured_content = jQuery('#featured_content'),
			$tabbed_area = jQuery('div#tabbed'),
			$controllers = jQuery('div#controllers'),
			$comments = jQuery('ol.commentlist');
		
		et_search_bar();
		
		if ($featured_content.length) {
			$featured_content.cycle({
									timeout: 6000				,
				speed: 300,
				cleartypeNoBg: true,
				prev:   'a#left_arrow', 
				next:   'a#right_arrow',
				pager:  'div#controllers',
				fx: 'scrollLeft'
			});
			
			var controllersWidth = $controllers.width(),
				controllersLeft = Math.round((960 - controllersWidth) / 2);
			if (controllersWidth < 960) $controllers.css('padding-left',controllersLeft);
		};
		
		if ($tabbed_area.length) {
			$tabbed_area.tabs({ fx: { opacity: 'toggle' } });
		};
		
		if ($comments.length) {
			$comments.find(">li").after('<span class="bottom_bg"></span>');
		};
		
		
		<!---- Search Bar Improvements ---->
		function et_search_bar(){
			var $searchform = jQuery('#header div#search-form'),
				$searchinput = $searchform.find("input#searchinput"),
				searchvalue = $searchinput.val();
				
			$searchinput.focus(function(){
				if (jQuery(this).val() === searchvalue) jQuery(this).val("");
			}).blur(function(){
				if (jQuery(this).val() === "") jQuery(this).val(searchvalue);
			});
		};
		
	//]]>	
	</script>
		
</body>
</html>