Skip to content

Instantly share code, notes, and snippets.

@myndzi
Last active August 29, 2015 14:23
Show Gist options
  • Save myndzi/36e135d0077abb735af2 to your computer and use it in GitHub Desktop.
Save myndzi/36e135d0077abb735af2 to your computer and use it in GitHub Desktop.
'use strict';
var pattern = new Buffer([0xF0, 0x9F, 0x92, 0x95]);
var data = new Buffer(8000);
for (var i = 0; i < 8000; i += 4) {
pattern.copy(data, i, 0, 4);
}
data.slice(0, 7833).toString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment