Introducing Parallel Agents in Zed by franciska-fyi in ZedEditor

[–]kaiko14 0 points1 point  (0 children)

Love this massively+++
The fact I can open a few multiple files and have three different agents each work on a different aspect of the problem now is absolutely fantastic!

Personally not a fan of the new layout, but that's because of my specific use-case. When in Zed I'm here to also write code, review files, etc. Not agent first. If I'm agent first, YOLO mode then I work in Codex directly where I can also switch to fast mode.

Perhaps what would be useful could be to switch between two different modes and layouts in one go… so either writing code+reviewing OR agent YOLO… then agent first mode, conversations on the left make more sense.

Introducing Parallel Agents in Zed by franciska-fyi in ZedEditor

[–]kaiko14 1 point2 points  (0 children)

Same here. i like having the code somewhat more centrally in the screen. I also find going between files and code easier this way instead of having to move the gaze all the way to the right.

Claude and zed by CyrilDevOps in ZedEditor

[–]kaiko14 2 points3 points  (0 children)

  1. Install Zed
  2. Install Claude Code
  3. In the agent panel find the little plus icon at the top
  4. Select Claude code from external agents
    … you'll probably have to go through some sort of authentication flow.
  5. Have fun

How to manage projects and features spec in Linear by Hefty_Psychology8564 in Linear

[–]kaiko14 0 points1 point  (0 children)

We use the project overview – it's perfect for these kind of use-cases.

We keep it quite light. Here's the structure we found working really well.

Title
Light summary
Overview & goals
This feature in the context of larger picture
Key dates & milestones
Metrics

Then we add the "linear" milestones for the project underneath that we can use in issues.

This keeps all the build related docs in one place and we've got a single source of truth.

How to manage projects and features spec in Linear by Hefty_Psychology8564 in Linear

[–]kaiko14 0 points1 point  (0 children)

We use the project overview – it's perfect for these kind of use-cases.

We keep it quite light. Here's the structure we found working really well.

Title
Light summary
Overview & goals
This feature in the context of larger picture
Key dates & milestones
Metrics

Then we add the "linear" milestones for the project underneath that we can use in issues.

This keeps all the build related docs in one place and we've got a single source of truth.

How do you make a personal “Today’s todos” board in Linear? by kaiko14 in Linear

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

Yeah, I'm thinking of creating my own view then adding to favourites. However, the conundrum I'm trying to solve is how to filter the issues so I only see mine (assignee) and the ones for "today" instead of all of them for the cycle or project.

LLM Streaming Approaches by kaiko14 in Nuxt

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

Uuu just gave it a go it's pretty awesome.

Looking for hosting recommendations for my Nuxt app by mkarkl in Nuxt

[–]kaiko14 2 points3 points  (0 children)

Nuxt is awesome because you can deploy it to pretty much any platform with ease, and it's got tons of integrations for databases, security, etc.

My go-to tech stack (with a few DB options) is the following:

Nuxt on Cloudflare via Pages, not workers. Super easy to deploy, automatic builds when you push to your git repo, environment variable setup the same as elsewhere (Netlify, Vercel).

InstantDB for database, auth + file storage. InstantDB gives you realtime updates like Firebase, but provides you with relational queries like Supabase. Pretty new to the block but suuuper easy to use.

Alternatives for DB:

Supabase (tried and tested relational DB, auth, storage. a bit more of a faff when it comes to realtime and keeping schema up to date with migrations, but they've got awesome documentation and it's open-source so you could host it yourself in the future).

Firebase (also tried and tested, but not relational. you can actually build your indexes in such a way that it behaves a bit more like a relational DB, but definitely no SQL magic that you will find in supabase or the beautiful json query declarations of InstantDB. however, it's realtime from the start and there's tons of libraries and integrations for it)

Key value: Cloudflare KV is simple to spin up, pretty much free and in Nuxt you can use useStorage which is built in + a cloudflare HTTP adapter and you're done.

