Notices by Yukkuri (iamtakingiteasy@eientei.org), page 2
-
Yukkuri (iamtakingiteasy@eientei.org)'s status on Monday, 22-Jul-2024 15:17:25 JST Yukkuri @menherahair Not familiar with the term, unless you mean furniture, in which case proper table or shelf array would still probably be better. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Thursday, 18-Jul-2024 02:20:48 JST Yukkuri @skylar @weaf Who washes a dishwasher? -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Thursday, 18-Jul-2024 00:39:20 JST Yukkuri @lina @colonelj @EricZhang456 @Hoss @mint @sun -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Wednesday, 17-Jul-2024 04:13:03 JST Yukkuri @poopernova @Iffine -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Wednesday, 17-Jul-2024 04:10:02 JST Yukkuri @poopernova @Iffine -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 14-Jul-2024 05:31:30 JST Yukkuri @andreas @lina @menherahair @meso Unwittingly or deliberately your history with lina coincides with the start of SMO, which means you are either paid to do so, or sufficiently hysterical to be manipulated by mass media and peer pressure. In either case you are not owed any particular interest outside of being persistent, emotional and unimaginative nuisance. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 14-Jul-2024 05:29:51 JST Yukkuri @andreas @lina @menherahair @meso Now you're just butthurt that you are butthurt. Do you really want to go deeper, recursively producing new reasons to be butthurt, or maybe it is time to cut losses and settle on just the depth of two? -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 14-Jul-2024 05:29:28 JST Yukkuri @meso I see no issue, feminine roundabout begging for attention is functioning perfectly well.
/close wontfix -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 14-Jul-2024 05:29:06 JST Yukkuri @andreas @lina @menherahair @meso You purposefully come into threads with lina to tell how much his opinion is irrelevant to you, you've been doing this for years now, I think your butthurt is sufficient to breach into upper level of argumentative autism. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Thursday, 11-Jul-2024 01:47:05 JST Yukkuri @menherahair @cow @MK2boogaloo -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Tuesday, 09-Jul-2024 01:16:00 JST Yukkuri @lina @cough -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Sunday, 07-Jul-2024 12:27:48 JST Yukkuri @Iffine @poopernova -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Friday, 05-Jul-2024 21:01:15 JST Yukkuri @lina @menherahair Doxxing, or even appearance of such has best potential because of the groups most vulnerable to it and more likely to proactively seek ways to avoid it, sharing the word of potential threat with their likeminded peers, virally neutralizing the whole stem. Blatant spamming while potentially effective in short-term, does not pose even appearance of long-term consequences to those specific groups and may also propagate outside of the intended circles, while maintaining the spam list would be comparable to maintaining a defederation list, which is what I'd like to avoid. Try using html, it can be fun. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Friday, 05-Jul-2024 20:59:19 JST Yukkuri @mint @lina @menherahair I'd rather have them defederating us preventively, just like mastodongers do - before we have any chance to learn of their existence. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Wednesday, 03-Jul-2024 00:24:31 JST Yukkuri @nowtakenusername @menherahair Scarlet mansion globglogabgalab's spellcard. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Tuesday, 25-Jun-2024 01:45:57 JST Yukkuri @s Pretty sure you are taxed, even if indirectly; and are expected to behave within certain parameters, lest be shown what happens when your social tithes are not being met. There are too few places to hide from this now and close to none - for long. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Saturday, 15-Jun-2024 02:28:33 JST Yukkuri @creamqueen @mint Chances are, you already did. It wasn't always just a thin 2d fleshsuit for vain females. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Friday, 07-Jun-2024 03:04:52 JST Yukkuri @lina @Xeraser @Iffine @poopernova He had better days for certain. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Friday, 07-Jun-2024 02:15:04 JST Yukkuri @Iffine @Xeraser 1000 watts or more. -
Yukkuri (iamtakingiteasy@eientei.org)'s status on Thursday, 06-Jun-2024 01:28:38 JST Yukkuri Nginx hack, enables range requests for the local and locally cached content in synapse without loss of mime types on non-range requests.
Most dirty part is that if range request for locally cached remote content fails, it must be back-substituted and proxied with original path, requiring another named location.
At least it doesn't require lua or database connections.
location @proxy { proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_pass http://127.0.0.1:8008; } location ~ "/_matrix/media/v3/download/example.com/([a-zA-Z]{2})([a-zA-Z]{2})([a-zA-Z]+)" { root /path/to/synapse/media_store/local_content; if ($http_range) { rewrite "/_matrix/media/v3/download/[^/]*/([a-zA-Z]{2})([a-zA-Z]{2})([a-zA-Z]+)" /$1/$2/$3 break; } try_files $uri @proxy; } location @expandproxy { rewrite /([^/]*)/([^/]*)/([^/]*)/([^/]*) /_matrix/media/v3/download/$1/$2$3$4 break; try_files $uri @proxy; } location ~ "/_matrix/media/v3/download/(?!example.com)([^/]*)/([a-zA-Z]{2})([a-zA-Z]{2})([a-zA-Z]+)" { root /path/to/synapse/media_store/remote_content; if ($http_range) { rewrite "/_matrix/media/v3/download/([^/]*)/([a-zA-Z]{2})([a-zA-Z]{2})([a-zA-Z]+)" /$1/$2/$3/$4 break; } try_files $uri @proxy; error_page 404 = @expandproxy; }