I hereby claim:
- I am dudeofawesome on github.
- I am dudeofawesome (https://keybase.io/dudeofawesome) on keybase.
- I have a public key ASDbAWmEpBQyEr7VP8tdm7zApwmi7h25hqZxWwLP8jSflAo
To claim this, I am signing this object:
| import { DevTools } from '@effect/experimental'; | |
| import { NodeSocket } from '@effect/platform-node'; | |
| import { Effect, Layer, Logger } from 'effect'; | |
| export const DevToolsLive = Layer.effectDiscard(Effect.sleep(100)).pipe( | |
| Layer.provideMerge(DevTools.layerSocket), | |
| Layer.provide(NodeSocket.layerNet({ port: 34437 })), | |
| Layer.merge(Logger.pretty), | |
| ); |
| delay 1 | |
| set classNames to {} | |
| tell application "System Events" | |
| tell front window of (first application process whose frontmost is true) | |
| repeat with uiElem in entire contents as list | |
| set classNames to classNames & (class of uiElem as string) | |
| end repeat | |
| end tell | |
| end tell |
I hereby claim:
To claim this, I am signing this object:
| import 'package:benchmark_harness/benchmark_harness.dart'; | |
| const testString = 'this is a test string that you can ignore.'; | |
| class BareRunesForLoopBenchmark extends BenchmarkBase { | |
| const BareRunesForLoopBenchmark() : super('s.runes'); | |
| static void main() => new BareRunesForLoopBenchmark().report(); | |
| // The benchmark code. |
| #!/usr/bin/env fish | |
| function rainbowify -d "Rainbow-ify text" | |
| set -l RAINBOW red FF8800 yellow green blue purple | |
| set LENGTH (string length $argv) | |
| set SPLIT (string split '' $argv) | |
| for i in (seq $LENGTH) | |
| set PERC (math -s2 $i / $LENGTH) |
| #!/usr/bin/env node | |
| const env = { | |
| name: "globals", | |
| values: [], | |
| timestamp: Date.now(), | |
| _postman_variable_scope: "global", | |
| _postman_exported_at: (new Date()).toISOString(), | |
| _postman_exported_using: "Postman/4.10.3" | |
| }; |