<!doctype html>
<html lang="en-US">
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
        <!--[if IE]>
        <meta name="X-UA-Compatible" content="IE=edge" >
        <![endif]-->
        <title> Constructing Modern Knowledge</title>
        <!--[if lte IE 8]>
        <link rel="stylesheet" href="http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/ie8.css" />
        <![endif]-->
        <!--[if lte IE 7]>
        <link rel="stylesheet" href="http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/bootstrap-ie7.css" />
        <style type="text/css">
            .col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.input-group,.row,.content{
                box-sizing:border-box;behavior:url(http://constructingmodernknowledge.com/wp-content/themes/Tyler/js/boxsizing.htc)
            }
        </style>
        <link rel="stylesheet" href="http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/ie7.css" />
        <![endif]-->
        <!-- HTML5 Shim, Respond.js and PIE.htc IE8 support of HTML5 elements, media queries and CSS3 -->
        <!--[if lt IE 9]>
        <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
        <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
        <style type="text/css">
            .speakers .speaker .speaker-inner, .speakers .photo img, .connect, .sessions .session .speaker img,
            .connect .links a:hover:before, .sessions .session .session-inner, .location .explore, .location .map,
            .articles article .image, .facebook .fb-event, .facebook .fb-view, .twitter .view, .twitter .tweet,
            .sidebar .widget_latest_comments li a,.sidebar h2, .articles article .image, .comments-area h2,
            .commentlist .comment .comment-content,.commentlist .comment .comment-content:after,
            .timecounter, input[type=text], textarea, .landing .box, h1 img.img-circle {
                behavior: url("http://constructingmodernknowledge.com/wp-content/themes/Tyler/js/pie/PIE.htc");
            }
        </style>
        <![endif]-->
        <meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
		<script type="text/javascript">
			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/constructingmodernknowledge.com\/wp-includes\/js\/wp-emoji.js?ver=5.7.2","twemoji":"http:\/\/constructingmodernknowledge.com\/wp-includes\/js\/twemoji.js?ver=5.7.2"}};
			/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

( function( window, document, settings ) {
	var src, ready, ii, tests;

	// Create a canvas element for testing native browser support of emoji.
	var canvas = document.createElement( 'canvas' );
	var context = canvas.getContext && canvas.getContext( '2d' );

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {number[]} set1 Set of Emoji character codes.
	 * @param {number[]} set2 Set of Emoji character codes.
	 *
	 * @return {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( set1, set2 ) {
		var stringFromCharCode = String.fromCharCode;

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 );
		var rendered1 = canvas.toDataURL();

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 );
		var rendered2 = canvas.toDataURL();

		return rendered1 === rendered2;
	}

	/**
	 * Detects if the browser supports rendering emoji or flag emoji.
	 *
	 * Flag emoji are a single glyph made of two characters, so some browsers
	 * (notably, Firefox OS X) don't support them.
	 *
	 * @since 4.2.0
	 *
	 * @private
	 *
	 * @param {string} type Whether to test for support of "flag" or "emoji".
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( type ) {
		var isIdentical;

		if ( ! context || ! context.fillText ) {
			return false;
		}

		/*
		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
		 * it doesn't work when the font is bolder than 500 weight. So, we
		 * check for bold rendering support to avoid invisible emoji in Chrome.
		 */
		context.textBaseline = 'top';
		context.font = '600 32px Arial';

		switch ( type ) {
			case 'flag':
				/*
				 * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec,
				 * but has landed in Twemoji early, so we can add support for it, too.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (white flag emoji + transgender symbol).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ],
					[ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ]
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for UN flag compatibility. This is the least supported of the letter locale flags,
				 * so gives us an easy test for full support.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly ([U] + [N]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ],
					[ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ]
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for English flag compatibility. England is a country in the United Kingdom, it
				 * does not have a two letter locale code but rather an five letter sub-division code.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ],
					[ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ]
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * So easy, even a baby could do it!
				 *
				 *  To test for Emoji 13 support, try to render a new emoji: Man Feeding Baby.
				 *
				 * The Man Feeding Baby emoji is a ZWJ sequence combining 👨 Man, a Zero Width Joiner and 🍼 Baby Bottle.
				 *
				 * 0xD83D, 0xDC68 == Man emoji.
				 * 0x200D == Zero-Width Joiner (ZWJ) that links the two code points for the new emoji or
				 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
				 * 0xD83C, 0xDF7C == Baby Bottle.
				 *
				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
				 * sequence come from older emoji standards.
				 */
				isIdentical = emojiSetsRenderIdentically(
					[0xD83D, 0xDC68, 0x200D, 0xD83C, 0xDF7C],
					[0xD83D, 0xDC68, 0x200B, 0xD83C, 0xDF7C]
				);

				return ! isIdentical;
		}

		return false;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {Object} src The url where the script is located.
	 * @return {void}
	 */
	function addScript( src ) {
		var script = document.createElement( 'script' );

		script.src = src;
		script.defer = script.type = 'text/javascript';
		document.getElementsByTagName( 'head' )[0].appendChild( script );
	}

	tests = Array( 'flag', 'emoji' );

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	/*
	 * Tests the browser support for flag emojis and other emojis, and adjusts the
	 * support settings accordingly.
	 */
	for( ii = 0; ii < tests.length; ii++ ) {
		settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] );

		settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ];

		if ( 'flag' !== tests[ ii ] ) {
			settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ];
		}
	}

	settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag;

	// Sets DOMReady to false and assigns a ready function to settings.
	settings.DOMReady = false;
	settings.readyCallback = function() {
		settings.DOMReady = true;
	};

	// When the browser can not render everything we need to load a polyfill.
	if ( ! settings.supports.everything ) {
		ready = function() {
			settings.readyCallback();
		};

		/*
		 * Cross-browser version of adding a dom ready event.
		 */
		if ( document.addEventListener ) {
			document.addEventListener( 'DOMContentLoaded', ready, false );
			window.addEventListener( 'load', ready, false );
		} else {
			window.attachEvent( 'onload', ready );
			document.attachEvent( 'onreadystatechange', function() {
				if ( 'complete' === document.readyState ) {
					settings.readyCallback();
				}
			} );
		}

		src = settings.source || {};

		if ( src.concatemoji ) {
			addScript( src.concatemoji );
		} else if ( src.wpemoji && src.twemoji ) {
			addScript( src.twemoji );
			addScript( src.wpemoji );
		}
	}

} )( window, document, window._wpemojiSettings );
		</script>
		<style type="text/css">
