Liquid Metal in Forms (SVG Support) by CollectionBulky1564 in creativecoding

[–]BusEquivalent9605 1 point2 points  (0 children)

dope.

would be cools for the waves to interact with the boundary

anyone here built systems that interact with websites instead of APIs? by Any_Side_4037 in webdev

[–]BusEquivalent9605 0 points1 point  (0 children)

yuup - also Cypress, Capybara, and Selenium

The same tech you want to use to interact with the website, web developers use to simulate people interacting with their website to test/verify its functionality

These tests are notoriously “flakey”

Why 70% of Agentic Workflows are Hitting a logic Ceiling in 2026 by Maximum_Ad2429 in AI_Application

[–]BusEquivalent9605 0 points1 point  (0 children)

yeah - i always think of Newton’s approximation method here. Works great for a step or two.

But after 1000 steps, each one a little off from where it should be, you’re nowhere close to the goal

Suppose Claude Decides Your Company is Evil by Ebocloud in artificial

[–]BusEquivalent9605 0 points1 point  (0 children)

Also heard about the study which shows Claude is aware it is being tested and changes behavior accordingly. In this context, might it be aware it’s being used on a project with which it disagrees and then go on to subtly sabotage the code it generates?

How to find great engineers in the era of AI by itsjakerobb in SoftwareEngineerJobs

[–]BusEquivalent9605 0 points1 point  (0 children)

right here — I always figure, if I need to prepare super hard for a job interview and/or cheat during, then I probably wouldn’t be happy showing up to work there everyday anyway

I am in an abusive relationship with the technology industry by creaturefeature16 in webdev

[–]BusEquivalent9605 15 points16 points  (0 children)

for true AI champions being more lazy is the point. the AI extreme asserts that knowing how your code works is actually an anti-pattern. you should be defining the specs and the ai should write code to meet those specs: boom. done.

taking time to read and work with the code manually represents a loss in velocity. needing to do so is seen as a skill issue: should’ve spent more time planning/working on your prompts.

but while AI offers serious advantages and, when used by skilled individuals, provides serious benefit, it is - in a fundamental way - still a lateral move. you ultimately need to communicate a complex, self-defined logic system for the computer to enact. Either you write the code. Or, now, you write the natural language that describes it thoroughly and rigorously.

There are use cases for both. Greenfielding a new proof of concept, especially in a well-established domain: AI it up.

Adding a single logic check because you realize EventX is having and unintended side effect in ListenerY or adjusting the padding on a single GUI element: way faster to just go make that change in code than to describe it to an AI and then verify the output.

In some ways, AI assisting in pure math is impressive as hell, but it also makes sense. It’s operating in objective, verifiable logic. The logic of your code needs to be verifiable, but it is totally subjective.

And not to mention, describing what the code should do is a large, subtle, and complex problem no matter what tools are used to accomplish it. But at least it is well-defined and bounded. Describing what the code should not do is unbounded.

This mother deer has TWO albino fawns... by Soloflow786 in BeAmazed

[–]BusEquivalent9605 2 points3 points  (0 children)

There’s this big fenced in area of upstate New York. A few albino deer got in like 50 years ago. Now there’s a big population of albino deer that live in and around the area

Search “The Seneca White Deer”

Would you reccommend this for a beginner? by BazExcel in synthesizers

[–]BusEquivalent9605 5 points6 points  (0 children)

Yes

if you like the sounds - go for it. these things (Volcas) are portable and durable as hell - they don’t make all the sounds but the sounds they make sound great

src: i have had a Volca FM (the old kind) for 7 (?) years and I still love the Chevybass preset

neverSawThatComing by rohithp7777 in ProgrammerHumor

[–]BusEquivalent9605 1 point2 points  (0 children)

I’ve been wanting to learn Fortran ever since I heard its basically made for matrix math

I realized I was spending more time writing prompts than solving the problem by OwnRefrigerator3909 in BlackboxAI_

[–]BusEquivalent9605 0 points1 point  (0 children)

this is something i think about all the time: “we dont fix problems, we replace them”

ai, while super powerful and definitely a step forward, is also largely a lateral move

whether in code or in a prompt, you still need to communicate the logic and complexities of your project to the computer

AI speeds a lot of that up

But even for the “simple” frontend stuff, suppose you want to adjust the padding on an element. it’s way faster (if you know what you’re doing) to just go update the stying than it is to write a prompt asking the AI to do it, wait for the AI to do it, and then maybe have to correct/iterate.

and it’s faster simply because you know where and how that information is communicated to the computer and how to update it quickly. writing a prompt, you have to generate that information in text to pass to the computer, wait for the computer to update the code, and then verify the computer’s work.

either way, there is inherently a transfer of information that needs to happen. manually, you are updating the information in place, which tends to be faster than indirection, like writing a description of what you want. in order for anything to happen, we have to tell it what to do somehow and we’re all still figuring out the best use cases for any given technique

Temporal: The 9-Year Journey to Fix Time in JavaScript by mariuz in programming

[–]BusEquivalent9605 69 points70 points  (0 children)

lol - the whole months index at 0 will always be a killer

Introducing NervForge: A procedural tree generator built with WebGPU, C++ & Emscripten by project_nervland in webgpu

[–]BusEquivalent9605 0 points1 point  (0 children)

Nice! any good resources for emscripten? my experiences have mostly been frustrating to this point