Skip to content

Instantly share code, notes, and snippets.

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

Vishal BBloggsbott

💻
❤️ Opensource
View GitHub Profile
@BBloggsbott
BBloggsbott / autobound.ipynb
Created October 25, 2019 21:11
autobound.ipynb
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 30, 2019 17:21
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
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
@BBloggsbott
BBloggsbott / multicolorChain.es
Created November 18, 2017 15:36
A code for structure synth to generate a mlticolored chain.
r5
rule r5{
r4
{ x 15 z -5.75 y -5.75 hue 40 sat 40 rx 90 } r5
}
rule r4{
r1
{ z -11.5 }r1
@BBloggsbott
BBloggsbott / minesweeper.cpp
Created July 19, 2017 11:56
The classic Minesweeper game using C++. Run in MS DOS Compilers for the best rsult!!!
#include<iostream>
#include <conio.h>
#include <fstream>
#include <time.h>
using namespace std;
void replay();
int random(int, int);
void reveal(int);
@BBloggsbott
BBloggsbott / inputs.txt
Created July 14, 2017 15:44
A C++ program to use inputs from a file to perform basic operations on a Linked List
This file contains the input for the program link_list_using_file.cpp. Change the content in this file to change the inputs.