Black Hole
May contain traces of nut
My Internet speed has been consistently better since I ran some speed tests. Curious that.
Looks like AI trying to be too clever.What's going on here? It's been popping up when I run a search from the browser bar – anyone else getting similar?
View attachment 7680
Or BH rapidly sending requests to anything with a pulse on dating appsLooks like AI trying to be too clever.

I don't usually use Google but I switched (temporarily) to it and didn't get the message. Probably didn't do enough searching to trigger it. One possibility is that you or someone using the same ISP have been bombarding Google with rapid requests. I've had similar messages from other sites when I've only accessed it once. As far as I could tell I wasn't infected with a virus/bot or whatever. So it must be another user(s) on the same ISP (?).What's going on here? It's been popping up when I run a search from the browser bar – anyone else getting similar?
View attachment 7680
For i,j in something
# some code
if raw < T:
continue
# some more code
# end of loop
For i,j in something
# some code
if raw >= T:
# some more code
# end for loop
I use whatever feels right in each particular case, but generally would do what you suggest. Sometimes if the indentation level gets too annoying I'll stick the "continue" or "break" in, but generally that means the function needs splitting up anyway.I think it hampers clarity and complicates debugging. What do other programmers think?
All true, and excessive nesting is a right pain.That way, the "break" (if the exception is true) is only one line and nested +1, while the non-exception code doesn't need to be nested at all.
I've written one very short program and waded through other people's code. I only quoted Python as this appeared to be what was listed on "Tech Now". I would have preferred C or, at a push, C++ or Java.I have no idea about Python,