This file contains 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
import Promise from 'bluebird' | |
Promise.serial = (input, initialPromise) => | |
Promise.reduce( | |
input, | |
(previousResult, fn) => fn(previousResult), | |
initialPromise | |
); | |
Promise.prototype.serial = function serial(input) { |
This file contains 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
/** | |
* Returns a Promise which resolves with a value in form of a tuple. | |
* @param promiseFn A Promise to resolve as a tuple. | |
* @returns Promise A Promise which resolves to a tuple of [error, ...results] | |
*/ | |
export function tuple (promise) { | |
return promise | |
.then((...results) => [null, ...results]) | |
.catch(error => [error]) | |
} |
This file contains 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
#include "angelscript.h" | |
#include "extdll.h" | |
#include "util.h" | |
#include "CASDocumentation.h" | |
#include "CString.h" | |
#include "ASEngine.h" | |
This file contains 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
//------------------------------------------------ | |
//--- 010 Editor v7.0.2 Binary Template | |
// | |
// File: WAD3 | |
// Authors: @fnky | |
// Purpose: Parsing Half-Life WAD3 File | |
// Category: Archive | |
// File Mask: *.wad | |
// ID Bytes: 57 41 44 33, 57 41 44 32 | |
//------------------------------------------------ |
This file contains 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
'use strict' | |
const chr = (codePoint) => String.fromCharCode(codePoint) | |
function bin2hex (s) { | |
let o = '' | |
for (let i = 0, l = s.length; i < l; i++) { | |
let n = s.charCodeAt(i).toString(16) | |
o += (n.length < 2 ? '0' + n : n) | |
} |
I hereby claim:
- I am fnky on github.
- I am cbp (https://keybase.io/cbp) on keybase.
- I have a public key ASAoy43ZvKjh6P7JlU6DtqF-aWhwh5Ywcrzh4Fx_M77H3Ao
To claim this, I am signing this object:
This file contains 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
[hub] | |
protocol = https | |
[user] | |
name = Christian Petersen | |
email = [email protected] | |
[credential] | |
helper = osxkeychain |
- objc.io
- We ❤ Swift
- Freestyle — Feautiful apps. Cleaner code. Faster iteration.