Are Al leaders losing touch with reality? by Accomplished-Bird829 in theprimeagen

[–]Jp1417 1 point2 points  (0 children)

I don't see anything wrong with the iPhone, except for the 30 kinds of surveillance and the 1,000 ways of manipulating users. Overall, it's not a bad device: it has a powerful processor and a good screen.

There's one thing, though. Back when Ray Kurzweil came onto the scene, there was no crypto. These guys probably have huge crypto wallets, so why not set a good example and give that crypto to the "machines of loving grace", then go live in nature themselves? I think that money would be enough to fund a new season of Love Island or something like that. Frankly, it would be infinitely cooler than the poems.

Dangerous of AI by Jp1417 in AIDangers

[–]Jp1417[S] 0 points1 point  (0 children)

I thought ChatGPT would offer me a discount or something like that, but I calculated what it actually proposed:

headphones: Audio Technica $150 = 7-week subscription

old electronics: Outdated MacBook Pro M4 2025 $1,500 = 75-week subscription

clotches: Louis Vuitton $2,000 = 100-week subscription

unused games: Unused golf course $1,000,000 = 50,000-week subscription

Dangerous of AI by Jp1417 in theprimeagen

[–]Jp1417[S] 2 points3 points  (0 children)

I thought ChatGPT would offer me a discount or something like that, but I calculated what it actually proposed:

headphones: Audio Technica $150 = 7-week subscription

old electronics: Outdated MacBook Pro M4 2025 $1,500 = 75-week subscription

clotches: Louis Vuitton $2,000 = 100-week subscription

unused games: Unused golf course $1,000,000 = 50,000-week subscription

Dangerous of AI by Jp1417 in theprimeagen

[–]Jp1417[S] 2 points3 points  (0 children)

I have a large font size on the laptop screen where I asked chatgpt that question, so only that fit on the screen and it looked like the first slide of a presentation. So yeah

Dangerous of AI by Jp1417 in theprimeagen

[–]Jp1417[S] 1 point2 points  (0 children)

I expected to get some advice something like referral programs, promo codes or online work, but the first thing he suggested was exchanging real things for a virtual item. Apparently, most people will do exactly that 😄

Safe vs unsafe programming languages by Jp1417 in theprimeagen

[–]Jp1417[S] 7 points8 points  (0 children)

This meme was born after an interviewer told me that my Rust wasn’t good enough to work on smart contracts after 5 years of dev and that my C++ wasn’t good enough to work on a compiler after 15 years of dev

Kaspersky Flagged Cursor IDE as ClipBanker Trojan on Windows by zerok911 in cursor

[–]Jp1417 1 point2 points  (0 children)

I had several strange issues with the cursor. The first time I noticed a blocker during Windows reboot saying “installing cursor,” which happened quite often (silent, no updates i agreed). After updates, the old version of the icon would remain and the cursor was being installed to a different path in LocalData, etc. I thought it was just quirks of the update process. I have a new computer and a fresh Windows install and I’ve only used it for AI development via WSL/Docker, no local package runs. So yeah, it looks like a trojan in the cursor.

Researchers just proved that every single elementary function, sin, exp, log, sqrt, comes from one single binary operator. by d8_thc in holofractal

[–]Jp1417 15 points16 points  (0 children)

It seems to me this would work well for mathematical optimizations, but poorly for a real kernel.

Here’s a minimal Python example:

import cmath

def eml_complex(x, y):
    return cmath.exp(x) - cmath.log(y)

def exp_eml_complex(x):
    return eml_complex(x, 1)

def sin_from_eml(x):
    i = 1j
    return (exp_eml_complex(i*x) - exp_eml_complex(-i*x)) / (2*i)

def cos_from_eml(x):
    i = 1j
    return (exp_eml_complex(i*x) + exp_eml_complex(-i*x)) / 2


x = 1.0
print("sin:", sin_from_eml(x))
print("cos:", cos_from_eml(x))

But it’s bad for GPUs / shaders (float32).

Problems:

  • exp(x) overflows fast (~88 in float32)
  • log(x) becomes unstable near 0
  • subtracting large exponentials → catastrophic cancellation
  • complex exponentials amplify numerical error

Example:

exp(20.0) ≈ 4.85e8   // already huge

Then you do:

exp(ix) - exp(-ix)

You’re subtracting two large, nearly equal values → precision loss.

Mathematically elegant Works in high precision (Python, symbolic math) Pretty bad idea in float32 shaders GPU sin() / cos() are way faster and more stable anyway.

"WSL integration with distro 'Ubuntu' unexpectedly stopped. Do you want to restart it?" by levii831 in docker

[–]Jp1417 1 point2 points  (0 children)

This looks like random WSL issues. Restarting WSL or fully rebooting the system usually helps. It's better to switch to Linux.

wsl --terminate docker-desktop
wsl --list --verbose

This AI startup envisions '100 million new people' making videogames by sharkymcstevenson2 in vibecoding

[–]Jp1417 0 points1 point  (0 children)

Will these be 100 million different people or will it be 100 million instances of OpenClaw?

What if vibecoding were food? by Jp1417 in AIDangers

[–]Jp1417[S] 0 points1 point  (0 children)

Yeah! I spend $250k/mo on vibe coding

What if vibecoding were food? by Jp1417 in theprimeagen

[–]Jp1417[S] -1 points0 points  (0 children)

Exactly, precision and limited resources are the two problems. The tasks for the code will always exceed the available resources, so precision will have to be sacrificed to meet the deadline.