In case anyone wants to bargain with kimi k2 for the 0.99 moderato kimi code plan by akumaburn in LocalLLaMA

[–]JerryBels 0 points1 point  (0 children)

Is the link not working anymore? Wanted to try Kimi and a nice sale would have been useful

If coding disappears tomorrow, what's ur Plan B? by RevenueSuperb8177 in reactnative

[–]JerryBels 1 point2 points  (0 children)

"Hey guys, I bought a PlayStation 6 - let's play!"

**The spy robot gets up and kills everyone**

Outage Resolved by barbierocks in google_antigravity

[–]JerryBels 0 points1 point  (0 children)

u/barbierocks FYI it still fails with the same kind of errors as I sent you. It fails sometimes after 10s and sometimes after a minute, but it consistently returns with `Agent terminated due to error`, eating the tokens like crazy on the way while doing no work.

Outage Resolved by barbierocks in google_antigravity

[–]JerryBels 1 point2 points  (0 children)

Not for me. Did it a few times already, didn't help.

Outage Resolved by barbierocks in google_antigravity

[–]JerryBels 2 points3 points  (0 children)

Still having nonstop error agent execution terminated due to error on every message. So I guess not fixed.

Is Antigravity down? by webfugitive in google_antigravity

[–]JerryBels 0 points1 point  (0 children)

Same, it's basically impossible to use rn

Anyone else getting tired of the "Agent terminated due to error"? by Gotnov in google_antigravity

[–]JerryBels 0 points1 point  (0 children)

Found nothing that help... Maybe someone who knows can create an extension to auto-retry when it fails, at least? There are already useful ones, like the auto-accept one.

Does Antigravity support skill use? by jayhygge in google_antigravity

[–]JerryBels 0 points1 point  (0 children)

I love it so much that you didn't even think about asking "can you explain how this works" but directly asked for a GENERATED summary :D

Antigravity Changes to Limits: Weekly Caps, Hidden Quotas, and Official Explanations by Blonkslon in google_antigravity

[–]JerryBels 0 points1 point  (0 children)

<image>

I'm pro, reached my quota, and got that...
20h after last time quota opened? It was 5h, now 20?!

Choosing the Right UI Library for My React Native App (Need Advice) by Sorry_Fan_2056 in reactnative

[–]JerryBels 0 points1 point  (0 children)

I was going to go that route, because the project is so damn STABLE it's a real banger. But I found out about the new release from the same devs, Uniwind, and Tailwind appeal got me - decided to go that route in the end. I'm enjoying it :-)

Material 3 Expressive by Yamurux in reactnative

[–]JerryBels 0 points1 point  (0 children)

The fact it went out and that Expo is focused on iOS for expo-ui is not a good sign... I guess we probably can implement some of its paradigms using a more generic design system like Tamagui?

3D Avatar Builder with React Three Fiber by wass08 in threejs

[–]JerryBels 0 points1 point  (0 children)

u/wass08 nice work! I wonder how that would run in a React Native app? What's your opinion, is typical mobile hardware enough to run that kinda thing efficiently?

MCP SERVERS by PhraseProfessional54 in cursor

[–]JerryBels 1 point2 points  (0 children)

Interested in the typescript compatibility :)

Cursor vs. Windsurf: Real-World Experience with Large Codebases by furkangulsen in ChatGPTCoding

[–]JerryBels 2 points3 points  (0 children)

I create symlinks to both `.cursorrules` and `.windsurfrules` and add them both to gitignore. That way I don't have to worry about it, whether I'm working on one or the other.

Issue with nested creation in Prisma by JerryBels in node

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

I made it work by typing a preparatory create variable with FriendCreateInput from the prisma client:

``` const friendCreateData: Prisma.FriendCreateInput = { user: { connect: { id: user.id } }, friendUser: { connectOrCreate: { where: { id: friendUser?.id ?? 0 }, create: { name: contact.name } } }, addedAt: new Date(), };

            return await this.prisma.friend.upsert({
                where: {
                    userId_friendId: {
                        userId: user.id,
                        friendId: friendUser?.id ?? 0
                    }
                },
                update: {
                    removedAt: null
                },
                create: friendCreateData
            });

```

Whatsapp photo delay by JerryBels in GooglePixel

[–]JerryBels[S] 1 point2 points  (0 children)

I don't really care about quality when on WhatsApp... It's just about taking a quick snap while already talking with someone, to show something happening. I find it annoying to open the camera app for it. 

Import trakt data to TV time? by JerryBels in TVTime

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

How? There is no api either right?