Skip to content

Pending Items

Arya Adarsha Gautam edited this page Oct 26, 2018 · 4 revisions

Pending Items

Welcome to the pending section of academia wiki! Items listed here will be moved over time to their respective folders.

angular, audit, build size, budget

Medium: How Did Angular CLI Budgets Save My Day And How They Can Save Yours

javascript, console

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

vscode, chromium, debugger for chrome, linux (ubuntu 18.04)

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/chrome, disable web security (like CORS etc)

chromium-browser --disable-web-security --user-data-dir="[some directory here]"

css, focus, outline

: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