Skip to content

Instantly share code, notes, and snippets.

View ddmills's full-sized avatar
🐴
lets get some shoes

Dalton Mills ddmills

🐴
lets get some shoes
View GitHub Profile
@erikhazzard
erikhazzard / Components.js
Last active July 20, 2016 15:34
Entity Component System Tutorial
/* =========================================================================
*
* Components.js
* This contains all components for the tutorial (ideally, components would
* each live in their own module)
*
* Components are just data.
*
* ========================================================================= */
@staltz
staltz / introrx.md
Last active May 15, 2025 10:37
The introduction to Reactive Programming you've been missing
@rxaviers
rxaviers / gist:7360908
Last active May 19, 2025 08:41
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@iaincarsberg
iaincarsberg / gist:1007712
Created June 4, 2011 08:03
Example of thornys entity system interaction
require('thorny/base')('./config/default.json')(function ($) {
// Grab a copy of the entity system object
var entitySystem = $('thorny entity-system');
// Make the actor template
entitySystem.makeEntity($.defined('template'))
.addTag('actor')
.addComponent('position')
.addComponent('keys')
.addComponent('render-2d');