A curated list of awesome minification tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
machine github.com | |
login <username> | |
password <token> | |
machine api.github.com | |
login <username> | |
password <token> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2014 Florent Cailhol <https://github.com/ooflorent> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2014 Florent Cailhol <https://github.com/ooflorent> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"installed_packages": | |
[ | |
"DocBlockr", | |
"EditorConfig", | |
"SideBarEnhancements", | |
"Theme - Spacegray" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MightyOoze = { | |
width: 256, | |
height: 256, | |
pixelCanvas: null, | |
pixelContext: null | |
}; | |
MightyOoze.Boot = function() {}; | |
MightyOoze.Boot.prototype = { | |
create: function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Token = { | |
Concatenate: '0', | |
Increment: '1', | |
Decrement: '2', | |
Multiply: '3', | |
Divide: '4', | |
Add: '5', | |
Subtract: '6', | |
Exponent: '7', | |
Modulus: '8', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Components | |
// ---------- | |
function KeyboardController() {} | |
function AIController() {} | |
function Position(x, y) { | |
this.x = x || 0; | |
this.y = y || 0; | |
} |
Tests are located here:
- https://github.com/ooflorent/makrjs/blob/perf-internal/benchmark/internal-1.js
- https://github.com/ooflorent/makrjs/blob/perf-internal/benchmark/internal-2.js
- https://github.com/ooflorent/makrjs/blob/perf-internal/benchmark/internal-3.js
Execute the following command to run the test suite:
grunt benchmark:internal
NewerOlder