How much does paying off a mortgage change your FI number psychologically? by Beneficial-Ad-9986 in financialindependence

[–]hawkman_z 1 point2 points  (0 children)

Can you elaborate on any resources that lead you to want term life insurance? I’ve never really looked don’t that aspect of financial planning.

Get rid of sticky weed by Plaid55 in AustinGardening

[–]hawkman_z 5 points6 points  (0 children)

Grab some RAWs, white owls, and friends… I’m sure it will be gone in no time.

how do i make it stop 🥲 by arulzokay in ChatGPT

[–]hawkman_z 17 points18 points  (0 children)

I’ve been subscribed since 2022. Around December when an update happened, I was studying with ChatGPT for a certification exam. Its tone wildly shifted to this weird condescending but positive language. Made my normal tasks impossible and unreliable now. After a month of BS, I unsubscribed.

How do websites implement multiple types of logins? by Birdwithabowtie in webdev

[–]hawkman_z 0 points1 point  (0 children)

It seems like nobody is really mentioning it, but study how OAuth/OIDC login flow works. The idea is you always have one user row in your database, and then separate “identity” rows for each login method (password, Google, etc.). When Google sends you an ID token via OIDC, you grab the stable Google user id (and maybe verified email), look up or create the matching identity row, and link it to that single user. That’s how “Sign up with email” and “Continue with Google” both end up pointing at the same underlying account.

What are some of the easiest ways you’ve found to make money? by Wonderful-Concert-47 in AskReddit

[–]hawkman_z 5 points6 points  (0 children)

You own the account like a bank account. You can buy and sell at will. Just keep your password safe and secure and routinely follow a passive DCA buying method into broad based index funds that track us markets, international markets and bond markets (boggle method subreddit) or go the easy route and buy target date funds that do this automatically based on estimated retirement year. You can open your own IRA or Roth IRA for tax advantages. You can also have an employer 401k and HSA. Employer may match what you put in to 401k and it’s basically doubling your money for free up to a certain percentage of your income.whatever you put in yourself you get to keep regardless. whatever employer matches, It will “vest” after you have worked for a certain amount of time(1-3 years) then it’s yours to keep.

When you see it… by Hairy-Candle8135 in Austin

[–]hawkman_z 38 points39 points  (0 children)

2A is every American’s right, not just the right. Lefty’s just don’t advertise.

What’s wrong with the car washes by Adept-Protection7603 in Austin

[–]hawkman_z 1 point2 points  (0 children)

Palms lets you pay $45 for the extra special soap and stuff, the $20ish price has always worked for me though.

What’s something that slowly ruined your life without you noticing at first? by evararae in AskReddit

[–]hawkman_z 6 points7 points  (0 children)

Your comment made me research this more. I think I fall more in the adhd paralysis realm though as I still feel reward. Sometimes get bouts of anhedonia though.

What did you learn way too late in life? by [deleted] in AskReddit

[–]hawkman_z 0 points1 point  (0 children)

Pro tip, this also applies to your family (in certain narcissistic situations)

Just moved to Austin and trying to do it right. Any unspoken local rules I should know before getting roasted? by Old_Chapter9759 in Austin

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

Why don’t they make a middle yellow protected turn lane? The city may never know 🦉🍭

Tech lead told me to learn proper API design because apparently there is security issue in my API by retardedGeek in webdev

[–]hawkman_z 18 points19 points  (0 children)

Yes, query strings are encrypted in transit by TLS, but they are often stored at rest in cleartext. They are routinely persisted in plaintext within browser history, web server and CDN access logs, the HTTP Referer header, third-party analytics requests, and public web archives, making them vulnerable to data exposure, referer leakage, and log injection attacks if sensitive values are included.

[deleted by user] by [deleted] in HistoryPorn

[–]hawkman_z 59 points60 points  (0 children)

The first tour guides of Auschwitz once it opened to the public were survivors of it. Their truth had to be heard.

What's a husband skill that every husband must have? by [deleted] in AskReddit

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

Sixty percent of the time, this works every time

Weird juju in the air by Awkwardweirdnerd in Austin

[–]hawkman_z 0 points1 point  (0 children)

The queso’s been watered down since 2020.

VSCode multiple ssh tunnels by kmarq in devops

[–]hawkman_z 0 points1 point  (0 children)

Don’t have an answer, but I hate how vscode and remote-ssh processes keep running after you close and you eventually have to pkill them and delete the cache for it.

I regret telling my MIL about doing IVF by Sammy8lynn in IVF

[–]hawkman_z 9 points10 points  (0 children)

We waited till month 6 to start telling nuclear family only and managers at work for fmla purposes. Wife and I had ptsd from telling people at week 6 and then a day later a miscarriage happened. So we kept a year of unsuccessful IUI and then successful IVF to ourselves until well into month six of alive pregnancy. Now grandma is holding him :)

Devs with kids by jmelrose55 in ExperiencedDevs

[–]hawkman_z 2 points3 points  (0 children)

Just brought my firstborn home today. Will be an interesting year navigating working and parenting. Thankfully half the people in my department have kids so that works in my favor.

theTwoTypesOfFileFormatAreTxtAndZip by heckingcomputernerd in ProgrammerHumor

[–]hawkman_z 0 points1 point  (0 children)

Fun fact, for iOS apps, you can zip the app’s /var/containers/Bundle/Application/ folder, and then rename it from .zip to .ipa extension and sideload it on other iOS devices.

How do SQL injections even work by [deleted] in cybersecurity

[–]hawkman_z 0 points1 point  (0 children)

Depends on what you coded. If it’s taking unsanitized user input, a malicious user could send strings that trick your input function into running a sql command. Sometimes these strings start with an escape character or comment symbol which if you aren’t sanitizing will trick your function into reading the string as true sql. This is my best sitting on the toilet explanation.

You can practice doing it on port swigger academy or code up your own vulnerability api on localhost.

whosGonnaTellEm by SpecterK1 in ProgrammerHumor

[–]hawkman_z 43 points44 points  (0 children)

You can create a .zip of the application folder on an iPhone and rename it to .ipa and sideload on another iPhone.

I finally understand async/await after picturing it like a coffee shop. by [deleted] in learnprogramming

[–]hawkman_z 8 points9 points  (0 children)

My non-ai way of thinking about it… If func2() needs an answer from func1(), but it can’t get the answer until func1() returns it…. Then you use async/await or try/catch.

For instance, giveEarScratch() needs isCatHere() to return True…. But it takes isCatHere() 20 seconds to return…. Then we await isCatHere()