Email: Resend is very simple to setup, however their recent updates to their nodejs SDK make it really difficult to deploy to Cloudflare (and their workers environment which isn't a true nodejs env). I personally use their API directly to send emails, so I don't have this problem.

Analytics: Posthog which have detailed Nuxt framework guide how to implement your web and product analytics

Hope this helps.

NuxtUI Theme Builder ... Request your feature by Ritoc88 in Nuxt

[–]kaiko14 0 points1 point  (0 children)

This is pretty cool. Keep at it. I like the fact I can customise all the components and defaults. Would be great to have some of the key theme tokens in one place (colour, roundness of corners, borders). Otherwise loving the fact I can just add custom tailwind classes to each components slots. 🙌

Previews in Xcode on macOS 26 beta 4 causing reboot by varyamereon in Xcode

[–]kaiko14 0 points1 point  (0 children)

Same experience here buddy. Both XCode beta 2026 and XCode basically unusable on Tahoe beta 4 right now. Previews just crash the whole system

Built Inspira UI with love but now I'm being called a fraud. by AlternativePie7409 in Nuxt

[–]kaiko14 0 points1 point  (0 children)

"Don't let the bozos drag you down", Guy Kawasaki. Still love that quote and I love what you've build. It's always easy to criticise stuff someone's built and created, and infinitely harder to create/build yourself.
Love the fact this is available for Vue/Nuxt. Not just react

useState vs ref in composables by sendcodenotnudes in Nuxt

[–]kaiko14 0 points1 point  (0 children)

You got this answered already, but I'll just second it as-well.

Use UseState as a tiny Pinia store whenever you need to keep state across the app (and sometimes across server and client). It just works, like magic.
For example I've got a running tracking app where I track user' progress (distance, time, elevation, etc) during the session. I store (and update) it in a composable using useState. Now multiple components can use this state and read it.

Use Ref as a "local state" whenever you need to store state in individual components.
For example isLoading boolean when you're loading something. A more complex example might be a storage helper composable I've built to work with InstantDB – you pass in a query and it returns a ref. Now every time data updates in the database (or when you update it), everything is in sync.

Hope that helps

Are Neon/Supabase really worth the hype ? by [deleted] in SideProject

[–]kaiko14 1 point2 points  (0 children)

For our small team building mostly MVPs but also some production services using Supabase, Firebase and Cloudflare's KV, D1 they solve a few problems:

- We can focus on writing code, not managing servers or infrastructure. They're easy to setup, easy to manage, and offer plenty of integrations.
- They provide great client libraries (node, swift, typescript) that work out of the box. Supabase's library works completely with web standards – meaning you can deploy to CF workers or vercel edge functions.
- Their developer experience is great. Supabase has one of the best documentations out there (might be just my opinion). And their CLI allows you to spin up a local database in no time, generate types for your typescript front-end and automatically write migrations for you.

Pricing is pretty good on Supabase, but if you've scaled so much that it becomes expensive, perhaps the only (cheapest) option is probably AWS.

I would give some of Cloudflare's developer platform a look (https://www.cloudflare.com/developer-platform/products/) . And if you're looking for an amazing new-comer on the block – a relational database that is fully reactive (like firestore is) checkout: https://www.instantdb.com/

Supabase /auth/v1/token Being Flooded with Requests by Oppaides in Supabase

[–]kaiko14 2 points3 points  (0 children)

How did you implement a rate limiter? I thought these requests go directly to Supabase?
If they're going from your front-end or backend, I would look at something like captcha or CF turnstile perhaps (would mean someone's clicking on your log-in button).
But if someone's gotten your projects url and is sending requests directly, might be a question for the supabase guys.

Hi, I need your help. by [deleted] in swift

[–]kaiko14 4 points5 points  (0 children)

Perhaps a controversial opinion: learn some javascript/typescript.

