duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| // Go to https://www.reddit.com/user/<username>/ and paste into your console. | |
| // Reddit throttles these actions, hence the 1s timer. | |
| let interval = setInterval(() => { | |
| let deleteButtons = $('a.togglebutton[data-event-action="delete"]'); | |
| if (deleteButtons.length === 0) { | |
| clearInterval(interval); | |
| if ($('.next-button > a')[0]) { | |
| $('.next-button > a')[0].click(); | |
| alert('Restart script.'); | |
| } |
| extern "C" | |
| { | |
| int _fltused; | |
| #ifdef _M_IX86 // following functions are needed only for 32-bit architecture | |
| __declspec(naked) void _ftol2() | |
| { | |
| __asm | |
| { |
| // "License": Public Domain | |
| // I, Mathias Panzenböck, place this file hereby into the public domain. Use it at your own risk for whatever you like. | |
| // In case there are jurisdictions that don't support putting things in the public domain you can also consider it to | |
| // be "dual licensed" under the BSD, MIT and Apache licenses, if you want to. This code is trivial anyway. Consider it | |
| // an example on how to get the endian conversion functions on different platforms. | |
| #ifndef PORTABLE_ENDIAN_H__ | |
| #define PORTABLE_ENDIAN_H__ | |
| #if (defined(_WIN16) || defined(_WIN32) || defined(_WIN64)) && !defined(__WINDOWS__) |
| upstream plex-upstream { | |
| # change plex-server.example.com:32400 to the hostname:port of your plex server. | |
| # this can be "localhost:32400", for instance, if Plex is running on the same server as nginx. | |
| server plex-server.example.com:32400; | |
| } | |
| server { | |
| listen 80; | |
| # server names for this server. |