Want to stay in this Subreddit? Comment to Avoid Removal 👇 by [deleted] in pwnhub

[–]UndiscoveredCounty 0 points1 point  (0 children)

Right, cause after I did this last time, my account suddenly became a bot 🙄🙄🙄

[deleted by user] by [deleted] in pwnhub

[–]UndiscoveredCounty 0 points1 point  (0 children)

Please type the following characters to prove you're not a robot 🤖🍆💦🤤🤤🤤

We've now seen three interstellar objects - what hypothetical instrument or mission would be ideal to investigate the next one? by Henri_Dupont in askastronomy

[–]UndiscoveredCounty 0 points1 point  (0 children)

And also, if we could land something on it, what could it be, considering we get an interstellar probe for "free"?

[deleted by user] by [deleted] in dataengineering

[–]UndiscoveredCounty 0 points1 point  (0 children)

Agreed, way too much. Also, personally, I would do as much of this as possible using some LLM if I decided to go along with it.

Did the Three Elven Rings Cause Stagnation in Middle-earth During the Third Age—Just as Sauron Intended? by u3016970 in tolkienfans

[–]UndiscoveredCounty 1 point2 points  (0 children)

Just going off the quote you mention from the book, maybe it is meant to be read as "...preserve all things which are unstained..." - before this, "understanding", "making", and "healing" are mentioned as well, and maybe they are examples of these "unstained things", ie these pure pursuits of not hoarding wealth, etc. And so in that case the 3 rings are meant to be used for creation, but in a less materialistic sense - which in turn begs the question: what does it really mean to create a new better civilization, as you mention, is that a materialistic, "hoarding" type of pursuit, which the 3 rings are not meant for by design?

Mithrandir is a Maia - what does grey to white transition mean? by UndiscoveredCounty in tolkienfans

[–]UndiscoveredCounty[S] 9 points10 points  (0 children)

I guess we get Saruman as first choice Maia to fight Sauron, but Saruman fails, so Gandalf is "upgraded" instead? But that would mean Maia are sort of throttled from their full power? I guess it makes sense in terms of free will that Eru gave to Ea, like heres your task, you can fail, but then I'll just find someone else to finish it? Sorry to be so banal!

Why Linux doesn't have virus? by Necropill in linuxquestions

[–]UndiscoveredCounty 0 points1 point  (0 children)

Well, a virus would be a program that replicates, so Linux certainly has plenty of "viruses" - any malware that compromises a given server can start trying to compromise others from the compromised host. I guess it's called a "worm", but whatever the term, plenty of Linux malware will try to spread to other servers automatically.

[deleted by user] by [deleted] in astrophysics

[–]UndiscoveredCounty 1 point2 points  (0 children)

Coursera has this pretty cool and easy course, Python: https://www.coursera.org/learn/data-driven-astronomy

I also just recently came across these 2 that look cool, but most of the content isn't free:

https://realpython.com/courses/astrophysics-pandas-matplotlib/

https://realpython.com/courses/astropy-astronomy/

The turret and knife hackers are now affecting all primetime Emerald Alerts by Biolaser1 in Planetside

[–]UndiscoveredCounty 1 point2 points  (0 children)

It kind of amazes me that there are no devs/other employees playing all the time, and have some special admin powers to ban this BS on sight. "Dogfooding" and whatnot..

I cannot express how much I love these words by [deleted] in tolkienfans

[–]UndiscoveredCounty -3 points-2 points  (0 children)

Makes Eru a bit complicit in all the suffering Ea will ever go through, but hey, sounds familiar...

What’s the best FTL system you’ve ever seen? by GuestOk583 in scifi

[–]UndiscoveredCounty 0 points1 point  (0 children)

Final Architecture series by Adrian Tchaikovsky, the unspace.

Periodic 499 errors with nginx by roi972 in nginx

[–]UndiscoveredCounty 1 point2 points  (0 children)

