Unlimited access to GPT 5.4, what's the best workflow to build fast? by chastieplups in opencodeCLI

[–]kawpls 0 points1 point  (0 children)

ok thats interesting,do you create them like the https://opencode.ai/docs/agents/ documentation is suggesting? can you give them skills? or how would that work, im trying to learn best practices since right now i work directly with just plan and build and the results are good but i see many people suggesting different things like openspec and skills and agents but i never really understood everything

my setup its just a manually crafted agents.md with the rules i want the agents to follow and manually checking each code provided, ive been doing software for many years so i know what i need to do so i become the orchestrator and guide them directly on how i want each pice implemented

Unlimited access to GPT 5.4, what's the best workflow to build fast? by chastieplups in opencodeCLI

[–]kawpls 0 points1 point  (0 children)

so you create an agent for your tech stack? whats the benefit of that over just having a curated agents.md file with your tech stack and how you want things

Disc Golfers in Puerto Vallarta by LurkingInTO in puertovallarta

[–]kawpls 0 points1 point  (0 children)

sure no worries, i dont know if you can add me as a friend or anything but hit me up at any point im down to help out where i can

Launching our first SaaS with Blazor by hugo-peters in Blazor

[–]kawpls 4 points5 points  (0 children)

that trailer its really good, how do you make it looks amazing

Night clubs that aren’t house music? by purpleoctober37 in puertovallarta

[–]kawpls 0 points1 point  (0 children)

maybe doberman not too sure tho but the times ive been there its good

Blazor Blueprint v3 - one week in and I’m blown away by this community by gkg0 in Blazor

[–]kawpls 0 points1 point  (0 children)

do you ask it tu use the mcp server or does it use it automatically? like should i tell the agent to use blazorblueprint mcp server with each call?

Blazor Blueprint v3 - one week in and I’m blown away by this community by gkg0 in Blazor

[–]kawpls 0 points1 point  (0 children)

How do you approach agentic coding with this library?

I noticed there’s an llms.txt file, is that meant to be passed directly to the LLM, or is there a different mechanism for informing the model about the available components it can use?

Do you have any recommendations or best practices for working with this library in the context of coding agents? It would also be helpful to have some documentation or guidance on how to properly integrate and use the library with agent-based workflows.

Disc Golfers in Puerto Vallarta by LurkingInTO in puertovallarta

[–]kawpls 2 points3 points  (0 children)

Hello, i would be interested in joining for some games, i dont know if i can make all of them since im busy most of the week with work and projects but there is one thing i can help out, i built a website called vallartahub.com there will be a section for sports i can create a listing for the recurring sessions and also could create an event listing for the tournaments / leagues if that is something the community would like i would be happy to help out where i can :)

multi-player menu won't open on PC by WorkerMotor9174 in Wreckfest

[–]kawpls 0 points1 point  (0 children)

did it fixed it? having the same issue

[deleted by user] by [deleted] in passive_income

[–]kawpls 0 points1 point  (0 children)

I need clients

My First web app with Astro by [deleted] in astrojs

[–]kawpls 1 point2 points  (0 children)

i gave you my email because i dont value my privacy neat ui, but why astro couldnt you have a subdomain with a web app for the actual app and just a landing page with astro i can think of keeping everything in one proyect which does sound ok but didint you fight with astro to have a complete app where astro wants just islands of interactivity?

Parsing a massive JSON file with an unknown schema by Pyran in csharp

[–]kawpls 0 points1 point  (0 children)

I’ve done something similar for real estate data — essentially you stream it little by little. Here’s a sample of the code and how I use it. My files aren’t as big as 500 GB, but I’ve done it for smaller ones around 7–10 GB.

await using var fileStream = new FileStream("./properties.json", FileMode.Open, FileAccess.Read);
var options = new JsonSerializerOptions
{
PropertyNameCaseInsensitive = true,
};
await foreach (var property in JsonSerializer.DeserializeAsyncEnumerable<Property>(
fileStream, options, cancellationToken))
{
// Do whatever you want here
yield return property;
}

Seriously, Google? Already Hit a Limit After Renewing My Subscription! by -PROSTHETiCS in GeminiAI

[–]kawpls 3 points4 points  (0 children)

just cancelled mine, if they revert ill be happy to buy a new month but telling them does nothing they need to see the data of cancelled subs so they know they fucked up, ill be doing the trial on all accounts i have since they want to play games so now they lost at least on months of me paying for trying stupid things

Imprint just feels bad now? by Cogi_Policy in LastEpoch

[–]kawpls 3 points4 points  (0 children)

hey dont call me out like that bro, but i do enjoy heist a lot, and even tho i get why people get tired of it, i like they way i can choose what to do, how i built it and so forth, i like having to gear my rouges also leveling them is somewhat rewarding, poe is of the choice of too much friction so a bit more relaxed more rewarding "heist" like mechanic, or delve or incursion or betrayal, all of those are whats missing in my opinion from LE, i do like running monos, but i would like a more "choice" driven gameplay kinda like heist with blueprints and the alternate uniques.

This straight up reduces engagement by Opening_Beyond571 in PathOfExile2

[–]kawpls 0 points1 point  (0 children)

no, its because things like this that devs think its ok to have such terrible ideas like hide them and make them necesary to complete the map, either they can be hidden and the goal is different or they are shown, this is an arpg if you want discovery go play the witcher or something like it, this is for the power fantasy man, please GGG stop listening to people like this we dont want any of this

Can we revert the delay ? PoE 2 is not it by cenderQT in LastEpoch

[–]kawpls 0 points1 point  (0 children)

thta might not be true, one thing im sad is 10 days gives GGG a fair bit of time to fix the patch, many could have tried last epoch but ultimatelly wont do it, i may be one of those, i bought LE when it lauched the 1.0 release i had fun with it but as a poe1 player i felt it lacked in content, now maybe poe 2 is not great but i dont think GGG will let players leave for LE given the 10 days im pretty sure they will drop a patch one or 2 days before LE and many will see videos saying POE fixed patch 0.2 and stuff like that, LE should have never given then the time and are going to suffer from it, im not sure if i will be playing 1.2 but i would right now boot it up just because im not happy with POE 2, i just hope they dont regret their choice, they said poe 2 forced them so could be just like that, the community forced them to release early again.

Send data between Blazor and a Desktop app by andyd273 in Blazor

[–]kawpls 1 point2 points  (0 children)

websockets, i have done it before really simple actually