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
// Not tested! | |
import type { VirtualItem, Virtualizer } from '@tanstack/virtual' | |
import { useEffect, useRef, useState } from 'react' | |
const DEBUG = false | |
export interface PooledVirtualItem extends Omit<VirtualItem, 'key'> { | |
key: number | |
suspended?: boolean |
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 budoux | |
parser = budoux.load_default_japanese_parser() | |
def wrap_text(text: str, least_width: int): | |
phrases = parser.parse(text) | |
lines = [''] | |
for phrase in phrases: | |
if len(lines) > 0 and len(lines[-1]) >= least_width: |
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 { HistoryState } from 'next/dist/shared/lib/router/router' | |
import { useRouter } from 'next/router' | |
import React, { useContext, useRef } from 'react' | |
import { useIsomorphicLayoutEffect } from '...' // please place it here yourself or import it from your project. | |
interface ManagerState { | |
// matches to history.state | |
restoredKey?: string | |
bagForRestore: Record<string, unknown> |
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
function setup() { | |
const checkboxSelector = '.collective-operation-checkbox:not(#item_bulk_select)'; | |
const globalCheckboxSelector = `.js-block-journalize-account ${checkboxSelector}`; | |
delegate(document, 'keydown', 'body', e => { | |
if (e.target.matches('input:not([type="checkbox"]), textarea')) { | |
return; | |
} | |
if (e.target.matches('.js-block-journalize-account') || findParent(e.target, '.js-block-journalize-account')) { | |
// keydown handler treats this | |
return; |
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
#!/bin/sh -ex | |
# $1: host | |
# $2: port | |
# $3: local port (defaults to $2) | |
pod_name=bastion-$USER | |
# extend timeout for fargate env | |
( sleep 3 && kubectl wait --for=condition=ready --timeout=1m0s pod/$pod_name && echo Start port forwarding && kubectl port-forward pod/$pod_name ${3:-$2}:$2 ) & |
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 { useRef } from 'react' | |
import { useIsomorphicLayoutEffect } from './useIsomorphicLayoutEffect' | |
/** | |
* Hook that its return value increments when the flag is changed to true. | |
* You can use this with useOverrideValue() / useEffect() to dispatch only when specific condition is met, | |
* each time or at first (=== 1). | |
*/ | |
export function useFlipCount(flag: boolean) { | |
const ref = useRef({ flag, count: 0 }) |
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
/** | |
* For Template Literal Types. Don't forget to add 'as const' after `...` . | |
*/ | |
export function typedUppercase<S extends string>(str: S) { | |
return str.toUpperCase() as Uppercase<S> | |
} | |
/** | |
* For Template Literal Types. Don't forget to add 'as const' after `...` . | |
*/ |
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
# Copy this to your .***shrc | |
alias copy-uuid='uuidgen | tr "[:upper:]" "[:lower:]" | tr -d "\n" | pbcopy' |
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
# Add this snippet to your .zshrc, .bashrc or etc. | |
# https://security.stackexchange.com/a/232446/235706 | |
export CURL_SSL_BACKEND=secure-transport | |
# https://github.com/Homebrew/brew/issues/6274#issuecomment-507937736 | |
export HOMEBREW_NO_ENV_FILTERING=1 |
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
version: "3.7" | |
services: | |
service1: | |
volumes: | |
- your-app-mutagen-service1:/var/app:nocopy | |
service2: | |
volumes: | |
- your-app-mutagen-service2:/var/app:nocopy |
NewerOlder