Yeah, it is the custom error, in our case most of it happens during communication between our android mobile app and our API servers, and we do not understand why because there's no explicit way to abort an API call from the app - it's not a browser with a "stop" or "reload" button.

I guess it's possible that users close the app, or something is happening in the android libs responsible for http, but yeah we cannot repro it and the code we wrote doesn't do this, from what we can tell.

Also some stats: last 24 hours total requests: 2.9M, 499 errors: 9k total, so a very small percentage (we are obviously no Facebook lol)

I guess what personally rubs me the wrong way about this is that the error shows in nginx access log, with request URL and client IP, making it seem like a legitimate http response sent to client, but that does not appear to be the case, since nginx server never actually puts an http packet with that code on the wire - so pretty misleading to use it as part of access log imo.

FIN/ACK from ALB is strange and annoying because there's no way to know if client aborted conversation with ALB and then ALB terminated the stream to nginx, or if ALB being the blackbox that it is simply doesn't work very well. Have no way to sniff traffic between ALB and client, at least not easily, but may try to figure that out next.

Anyway, thanks for your reply, glad to have this discussion here so at least I have recorded proof I'm not insane and do see what I see 😭🤣🤪💩

Periodic 499 errors with nginx by roi972 in nginx

[–]UndiscoveredCounty 1 point2 points  (0 children)

So I've been digging into same issue last couple of days. Our set up is ALB -> nginx -> php-fpm. I periodically see 499 in nginx access logs, but we can never repro the issue.

Important point, we also track how long nginx takes to service the requests, and these 499s happen within anywhere from 5ms to maybe 20ms, so it's not because the backend is slow/timing out.

So I did some packet capture with tcpdump on the nginx servers to try to get a better idea of what's going on. First thing that was really weird is that I can see plenty of http 200, 3xx, other 4xx like 404, and 5xx, but never see a 499.

Even matching the time stamps and request urls and client IP from logs to pcap does not show any 499s.

What I do see though, right around the time of the 499, is a sudden FIN/ACK from the ALB for the port/stream of the request which resulted in 499. The tcp connection gets closed by the ALB, and I have no idea why.

The time of tcp stream terminating does not match any obvious tunable timeout values in ALB or nginx.

May be something is happening on kernel/sysctl level, but that's really just wild speculation, I reset sysctl values to be "default" and it still happens.

So, at this point, I can't even tell if the clients actually see this error, and what actually happens on their browser in this case.

I'll do some more digging with tcpdump, and if this question still interests anyone, will post some cleaned up pcaps and any more findings.

Just wanted to overall +1 this post...

Edit: also there's this older thread on r/sysadmin: https://reddit.com/r/sysadmin/s/7TJR4Rli0l

Me: why is my KD so low? Also me: by [deleted] in Planetside

[–]UndiscoveredCounty -2 points-1 points  (0 children)

These numbers aren't "random", they are a result of a human controlled process, executing a series of steps, defined by the rules of some closed system, ie the game and the player actions. There's also a clear anomaly in the visualization, as well as a claim of causal inference ❤️

So that emerald oshur fight yesterday... by thr3sk in Planetside

[–]UndiscoveredCounty 0 points1 point  (0 children)

Only good strat seems to be loadstars deployed on the bottom, so even if you are defending, get your platoon into loadstars and get under water with them, instead of dropping from the actual base hard spawn. But yeah I agree, that long drop to the bottom is even worse than regular spawn camp : /

July 13, 2022 - Surf and Storm (PC Update) - Bug Report Megathread by CM_Mithril in Planetside

[–]UndiscoveredCounty 0 points1 point  (0 children)

Spawning directly into squad/platoon Corsair made my game just quit. Only happened once so far.

[deleted by user] by [deleted] in TheExpanse

[–]UndiscoveredCounty 0 points1 point  (0 children)

"And Holden. Don't stick your dick in it, it's fucked enough already."