Skip to content

Instantly share code, notes, and snippets.

View prankshaw's full-sized avatar
😁
Hello,नमस्ते,Hola,Bonjour,Konnichiwa,Nǐn hǎo,Salve,Guten Tag,Shalom,Olá

Pranjal Rastogi prankshaw

😁
Hello,नमस्ते,Hola,Bonjour,Konnichiwa,Nǐn hǎo,Salve,Guten Tag,Shalom,Olá
View GitHub Profile
{
"meta": {
"theme": "elegant"
},
"basics":{
"name":"Pranjal Rastogi",
"label":" Software Developer | Budding Writer",
"image":"https://avatars.githubusercontent.com/u/22571701?s=400&u=92b0db8518b7ad7f7ebc2c3906a74b9198c5a729&v=4",
"email":"pranjalrastogi1998@gmail.com",
"phone":"(912) 555-4321",
@prankshaw
prankshaw / Black Frost theme for Windows Terminal.md
Last active July 1, 2020 21:28
A Dark theme for Windows Terminal with interactive colors

Windows Terminal theme, a Dark Version of Glass Frost theme for Powershell by Microsoft.

Just add it to themes section of your settings.json file. Read more here-> https://docs.microsoft.com/en-us/windows/terminal/customize-settings/profile-settings/#color-settings. Replace 'colorscheme' parameter name to Blackfrost.


To make your terminal completely awesome, follow https://docs.microsoft.com/en-us/windows/terminal/custom-terminal-gallery/frosted-glass-theme tutorial and replace the frost theme by Blackfrost
{
            "name": "Blackfrost",
            "background": "#000000",
@prankshaw
prankshaw / fashion_mnist.ipynb
Created June 26, 2019 20:52
fashion_mnist.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import urllib.request #Importing necessary libraries
from urllib.parse import urlparse
from bs4 import BeautifulSoup
url= input( "Enter the Url : ") #Input the URL
page = urllib.request.urlopen(url)
print("Total Size of web page is: " , len(page.read()), "bytes") #Outputting size of web page in bytes
links=[]
domains=[]