Skip to content

Instantly share code, notes, and snippets.

View mdudaj's full-sized avatar

John Mduda mdudaj

  • National Institute for Medical Research
  • Dar es Salaam, Tanzania
View GitHub Profile
@mdudaj
mdudaj / install_pipenv.md
Created August 14, 2023 08:59 — forked from planetceres/install_pipenv.md
pipenv installation notes Ubuntu 18.04

Installation Notes for pipenv on Ubuntu 18.04

1. Add ~/.local/bin to PATH

pypa/pipenv#2122 (comment)

echo 'export PATH="${HOME}/.local/bin:$PATH"' >> ~/.bashrc
@mdudaj
mdudaj / git-ssh-error-fix.sh
Created April 27, 2022 08:12 — forked from Tamal/git-ssh-error-fix.sh
Solution for 'ssh: connect to host github.com port 22: Connection timed out' error
$ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj
Cloning into 'my-awesome-proj'...
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.
$ # This should also timeout
$ ssh -T git@github.com
ssh: connect to host github.com port 22: Connection timed out
$ # but this might work