| Rank | Bot | Approximate Server Count | Library |
|---|---|---|---|
| 1 | MEE6 | 21,300,000 | Custom Python |
| 2 | Rythm | 14,900,000 | JDA |
| 3 | carl-bot |
12,100,000 | Pycord |
| 4 | Dyno | 10,600,000 | Eris |
| 5 | Midjourney Bot |
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
| php-8.0.0alpha1.tar.gz | |
| SHA256 hash: dbc1df78f4b4bf758d796c0265b05500ab5e8d501543c5d7f42aeb67c9bbaa13 | |
| PGP signature: | |
| -----BEGIN PGP SIGNATURE----- | |
| iQJEBAABCgAuFiEEFyn4OTjaROJ7oPTT29s5dHDRIXIFAl7yOLMQHHBvbGxpdGFA | |
| cGhwLm5ldAAKCRDb2zl0cNEhcgXhEACHhj72vnMzXA5hHHCqP9OHO68kIpsf7M3Z | |
| T+FnAH0YcsCBwo3F7DYE46+gp6bbY8+L0glJYGqJ/ff+WpMX6bE8OzWwOZsfhn7j | |
| pn4LC7FElO75He2CtJR03Mgta3ZTrK3eRyDqr8PFbCF4Gcywlbk/BNuGmERLYwqE | |
| jgR/oEd5ExiF/R/5aWEviThZv5WkNGzVwd4m5pd7PKw0b5C5ujTlYbOB8JboSuOC |
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
| function getUrlVars() { | |
| var vars = {}; | |
| var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function( | |
| m, | |
| key, | |
| value | |
| ) { | |
| vars[key] = value; | |
| }); | |
| return vars; |
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
| // HTTP --> HTTPS | |
| if (location.protocol === "http:") { | |
| location.replace(window.location.href.replace("http:", "https:")); | |
| } |
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
| // cf https://support.glitch.com/t/exporting-all-projects/9367/2 | |
| const fetch = require('node-fetch'); | |
| const wget = require('node-wget'); | |
| // cf localStorage.cachedUser in Glitch editor | |
| var OWNER_TOKEN = "xxxx-yyyy-zzzzz-aaaa-bbbbb" | |
| var USER_ID = "123456" | |
| var PROJECT_ID = "" | |
| var urlAllProjects = `https://api.glitch.com/users/${USER_ID}?authorization=${OWNER_TOKEN}` |
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
| <?php | |
| /** | |
| * discord.msg.send.php v0.8 | |
| * Kirill Krasin © 2025 | |
| * https://github.com/Mo45 | |
| * | |
| * For revisions and comments vist: https://gist.github.com/Mo45/cb0813cb8a6ebcd6524f6a36d4f8862c | |
| * | |
| * Sends a message to Discord via Webhook with file support and rate limit handling | |
| * |
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
| # One liner | |
| wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com | |
| # Explained | |
| wget \ | |
| --recursive \ # Download the whole site. | |
| --page-requisites \ # Get all assets/elements (CSS/JS/images). | |
| --adjust-extension \ # Save files with .html on the end. | |
| --span-hosts \ # Include necessary assets from offsite as well. | |
| --convert-links \ # Update links to still work in the static version. |
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
| def handle_call({:publish, message}, _from, %{sessions: sessions}=state) do | |
| Enum.each(sessions, &send(&1.pid, message)) | |
| {:reply, :ok, state} | |
| end |
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
| <?php | |
| //temp.php | |
| //Celsius to Fahrenheit ° F = 9/5 ( ° C) + 32 | |
| //Fahrenheit to Celsius ° C = 5/9 (° F - 32) | |
| //Celsius to Kelvin K = ° C + 273.15 | |
| //Kelvin to Celsius ° C = K - 273.15 | |
| //Fahrenheit to Kelvin K = 5/9 (° F - 32) + 273.15 | |
| //Kelvin to Fahrenheit ° F = 9/5 (K - 273.15) + 32 |