##Micro Game Engines And Boilerplates##
http://ox2d.com/
https://github.com/Gozala/selfish
https://github.com/michalbe/mibbu
https://github.com/ooflorent/js13k-boilerplate
##Sound and Music## http://sb.bitsnbites.eu/
<!-- | |
Example: A simple list component with each item as a block one below other with some padding and border. | |
--> | |
<!-- Atomic CSS --> | |
<ul class="MB(baseSpacing) Bgc(#0280ae)"> | |
<li class="P(halfBaseSpacing) BdB(1px)"></li> | |
... | |
</ul> |
##Micro Game Engines And Boilerplates##
http://ox2d.com/
https://github.com/Gozala/selfish
https://github.com/michalbe/mibbu
https://github.com/ooflorent/js13k-boilerplate
##Sound and Music## http://sb.bitsnbites.eu/
/** | |
* Changes XML to JSON | |
* Modified version from here: http://davidwalsh.name/convert-xml-json | |
* @param {string} xml XML DOM tree | |
*/ | |
function xmlToJson(xml) { | |
// Create the return object | |
var obj = {}; | |
if (xml.nodeType == 1) { |
# Rename mp3 files to naming convention of no number and no special character and hence making your music library cool again to read | |
# run this file in using terminal in music directory by command ./Mp3FileNameBeautify.sh | |
# and you are welcome to contribute, customize or whatever. | |
# suggestions are welcomed | |
# by - HARSH BHATIA | |
for i in *.mp3; | |
do | |
src=$i | |
# remove mp3 from name | |
tgt=$(echo $i | sed -E 's/(.mp3)//g') |
Hello,
Here is the list of demos showcased in the introduction to the demoscene I did during the Monster Audio-Visual demos in a TCP packet talk I gave at JSconf EU 2014.
// by d whyte | |
int[][] result; | |
float t; | |
float ease(float p) { | |
return 3*p*p - 2*p*p*p; | |
} | |
float ease(float p, float g) { |
Mini projects by Maxime Euzière (xem), subzey, Martin Kleppe (aemkei), Mathieu Henri (p01), Litterallylara, Tommy Hodgins (innovati), Veu(beke), Anders Kaare, Keith Clark, Addy Osmani, bburky, rlauck, cmoreau, maettig, thiemowmde, ilesinge, adlq, solinca, xen_the,...
(For more info and other projects, visit http://xem.github.io)
(Official Slack room: http://jsgolf.club / join us on http://register.jsgolf.club)
'use strict'; | |
module.exports = function(grunt) { | |
// Override process.stdout to log the name+args of the current task before | |
// every logged line. | |
var hooker = require('hooker'); | |
var newline = true; | |
hooker.hook(process.stdout, 'write', function(str) { | |
var prefix = grunt.task.current.nameArgs; | |
if (newline && prefix && str !== '\n') { |