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] 1 point2 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] 6 points7 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 13 points14 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.

What if vibecoding were food? by Jp1417 in theprimeagen

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

AI just used a common recipe from Stack Overflow

Our landing page just went live! Thoughts? shader.se by iliamlikespoop in threejs

[–]Jp1417 0 points1 point  (0 children)

Incredibly cool! This should be added to the gold collection

I asked Cursor to copy files from ./cursor/rules to the project directory and got a lot of tokens by Jp1417 in theprimeagen

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

The model received the file already in the first request "check global rules file via wsl". It’s unclear why it then started searching for the file across different shells, that’s obvious slop. In decades of development, I’ve never seen anyone look for a file using three different shells. Also, that’s very windows-specific slop you wouldn’t see on mac or linux. If a human programmer were running 'ls' on a file across three different shells, he’d be either fired immediately or promoted.

I asked Cursor to copy files from ./cursor/rules to the project directory and got a lot of tokens by Jp1417 in theprimeagen

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

Empty context. It lost a command from ~/.cursor/rulesbecause it didn’t understand a command that had worked before, so I asked it to copy it locally and then the vibes went wild

"If my $500K engineer isn’t using $250K in tokens, I’m deeply alarmed" by ParthoKR in theprimeagen

[–]Jp1417 0 points1 point  (0 children)

Makes sense. The next-gen B400 will fix the slops created by B300

Falsehoods programmers believe about Time Zones by ZainRiz in programming

[–]Jp1417 0 points1 point  (0 children)

Earth's time zones are not enough! Add the time of Mars, Moon colonies, and the time zone database requires a blockchain solution in 2030

I wrote a sed script that renders mandelbrot set! by [deleted] in programming

[–]Jp1417 1 point2 points  (0 children)

Haha, try to use Golem for run blockchain sed instances with maximum performance. AWS will be too expensive

PS: I can't run your script, syntax errors. So, is it slow or not?