til icon indicating copy to clipboard operation
til copied to clipboard

Today I Learned. Our knowledge hub. List out what we've learned everyday, organized.

Results 54 til issues
Sort by recently updated
recently updated
newest added

http://quotesondesign.com/bill-tregles-dad/

frontend

Add those lines to your `.zshrc` ``` set-window-title() { window_title="\033]0;${PWD##*/}\007" echo -ne "$window_title" } PR_TITLEBAR='' set-window-title add-zsh-hook precmd set-window-title ```

terminal

http://theviewinside.me/what-is-your-ikigai/ ------ According to the Japanese, everyone has an ikigai. An ikigai is essentially ‘a reason to get up in the morning’. A reason to enjoy life. Having spent most...

life

Use `!!` - negative's negative ```js var falsy1 = !!undefined // false var falsy2 = !!null // false var falsy3 = !!'' // false var falsy4 = !!0 // false...

js