Skip to content

Instantly share code, notes, and snippets.

View RitabrataDas343's full-sized avatar
:electron:
On a Mission

Ritabrata Das RitabrataDas343

:electron:
On a Mission
View GitHub Profile

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@RitabrataDas343
RitabrataDas343 / .bashrc
Created June 21, 2022 17:21 — forked from rickdaalhuizen90/.bashrc
Parrot Os bash theme for ubuntu
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace
@RitabrataDas343
RitabrataDas343 / postgresql-manjaro.md
Created May 18, 2022 18:54 — forked from marcorichetta/postgresql-manjaro.md
Install PostgreSQL on Manjaro and set it up for Django
@RitabrataDas343
RitabrataDas343 / Deploy.md
Created March 2, 2022 10:57 — forked from mayankt18/Deploy.md
Deploy using nginx and gunicorn and install ssl

Deploy with nginx and gunicorn

  1. Clone and run your project
  2. sudo apt update
  3. sudo apt install python3-pip python3-dev nginx
  4. sudo pip3 install virtualenv
  5. python3 -m venv env
  6. source ./env/bin/activate
  7. pip install gunicorn
  8. deactivate