Skip to content

Instantly share code, notes, and snippets.

@rshan1515
rshan1515 / tinder-liked.js
Created February 1, 2026 22:54 — forked from IonBazan/tinder-liked.js
Tinder liked photos
// Copy-paste this code into the Developer Console (F12 or Cmd+Option+I on Mac) on Tinder Web. Please remember to allow for popups.
fetch('https://api.gotinder.com/v2/fast-match/teasers', {
headers: {
'x-auth-token': localStorage.getItem('TinderWeb/APIToken'),
}
})
.then(r => r.json())
.then(data => data.data.results.map(result => result.user.photos.map(photo => window.open(photo.url))))
@rshan1515
rshan1515 / test.cs
Created January 16, 2026 07:19 — forked from octocat/test.cs
{
#region Adornment Factory
/// <summary>
/// Establishes an <see cref="IAdornmentLayer"/> to place the adornment on and exports the <see cref="IWpfTextViewCreationListener"/>
/// that instantiates the adornment on the event of a <see cref="IWpfTextView"/>'s creation
/// </summary>
@rshan1515
rshan1515 / .gitignore
Created December 25, 2025 08:46 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
<button type="button", id="click">Click for a Name</button>
<div id="response"></div>
<script src="nameme.js"></script>
<script>
var button = document.getElementById('click');
var div = document.getElementById('response');
button.addEventListener('click', function () {
nameMe().then(function (r) {
div.innerText = r;
});