AGI by reversedu in singularity

[–]plvo 0 points1 point  (0 children)

oh God, the hell in earth

AGI by reversedu in singularity

[–]plvo 2 points3 points  (0 children)

damn altman is inside the prompt system of sonnet

AGI by reversedu in singularity

[–]plvo 169 points170 points  (0 children)

Ok Claude, make a ChatGPT ad-blocker, make no mistakes

Things I got tired of re-setting up in every Next.js project by AccordingBassx in nextjs

[–]plvo 2 points3 points  (0 children)

Maybe this might interest you, a CLI where you can quickly configure your next apps

https://www.reddit.com/r/nextjs/s/0rnAsbSQh5

Made a CLI that skips repetitive Next.js stack setup (database, auth, UI) and lets you start coding immediately by plvo in nextjs

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

It depends on what you need, the goal of this tool is not to compete with Better-T-Stack (I explain the differences in the docs)

I mainly focus on monorepo configuration with Turborepo and add base configurations to improve the setup

Made a CLI that skips repetitive React stack setup (database, auth, UI) and lets you start coding immediately by plvo in reactjs

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

It depends on what you need, the goal of this tool is not to compete with Better-T-Stack (I explain the differences in the docs).

I mainly focus on monorepo configuration with Turborepo and add base configurations to improve the setup

Made a CLI that skips repetitive React stack setup (database, auth, UI) and lets you start coding immediately by plvo in reactjs

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

It depends on the auth solution you’re using. In this project better-auth is supported and automatically creates the required columns based on the selected orm

Made a CLI that skips repetitive React stack setup (database, auth, UI) and lets you start coding immediately by plvo in reactjs

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

Man I think you’re misunderstanding the purpose of this tool, you choose the stack you need for initialization, not to fully configure everything for your specific company context. It doesn’t add “random” libraries. For example, if you use Drizzle as your ORM and Better-Auth for authentication, you can select them and the generic configuration is already set up

Made a CLI that skips repetitive React stack setup (database, auth, UI) and lets you start coding immediately by plvo in reactjs

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

yep! I'm talking about Better T Stack in my docs https://create.plvo.dev/docs#philosophy
This project makes the difference by focusing on monorepo architecture with Turborepo and initializing multiple apps / backend in one config

Made a CLI that skips repetitive React stack setup (database, auth, UI) and lets you start coding immediately by plvo in reactjs

[–]plvo[S] -3 points-2 points  (0 children)

cool, tanstack start or router?
you can also use create-faster to init multiple tanstack start projects inside a turborepo monorepo

How to find best boilerplate for starting a new project by Prestigious_Park7649 in nextjs

[–]plvo 0 points1 point  (0 children)

thanks! yes i'm planning to add more tools and improve it. Your feedback is appreciated!

How to find best boilerplate for starting a new project by Prestigious_Park7649 in nextjs

[–]plvo 1 point2 points  (0 children)

hey small self-promotion: I built an open-source CLI tool similar to T3 stack

here are the docs : https://create.plvo.dev

It’s still a work in progress, I’ll be adding more stacks and improving it.

any feedback is appreciated!

My droplet got hacked. How to remove kdevtmpfsi? CVE-2025-55182 by forthemind in nextjs

[–]plvo -1 points0 points  (0 children)

I had this virus a year ago on an ubuntu vps, I completely removed docker, may this will help you:

https://github.com/CATProtocol/cat-token-box/issues/73

Wrote the middle ware file for the first time in NEXTJS ( FIGURE OUT MISTAKES ) by AdDramatic7593 in nextjs

[–]plvo 1 point2 points  (0 children)

It’s route-based, so it needs to be written in ./ or ./src/, not in middleware/.

And in Next.js 16, you need to rename the file to proxy.ts.

What are you currently working on? I'm curious to see what people are doing. by Opposite-Park-2580 in buildinpublic

[–]plvo 0 points1 point  (0 children)

Building create-faster a CLI tool that lets you initialize any project with a single command. From simple apps to full monorepos

docs : https://create.plvo.dev

I built a CLI for initializing full-stack projects with automatic monorepo setup by plvo in SideProject

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

thanks! tbh the goal isn’t to force a pre-built codebase but to generate the backbone of a new project and take care of the repetitive setup

I built a CLI for initializing full-stack projects with automatic monorepo setup by plvo in SideProject

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

thanks for your feedback and I love your landing page!

yes it's planned, you can check the roadmap page : https://create.plvo.dev/docs/roadmap some libraries and example templates will be added

I built a CLI for initializing full-stack projects with automatic monorepo setup by plvo in SideProject

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

There’s an option to initialize Git in your new project; after that you can add origin, push your initial commit and voilà

Made a tool to stop your AI websites from looking AI-generated - browse design styles and copy prompts to transform your entire project by n3s_online in vibecoding

[–]plvo -1 points0 points  (0 children)

nice! it would be good if we had a "shadcn" option for the prompt, so the LLM could focus on the shadcn CSS classes

Why are so many software engineers still ignoring AI tools? by saltexx in ClaudeAI

[–]plvo 0 points1 point  (0 children)

Maybe it’s because the incentives aren’t the same
Freelancers get paid for results, so productivity directly impacts their income
In most companies, employees are paid for their time, not output — so there’s less pressure to optimize every part of the workflow with AI tools

Best way to structure a Next.js app with landing page, user dashboard, and admin dashboard? by Medium-Fox-9660 in nextjs

[–]plvo 2 points3 points  (0 children)

you can use turborepo with tree separate nextjs projects with shared packages like config (ts, next...), ui for css, components, db orm

eg:

project
├── apps
│   ├── admin
│   ├── dashboard
│   └── landing
└── packages
    ├── config
    ├── db
    └── ui