Skip to content

Instantly share code, notes, and snippets.

View scottpurdy's full-sized avatar

Scott Purdy scottpurdy

  • Numenta
  • San Francisco, CA
View GitHub Profile
/*
* Numenta Platform for Intelligent Computing (NuPIC)
* Copyright (C) 2016, Numenta, Inc. Unless you have purchased from
* Numenta, Inc. a separate commercial license for this software code, the
* following terms and conditions apply:
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero Public License version 3 as
* published by the Free Software Foundation.
*
/*
* Numenta Platform for Intelligent Computing (NuPIC)
* Copyright (C) 2016, Numenta, Inc. Unless you have purchased from
* Numenta, Inc. a separate commercial license for this software code, the
* following terms and conditions apply:
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero Public License version 3 as
* published by the Free Software Foundation.
*
<!--
~ Numenta Platform for Intelligent Computing (NuPIC)
~ Copyright (C) 2016, Numenta, Inc. Unless you have purchased from
~ Numenta, Inc. a separate commercial license for this software code, the
~ following terms and conditions apply:
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU Affero Public License version 3 as
~ published by the Free Software Foundation.
~
@scottpurdy
scottpurdy / impress.jsx
Created September 20, 2014 21:29
react-impress
/** @jsx React.DOM */
var RenderedDeck = React.createClass({
render: function() {
return <div id={this.props.id} className="deck" dangerouslySetInnerHTML={{__html:this.props.contents}}></div>;
}
});
var Deck = React.createClass({
render: function() {