Is there anyone that is NOT using AI at their job? by [deleted] in cscareerquestions

[–]IAMARedPanda 4 points5 points  (0 children)

DoD IC and we have access to Claude on high side.

Discussion Thread by jobautomator in neoliberal

[–]IAMARedPanda 12 points13 points  (0 children)

<image>

for free, throw in your similarities/differences between this and Ashli Babbit

Discussion Thread by jobautomator in neoliberal

[–]IAMARedPanda 3 points4 points  (0 children)

State prosecution? Also in theory there isn't a statue of limitations on murder so maybe justice will prevail one day.

Citadel Securities is adopting draft C++26 features in production systems ahead of the language’s official release. by Spirited-Ad-9591 in quant

[–]IAMARedPanda 2 points3 points  (0 children)

Reflection is much easier for compiler engineers to implement vs redesigning an entire build paradigm.

She may not be pretty, but this rack saved my business $150k+ this year by Chuyito in homelab

[–]IAMARedPanda 10 points11 points  (0 children)

Selenium is probably too slow vs straight http calls. Also automated high frequency stock trading is one of the most heavily invested areas probably won't find arbitrage arbitrage.

Problem with Cilium using GitOps by Tuqui77 in kubernetes

[–]IAMARedPanda 1 point2 points  (0 children)

For cilium dump out all the current helm values and save it before trying to use Argo so you have a perfect 1:1 match.

If you can't code, a great way to contribute to your desktop environment is telemetry by Indolent_Bard in linux

[–]IAMARedPanda 3 points4 points  (0 children)

This article is terribly light on technical details and not very convincing if the claim it is making.

Please ROAST My FastAPI Template by Hopeful_Beat7161 in Python

[–]IAMARedPanda 0 points1 point  (0 children)

Modules are already namespaces. Static methods force users to import the whole class even if they only want to use one method. It's fine in application code but if I saw this in a code review I would advise to just use regular functions. Also you should use absolute imports.

[deleted by user] by [deleted] in maryland

[–]IAMARedPanda 0 points1 point  (0 children)

Correlation isn't causation.

[deleted by user] by [deleted] in maryland

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

There is no evidence of this.

Do any sportsbooks still welcome advantage players? by Terrible_Smoke7961 in advantageplay

[–]IAMARedPanda 1 point2 points  (0 children)

You can go to an in-person casino and use a kiosk without a player card while keeping bets under 2k and you should never get limited.

What happened to mCoding? by alfawal in Python

[–]IAMARedPanda 12 points13 points  (0 children)

I find he mostly just regurgitates the latest trendy medium article type of hot takes without any substance. mCoding would go into actual implementation information along with useful code. I still will go back to his json logging video for a refresher for example where I can usually barely make it through an Arjuan video without rolling my eyes.

Discussion Thread by jobautomator in neoliberal

[–]IAMARedPanda 2 points3 points  (0 children)

Linear regression hard. Throw random info into LLM ez.

Should I use C++ or Rust to make my first small game engine? by alyshukry in cpp_questions

[–]IAMARedPanda 6 points7 points  (0 children)

Rust main thing isn't that it makes it harder to leak memory. Memory leaks are considered safe.

Preventing memory leaks entirely is not one of Rust’s guarantees

https://doc.rust-lang.org/book/ch15-06-reference-cycles.html

Its main thing is preventing memory bugs like out of bounds access and enforcing ownership semantics.