Skip to content

Instantly share code, notes, and snippets.

View Nimoi's full-sized avatar
🥱

Nathaniel Cagle Nimoi

🥱
View GitHub Profile
@Nimoi
Nimoi / gist:8233ac40ec8dda790ab2b56e6f72a69e
Created February 18, 2023 22:28
Saying hello to Frank
Hello, Frank!
@Nimoi
Nimoi / dom_performance_reflow_repaint.md
Created March 20, 2020 00:08 — 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.
@Nimoi
Nimoi / made an app
Last active December 9, 2019 08:48
> make a new app
You create a new application in Xcode called "Play Me". You then write a little
program that will allow you to play a song on your phone. You spend most of
the day coding this up.
> add features to my app
You add a few more features to your app, such as a button to play/pause or skip
through songs. You also add a slider so you can change the volume between 0-100%
> launch my app
@Nimoi
Nimoi / .vimrc
Created February 7, 2018 22:53
Bad at program
"Stolen from Alatz https://github.com/alatz
execute pathogen#infect()
syntax on
filetype plugin indent on
set number
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize