https://leanpub.com/javascriptallongesix/read
document.getElementsByTagName('figcaption')[14].scrollIntoView()
document.getElementsByTagName('blockquote')[12]
yarn test 2>&1 | grep FAIL |
/* logic for scrollbar: */ | |
html { | |
overflow: overlay; | |
} | |
::-webkit-scrollbar { | |
width: 18px; | |
height: 18px | |
} |
// https://www.color-name.com/hex/FFDC19 | |
export const listOfColors = [ | |
['White', '#FFFFFF'], | |
['Black', '#000000'], | |
['Platinum', '#E2E2E2'], | |
['Blue', '#0303F1'], | |
['Purple (X11)', '#B31BF0'], | |
['Diamond', '#B9EDFF'], | |
['Water', '#D0F3FF'], | |
['Ferrari Red', '#ED1A02'], |
https://leanpub.com/javascriptallongesix/read
document.getElementsByTagName('figcaption')[14].scrollIntoView()
document.getElementsByTagName('blockquote')[12]
<link rel="stylesheet" | |
href="https://fonts.googleapis.com/css?family=Gamja Flower"> | |
<div id="root"> | |
<!-- This element's contents will be replaced with your component. --> | |
</div> |
open chrome profiles via command line.
https://superuser.com/questions/377186/how-do-i-start-chrome-using-a-specified-user-profile
https://peter.sh/experiments/chromium-command-line-switches/
works
link to a previous jbs article on what lighthouse is and how to use it: https://www.jbssolutions.com/resources/blog/lighthouse-full-stack-developer/
I wanted to understand why browsers using the newer <input type="time"/>
Inspired by the following video from http203
I began my journey searching in the dark but initially heading in the right direction.
# inspired by: https://github.com/tiaanduplessis/kill-port/blob/master/index.js | |
lsof -ni | grep node | awk '{print $2}' | xargs kill -9 | |
# windows command line: https://www.shellhacks.com/windows-grep-equivalent-cmd-powershell/ | |
netstat -nao | findstr /c:"4041" | |
taskkill /PID 14428 /F |