更新: | 2023-12-08 |
---|---|
作者: | @voluntas |
バージョン: | 2023.2 |
URL: | https://voluntas.github.io/ |
タイポなどは Twitter の @voluntas までお願いします。
更新: | 2023-12-08 |
---|---|
作者: | @voluntas |
バージョン: | 2023.2 |
URL: | https://voluntas.github.io/ |
タイポなどは Twitter の @voluntas までお願いします。
[![alt設定](http://img.youtube.com/vi/{video-id}/0.jpg)](https://www.youtube.com/watch?v={video-id})
Embed youtube to markdown, GitLab, GitHub
How to embed youtube video to markdown file, GitHub or GitLab comments · Sergei Sviridov's Blog
import { useCallback, useState } from "react"; | |
import debounce from "lodash/debounce"; | |
export const useDebouncedValue = (initialValue, wait) => { | |
const [debouncedValue, setDebouncedValue] = useState(initialValue); | |
const debouncedFunction = useCallback(debounce(setDebouncedValue, wait), []); | |
return [debouncedValue, debouncedFunction]; | |
}; |
A collection of Markdown code and tricks that were tested to work in Gist.
This and all public gists in https://gist.github.com/ww9 are Public Domain. Do whatever you want with it including , no need to credit me.
この機能は docker/docker#26061 で実装された。
--init をつけた場合に実行されるバイナリ(/dev/init)の実態は
docker/docker#28037 により krallin/tini に変更されている。
python で time.sleep(100)するだけのコンテナを docker run
で実行し、そのコンテナに対して docker stop
した場合に --init 有り無しで違いがあるかを比較してみる。
Summary | How to control (or Understand) your GIST page's files list order. |
Notice | not official documentation. |
node.js でパスを取得する方法についてのメモ
$ node ~/hoge/Foo.js/a.js
を実行したときに、
process.argv[1]
から、node コマンドに指定された a.js のパス( ~/hoge/Foo.js/a.js
)を取得できます