img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 .07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}
</style>
	<link rel='stylesheet' id='wp-block-library-css'  href='http://constructingmodernknowledge.com/wp-includes/css/dist/block-library/style.css?ver=5.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='tyler-google-font-css'  href='//fonts.googleapis.com/css?family=Ubuntu%3A300%2C400%2C500%2C700&#038;ver=5.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='tyler-bootstrap-css'  href='http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/bootstrap.min.css?ver=5.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='tyler-blueimp-gallery-css'  href='http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/blueimp-gallery.min.css?ver=5.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='tyler-jquery-scrollpane-css'  href='http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/jquery.scrollpane.css?ver=5.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='tyler-icons-css'  href='http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/icon.css?ver=5.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='tyler-layout-css'  href='http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/layout.css?ver=5.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='tyler-layout-mobile-css'  href='http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/layout-mobile.css?ver=5.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='london-scheme-css'  href='http://constructingmodernknowledge.com/wp-content/themes/Tyler/css/schemes/london/layout.css?ver=5.7.2' type='text/css' media='all' />
<!--n2css--><script type='text/javascript' src='http://constructingmodernknowledge.com/wp-includes/js/jquery/jquery.js?ver=3.5.1' id='jquery-core-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-includes/js/jquery/jquery-migrate.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script type='text/javascript' id='gainwp-tracking-analytics-events-js-extra'>
/* <![CDATA[ */
var gainwpUAEventsData = {"options":{"event_tracking":"1","event_downloads":"zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|rar*","event_bouncerate":0,"aff_tracking":0,"event_affiliates":"\/out\/","hash_tracking":0,"root_domain":"constructingmodernknowledge.com","event_timeout":100,"event_precision":0,"event_formsubmit":0,"ga_pagescrolldepth_tracking":0,"ga_with_gtag":0}};
/* ]]> */
</script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-content/plugins/ga-in/front/js/tracking-analytics-events.min.js?ver=5.4.6' id='gainwp-tracking-analytics-events-js'></script>
<link rel="https://api.w.org/" href="http://constructingmodernknowledge.com/index.php?rest_route=/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://constructingmodernknowledge.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://constructingmodernknowledge.com/wp-includes/wlwmanifest.xml" /> 
<meta name="generator" content="WordPress 5.7.2" />
<script type='text/javascript' data-cfasync='false'>var _mmunch = {'front': false, 'page': false, 'post': false, 'category': false, 'author': false, 'search': false, 'attachment': false, 'tag': false};_mmunch['front'] = true;</script><script data-cfasync="false" src="//a.mailmunch.co/app/v1/site.js" id="mailmunch-script" data-plugin="mailmunch" data-mailmunch-site-id="258491" async></script>	
	<script type="text/javascript">
	    
		var ajaxurl = 'http://constructingmodernknowledge.com/wp-admin/admin-ajax.php';	    
		var pois = [];
		var poi_marker = 'http://constructingmodernknowledge.com/wp-content/themes/Tyler/images/schemes/london/icon-map-pointer.png';
		var contact_missingfield_error = "Sorry! You've entered an invalid email.";
		var contact_wrongemail_error = "This field must be filled out.";
	</script><style type="text/css"></style><link rel="icon" href="http://constructingmodernknowledge.com/wp-content/uploads/2017/09/cropped-cmk-square-logo-512-32x32.png" sizes="32x32" />
