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
| // 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)))) |
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
| { | |
| #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> |
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
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
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
| <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; | |
| }); |