(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
https://twitter.com/YOUR_USER_NAME/following// Unfollow everyone on twitter.com, by Jamie Mason (https://twitter.com/fold_left)
// https://gist.github.com/JamieMason/7580315
//| // A UUID is a 128-bit number which is too large to be represented as a native integer in Javascript. | |
| // The original solution I posted (based on https://github.com/uuidjs/uuid#uuidparsestr ) wasn't good, | |
| // as it converted the given UUID into a byte array and then selected only the first four bytes to be | |
| // used as the integer. | |
| const uuid = require('uuid'); | |
| let convertGuidToInt = (uuid) => { | |
| // parse accountId into Uint8Array[16] variable | |
| let parsedUuid = uuid.parse(uuid); |