All collected Discord error codes, categorized by type. See on Userdoccers.
| Code | Message |
|---|---|
| 10001 | Unknown Account |
| 10002 | Unknown Application |
| 10003 | Unknown Channel |
| 10004 | Unknown Guild |
All collected Discord error codes, categorized by type. See on Userdoccers.
| Code | Message |
|---|---|
| 10001 | Unknown Account |
| 10002 | Unknown Application |
| 10003 | Unknown Channel |
| 10004 | Unknown Guild |
The idea was to be able to upload worlds to a database so that we could have multiple servers upload and download them at will to enable load balancing for servers such as skyblock as the demands of scalable 1.17 servers grow while the performance falls version to version.
The important idea here was to see if it was possible to upload worlds to a database, which the answer is yes :D. but this even works better for skyblock servers as they are mostly air, which allowed us to do a small optimization. which is when a chunk is empty, we don't have it, as generating empty chunks is cheap as chips, but storing them has about 500B of overhead. so it ends up taking longer to fetch them from the database, then just generate them.
This is an unofficial list of all Discord guild features, for an official list refer to the Discord Developer documentation.
| Guild Feature | Description |
|---|---|
ANIMATED_ICON |
Allows the server to set an animated icon. Used in server boosting, level 1 |
BANNER |
Allows the server to set a banner which is shown at the top of all the channels. Used in server boosting, level 2 |
COMMERCE |
Given to servers with a developer license, allows them to create and use store channels |
COMMUNITY |
Given to servers that enable community in server settings, also gives access to the news feature which allows servers to create announcement channels |
DISCOVERABLE |
Given to servers that enabled discovery guidelines |
ENABLED_DISCOVERABLE_BEFORE |
Given to servers that enabled discovery at any point |
| server { | |
| location /mailcatcher { | |
| proxy_pass http://127.0.0.1:1080/; | |
| proxy_http_version 1.1; | |
| proxy_set_header Upgrade $http_upgrade; | |
| proxy_set_header Connection "upgrade"; | |
| proxy_read_timeout 1d; | |
| sub_filter 'src="/' 'src="/mailcatcher/'; | |
| sub_filter 'href="/' 'href="/mailcatcher/'; | |
| sub_filter 'url(/' 'url(/mailcatcher/'; |