Skip to content

Instantly share code, notes, and snippets.

View SarveshMD's full-sized avatar

Sarvesh MD SarveshMD

View GitHub Profile
@SarveshMD
SarveshMD / sunset.html
Created August 8, 2021 14:42
CSS Battle #39 - Sunset
<div class="circle outer">
<div class="circle inner"></div></div>
<div class="shadow"></div>
<style>
body,.outer {
background: #1A4341;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
@SarveshMD
SarveshMD / stripes.html
Created August 7, 2021 16:37
CSS Battle #44 - Stripes
<div class="circle right"></div>
<div class="circle left"></div>
<div class="rect"></div>
<style>
body {
background: #1A4341;
display: flex;
align-items: center;
justify-content: center;
}
@SarveshMD
SarveshMD / gfgPasswordTest.py
Created August 2, 2021 14:36
Solution for a GeeksforGeeks puzzle
samples = list()
for _ in range(int(input())):
samples.append(input().rstrip())
alphabetsLower = 'abcdefghijklmnopqrstuvwxyz'
alphabetsUpper = alphabetsLower.upper()
numbers = '0123456789'
def test(sample, searchIn):
i = 0
@SarveshMD
SarveshMD / typethealphabet-bot.py
Created August 1, 2021 11:23
Bot for typethealphabet.app
from selenium import webdriver
from time import sleep
alphabets = "abcdefghijklmnopqrstuvwxyz"
howLongShouldITake = int(input("How many seconds should I take ?\n"))
browser = webdriver.Chrome("./chromedriver")
browser.get("https://typethealphabet.app")