Skip to content

Instantly share code, notes, and snippets.

View AryanNanda17's full-sized avatar

ARYAN NANDA AryanNanda17

View GitHub Profile
NODE_OPTIONS="--max-old-space-size=4096" yarn start:dev ─╯
yarn run v1.22.19
warning ../../../../package.json: No license field
$ yarn;yarn secretsfoundry run -s "nest start --watch"
warning ../../../../package.json: No license field
[1/5] 🔍 Validating package.json...
[2/5] 🔍 Resolving packages...
warning Resolution field "[email protected]" is incompatible with requested version "form-data@^2.5.0"
warning Resolution field "[email protected]" is incompatible with requested version "form-data@~2.3.2"
@AryanNanda17
AryanNanda17 / GSoC2024-Final-Report.md
Last active February 14, 2025 06:54
Blog summarizing my work in GSoC-2024
@AryanNanda17
AryanNanda17 / mario_install.sh
Last active April 27, 2024 19:03
Mario Installation Script
#!/usr/bin/env bash
set -e
red=`tput setaf 1`
green=`tput setaf 2`
blue=`tput setaf 4`
reset=`tput sgr0`
echo "Installing ESP IDF"
#!/usr/bin/env bash
echo "Installations Started"
# Clone Pixels_Seminar Repository
if [ ! -d "$HOME/Pixels_Seminar" ]; then
cd "$HOME" || (echo "Error: Could not navigate to Home" && exit 1)
echo "Cloning Pixels_Seminar"
git clone https://github.com/SRA-VJTI/Pixels_Seminar.git || (echo "Error: Could not clone repository" && exit 1)
else
echo "You have already Cloned Pixels_Seminar!"
fi
@AryanNanda17
AryanNanda17 / wall_e_install.sh
Last active April 27, 2024 19:02
Esp-Idf Installation Script
#!/usr/bin/env bash
echo "installing ESP IDF"
_shell_="${SHELL#${SHELL%/*}/}"
# Check whether esp-idf has already been installed
if [ -d $HOME/esp/esp-idf ]; then
echo "You already have installed esp-idf!"
else
# System Detection and ESP-IDF Installation
unameOut="$(uname -s)"