Skip to content

Instantly share code, notes, and snippets.

View pronitdas's full-sized avatar
🎯
Focusing

Pronit Das pronitdas

🎯
Focusing
View GitHub Profile
@pronitdas
pronitdas / The Technical Interview Cheat Sheet.md
Created April 9, 2021 08:52 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@pronitdas
pronitdas / modern-geospatial-python.md
Created February 5, 2020 15:41 — forked from jqtrde/modern-geospatial-python.md
Modern remote sensing image processing with Python
@pronitdas
pronitdas / a_mongodb_to_s3_backup.sh
Created May 10, 2018 09:37 — forked from lazarofl/a_mongodb_to_s3_backup.sh
MongoDB Automatic Backup to Amazon S3 with Crontab and s3cmd. Red Hat Linux on Amazon EC2
#!/bin/bash
#Force file syncronization and lock writes
mongo admin --eval "printjson(db.fsyncLock())"
MONGODUMP_PATH="/usr/bin/mongodump"
MONGO_HOST="prod.example.com"
MONGO_PORT="27017"
MONGO_DATABASE="dbname"
@pronitdas
pronitdas / .bash_aliases
Last active March 1, 2018 18:36 — forked from oblique63/.bash_aliases
Bash Aliases for Ubuntu
#----{ Aliases for Ubuntu: }--------------------------------------------------
# Admin
alias update="sudo apt-get update ; sudo apt-get -ZWry safe-upgrade && sudo apt-get -ZWry --purge-unused clean"
alias sources="sudo nano /etc/apt/sources.list"
alias install="sudo apt-get -ZWry install"
alias uninstall="sudo apt-get -ZWry remove"
alias pkgsearch="apt-get search"
alias installed="dpkg --get-selections | grep"
alias add-repo="sudo add-apt-repository"
alias app="apropos"