Skip to content

Instantly share code, notes, and snippets.

View AryanNanda17's full-sized avatar

ARYAN NANDA AryanNanda17

View GitHub Profile
@AryanNanda17
AryanNanda17 / GSoC2024-Final-Report.md
Last active November 6, 2024 06:21
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)"