Skip to content

Instantly share code, notes, and snippets.

View aahlad-allari's full-sized avatar
:shipit:
Now a days 12 out of 15 trending repos are about GPT. Just saying!!

Aahlad Allari aahlad-allari

:shipit:
Now a days 12 out of 15 trending repos are about GPT. Just saying!!
View GitHub Profile
@bradtraversy
bradtraversy / pipenv_cheat_sheet.md
Last active June 10, 2024 20:31
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell
@PCreations
PCreations / rxjs-diagrams.md
Last active January 18, 2024 08:52
Super Intuitive Interactive Diagrams to learn combining RxJS sequences by Max NgWizard K
@anvaka
anvaka / 00.Intro.md
Last active June 28, 2024 12:23
npm rank

npm rank

This gist is updated daily via cron job and lists stats for npm packages:

  1. Top 1,000 most depended-upon packages
  2. Top 1,000 packages with largest number of dependencies
  3. Top 1,000 packages with highest PageRank score
@creationix
creationix / jsonparse.js
Created February 13, 2012 23:20
event-only version of jsonparse
// Named constants with unique integer values
var C = {};
// Tokenizer States
var START = C.START = 0x11;
var TRUE1 = C.TRUE1 = 0x21;
var TRUE2 = C.TRUE2 = 0x22;
var TRUE3 = C.TRUE3 = 0x23;
var FALSE1 = C.FALSE1 = 0x31;
var FALSE2 = C.FALSE2 = 0x32;
var FALSE3 = C.FALSE3 = 0x33;