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
:: drizzle | |
/\ |‾‾| /‾‾/ /‾‾/ | |
/\ / \ | |/ / / / | |
/ \/ \ | ( / ‾‾\ | |
/ \ | |\ \ | (‾) | | |
/ __________ \ |__| \__\ \_____/ .io | |
execution: local | |
script: bench.js |
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 {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)} |
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 {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> |
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 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); |
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
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: [ |
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
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: [ |
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
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 |
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
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; |
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 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>>; | |
} |
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 hx.strings.Char; | |
import hx.strings.StringBuilder; | |
using hx.strings.Strings; | |
class Slug { | |
static final SEPARATE = [ | |
Char.BACKSPACE, | |
Char.TAB, | |
Char.LF, | |
Char.CR, |
NewerOlder