Skip to content

Instantly share code, notes, and snippets.

@ross-u
ross-u / lunch_and_learn-2012-9-7.md
Created September 10, 2024 12:33 — forked from davidxia/lunch_and_learn-2012-9-7.md
NYC Lunch and Learn - September 21, 2012 - Neville Li & David Xia

NYC Lunch and Learn

September 21, 2012

Neville Li & David Xia

To me vi is zen. To use vi is to practice zen. Every command is a koan. Profound to the user, unintelligible to the uninitiated. You discover truth every time you use it. — Satish Reddy

Vim Basics

@ross-u
ross-u / Critical_rendering_path.md
Created September 10, 2024 12:33 — forked from papplo/Critical_rendering_path.md
Critical Rendering Path: MDN Docs

(Originally from Mozilla Docs](https://developer.mozilla.org/en-US/docs/Web/Performance/Critical_rendering_path)

The Critical Rendering Path is the sequence of steps the browser goes through to convert the HTML, CSS, and JavaScript into pixels on the screen. Optimizing the critical render path improves render performance.The critical rendering path includes the Document Object Model (DOM), CSS Object Model (CSSOM), render tree and layout.

The document object model is created as the HTML is parsed. The HTML may request JavaScript, which may, in turn, alter the DOM. The HTML includes or makes requests for styles, which in turn builds the CSS object model. The browser engine combines the two to create the Render Tree. Layout determines the size and location of everything on the page. Once layout is determined, pixels

Originally from developers.google.com

Performance in Loading, according to Google

This document set contains explanations, examples, and recommendations that focus on low-effort, high-return performance wins. The content is progressive, not cumulative; that is, you don't have to use all of the proposed techniques, nor do you have to use them in any particular order. But the more of them you can apply to your web pages, the better those pages will perform.

Text content

@ross-u
ross-u / cloudinary-setup.md
Created July 19, 2024 07:42 — forked from 1travelintexan/cloudinary-setup.md
Cloudinary React (module-3)

1. Cloudinary account setup

Go to this link https://cloudinary.com/ and create your cloudinary account, verify your email and go through or skip the initial questions

After you are done you should be able to see the following in your dashboard:

  • Cloud Name
  • API key
  • API Secret
@ross-u
ross-u / normcore-llm.md
Created March 18, 2024 10:53 — forked from veekaybee/normcore-llm.md
Normcore LLM Reads

Anti-hype LLM reading list

Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

Foundational Concepts

Screenshot 2023-12-18 at 10 40 27 PM

Pre-Transformer Models

@ross-u
ross-u / README.md
Created February 13, 2024 11:11 — forked from MrAFerreira/README.md
Module 2 (React) Project README example

Project Name


Description

Project management App that allows users to create projects and tasks.


logo_ironhack_blue 7

LAB | HTML & CSS - Recipes Clone

Learning Goals

@ross-u
ross-u / Free O'Reilly Books.md
Created January 10, 2023 23:13 — forked from dongbohu/Free O'Reilly Books.md
Free O'Reilly Books

Free O'Reilly books and convenient script to just download them.

Thanks /u/FallenAege/ and /u/ShPavel/ from this Reddit post

How to use:

  1. Take the download.sh file and put it into a directory where you want the files to be saved.
  2. cd into the directory and make sure that it has executable permissions (chmod +x download.sh should do it)
  3. Run ./download.sh and wee there it goes. Also if you do not want all the files, just simply comment the ones you do not want.
@ross-u
ross-u / environments-on-heroku.md
Created August 25, 2022 11:39 — forked from katlandreth/environments-on-heroku.md
Create Staging and Production apps on Heroku with corrisponding git branches

##Set-up

  • create a heroku account
  • install the heroku toolbelt: https://toolbelt.heroku.com/
  • log into heroku via the commandline with heroku login and enter your credentials.
  • add your AWS (or other) keys to the heroku environment (I did this from the webapp -from your apps list, click on your appname, then Settings > Reveal Config Vars and add your config variables)

##Create your app

  • in your terminal, cd to your app on your local machine
@ross-u
ross-u / README-Template.md
Created June 16, 2022 00:08 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites