Skip to content

Instantly share code, notes, and snippets.

View sksoumik's full-sized avatar

Sadman Kabir Soumik sksoumik

View GitHub Profile
# Clone the repo
git clone https://github.com/imartinez/privateGPT
cd privateGPT
# Install Python 3.11
pyenv install 3.11
pyenv local 3.11
# Install dependencies
poetry install --with ui,local
@dipongkor
dipongkor / 65 ML BOOKS.py
Created April 28, 2020 12:12
Python script for downloading free 65 Machine Learning e-book from Springer
import requests
import re
from bs4 import BeautifulSoup
from clint.textui import progress
# Url of the article
article_url = "https://towardsdatascience.com/springer-has-released-65-machine-learning-and-data-books-for-free-961f8181f189"
html_request = requests.get(article_url)
beautifulSoup = BeautifulSoup(html_request.content, "html.parser")
@sharmaeklavya2
sharmaeklavya2 / cp_syllabus.md
Last active September 1, 2025 22:22
Competitive Programming Syllabus

Competitive Programming Syllabus

Geometry

  • Problems - Refer the article for a list of problems which can be solved using Rotating Calipers technique.