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
~/Downloads ❯ time (rg something linux-master --sort path) | |
linux-master/Documentation/ABI/stable/sysfs-class-infiniband | |
214: unless set to something else by the driver. Users may echo a | |
linux-master/Documentation/ABI/stable/sysfs-class-rfkill | |
64: transmitter is forced off by something outside of | |
78: The transmitter is forced off by something outside of | |
linux-master/Documentation/ABI/stable/vdso | |
14:if you set CS on x86 to something strange, the vDSO functions are |
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
~/Downloads ❯ time (gg something linux-master --sort path) | |
linux-master/Documentation/ABI/stable/sysfs-class-infiniband | |
214: unless set to something else by the driver. Users may echo a | |
linux-master/Documentation/ABI/stable/sysfs-class-rfkill | |
64: transmitter is forced off by something outside of | |
78: The transmitter is forced off by something outside of | |
linux-master/Documentation/ABI/stable/vdso | |
14:if you set CS on x86 to something strange, the vDSO functions are |
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
const string = ` ${'This is just some example big file with lots of strings\n'.repeat ( 100_000 )}`.slice ( 1 ); | |
const uint8 = new TextEncoder ().encode ( string ); | |
const getRangesFromString = value => { | |
let pos = 0; | |
let length = value.length; | |
while ( pos < length ) { |
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
export NVM_DIR="$HOME/.nvm" | |
export NVM_DEFAULT_VERSION=$(cat $NVM_DIR/alias/default) | |
export PATH="$NVM_DIR/versions/node/$NVM_DEFAULT_VERSION/bin:$PATH" | |
export MANPATH="$NVM_DIR/versions/node/$NVM_DEFAULT_VERSION/share/man:$MANPATH" | |
export NODE_PATH="$NVM_DIR/versions/node/$NVM_DEFAULT_VERSION/lib/node_modules" | |
function find-up () { | |
local look=${PWD%/} |
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
# INSPECT | |
function inspect () { | |
eval NODE_OPTIONS="--inspect-brk" $@ | |
} | |
# INSPECT PLUGIN | |
# Toggles the "inspect " prefix upon double ESC key | |
function plugin-inspect () { |
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
const proxy = new Proxy ( [0, 1, 2], { | |
get: ( ...args ) => { | |
console.log ( '[get]', ...args ); | |
return Reflect.get ( ...args ); | |
}, | |
apply: ( ...args ) => { | |
console.log ( '[apply]', ...args ); | |
return Reflect.apply ( ...args ); | |
}, |
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 */ | |
import {$$, createDirective} from 'voby'; | |
import {useUpdateEffect} from '~/hooks'; | |
/* HELPERS */ | |
const onCheckboxChange = ( target: HTMLInputElement, value: $<undefined | boolean | number | string>, onChange?: ( value: boolean | string ) => void ): void => { |
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
const emojiRe = /(?:\p{Emoji_Modifier_Base}\p{Emoji_Modifier}?|\p{Emoji_Presentation}|\p{Emoji}\uFE0F)(?:\u200d(?:\p{Emoji_Modifier_Base}\p{Emoji_Modifier}?|\p{Emoji_Presentation}|\p{Emoji}\uFE0F))*/gu; |
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 */ | |
import benchmark from 'benchloop'; | |
import stringWidth from 'string-width'; | |
// import fastStringWidth from '../dist/index.js'; | |
/* HELPERS */ | |
const IMPLEMENTATIONS = [ |
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 */ | |
import benchmark from 'benchloop'; | |
import fs from 'node:fs'; | |
import path from 'node:path'; | |
import toIgnore from 'fast-ignore'; | |
import dotignore from 'dotignore'; | |
/* HELPERS */ |
NewerOlder