Skip to content

Instantly share code, notes, and snippets.

View saurabh10041998's full-sized avatar

Saurabh Shinde saurabh10041998

View GitHub Profile

Download python3.9

go to http://www.python.org/ftp/python
Select the appropriate version 
download one

Install apt deps

apt install -y \
# Variables
CC = gcc
CFLAGS = -g
LDFLAGS = -L./
LDLIBS = -lbgprs
SRC = call_rust.c
TARGET = call_rust
# Default target
all: $(TARGET)
@saurabh10041998
saurabh10041998 / list-folder-safe.sh
Last active February 1, 2024 00:01
python3 and bash snippets for reuse
#! /bin/bash
FOLDER=/home/drax
run() {
echo
echo -e "[\x1B[32mPROMPT\x1B[0m]:${@}"
${@}
}