Skip to content

Instantly share code, notes, and snippets.

View Electroholmes's full-sized avatar
🎯
Focusing

Ninad Ingale Electroholmes

🎯
Focusing
View GitHub Profile
@Electroholmes
Electroholmes / GitHub Quick Facts.md
Created October 26, 2020 14:25 — forked from briandoll/GitHub Quick Facts.md
GitHub Quick Facts

GitHub Quick Facts

GitHub is the best place to share code with friends, co-workers, classmates, and complete strangers. Over a million people use GitHub to build amazing things together.

Company

@Electroholmes
Electroholmes / financial-aid-coursera.md
Created October 8, 2020 17:13
Financial AID application for CYBER SECURITY course on COURSERA

Why are you applying for Financial Aid?

I’m a student from India keen to learn about Cyber Security, especially Software Security.Since the quality of education in our college is not up to the mark, the only way to get a viable career option in the future for me is to take this course.Since I am a student and our college does not permit part time job, I would not be able to carry the expanses to pay for the certificate of this course. Financial Aid will help me take this course without any adverse impact on my monthly essential needs. I am really excited for this course, since it presents me with a great opportunity to grow my skills and become a professional as I graduate in the same or prospective fields with a great resume. Coursera has been a great platform among my peers and following them I am very excited to take my first course here!

How will taking this course help you achieve your career goals?

Cyber Security being a field in high demand, I want to complete the Software Security Course by

@Electroholmes
Electroholmes / gist:8d83f6cb9e53136f432629caef5d6f13
Created October 5, 2020 17:20 — forked from techstiff/gist:9487304
Check Domain Availability with Python
import urllib2,cookielib
import re
def checkDomain(domain):
site='http://www.checkdomain.com/cgi-bin/checkdomain.pl?domain=' + domain
hdr = {'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3',
'Accept-Encoding': 'none',
'Accept-Language': 'en-US,en;q=0.8',
@Electroholmes
Electroholmes / paint.py
Created September 2, 2020 08:13 — forked from nikhilkumarsingh/paint.py
A simple paint application using tkinter in Python 3
from tkinter import *
from tkinter.colorchooser import askcolor
class Paint(object):
DEFAULT_PEN_SIZE = 5.0
DEFAULT_COLOR = 'black'
def __init__(self):