Skip to content

Instantly share code, notes, and snippets.

View JoyKrishnaMondal's full-sized avatar

Joy Krishna Mondal JoyKrishnaMondal

  • London, United Kingdom
View GitHub Profile
@spion
spion / 01-future.js
Last active June 26, 2016 20:52 — forked from robotlolita/0-specification.md
Future and ReaderT with auto-lifting and example
class Future {
constructor(computation) {
this.fork = computation
this.__future__ = true;
}
static is(val) {
return (val != null && val.__future__ === true)
}
static of(value) {
if (Future.is(value)) return value;
@staltz
staltz / introrx.md
Last active September 20, 2024 10:10
The introduction to Reactive Programming you've been missing
@bengfarrell
bengfarrell / randomcoords.cpp
Last active April 17, 2020 16:30
Random Coordinates C++ Node.JS AddOn
#include <node.h>
#include <v8.h>
#include <stdio.h>
#include <stdlib.h>
using namespace v8;
Handle<Value> getRandomCoords2D(const Arguments& args) {
HandleScope scope;