<link rel="icon" href="http://constructingmodernknowledge.com/wp-content/uploads/2017/09/cropped-cmk-square-logo-512-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="http://constructingmodernknowledge.com/wp-content/uploads/2017/09/cropped-cmk-square-logo-512-180x180.png" />
<meta name="msapplication-TileImage" content="http://constructingmodernknowledge.com/wp-content/uploads/2017/09/cropped-cmk-square-logo-512-270x270.png" />

<!-- BEGIN GAINWP v5.4.6 Universal Analytics - https://intelligencewp.com/google-analytics-in-wordpress/ -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
	(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
	m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-88660612-2', 'auto');
  ga('send', 'pageview');
</script>
<!-- END GAINWP Universal Analytics -->
    </head>
    <body class="blog">
        <header class="nav transition">
            <a href="http://constructingmodernknowledge.com" id="logo">
                <img src="http://constructingmodernknowledge.com/wp-content/uploads/2017/09/cropped-cmk-square-logo-512.png" alt="Logo Constructing Modern Knowledge" title="Constructing Modern Knowledge" />
            </a>
            <nav class="navbar" role="navigation">
                <!-- mobile navigation -->
                <div class="navbar-header visible-sm visible-xs">
                    <button type="button" class="btn btn-primary navbar-toggle" data-toggle="collapse" data-target="#tyler-navigation">
                        <span class="sr-only">Toggle navigation</span>
                        <i class="icon-header"></i>
                    </button>
                </div>
                <!-- Collect the nav links, forms, and other content for toggling -->
                <div class="collapse navbar-collapse text-fit" id="tyler-navigation">
                    <div class="menu-all-about-cmk-2020-container"><ul id="menu-primary" class="transition"><li id="menu-item-2514" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2514"><a href="http://constructingmodernknowledge.com/?page_id=212">About</a>
<ul class="sub-menu">
	<li id="menu-item-2527" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2527"><a href="http://constructingmodernknowledge.com/?cat=4">Announcements</a></li>
	<li id="menu-item-2526" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2526"><a href="http://constructingmodernknowledge.com/?cat=8">Speaker and Faculty News</a></li>
</ul>
</li>
<li id="menu-item-2518" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2518"><a href="http://constructingmodernknowledge.com/?page_id=227">Activities</a>
<ul class="sub-menu">
	<li id="menu-item-4141" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4141"><a href="http://constructingmodernknowledge.com/?page_id=4088">Pre-Institute Workshops</a></li>
</ul>
</li>
<li id="menu-item-2515" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2515"><a href="http://constructingmodernknowledge.com/?page_id=1893">Guest Speakers</a></li>
<li id="menu-item-2519" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2519"><a href="http://constructingmodernknowledge.com/?page_id=224">Exceptional Faculty</a></li>
<li id="menu-item-2520" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2520"><a href="http://constructingmodernknowledge.com/?page_id=215">Venue/Lodging</a></li>
<li id="menu-item-2517" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2517"><a href="http://constructingmodernknowledge.com/?page_id=230">Registration</a></li>
<li id="menu-item-2516" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2516"><a href="http://constructingmodernknowledge.com/?page_id=529">FAQs</a>
<ul class="sub-menu">
	<li id="menu-item-2528" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2528"><a href="http://constructingmodernknowledge.com/?cat=3">Media</a></li>
	<li id="menu-item-2529" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2529"><a href="http://constructingmodernknowledge.com/?cat=7">Resources</a></li>
</ul>
</li>
<li id="menu-item-2522" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2522"><a href="http://constructingmodernknowledge.com/?page_id=2177">Professional Learning</a></li>
</ul></div>                </div>
            </nav>
        </header><!-- LANDING - BIG PICTURE -->
<div class="container widget">
    <div class="landing">
        <div class="bg" style="background-image: url('http://constructingmodernknowledge.com/wp-content/uploads/2018/10/animation-for-CMK-2019-site3.gif')"></div>
        <h1><span class="text-fit" style="color:#ffffff">Constructing Modern Knowledge 2021</span></h1>
        <p class="lead text-fit" style="color:#ffffff">
        Where educators invent the future        </p>
                <div class="row">
            <div class="col-md-6">
                <div class="box">
                    <i class="icon-calendar"></i>
                    <div class="box-inner">
                        <div>
                            <span class="sub">WHEN</span>
                            <span class="title">stay tuned for new dates</span>
                            <span class="desc"></span>
                        </div>
                    </div>
                </div>
            </div>
            <div class="col-md-6">
                <div class="box">
                    <i class="icon-map-marker"></i>
                    <div class="box-inner">
                        <div>
                            <span class="sub">WHERE</span>
                            <span class="title">Manchester, NH</span>
                            <span class="desc">DoubleTree by Hilton Manchester Downtown Hotel</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

	    
	    <!-- TEXT -->
	    <div id="tile_description" class="container widget">
	        <h2>Constructing Modern Knowledge 2021</h2>
	        <h3>Educators gather from around the world to create amazing projects </h3>
	        <p><strong>CMK 21 in July has been postponed due to COVID-19</strong>
<p></p>
<strong>Are you ready for a 4-day learning adventure?</strong>
<p></p>

Constructing Modern Knowledge, July 13-16, 2021 is a minds-on institute for educators committed to creativity, collaboration and computing. Participant have the opportunity to engage in intensive computer-rich project development with peers and a world-class faculty. Inspirational guest speakers and social events round out the fantastic event.
<p></p>

While our outstanding faculty is comprised of educational pioneers, bestselling authors and inventors of educational technologies we depend on, the real power of <em>Constructing Modern Knowledge</em> emerges from the collaborative project development of participants.
<p></p>
Each day’s program consists of a discussion of powerful ideas, mini tutorials on-demand, immersive learning adventures designed to challenge one’s thinking, substantial time for project work and a reflection period.

<p></p>
Our Big Night Out in Boston will  again begin with a reception and at the world famous Berklee College of Music, a cutting-edge center of art, technology, and educational innovation. Our institute dinner will be at an all-you-can-eat Brazilian churrascaria. 
<p></p>
Participants have access to a library of books, cutting-edge electronics, art supplies, tools, toys, craft materials, and some surprises to support their project-based learning. <a href="http://constructingmodernknowledge.com/?page_id=230">Register!</a>	        </p>
	    </div>	    
	    <!-- TEXT -->
	    <div id="tile_description" class="container widget">
	        <h2>Not a Conference!</h2>
	        <h3>4-days of learning-by-doing</h3>
	        <p><img class="wp-image-3287 size-large" src="http://constructingmodernknowledge.com/wp-content/uploads/2019/10/CMK19-7180604.jpg" alt="" width="1024" height="768" />

<blockquote><em>"If this is what learning can feel like, surely we all deserve to learn this way."</em>
<br > - <a href="http://www.clri.com.au/article/breakthrough-moments-constructing-modern-knowledge/research">Kelly Watson</a>. 5th grade teacher. Geelong, Australia.</blockquote>

Rather than spend days listening to a series of speakers, CMK 2021 is about action. Attendees work on personally meaningful projects and interact with educational experts concerned with maximizing the potential of each learner. 

Animation, robotics, engineering, film-making, music composition, 3D printing, programming, wearable computing, Arduino, BBC micro:bits, microcontrollers, storytelling, and photography are all part of the CMK 2021 mix. The learning environment is filled with stimulating “objects to think with,” including a library, art supplies, and a mountain of tools & materials for tinkering.

Constructing Modern Knowledge, now in its 13th year, is a minds-on institute for educators committed to creativity, collaboration, and computing. Inspirational guest speakers and social events round out a fantastic event. 
<p></p>
See what makes Constructing Modern Knowledge unique by checking out the <a href="http://constructingmodernknowledge.com/?p=3716">CMK wrap-up</a>.
	        </p>
	    </div>	    <!-- SPEAKERS -->
	    <div id="tile_speakers" class="container widget">
	        <h2>Learn with remarkable guest speakers</h2>
	        	        <h3>Stay tuned for more speaker news!</h3>
	        <div class="speakers carousel slide" data-ride="carousel" data-interval="false" id="speakers-carousel">
	            <!-- Indicators -->
	            <ol class="carousel-indicators">
	                	            </ol>
	            <div class="carousel-inner">
	                	                    <div class="item active">
	                        	                            <div class="speaker">
	                                <a class="speaker-inner" href="http://constructingmodernknowledge.com/?speaker=lenore-skenazy">
	                                    <span class="photo">
	                                        <img width="212" height="212" src="http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square-212x212.jpg" class="attachment-tyler-speaker size-tyler-speaker wp-post-image" alt="" loading="lazy" srcset="http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square-212x212.jpg 212w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square-150x150.jpg 150w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square-300x300.jpg 300w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square-246x245.jpg 246w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square-236x236.jpg 236w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square-188x188.jpg 188w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square-429x428.jpg 429w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square-390x389.jpg 390w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Skenazy-lean-square.jpg 481w" sizes="(max-width: 212px) 100vw, 212px" />	                                    </span>
	                                    <span class="name"><span class="text-fit">Lenore Skenazy</span></span>
	                                    <span class="description"></span>
	                                    <span class="view">
	                                         <i class="icon-angle-right"></i>
	                                    </span>
	                                </a>
	                            </div>
	                        	                            <div class="speaker">
	                                <a class="speaker-inner" href="http://constructingmodernknowledge.com/?speaker=alfie-kohn">
	                                    <span class="photo">
	                                        <img width="212" height="212" src="http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-212x212.jpg" class="attachment-tyler-speaker size-tyler-speaker wp-post-image" alt="" loading="lazy" srcset="http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-212x212.jpg 212w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-150x150.jpg 150w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-300x300.jpg 300w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-768x768.jpg 768w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-1024x1024.jpg 1024w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-245x245.jpg 245w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-236x236.jpg 236w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-188x188.jpg 188w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-428x428.jpg 428w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square-389x389.jpg 389w, http://constructingmodernknowledge.com/wp-content/uploads/2019/10/Alfie-Kohn-2019-Square.jpg 1361w" sizes="(max-width: 212px) 100vw, 212px" />	                                    </span>
	                                    <span class="name"><span class="text-fit">Alfie Kohn</span></span>
	                                    <span class="description"></span>
	                                    <span class="view">
	                                         <i class="icon-angle-right"></i>
	                                    </span>
	                                </a>
	                            </div>
	                        	                            <div class="speaker">
	                                <a class="speaker-inner" href="http://constructingmodernknowledge.com/?speaker=peter-martin">
	                                    <span class="photo">
	                                        <img width="212" height="212" src="http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square-212x212.jpg" class="attachment-tyler-speaker size-tyler-speaker wp-post-image" alt="" loading="lazy" srcset="http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square-212x212.jpg 212w, http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square-300x300.jpg 300w, http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square-150x150.jpg 150w, http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square-245x245.jpg 245w, http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square-236x236.jpg 236w, http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square-188x188.jpg 188w, http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square-428x428.jpg 428w, http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square-389x389.jpg 389w, http://constructingmodernknowledge.com/wp-content/uploads/2020/02/Peter-Martin-photo-5-credit-Sarah-Crowder-Square.jpg 567w" sizes="(max-width: 212px) 100vw, 212px" />	                                    </span>
	                                    <span class="name"><span class="text-fit">Peter Martin</span></span>
	                                    <span class="description"></span>
	                                    <span class="view">
	                                         <i class="icon-angle-right"></i>
	                                    </span>
	                                </a>
	                            </div>
	                        	                    </div>
	                	            </div>
	        </div>
	        	    </div>
	    	    
	    <!-- TEXT -->
	    <div id="tile_description" class="container widget">
	        <h2> A Very Special Pre-CMK 2021 Workshop</h2>
	        <h3>Join master educators from Reggio Emilia only at Constructing Modern Knowledge!</h3>
	        <p><a href="http://constructingmodernknowledge.com/?page_id=4088/#reggio"><img class="aligncenter size-full wp-image-4071" src="http://constructingmodernknowledge.com/wp-content/uploads/2020/07/CMK-2021-postcard-8-x-3_75-front-Reggio-.png" alt="" width="502" height="354" /></a>

Seize a rare opportunity to learn with two master educators from Reggio Emilia, Italy. Through the generosity of Fondazione Reggio Children and the LEGO Foundation, we are proud to announce Scintillae – Play and Learning in the Digital Age, as a full-day pre-institute workshop on July 12th.	        </p>
	    </div>	    
	    <div id="tile_calltoaction" class="jumbotron widget" style="background-image: url('http://constructingmodernknowledge.com/wp-content/themes/Tyler/images/parallax.jpg')">
	        <div class="container">
	            <h1>Constructing Modern Knowledge 2021</h1>
	            <p class="lead">13th annual summer institute - July 13 - 16, 2021 - optional workshops on July 12th</p>
	            <br/>
	            <a href="http://constructingmodernknowledge.com/?page_id=230" class="btn btn-lg btn-secondary">Register</a>
	        </div>
	        <br/>
	    </div>	    
	    <div id="tile_calltoaction" class="jumbotron widget" style="background-image: url('http://constructingmodernknowledge.com/wp-content/themes/Tyler/images/parallax.jpg')">
	        <div class="container">
	            <h1>Bring a Team and Save!</h1>
	            <p class="lead">Our team discounts allow learning and collaboration to last throughout the school year</p>
	            <br/>
	            <a href="http://constructingmodernknowledge.com/?page_id=230" class="btn btn-lg btn-secondary">Team Discount</a>
	        </div>
	        <br/>
	    </div>Watch a CMK project come to life!<div style="width:100%;" class="wp-video"><!--[if lt IE 9]><script>document.createElement('video');</script><![endif]-->
<video class="wp-video-shortcode" id="video-38438-1" preload="metadata" controls="controls"><source type="video/vimeo" src="https://player.vimeo.com/video/350866548?loop=0&#038;_=1" /><a href="https://player.vimeo.com/video/350866548?loop=0">https://player.vimeo.com/video/350866548?loop=0</a></video></div><form role="search" method="get" id="searchform" class="searchform" action="http://constructingmodernknowledge.com/">
				<div>
					<label class="screen-reader-text" for="s">Search for:</label>
					<input type="text" value="" name="s" id="s" />
					<input type="submit" id="searchsubmit" value="Search" />
				</div>
			</form>

<footer>
    <div class="container">
        <div class="row row-sm">
                    </div>
    </div>
    <div class="credits">
        © 2008-2020 Constructing Modern Knowledge LLC        <div class="footer-tyler-event">
        	Powered by <a href="http://eventmanagerblog.com/event-wordpress-theme-tyler">Tyler WordPress Theme</a>
        </div>
    </div>
</footer>
<link rel='stylesheet' id='mediaelement-css'  href='http://constructingmodernknowledge.com/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css?ver=4.2.16' type='text/css' media='all' />
<link rel='stylesheet' id='wp-mediaelement-css'  href='http://constructingmodernknowledge.com/wp-includes/js/mediaelement/wp-mediaelement.css?ver=5.7.2' type='text/css' media='all' />
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-content/themes/Tyler/js/bootstrap.min.js?ver=5.7.2' id='tyler-bootstrap-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-content/themes/Tyler/js/blueimp-gallery.min.js?ver=5.7.2' id='tyler-blueimp-gallery-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-content/themes/Tyler/js/jquery.mousewheel.js?ver=5.7.2' id='tyler-jquery-mousewheel-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-content/themes/Tyler/js/jquery.jscrollpane.min.js?ver=5.7.2' id='tyler-jquery-jscrollpane-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-content/themes/Tyler/js/main.js?ver=5.7.2' id='tyler-script-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-content/themes/Tyler/js/home.js?ver=5.7.2' id='tyler-home-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-content/themes/Tyler/js/tweetMachine.min.js?ver=5.7.2' id='jquery-tweet-machine-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-includes/js/wp-embed.js?ver=5.7.2' id='wp-embed-js'></script>
<script type='text/javascript' id='mediaelement-core-js-before'>
var mejsL10n = {"language":"en","strings":{"mejs.download-file":"Download File","mejs.install-flash":"You are using a browser that does not have Flash player enabled or installed. Please turn on your Flash player plugin or download the latest version from https:\/\/get.adobe.com\/flashplayer\/","mejs.fullscreen":"Fullscreen","mejs.play":"Play","mejs.pause":"Pause","mejs.time-slider":"Time Slider","mejs.time-help-text":"Use Left\/Right Arrow keys to advance one second, Up\/Down arrows to advance ten seconds.","mejs.live-broadcast":"Live Broadcast","mejs.volume-help-text":"Use Up\/Down Arrow keys to increase or decrease volume.","mejs.unmute":"Unmute","mejs.mute":"Mute","mejs.volume-slider":"Volume Slider","mejs.video-player":"Video Player","mejs.audio-player":"Audio Player","mejs.captions-subtitles":"Captions\/Subtitles","mejs.captions-chapters":"Chapters","mejs.none":"None","mejs.afrikaans":"Afrikaans","mejs.albanian":"Albanian","mejs.arabic":"Arabic","mejs.belarusian":"Belarusian","mejs.bulgarian":"Bulgarian","mejs.catalan":"Catalan","mejs.chinese":"Chinese","mejs.chinese-simplified":"Chinese (Simplified)","mejs.chinese-traditional":"Chinese (Traditional)","mejs.croatian":"Croatian","mejs.czech":"Czech","mejs.danish":"Danish","mejs.dutch":"Dutch","mejs.english":"English","mejs.estonian":"Estonian","mejs.filipino":"Filipino","mejs.finnish":"Finnish","mejs.french":"French","mejs.galician":"Galician","mejs.german":"German","mejs.greek":"Greek","mejs.haitian-creole":"Haitian Creole","mejs.hebrew":"Hebrew","mejs.hindi":"Hindi","mejs.hungarian":"Hungarian","mejs.icelandic":"Icelandic","mejs.indonesian":"Indonesian","mejs.irish":"Irish","mejs.italian":"Italian","mejs.japanese":"Japanese","mejs.korean":"Korean","mejs.latvian":"Latvian","mejs.lithuanian":"Lithuanian","mejs.macedonian":"Macedonian","mejs.malay":"Malay","mejs.maltese":"Maltese","mejs.norwegian":"Norwegian","mejs.persian":"Persian","mejs.polish":"Polish","mejs.portuguese":"Portuguese","mejs.romanian":"Romanian","mejs.russian":"Russian","mejs.serbian":"Serbian","mejs.slovak":"Slovak","mejs.slovenian":"Slovenian","mejs.spanish":"Spanish","mejs.swahili":"Swahili","mejs.swedish":"Swedish","mejs.tagalog":"Tagalog","mejs.thai":"Thai","mejs.turkish":"Turkish","mejs.ukrainian":"Ukrainian","mejs.vietnamese":"Vietnamese","mejs.welsh":"Welsh","mejs.yiddish":"Yiddish"}};
</script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-includes/js/mediaelement/mediaelement-and-player.js?ver=4.2.16' id='mediaelement-core-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-includes/js/mediaelement/mediaelement-migrate.js?ver=5.7.2' id='mediaelement-migrate-js'></script>
<script type='text/javascript' id='mediaelement-js-extra'>
/* <![CDATA[ */
var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/","classPrefix":"mejs-","stretching":"responsive"};
/* ]]> */
</script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-includes/js/mediaelement/renderers/vimeo.min.js?ver=4.2.16' id='mediaelement-vimeo-js'></script>
<script type='text/javascript' src='http://constructingmodernknowledge.com/wp-includes/js/mediaelement/wp-mediaelement.js?ver=5.7.2' id='wp-mediaelement-js'></script>

<!-- SCROLL UP BTN -->
<a href="#" id="scroll-up">UP</a>

<!-- The Gallery as lightbox dialog, should be a child element of the document body -->
<div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls">
    <div class="slides"></div>
    <h3 class="title"></h3>
    <a class="prev">‹</a>
    <a class="next">›</a>
    <a class="close">×</a>
    <a class="play-pause"></a>
    <ol class="indicator"></ol>
</div>

<!-- backdrop -->
<div id="backdrop"></div>

</body>
</html>