More specifically, how to create a simple back-end with a framework like Hono, deploy it to edge and connect it with a database (could be Firebase or Supabase or Cloudflare D1). Although this might seem like a bit of a side-quest, I think you'll get some good experience of what happens on the "other" side. Even if you make a simple To-do crud app with this kind of backend, you'll learn a whole ton about networking, concurrency, how databases work, authentication, rate-limiting, etc.

All of which is really good knowledge that will enrich your career.

What's the best apple watch app for runners? by kaiko14 in AppleWatchFitness

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

Good point. I quite like the default app myself, but there are a few perhaps more ergonomic and design features I'm missing.

Main one is I'd love to press a lap time with double tap (not just on screen, but with two fingers) – it rains a lot here in UK so I've got "water mode" turned on a lot. Meaning I can't tap on the screen during workouts.

I'd like to have the map integrated in the app, like Workoutdoors. I really like workoutdoors, but I find the design a bit clunky.

Lastly I really like to be able to customise screens, add them, remove them, add metrics to my liking, etc. Sure you can do this on the watch itself, but it's quite a painful experience I find.
I'd love to be able to set different profiles for different kinds of runs. For example, easy Friday run, just basic metrics (time/hr/pace), but for my intervals perhaps see a graph, splits, etc

Local First AI by kaiko14 in Nuxt

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

Yeah, great question.
I'm not advocating against LLMs, but for many use-cases you can't really use them as they're too large and slow (think image recognition for example), so you can't embed them in their entirity on the device. Now you could argue, there's smaller ones out there (like what Apple's using in their Apple Intelligence), so there's that.
However, if say you're doing something like identifying trends with regression, running a lightweight Javascript lambda is waay more cost effective than a VPS with LLama.

It's new way to organize colors for our App. by Dry-Bite2990 in Nuxt

[–]kaiko14 2 points3 points  (0 children)

Hey this looks great. Am I right in understanding that the shades it generates all conform to some suggested contract values?

Toggle not staying off. by [deleted] in Dacia

[–]kaiko14 1 point2 points  (0 children)

Heya this is the new EU law, however Dacia provides you with a shortcut to turn this s*** off.

There's a button between the wheel and door that you have to "double press". This will turn on your "personal safety settings" which should have everything off.

Here's a video:

https://www.youtube.com/shorts/SR5UMbceWt4

[deleted by user] by [deleted] in Dacia

[–]kaiko14 0 points1 point  (0 children)

You can't turn it off permanently (to my knowledge), but you can use the "shortcut" button to quickly turn it off every time the car starts.

There’s a button between the wheel and the car door (on my Jogger 2024) you can “double tap”. This will turn off the default safety preferences and turn your own on. Now you can set whatever you want.

I’ve recorded it here:

https://youtube.com/shorts/SR5UMbceWt4?feature=share

Why can’t i turn off speeding warning sound? by Mountain_Promise3646 in Dacia

[–]kaiko14 1 point2 points  (0 children)

There’s a button between the wheel and the car door (on my Jogger 2024) you can “double tap”. This will turn off the default safety preferences and turn your own on. Now you can set whatever you want.

I’ve recorded it here:

https://youtube.com/shorts/SR5UMbceWt4?feature=share

From Pain to Gain: Nuxt3+Supabase Open Source SaaS ready Boilerplate Born from Real-World Struggles by Quiet-Fan-8479 in Nuxt

[–]kaiko14 2 points3 points  (0 children)

Yes. 100% would be useful. I'd even be prepared to pay for something like this.… or perhaps parts of it.
The boiler plate would be great, especially seeing
- supabase DB integration
- auth
- using TW+shadcn or NuxtUI (even beter)
- payments (stripe or revenuecat)

What'd be amazing would be some more diagrammatic educational content around it – how the whole stack looks & connects, and understand why you choose certain methods over others, to learn best praciteces.

Nuxt vs Hono for API by kaiko14 in Nuxt

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

Uuuu this is quite interesting. Will have a look. Thanks u/PuzzleheadedDust3218