Skip to content

Instantly share code, notes, and snippets.

View ShivamRawat0l's full-sized avatar
🎣
I am a little rusty

Shivam Rawat ShivamRawat0l

🎣
I am a little rusty
View GitHub Profile
@bigsergey
bigsergey / review-checklist.md
Last active May 8, 2024 20:01
Front-end Code Review Checklist

Review checklist

General

  1. Does the code work?
  2. Description of the project status is included.
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (React in our case).
  5. Code is in sync with existing code patterns/technologies.
  6. DRY. Is the same code duplicated more than twice?
@joyrexus
joyrexus / README.md
Last active May 3, 2024 10:41 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})