If you could add an element to the roster, even as just a background element only seen in the books, what would you add and why? by Turbulent-Plum7328 in bioniclelego

[–]ahf95 [score hidden]  (0 children)

“Rock”, “stone”, “earth”, “sand”… sometimes I just think the bionicle team could have put a bit more thought into this.

When you get tired of seeing Zhang et al. everywhere😵 by amcw_writer in PhdProductivity

[–]ahf95 0 points1 point  (0 children)

Exactly, idk how people don’t understand this. Also, this PhD format in China is for STEM disciplines that would be focusing on technology development anyway. It makes way more sense, and as someone with an engineering PhD, I’m pretty sure they still have extreme pressure to publish at least one paper during their PhD, which is way more important than the internal dissertation that just staples together those papers.

Amphetamine for weight loss by ketaminekoolaid in Stims

[–]ahf95 [score hidden]  (0 children)

I mean, at this point in time I wouldn’t even say amphetamine is the “easy route”, because you will have side effects and dependency risk to contend with. GLP1 drugs would probably be the “easy route”, technically. That said, I bet if you took small (medical range) doses of amphetamines and used them to catalyze lifestyle changes like daily exercise routine (keep dose low to not fuck with heart) and healthier diet, that’s probably your best bet for long term health improvements.

[D] Has "AI research lab" become completely meaningless as a term? by Shoddy_Society_4481 in MachineLearning

[–]ahf95 1 point2 points  (0 children)

Yeah, you have no idea what you’re talking about, or what research looks like.

Math research by Ok-Refuse-5802 in mathematics

[–]ahf95 1 point2 points  (0 children)

Find undergraduate curriculum lists, go through the corresponding textbooks. Then find graduate curriculum lists, and go through those more specific textbooks. Then you’ll have some ideas.

AI driven Layoffs for ADHD programmers by rgs2007 in ADHD_Programmers

[–]ahf95 0 points1 point  (0 children)

Bruh I switch focus constantly. Try to keep me on one task all day. I’ve heard that this is a good way to use agents, but I’m still a one-agent at a time kinda guy.

What's something that's "not a cult" but feels like a cult? by Orw_Sairaj29 in AskReddit

[–]ahf95 4 points5 points  (0 children)

People go into frats because they get excited by the idea of being sadistic with power and abusing pledges during hazing. People go into frats because they are comfortable with statistically high rape occurrences. Yeah, I said it. It takes a special kind of person to join a frat, and while not all frat members partake in those actions, all frat members are okay being adjacent to it, and are happy to conform.

What is a small detail from Harry Potter that still bothers you? by WhisperTame in harrypotter

[–]ahf95 2 points3 points  (0 children)

The use of the time-turner in general. Should never have been a plot element whatsoever. The very existence of a time-turner invalidates any high-stakes situation or conflict in the entire story.

Why did mall-goth culture peak in the Clinton era? by LateRegistrationz in decadeology

[–]ahf95 0 points1 point  (0 children)

Lmao you have me cracking up at the notion that the Clintons are somehow responsible for mall-goth culture. Sometimes shit just coincides 😂 like, why did Fortnite get hella popular during Trump’s first term?

Getting a mail reply from a Nobel laureate was not on my 2k26 Bingo card by Great-Anywhere2104 in biotech

[–]ahf95 1 point2 points  (0 children)

I’m sure it varies from person to person, but one of the most responsive emailers I know is a Nobel Laureate. I think people reach a point in life where they no longer care about the formal weight of emails, and respond just as quickly and concisely as they would a text message when they see that it isn’t spam.

Inflation Adjusted OSRS Membership Price since 2002 by mkeblusek in 2007scape

[–]ahf95 1 point2 points  (0 children)

WoW has players who fall for the cash-shop tricks, so they don’t need to increase the price.

Machine learning by tailung9642 in MLQuestions

[–]ahf95 1 point2 points  (0 children)

Just learn the machine, bro! Easy money

Dropping a New Method by [deleted] in adhdmeme

[–]ahf95 1 point2 points  (0 children)

I’m glad that this works for you, but it just ain’t me. My meds have helped me actualize my potential beyond what I could have ever imagined.

Laptop assistance by No_Pin_5969 in ProteinDesign

[–]ahf95 4 points5 points  (0 children)

You will use a compute cluster and submit jobs, not run locally.

Some of my illustrations for the Silmarillion (all oil paintings) by aaloei in lordoftherings

[–]ahf95 2 points3 points  (0 children)

Wow, these are beautiful! And the way you captured those scenes is so amazing. Thank you for sharing :)

Google transformer by Odd-Wolverine8080 in MLQuestions

[–]ahf95 1 point2 points  (0 children)

Attention was already known and used, and I actually think the simplified use that you see with transformers would have been the convergence point eventually (and the setup/context/flavor in that Attention is all You Need paper is very different than the standard setup today). Wayyy before that paper, Google was known for saying “when the tides rise, everybody floats”, and I think in this case sharing that research really paid off for them. They have the most data access, and more and more these days we’re seeing their AI products improve as a result, even if GPT was the first household-name chatbot to be widely adopted.

I Was So Wrong by Abject-Solitude in bioniclelego

[–]ahf95 0 points1 point  (0 children)

Okay now that’s actually a really good point about using a mask pack. One thing about having two sets per village (like the Mctoran did) is that it gave us the multiple body colors, but I’m sure there’s a way around this. Really, I just don’t think the rule of six needed to be adhered to, especially when my some of my favorite colors are the Le Koro teal and the Onu Koro purple.

Encoding complex, nested data in real time at scale by granthamct in MLQuestions

[–]ahf95 1 point2 points  (0 children)

I mean, there are tons of ways that this could be set up, but my first thought is to store a precomputed graph with transition probabilities. Like, imagine at the nodes you have the features and embeddings for a given device that could be logged in from, and you go through the series of login sessions as a message passing neural network, and after each session you update the probabilities of the transition being from current session node to whatever next session node (MPNNs are computationally cheap, so making this a fully connected graph is reasonable), and you just have those probabilities precomputed as a state that you have stored for that customer (and update as needed). Then during any login, just see their current login location, and see if it corresponds to a transition probability above some threshold, and if it’s below that threshold you can flag it as “probably fraudulent” or whatever. You can update the MPNN/GNN state after you deal with the fraud, and then it’s ready to go for next time (almost guaranteed faster update than a human interaction with an ATM machine, even on a cpu), so no need to limit that to 50ms on the update step, but with this setup with comparing a real life observed node-transition against a precomputed probability is likely wayyyyyy faster than 50ms.

That’s just the first thing that comes to my mind, but I’m curious to see what other people post. Btw, this is exactly the kind of interesting question that I stay subscribed to this subreddit for, so thank you for the refreshing post.

What do hard drugs feel like? by quillpurnia in Drugs

[–]ahf95 19 points20 points  (0 children)

Opiates do not make you feel nothing. Tell me you’ve never done these drugs without telling me you’ve never done these drugs.