This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |