Posts tagged with "Javascript"

5 posts found



JavaScript Convert String to Bytes Function

JavaScript Convert String to Bytes Function

Just wanted to post a quick JavaScript convert string to bytes function just for myself, but I figured someone else may find it useful: js function convertToBytes(str) { var bytes = []; for (var i = 0; i < str.length; ++i) { var charCode = st...


Getting NW.js (node-webkit) v0.12.3 to work with Edge.js

Getting NW.js (node-webkit) v0.12.3 to work with Edge.js

This is something I needed to get functioning for work. Luckily it wasn't so difficult--the hardest part was attempting to figure out why after I compiled Edge.js properly for NW.js v0.12.3 why it wouldn't actually attempt to load the native edge.nod...


Building MochaUI.js From Git

Building MochaUI.js From Git

This one really drove me insane. I recently discovered JavaScript MooTools library & it's UI component, MochaUI. MochaUI provides a powerful & easy-to-use library for developing rich internet applications (RIAs). My issue began after finding that the...

Posts tagged with "Javascript" | Valence Software