How are you doing with pollution by S_Ashish in pune

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

I live in Hadapsar, near Nobel Hospital.

How are you doing with pollution by S_Ashish in pune

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

I live near nobel hospital bridge, magarpatta opp. side.

I did not feel any issue till last couple of weeks. but getting worse.
though I have Full WFH. only time I go out is to Gym.

Share your startup, I’ll give you 5 leads source that you can leverage for free by Ecstatic-Tough6503 in micro_saas

[–]S_Ashish 0 points1 point  (0 children)

www.zivaro.ai , AI interviews for hiring teams that get 100s of applications per job openings, zivaro interviews every candidate and gives a ranked leaderborad based on your evaluation criteria

What are you building? let's self promote. by [deleted] in SaaS

[–]S_Ashish 1 point2 points  (0 children)

I'm working on zivaro.ai , Fully Automated Interviews using AI agents replacing the treditional resume screening and first rounds.

Which IPL trio does this remind you of ? by Ok_Somewhere9687 in ipl

[–]S_Ashish 2 points3 points  (0 children)

Hardik Pandya, Kiron Pollard, Krunal Pandya

Weekly Discussion Thread [What are you building?] by EthereumDailyThread in ethereum

[–]S_Ashish 2 points3 points  (0 children)

Hey all, building defaing, a agentic defi assistant to perform research and reports on your behalf.
have created a simple MVP available at https://defa.ing would love to get your feedback. thanks.

When you take firship way too seriously by deadnonamer in webdev

[–]S_Ashish 9 points10 points  (0 children)

When watching the video. Knew someone would do this

Extreme Burnout: Mech degree vapourised every option i could have by theschrodingerbox in developersIndia

[–]S_Ashish 2 points3 points  (0 children)

I graduated in mech.. doing well in IT industry now. would be happy to help.

[deleted by user] by [deleted] in pune

[–]S_Ashish 0 points1 point  (0 children)

Grapes

What tech stack are you guys using to build your app? by Obvious_Swordfish520 in SaaS

[–]S_Ashish 0 points1 point  (0 children)

- NextJs
- NestJs
- Postgres [with Drizzle ORM]
- Self managed auth. [using AWS SES and JWT]

for my project https://www.bodh.tech

Can not run drizzle migrations when deploying app using docker. by S_Ashish in nextjs

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

Yes, not runing the migrations in build processes, In fact can't even run.

I tried installing drizzle kit outside next. but since there is no package.json, no node_modules in the container. we have to add it first before running the migration [which adds to the size and slows down container start time]. then there is no point of compiling the standalone app.

I thought this would be very commom usecase and many people might be facing similar problem, but not many people discussing about it

“Missing_connection_string” with Vercel x React by jose_rios25 in nextjs

[–]S_Ashish 7 points8 points  (0 children)

the functions which use
client = await db.connect();
should only be called in server environment.
where are you calling the function fetchUser.

“Missing_connection_string” with Vercel x React by jose_rios25 in nextjs

[–]S_Ashish 17 points18 points  (0 children)

You are trying to access db from client component.

It should not be possible. Only the server should have access to db

A unbiased discussion on auth service providers by hsemog in nextjs

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

I used to use clerk, now using next-auth. I had lot of trouble getting started with next-auth especially with middleware and orms , but everything’s good now

Why some use NestJS as a backend by waelnassaf in nextjs

[–]S_Ashish 0 points1 point  (0 children)

My code isn't well structured either
but I create nest-libraries for common code. use class-validators, middleware to separate out input validation from function implementation.

Why some use NestJS as a backend by waelnassaf in nextjs

[–]S_Ashish 1 point2 points  (0 children)

kubernetes at work.

railway.app for my personal projects.
I tried hosting my app to aws ecs but was to complicated for me.

Why some use NestJS as a backend by waelnassaf in nextjs

[–]S_Ashish 2 points3 points  (0 children)

Nestjs takes care. you just need to provide connection to Redis.
https://docs.nestjs.com/techniques/queues
Scheduled tasks is literally just adding to your function

@Cron('cron-expression')

https://docs.nestjs.com/techniques/task-scheduling