Skip to content

Instantly share code, notes, and snippets.

View nparashar150's full-sized avatar
🎯
Focusing

Naman Parashar nparashar150

🎯
Focusing
View GitHub Profile
@ahallora
ahallora / README.md
Last active July 18, 2022 08:13
Webflow API rate limiter workaround (ES6 / Nodejs)

Webflow API rate limit workaround

This is a naive work-around to the glitchy rate limiter of the current Webflow API. Any suggestions to optimizations is much appreciated.

How to use

It's a wrapper to your existing webflow-api functions, where you define two parameters:

  1. a collection ID and
  2. the function you want to call

If you have reached the rate limit this wrapper will handle the error and try to reset the rate

@RabaDabaDoba
RabaDabaDoba / ANSI-color-codes.h
Last active May 14, 2024 18:33 — forked from iamnewton/bash-colors.md
The entire table of ANSI color codes working in C!
/*
* This is free and unencumbered software released into the public domain.
*
* For more information, please refer to <https://unlicense.org>
*/
//Regular text
#define BLK "\e[0;30m"
#define RED "\e[0;31m"
#define GRN "\e[0;32m"
@bradtraversy
bradtraversy / npmcrashcourse.txt
Last active May 13, 2024 17:52
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)
@iamnewton
iamnewton / bash-colors.md
Last active May 2, 2024 22:42
The entire table of ANSI color codes.

Regular Colors

Value Color
\e[0;30m Black
\e[0;31m Red
\e[0;32m Green
\e[0;33m Yellow
\e[0;34m Blue
\e[0;35m Purple