-
Notifications
You must be signed in to change notification settings - Fork 0
Pending Items
Arya Adarsha Gautam edited this page Oct 26, 2018
·
4 revisions
Welcome to the pending section of academia wiki! Items listed here will be moved over time to their respective folders.
Medium: How Did Angular CLI Budgets Save My Day And How They Can Save Yours
list of several other things that can be done in js console other can log info warn error etc
freecodecamp - How you can improve your workflow using the JavaScript
launch.json configuration:
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chromium against localhost",
"url": "http://localhost:4200/#",
"webRoot": "${workspaceFolder}/mean-app",
"runtimeExecutable": "/usr/bin/chromium-browser",
"runtimeArgs": [
"--new-Window",
"-user-data-dir=\"/${workspaceFolder}/DevProfile\"",
"--remote-debugging-port=9222",
"--disable-background-networking"
]
}
]
}Reference: Medium link
chromium-browser --disable-web-security --user-data-dir="[some directory here]"
:focus:not(:focus-visible) { outline: none }
Gets rid of the annoying outline for mouse users but preserves it for keyboard users, and is ignored by browsers that don’t support :focus-visible.
Reference: twitter