Skip to content

Instantly share code, notes, and snippets.

import {Atom, useStore} from 'jotai'
import {useCallback, useEffect, useReducer, useRef} from 'react'
/*
const countAtom = atom(0)
function Counter() {
const [get, set] = useJotai()
return (
<button onClick={() => set(countAtom, get(countAtom) + 1)}>
count is {get(countAtom)}
import {view} from './jotai-view'
import {atom} from 'jotai'
const countAtom = atom(0)
const Counter = view((props, get, set) => {
return (
<button onClick={() => set(countAtom, get(countAtom) + 1)}>
count is {get(countAtom)}
</button>
import haxe.DynamicAccess;
using Reflect;
@:forward
abstract Merge<A: {}, B: {}>(B) {
public function new(a: A, b: B) {
final res: DynamicAccess<Dynamic> = cast {};
for (field in a.fields()) res[field] = a.field(field);
for (field in b.fields()) res[field] = b.field(field);
@benmerckx
benmerckx / index.js
Last active March 4, 2020 21:58
devd-bin
var binwrap = require("binwrap");
var path = require("path");
var packageInfo = require(path.join(__dirname, "package.json"));
var version = packageInfo.version.split('.').slice(0, 2).join('.');
var root = "https://dl.bintray.com/benmerckx/devd/devd-" + version;
module.exports = binwrap({
dirname: __dirname,
binaries: [
@benmerckx
benmerckx / index.js
Last active February 8, 2022 14:37
modd-bin
var binwrap = require("binwrap");
var path = require("path");
var packageInfo = require(path.join(__dirname, "package.json"));
var version = packageInfo.version.split('.').slice(0, 2).join('.');
var root = `https://github.com/cortesi/modd/releases/download/v${version}/modd-${version}`;
module.exports = binwrap({
dirname: __dirname,
binaries: [
@benmerckx
benmerckx / LICENSE
Last active March 2, 2020 18:11 — forked from strothj/LICENSE
ResizeObserver TypeScript definition
Copyright 2020 Jason Strothmann
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:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
class IteratorStream<Item, Quality> extends StreamBase<Item, Quality> {
var iterator: Iterator<Item>;
public function new(iterator)
this.iterator = iterator;
override function next():Future<Step<Item, Quality>>
return switch iterator.hasNext() {
case true: Link(iterator.next(), this);
case false: End;
import haxe.extern.EitherType;
@:expose @:keep interface PromiseLike<T> {
function then<T, T2>(
onfulfilled: (value: T) -> haxe.extern.EitherType<T, PromiseLike<T>>,
?onrejected: (reason: Any) -> haxe.extern.EitherType<T2, PromiseLike<T2>>
): PromiseLike<haxe.extern.EitherType<T, T2>>;
}
import hx.strings.Char;
import hx.strings.StringBuilder;
using hx.strings.Strings;
class Slug {
static final SEPARATE = [
Char.BACKSPACE,
Char.TAB,
Char.LF,
Char.CR,
@benmerckx
benmerckx / absolute-to-relative.js
Created April 10, 2019 17:11 — forked from tibdex/absolute-to-relative.js
jscodeshift codemod to change imports of internal modules using absolute path to relative path
//jscodeshift --rootDirs ./src --packageDir . --extensions ts --parser tsx -t abs.js src
/**
* This codemod expects 2 CLI arguments:
* - packageDir: the path of the directory containing the package.json. It's used to detect whether a path points
* to a dependency or an internal module.
* - rootDirs: root directory paths separated by a comma if you have more than one root.
* Let's say that you have two files:
* - src/component.js
* - src/index.js containing the import "import Component from 'component.js';"