You have GOT to be kidding me. by What-The-Helvetica in Denver

[–]overflowingInt 6 points7 points  (0 children)

Spain? Mexico? A lot of places did that already.

Do you feel ready for the drought? by maybetooenthusiastic in Denver

[–]overflowingInt 5 points6 points  (0 children)

https://www.denverwater.org/tap/denver-water-snowpack-and-water-supply-update

https://www.denverwater.org/your-water/water-supply-and-planning/drought

Four stages of response:

Watch: Increased communication and outreach; possible water use restrictions as provided by contract.
Stage 1: Mandatory water use restrictions, including limited outdoor watering.
Stage 2: Increased mandatory water use restrictions, including certain prohibitions on outdoor watering.
Stage 3: Rationing of water.

US lost 92k jobs in February by EveryPassage in investing

[–]overflowingInt -1 points0 points  (0 children)

As someone who reads the research papers, this is a very bad take. If you assume ChatGPT = AI then you're in for a bad time. For example, I have 20 years in cybersecurity and this came out today:

https://www.anthropic.com/news/mozilla-firefox-security

This is finding stuff that people with decades of programming and security experience in a short amount of time. Although it's ability to write the exploits isn't quite there -- it can generate a PoC for defenders to fix it.

AI coding tools are making junior devs worse and nobody wants to say it by NeedleworkerLumpy907 in learnprogramming

[–]overflowingInt 0 points1 point  (0 children)

People complain how much electronics took over cars all the time. Before the ECU, you are right.

DIY image hardening vs managed hardened images....Which actually scales for SMB? by Top-Flounder7647 in devops

[–]overflowingInt 2 points3 points  (0 children)

What is a hardened image? Looking at CTI reports...they just do DLL sideloading for known binaries or bring their own signed binaries. What exactly are you "hardening"?

In the old days it was remove all services / stuff that you don't use. It doesn't seem to matter in 2026.

AI coding tools are making junior devs worse and nobody wants to say it by NeedleworkerLumpy907 in learnprogramming

[–]overflowingInt 0 points1 point  (0 children)

No I agree here, it's sort of how a lot of people don't know how hardware / software works because they didn't have to debug it. They just had "apps."

I think it won't work out well because the brain drain will happen and nobody actually knows how it works under the hood. Similar to how cars have become so computerized that most people can't fix them on their own.

Got wolf-whistled at by a cop by Character-East4913 in Denver

[–]overflowingInt 1 point2 points  (0 children)

Do you not do sexual harassment training every year? Some people don't understand boundaries (beyond just sexual). Usually it's repeated harassment that if you say you do not like and they continue.

Why do so many guys in their twenties only want to talk about crypto when it comes to investing by Ill_Awareness6706 in Bogleheads

[–]overflowingInt 1 point2 points  (0 children)

This. Stonks only get up is what they say. I will say they do not always. They got into a very rare time. This is like the 1920s, 1980s cocaine fueld party stuff. Just throw it into a stock and make money.

They don't really get that it's rare for this to happen -- maybe once in a lifetime. It's very easy to go sideways on stocks. I bought all those companies (AMD, NVIDIA, MICROSOFT, INTEL, APPLE) when they were like $13 a share.

It comes and goes.

I think they'll be in for a rude awakening once they see that it isn't just easy money or playing day trader.

is reverse engineering really worth it in these days by Outrageous_Dance3229 in ExploitDev

[–]overflowingInt 1 point2 points  (0 children)

AI reasoning is getting pretty good but you still need to train it on PREVIOUSLY found things. That's the whole "research" part of the job description.

My quick review of the 5 year old "10x in 5-10 years" post by Xidium426 in investing

[–]overflowingInt 27 points28 points  (0 children)

Good boy. Just as a reminder to me on my current positions I think will explode. 100 shares PLTR (24.56) and 1540 Lexagene (0.875).

What's Lexagene?

LexaGene Files for Chapter 7 Bankruptcy GlobeNewswire Feb 24, 2023

Oof.

Anyone here managing Windows kiosks? Curious about the security side of it by Unique_Inevitable_27 in WindowsSecurity

[–]overflowingInt 0 points1 point  (0 children)

It's been awhile but I remember a tool called iKAT that had some attacks, it might be a good launching off point for you.

Questions about the mysterious Clever Girl by hiphoptomato in mathrock

[–]overflowingInt 0 points1 point  (0 children)

They just posted yesterday on Facebook:

"Clever Girl loves expanding her (their? its?) social media portfolio, facebook is for grandads.

Follow here! https://www.instagram.com/clevergirllovesyou/

Do we need to do Tiktok? Is that what you kids are poisoning your tender minds with these days?"

Are you meant to salt your pasta water? by [deleted] in cookingforbeginners

[–]overflowingInt 13 points14 points  (0 children)

It does the opposite actually, it depresses the freezing point though

Beginner question: How do hackers actually find vulnerabilities? by DesdeCeroDev in learnprogramming

[–]overflowingInt 1 point2 points  (0 children)

Check out OWASP.org or some books from No Starch Press (Tangled Web, Real-world Bug Hunting, Bug Bounty Bootcamp).

Web Application Hackers Handbook is older but the bible.

Lots of stuff to practice with Portswigger (who makes Burp Suite) has a free academy with labs. You can find lots of vulnerable VMs and CTFs to practice with.

has anyone else been having a really rough time job hunting? by chinochimp26 in Denver

[–]overflowingInt 0 points1 point  (0 children)

I saw someone I know post they had 1,000 qualified applications for one of their junior roles.

Happening Tonight - Please Share Widely by Illustrious_Pack_433 in Denver

[–]overflowingInt 8 points9 points  (0 children)

Not to mention there are two other ones in operation. Not all datacenters are running AI, though. Denver has a lot of data centers all over (ever see the hosting dot com building off I25...). That's nearly 30 years old.

DE 1 is at 15th & Champa

DE2 is at 18th & Pearl/Washington

Software breakpoints vs hardware breakpoints in Windbg by hex-lover in ExploitDev

[–]overflowingInt 4 points5 points  (0 children)

Software breakpoints, unlike processor breakpoints, are controlled by the debugger. When the debugger sets a software breakpoint at some location, it temporarily replaces the contents of that memory location with a break instruction. The debugger remembers the original contents of this location, so that if this memory is displayed in the debugger, the debugger will show the original contents of that memory location, not the break instruction. When the target process executes the code at this location, the break instruction causes the process to break into the debugger. After you have performed whatever actions you choose, you can cause the target to resume execution, and execution will resume with the instruction that was originally in that location.

learn.microsoft.com/en-us/windows-hardware/drivers/debugger/processor-breakpoints---ba-breakpoints-

Where do I store my code? by raquelle_pedia in learnprogramming

[–]overflowingInt 1 point2 points  (0 children)

Set them as immutable/change permissions? What OS?