Skip to content

Instantly share code, notes, and snippets.

View hirawatt's full-sized avatar
🌴
Focusing

vishal hirawat hirawatt

🌴
Focusing
View GitHub Profile
@hirawatt
hirawatt / gist:18c5b692b0146c6c402839a2698c0c63
Created September 2, 2020 18:07 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@hirawatt
hirawatt / keybase.md
Created December 6, 2020 10:56
Keybase Github Verify

Keybase proof

I hereby claim:

  • I am hirawatt on github.
  • I am hirawat (https://keybase.io/hirawat) on keybase.
  • I have a public key ASAS_XoU7svEfDEBW1Z33pakZb3zOPMrYVMP-aPybQvCnQo

To claim this, I am signing this object:

@hirawatt
hirawatt / logo-extractor.py
Created July 4, 2022 18:22
Streamlit Logo Extractor from URL
import streamlit as st
from PIL import Image
import requests
from io import BytesIO
input_link = st.text_input("Paste Link of Website", value="https://www.google.com")
logo_link = input_link + "/favicon.ico"
response = requests.get(logo_link)
img = Image.open(BytesIO(response.content))
@hirawatt
hirawatt / settings.json
Created May 30, 2024 06:22
VSCode Settings
{
"editor.largeFileOptimizations": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"workbench.statusBar.visible": true,
"git.enableSmartCommit": true,
"git.autofetch": true,
"editor.fontLigatures": true,
"workbench.enableExperiments": false,
"liveServer.settings.donotShowInfoMsg": true,