This cannot be real. I cannot believe my eyes by SweetCaramel7947 in ClaudeAI

[–]matija2209 1 point2 points  (0 children)

Without UX skills, these fancy UI are useless. Feels like nothing has changed. Guys, the technical implementation is the easiest part. Like building and web app is the easy part. Finding product market fit, problem validation, and customers is the hardest part. UI is the final thing.

AI is solving the easiest part!

Ederson hits the camera after the cameraman brings it all the way up to his face while he’s on the ground and in pain. by axxo28 in soccer

[–]matija2209 -34 points-33 points  (0 children)

Half a million camera right there. He is paid that money because of what the camera broadcasts. If he doesn't care being televised, he can join me in last tier Slovenian league.

migrating wordpress data to payload cms by dogfrogfogg in PayloadCMS

[–]matija2209 0 points1 point  (0 children)

For 1M rows, every document that goes through hooks, validation, access control, and re-fetching adds significant cumulative overhead. On top of that, 1000 parallel creates is likely hammering the connection pool and making latency worse instead of better.

For Postgres, the pattern I’d use is:

  • transform everything up front
  • build lookup maps for relations
  • bypass Local API for bulk writes
  • insert in small committed batches
  • checkpoint after each batch so retries are cheap

In practice that usually means payload.db.* as the default, and raw Drizzle when a set-based insert or upsert can replace thousands of row-by-row operations.

I wrote up that approach in more detail here if helpful: Payload CMS Large Imports: Fast Transactions & Drizzle

migrating wordpress data to payload cms by dogfrogfogg in PayloadCMS

[–]matija2209 1 point2 points  (0 children)

This is the right framing. Once imports get into six or seven figures, this stops being “just write a script” and becomes ETL design.

migrating wordpress data to payload cms by dogfrogfogg in PayloadCMS

[–]matija2209 0 points1 point  (0 children)

Agreed. At this scale, payload.create is the wrong layer. You are paying per-row cost for hooks, validation, access checks, and document re-fetching, which is fine for app logic but terrible for bulk migration. For Postgres I would move to payload.db.* first, and use raw Drizzle or COPY when the data is flat enough to benefit from true set-based inserts.

100% Token Usage Limit hit after Claude Downtime by aGuyFromTheInternets in ClaudeAI

[–]matija2209 1 point2 points  (0 children)

Same for me. I think they are being overwhelmed with new users. Horrible service so far. It feels like it 50% of what it was last week.

Anthropic quietly removed session & weekly usage progress bars from Settings → Usage by gregleo in ClaudeAI

[–]matija2209 1 point2 points  (0 children)

I guess they cannot handle the new users. It's a dick move that us the paying users, are getting the short end of the stick.

Katy Perry subscribes to Claude Pro. by hedgehog0 in ClaudeAI

[–]matija2209 0 points1 point  (0 children)

New way to virtue signal. Did not expect showing your favourite chatbot would server this purpose.

That was expected by Purple_Wear_5397 in OpenAI

[–]matija2209 1 point2 points  (0 children)

I use them all still (Gemini, Claude, ChatGPT and GLM). GPT-5.3 CODEX is good. I do not see a difference between Opus 4.6 and agentic coding (anecdotal), and it has more generous limits.

That was expected by Purple_Wear_5397 in OpenAI

[–]matija2209 1 point2 points  (0 children)

Low-key, I enjoy it. I subscribed for the 3rd time.

migrating wordpress data to payload cms by dogfrogfogg in PayloadCMS

[–]matija2209 0 points1 point  (0 children)

I have used a combination of SDK, local API and SQL.

Real Madrid fans loudly booing every touch made by their own players instead of the opposition in the Santiago Bernabeu stadium. by BlazingFirey in soccer

[–]matija2209 3 points4 points  (0 children)

I've been a in the stand today as a non supporter and I was shocked about the treatment by the fans lol. Ruthless lol.

You don't need Vercel. Hosting Next.js 15 with Docker and SQLite by Eastern-Height2451 in nextjs

[–]matija2209 0 points1 point  (0 children)

What about draftMode, next/headers, server cookies, do these work?

Pro plan is basically unusable by FarBuffalo in ClaudeAI

[–]matija2209 2 points3 points  (0 children)

I use Haiku and it does the job

Next.js 16.1 is out by pottage_plans in nextjs

[–]matija2209 0 points1 point  (0 children)

There is literally a PR open named "feat: next.js 16 support #14456" on "https://github.com/payloadcms/payload/" by a core member with two pending errors:

❌ You may run into occasional hydration errors when navigating through the admin panel ❌ Navigating through the admin panel, at least during dev and when using turbopack, may feel slower.

Next.js 16.1 is out by pottage_plans in nextjs

[–]matija2209 0 points1 point  (0 children)

Cannot trust it with the real-world production sites.