Skip to content

Instantly share code, notes, and snippets.

View priyanshnama's full-sized avatar
🏠
Working from home

Priyansh Nama priyanshnama

🏠
Working from home
View GitHub Profile
@priyanshnama
priyanshnama / Invicta20_Website_Referral_Code_Generator.py
Created September 3, 2020 03:35
Tendua Jr invites his friends to invicta2020 and they all register using his referral code!!
# root login email dabefot870@oncloud.ws
# root login password Tendua.jr123
# root Refral Code Tendua54
import string
import urllib3
import random
import json
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@priyanshnama
priyanshnama / Mail_from_Excel.py
Last active May 1, 2020 06:43
Send messages to thousands of recipients stored in excel via python.!!
import pip
xl_driver = pip.main(["install", "openpyxl"])
smtp_driver = pip.main(["install","smtplib"])
import openpyxl as xl
import smtplib
# Mail_from_Excel.py
# Send messages to thousands of recipients stored in excel via python
print("Welcome to Mails from Excel")
print("Fetching Data...")
@priyanshnama
priyanshnama / robothon.c
Last active December 29, 2019 10:07
Driver Code of Wifi-controlled Car to be flashed in Node-MCU - ESP8266
#define frontL 16 //D0 IN1 IN3 L
#define backL 5 //D1 IN2 IN4 L
#define frontR 4 //D2 IN1 IN3 R
#define backR 0 //D3 IN2 IN4 R
#define LED 2
@priyanshnama
priyanshnama / Tic-Tac-Toe.py
Last active December 25, 2019 11:35
Tic-Tac-Toe (O-X) Game entirely made in python. Just run the Python file in terminal and enjoy!!
from random import randint
from time import sleep
def board_reset():
board_reseted = [' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ']
return board_reseted
def game_exit():
print("Thanks for Playing")