Skip to content

Instantly share code, notes, and snippets.

@niinpatel
Created December 15, 2018 07:36
Show Gist options
  • Save niinpatel/ea076c05194f39b42b5685fac074759a to your computer and use it in GitHub Desktop.
Save niinpatel/ea076c05194f39b42b5685fac074759a to your computer and use it in GitHub Desktop.
like = document.getElementsByClassName('recsGamepad__button--like')[0]
dislike = document.getElementsByClassName('recsGamepad__button--dislike')[0]
setInterval(() => {
randomNo = Math.random()
if (randomNo <= .50) // to like 50% of profiles, change this number to change the like/dislike ratio.
like.click()
else
dislike.click()
}, 1000)
@alfonsucre
Copy link

Hi Niinpatel, congratulations on your successful code. You seem to be a very good programmer :)
I don't know how to contact you, so I decided to write you here. Excuse me for it.
I would like to find someone to change one feature in tinder. Let me explain it to you:
In the app tinder if you use some GPS fake or even change your location paying Tinder +, you will be able to match with people on this other location. However the distance shown is the real distance between your current location and the fake location you chose.

Question: is it possible to change the code in tinder, so that the app tinder compares the distance refered to your fake location?

I am looking forward to reading from you.
Many thanks in advance! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment