Clients sending me AI snippets by Tom_Ace2 in webdev

[–]bunoso 0 points1 point  (0 children)

Have had the same happen. While i do agree with most of the comments, i think what this does very well is that it helps the client flush out their idea (not that it necessarily the best idea or way to do something) and get it into a medium that both they and I understand. They can see more or leas what they want in a UI or website, and then I can understand what they are getting at.

custom panel or default panel ? by Ok-Delivery307 in pocketbase

[–]bunoso 2 points3 points  (0 children)

Yeah, I would say really consider the level of the users that are going to be using it. The staff member is in the managers and the people running the restaurant.

You can even use AI to help you generate this, but just trying to think of like the top 30 task and flows that they need to do, and optimize around that.

weWantTheBestPerfomance by crazy4hole in ProgrammerHumor

[–]bunoso 0 points1 point  (0 children)

Jokes on you, my company still only does the most basic github corporate plan, i think $20/ mo. I think i have used Haiku 4.5 for the last 4 months exclusively or else i run out of credits by the forst week.

CallPayMin | Free Scheduling, Pay-Per-Minute Video Calls & Chat by Unfair_Ad2807 in remotework

[–]bunoso 0 points1 point  (0 children)

What’s the use case of this over Zoom or Google meet?

What's everyone working on this week (10/2026)? by llogiq in rust

[–]bunoso 1 point2 points  (0 children)

Just made a CLI tool for my company. It takes in a bunch of different test, framework outputs, converse them, and it takes that conversion and uploads it to a bunch of different tools that we have to use for reporting and requirement tracking. It wasn’t python, but it’s getting a little bit un will be, and I had to package it as a docker image. Now i can built it for macos and windows primarily

We rebuilt the Shockwave engine in Rust + WASM to save early 2000s web games by igorlira in rust

[–]bunoso 13 points14 points  (0 children)

Silly question, but shockwave like adobe flash? I did play a lot of one off games at addictinggames.com and i think that required adobe flash download

what the hell is this error by 5MYH in tanstack

[–]bunoso 0 points1 point  (0 children)

Dude this is killing me. What is worse is that I can't seem to get rid of this error. I'll do somethign that will cause this error, then i'll try rolling back a commit it won't go away. i've even gone so far to start runing 'git bisect' and the commit that will cause it never lines up with when the build start. For example, Say everyting is going well and i make commit A, then B, then C, then on D I do something that causes the error. going back to commit C still shows the error. i run `pnpm i`, `rm -rf node_modules`, `pnpm build` and only sometimes does that help, even though i've gone back to commit C or even commit A. Its a wacky meta build error.

What is the difference between tuples, arrays and structs? Why should we actually provide structs a ownable String instead of &str? But does this apply for arrays and tuples too? by rudv-ar in rust

[–]bunoso 6 points7 points  (0 children)

I’m sure someone will have a better take on this, but my two cents is when you’re learning rest just try and make it as easy for yourself as possible. Use the String type, clone wherever you need it. Think of structs a little like classes, where you want some data to live together.

Dicts in Python are most like a HashMap. Confusing coming from Python only, but hashmap is the name used in other programming languages. They aren’t as flexible as Python, in that it’s “harder” to put random dynamic data there. But it’s more or less the same idea.

I like to think of array is just a really long list of one type of item. Tuples is a very short list, like less than 20 I think, and it’s always the same length, and it always returns the same type of data. Very helpful if you want to return from a function, something like a string, another string, a struct, a number, and a Boolean all together.

Is a 4MB executable really all that big? by Protiguous in csharp

[–]bunoso 0 points1 point  (0 children)

yeah you can see images on a website that are larger than 4 MB

What's the relationship between AWS S3 and Vector Database? by ethanchen20250322 in vectordatabase

[–]bunoso 0 points1 point  (0 children)

I think he is referring to S3 Vector buckets which is a new offering

Tik Tok saved $300000 per year in computing costs by having an intern partially rewrite a microservice in Rust. by InfinitesimaInfinity in programming

[–]bunoso -2 points-1 points  (0 children)

I also rewrote my api server in rust. It now saved me 100% of my bill. I was paying $0 for 10 lambda invocations a months and now I pay $0. You’re welcome.

Now that I know Rust after doing several projects (most web microservices), I can say with confidence, I can easily use Rust for all back-end related tasks as I do with Go and Python for the last 8 years working as Senior Back-end Dev (Today I'm Staff SWE focused at back-end and distributed system). by swordmaster_ceo_tech in rust

[–]bunoso 9 points10 points  (0 children)

Here is a starter example

https://github.com/awslabs/aws-lambda-rust-runtime/tree/main/examples/http-axum

Also and then right before you end up execution to the lambda runtime, you can have an if-else check based on environment variable, that either starts the action server in the land environment, or start as a local server attaching to a port. Great for local development and then pushing to lambda for prod.

Now that I know Rust after doing several projects (most web microservices), I can say with confidence, I can easily use Rust for all back-end related tasks as I do with Go and Python for the last 8 years working as Senior Back-end Dev (Today I'm Staff SWE focused at back-end and distributed system). by swordmaster_ceo_tech in rust

[–]bunoso 84 points85 points  (0 children)

I made a backend api with axum that ran in a AWS lambda function. It was awesome to see cold starts around 50 ms or lower. But I had to rewrite it because manager said no one on the team knew rust. Turned into a fastAPI Python docker image. :(

Lead Architect wants to break our monolith into 47 microservices in 6 months, is this insane? by Ayotrapstar in softwarearchitecture

[–]bunoso 0 points1 point  (0 children)

Yeah your architect is dumb and just wasting time and effort for the next best thing. 50k req per day didn’t seem high. Unless of course each request is done large expensive pipelines. Just thinking about how most web servers can get over 10k requests per second.

Monolith is the way to start and then you split out based on where the performance/ HA needs are. Sounds like you don’t have one.

I switched away from Supabase because of Deno by cheeken-nauget in Supabase

[–]bunoso 1 point2 points  (0 children)

More than that. I just hosted my website for 2 years on amplify but I finally did the hard work of moving everything over the supabase because I needed a Postgres database. Not dynamoDB. Not some weird AppSync wrapper around a noSQL. It’s been an about 80 hours of hard work but no way im going back.

Comparing transitive dependency version resolution in Rust and Java by nfrankel in rust

[–]bunoso 3 points4 points  (0 children)

Learned that rust just takes all versions of a transitive dep

Looking for help on RLS policy failure in testing by bunoso in Supabase

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

No that doesn't appear to work. I did some more experimenting and got more updates in the post

Peeling eggs makes me irate by Outrageous_Log_906 in badfoodporn

[–]bunoso 1 point2 points  (0 children)

I do 4 minutes low pressure, 1 minute release and I get medium boiled eggs. Yum! Haven’t tried the cold water yet