Skip to content

Instantly share code, notes, and snippets.

View rodjul's full-sized avatar

Rodrigo Juliano rodjul

  • Brazil - São Paulo
View GitHub Profile
@rodjul
rodjul / Dockerfile
Created March 24, 2023 13:41
AWS Lambda python3.9 (Amazon Linux 2) - OpenSSL 1.1.1, pyOpenSSL with cryptography
FROM ubuntu:17.10
WORKDIR /root
# RUN /usr/bin/apt update
RUN sed -i 's/archive/old-releases/g' /etc/apt/sources.list && \
/usr/bin/apt update; \
apt install -y software-properties-common make build-essential libssl-dev zlib1g-dev \
libbz2-dev libreadline-dev libsqlite3-dev \
wget curl llvm libncurses5-dev \
@rodjul
rodjul / slideshare_download.py
Created September 26, 2022 18:08
Slide Share download templates
import requests
from bs4 import BeautifulSoup
from getpass import getpass
import os
import threading
headers = {
"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36",
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
@rodjul
rodjul / nasm_shell.dockerfile
Created June 29, 2022 02:56
NASM Shell docker
# FROM ubuntu:latest
# RUN apt update && apt install nasm git python3 python3-dev -y
FROM alpine:3.14
RUN apk add --no-cache nasm git python3 python3-dev
WORKDIR /app
RUN git clone https://github.com/fishstiqz/nasmshell