Skip to content

Instantly share code, notes, and snippets.

@dead-claudia
dead-claudia / 0-react-hooks.jsx
Created October 29, 2018 21:29
React if they went with a new language rather than an embedded DSL
// This is a rough port of their TodoMVC app, using their Hooks API
import React, { useRef, useState, useEffect, useMemo } from "react"
import { render } from "react-dom"
function uuid() {
let uuid = ""
for (let i = 0; i < 32; i++) {
if (i === 8 || i === 12 || i === 16 || i === 20) uuid += "-"
var Module = require("module")
function requireUncached(file, baseDir) {
// Hack: hijack Node's internal resolution algorithm to require the file
// as if from a fake module in the correct base directory. It also will
// avoid several bugs with the `resolve` module (Node's is necessarily
// more stable).
var dirname = path.resolve(baseDir)
var m = new Module(path.join(dirname, "dummy.js"))
@dead-claudia
dead-claudia / mithril-remove-node-from-dom.js
Created August 28, 2018 10:31
Recast Mithril node removal code
function removeNodeFromDOM(vnode) {
var parent = vnode.dom.parentNode
if (parent != null) {
var count = vnode.domSize
if (count != null && count > 1) {
while (--count) parent.removeChild(vnode.dom.nextSibling)
}
parent.removeChild(vnode.dom)
}
}
@dead-claudia
dead-claudia / weak-collections.js
Last active July 30, 2018 02:26
Weak maps and weak sets in terms of private symbols
const _wmSymbol = Symbol.private("wmSymbol")
const _wsSymbol = Symbol.private("wsSymbol")
const call = Function.call.bind(Function.call)
const hasOwn = Function.call.bind({}.hasOwnProperty)
const getOwn = Object.getOwnPropertyDescriptor
const TE = TypeError
const checkMapThisKey = makeChecker("WeakMap", "weak map", _wmSymbol)
const checkSetThisKey = makeChecker("WeakSet", "weak set", _wsSymbol)
function makeChecker(name, human, symbol) {
// A complete set of type defs for Fantasy Land
interface Setoid {
"fantasy-land/equals"(other: this): boolean;
}
interface Ord {
"fantasy-land/lte"(other: this): boolean;
}
interface Semigroupoid<A, B> {
@dead-claudia
dead-claudia / util-inspect.js
Last active July 26, 2018 23:23
WIP `util-inspect` replacement that features the most recent Node APIs. An attempt is made here to remain compatible with older IE/etc. with `es5-shim` and without `es5-sham`.
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
@dead-claudia
dead-claudia / promise-newcapability.js
Created July 21, 2018 22:08
Promise.newCapability prollyfill
Promise.newCapability = Promise.newCapability || (() => {
const data = new WeakMap()
const getData = data.get.bind(data)
const setData = data.set.bind(data)
const objectCreate = Object.create
function invokeResolver(inst, index, value) {
const data = getData(inst)
if (data == null) throw new TypeError()
const func = data[index]
@dead-claudia
dead-claudia / mithril-route.js
Last active July 8, 2018 09:07
Mithril router concept
// mithril/route.js
"use strict"
var redrawService = require("./redraw")
var register = require("./router/register")(window)
module.exports = require("./router/router")(redrawService, register)
@dead-claudia
dead-claudia / babel-node.mjs
Created July 5, 2018 07:56
Babel reload script concept
/**
* This tiny wrapper file checks for known node flags and appends them
* when found, before invoking the "real" _babel-node(1) executable.
*/
import getV8Flags from "v8flags";
import path from "path";
getV8Flags(function(err, v8Flags) {
if (err != null) throw err;
@dead-claudia
dead-claudia / invoke-parallel-cancel-token.js
Created June 3, 2018 02:11
Cancel token for invoke-parallel
// This holds all the real state
class CancelController {
constructor(init) {
this._canceled = false
this._token = undefined
this._promise = undefined
this._cancels = undefined
this._resolve = undefined
}