Skip to content

Instantly share code, notes, and snippets.

@ih2502mk
ih2502mk / list.md
Last active July 2, 2024 20:30
Quantopian Lectures Saved
@abelardojarab
abelardojarab / git_local_installation.sh
Last active April 22, 2024 19:43
bash script for installing git without root access
#!/bin/bash
wget https://curl.haxx.se/download/curl-7.47.1.tar.gz
tar -xf curl-7.47.1.tar.gz
cd curl-7.47.1
./configure --prefix=$HOME/local
make
make install
wget http://downloads.sourceforge.net/expat/expat-2.1.0.tar.gz
@octavifs
octavifs / tmux_htop_local_install.sh
Last active March 12, 2024 16:02
Install tmux and htop statically without root
#!/bin/sh
# Script for installing tmux & htop on systems where you don't have root access.
# Inspired by https://gist.github.com/ryin/3106801
# tmux will be installed in $HOME/local/bin.
# htop will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e