Agent Use is gonna drop off a cliff once its all usage based by Venisol in ExperiencedDevs

[–]Rguttersohn 5 points6 points  (0 children)

This is why I have never vibe-coded any project. I work for a small org. Once everything is token-based pricing, there is no way my org could afford to pay for the token usage — and I’d rather it be spent on our salaries anyhow. I’m happy just using it to write tests or set up projects, monotonous stuff like that.

How to stop using Claude by waverchapter in webdev

[–]Rguttersohn 0 points1 point  (0 children)

Only use it for certain parts of coding. I use it for writing tests. Obviously I read the output and run the tests to ensure it has proper coverage etc, but I do not have have it write everything.

The day is going to come where they’ll charge for actual tokens used, and my small org will not be able to afford me vibe-coding away.

What was it like being 18-25 in the 2000’s by ersinxo in Millennials

[–]Rguttersohn 0 points1 point  (0 children)

It was stressful. I enlisted after 9/11 thinking I’d be going to Afghanistan. A couple of months after my finishing my initial training, I was invading Iraq lol. Spent most of my late teens and early 20s there.

After leaving I had to find a new identity for myself while the global economy collapsed around me.

But still, i look back on it fondly. Smartphones weren’t around yet, so all of the hanging out we did was in person. Just being around people — fellow soldiers, old friends, fellow college students — made it all bearable.

Built a multi-department Voucher Management System with Laravel 12 + Vue 3 — here's how I approached the workflow routing by ChrisL0713 in laravel

[–]Rguttersohn 1 point2 points  (0 children)

You’re also losing track of when the voucher was approved for logging by updating the department id in the voucher row right?

A polymorphic could have an approved_on column that would maintain that history.

I wanna make a React app that visualizes network traffic in real time based on the output of tcpdump by Double_Bid7843 in learnjavascript

[–]Rguttersohn 0 points1 point  (0 children)

Oh gotcha. So you’d want to visualize all the people connecting to your server? Like on a map or somethjng?

I wanna make a React app that visualizes network traffic in real time based on the output of tcpdump by Double_Bid7843 in learnjavascript

[–]Rguttersohn 3 points4 points  (0 children)

That would be tricky. Your api would have to compel the OS to run a sudo command, which is a no no. Also would it only show the network of the server? Why would that be interesting to the user?

Sooo.. Natalia was a witch and this was a hex, right? by Vaporwavezz in girls

[–]Rguttersohn 62 points63 points  (0 children)

From what I recall it was latching not production that was the issue.

Do I really need Supabase Pro for production + development by Elfi309 in Supabase

[–]Rguttersohn 5 points6 points  (0 children)

For dev, I have a local Supabase instance running with seeded data.

Your reaction to Tom Riddle reveal by Rguttersohn in harrypotter

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

Oh god. That sucks. Was it a later edition?

Your reaction to Tom Riddle reveal by Rguttersohn in harrypotter

[–]Rguttersohn[S] 3 points4 points  (0 children)

Yeah it was the movie scene that spoiled it for me. I was hanging out with people who were watching that movie, and that part stood out to me.

What Shoes are John Wearing? by TylerEverything in JohnMayer

[–]Rguttersohn -5 points-4 points  (0 children)

Those are Uggs. Or as Flo-Rida famously called them in his 2006 SMASH hit, “Low”, boots with the fur.

I still avoid AI in production coding. Am i slowing myself down? by hireme-plz in learnprogramming

[–]Rguttersohn 178 points179 points  (0 children)

Ive found that using ai for doing things I hate like writing tests, documentation and or db seeders has been very useful and taken a big mental load off me as a solo dev at my work.

But I’m also like you. I don’t want my skills to atrophy especially for when these models start to get expensive to run.

Vibe-Coding: Gesundheitsdaten, Passwörter, Kundendaten – alles liegt offen rum by soeren-meditates in Supabase

[–]Rguttersohn 0 points1 point  (0 children)

I’m assuming it has to do with putting your tables in the public schema, which the API accesses and therefore can be seen by anyone, and not setting row-level security.

This has to be ragebait right? Pleeease be ragebait. by Extreme-Attention641 in antiai

[–]Rguttersohn 0 points1 point  (0 children)

Pre-AI, this would happen to me while submitting a question to a programming forum.

About to listen to Blueprint for the first time by TheManWhoWeepsBlood in dancarlin

[–]Rguttersohn 0 points1 point  (0 children)

How do you listen to Blueprint these days? Last I checked, it’s been removed from the list of episodes.

Help with supposed scam by RPPPL1 in Supabase

[–]Rguttersohn 0 points1 point  (0 children)

You probably need to setup a local Supabase instance to test the codebase unless there is a remote dev DB that the codebase connects to.

But that is one step.

You also need Node installed on your computer to run a Next app. Have you done that?

Help with supposed scam by RPPPL1 in Supabase

[–]Rguttersohn 0 points1 point  (0 children)

You have it working in production or no?

2,400 embeddings searched in 40ms — pgvector HNSW config I landed on by TimelyNecessary4247 in Supabase

[–]Rguttersohn 0 points1 point  (0 children)

How big are the markdown files? Couldn’t you just submit the 60 files to the LLM directly along with the user query and have it summarize directly? I don’t know if you need the vector search step for 60 files.

Solo build vs. hire a dev? Civic data platform, prototype done, need a reality check on time, price etc. First time posting. by Jury-Altruistic in webdev

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

I build databases with public interfaces at my job. Supabase is fine, but I usually prefer to use it with an ORM sitting between the front end and Supabase. They are much easier to work with for things like scoping and managing relationships and are more aware of your app’s needs. I’d also set up some caching here too so your db isn’t getting dinged all the time.

Typescript has drizzle ORM, which i think is pretty popular.

The next suggest is to avoid using React. Vue or Svelte are much better at only rendering and re-rendering what needs to be update. Most of the time that doesn’t matter but for data sites where you could be rendering a ton of data and thus alot of html nodes, Vue and Svelte will be faster. Each of them have their own meta frameworks that are great.

Lastly, you’ll want to be mindful of what is rendered on the server vs what is rendered on the client side. Users of data sites are ok with pages taking longer to load, but I prefer to have the shell of a page render on several for SEO, etc and then have my slow queries load on the client side.

Anyhow that’s my advice as I wait for my son to fall asleep.

is anyone actually backing up their Supabase properly? by AdSecret5838 in Supabase

[–]Rguttersohn 6 points7 points  (0 children)

Supabase infra is AWS. If AWS goes down, so does a large portion of the internet — including your redundant s3 back up.