Skip to content

Instantly share code, notes, and snippets.

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

Sharat T Oommen sharat94

🏠
Working from home
View GitHub Profile
@sharat94
sharat94 / my_profile.html
Last active June 25, 2021 06:22
My profile
<h1 align="center">Hi 👋, I'm Sharat Oommen</h1>
<h3 align="center">Product engineer from India</h3>
<p align="left"> <img src="https://komarev.com/ghpvc/?username=sharat94&label=Profile%20views&color=0e75b6&style=flat" alt="sharat94" /> </p>
<p align="left"> <a href="https://twitter.com/sharathey94" target="blank"><img src="https://img.shields.io/twitter/follow/sharathey94?logo=twitter&style=for-the-badge" alt="sharathey94" /></a> </p>
<h3 align="left">Connect with me:</h3>
<p align="left">
<a href="https://twitter.com/sharathey94" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/twitter.svg" alt="sharathey94" height="30" width="40" /></a>
@sharat94
sharat94 / like.js
Last active March 21, 2020 18:32
The Right Swiper
var confirmBox = confirm('Start swiping right?');
var count = 1;
var like = function(){
if (confirmBox){
document.querySelector('[aria-label="Like"]').click();
console.log('Liked ' + count); count++;
setTimeout(like, 2000);
}};
setTimeout(like, 2000);