Skip to content

Instantly share code, notes, and snippets.

View BBloggsbott's full-sized avatar
💻
❤️ Opensource

Vishal BBloggsbott

💻
❤️ Opensource
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BBloggsbott
BBloggsbott / linear-regression.py
Last active March 14, 2026 09:26
Simple Machine Learning Implementations
import random
import numpy as np
# Define Simple Dataset generated using the linear equation y = 4 * x0 + 9 * x1 + 13 with some noise added in
def generate_dataset(n_rows=100):
# 1. Generate a raw NumPy array (n_rows by 2 columns)
raw_data = np.random.rand(n_rows, 2)
# 2. Perform the math using NumPy indexing (very fast)
# y = 4 * x0 + 9 * x1 + 13
@BBloggsbott
BBloggsbott / autobound.ipynb
Created October 25, 2019 21:11
autobound.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BBloggsbott
BBloggsbott / README.md
Last active March 29, 2025 09:51
Send messages in bulk using WhatsApp without having to save numbers.

WhatsApp Message Bulk sender

Set up selenium before using it. Save your message and numbers in a file.

Make sure your numbers are in the given format: <countrycode><number>. For example, the number +91-12345-67890 will be 911234567890.

Usage

The command line arguments for this script is:

usage: whatsapp_sender.py [-h] [-nf --numbersFile] [-mf --msgFile]
@BBloggsbott
BBloggsbott / About-Me.gif
Last active June 26, 2020 13:26
About Me
About-Me.gif
@BBloggsbott
BBloggsbott / Web Scraping.ipynb
Last active January 13, 2019 14:03
Web Scraping tutorial
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BBloggsbott
BBloggsbott / README.md
Last active September 19, 2019 05:08
A python script that will get the latest papers in machine learning from arxiv.org

Arxiv Scrapper (ML)

Install required packages

pip install -r requirements.txt

Run Scrapper

python arxiv_scrapper.py