Skip to content

Instantly share code, notes, and snippets.

View Ezugudor's full-sized avatar

Chukwuezugo Ezugudor

View GitHub Profile
@Ezugudor
Ezugudor / docker-help.md
Created June 4, 2021 11:03 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@Ezugudor
Ezugudor / dom_performance_reflow_repaint.md
Created June 4, 2021 11:01 — forked from faressoft/dom_performance_reflow_repaint.md
DOM Performance (Reflow & Repaint) (Summary)

DOM Performance

Rendering

  • How the browser renders the document
    • Receives the data (bytes) from the server.
    • Parses and converts into tokens (<, TagName, Attribute, AttributeValue, >).
    • Turns tokens into nodes.
    • Turns nodes into the DOM tree.
  • Builds CSSOM tree from the css rules.