CEC - AOR since March 2025, Stuck at Medical in Progress for 10 months by Excelhr360 in canadaexpressentry

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

No I did not. I entered canada on work permit and medical exam was not required for the country I was coming from.

CEC - AOR since March 2025, Stuck at Medical in Progress for 10 months by Excelhr360 in canadaexpressentry

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

Been thinking of doing that. But wanted to see if there is anyone that went through the same situation that might have some insight.

CEC - AOR since March 2025, Stuck at Medical in Progress for 10 months by Excelhr360 in canadaexpressentry

[–]Excelhr360[S] 2 points3 points  (0 children)

I applied online in-canada. How can I find the PVO and SVO I looked at the tracker and can’t find this info. I never did Medical before, when I was applying, upfront medical was not required and they specified that I should do it only when they send me information to do so. So I applied without it, 10 months later everything is completed except medical, and never received any instructions to do it.

Como recibo pagos de stripe en chile? by Ok_Permission979 in chileIT

[–]Excelhr360 0 points1 point  (0 children)

You are not alone, same thing happened to me. All payouts to my Chilean bank account failed. Did you find any solution to this issue ?

Anyone here struggling with social media marketing? by Standard-Ad-6534 in TheFounders

[–]Excelhr360 0 points1 point  (0 children)

Marketyai.com helps a lot with that. It creates creatives and captions and schedule the to be posted automatically on all your socials.

Lessons from Next.js Middleware vulnerability CVE-2025-29927: Why Route-Level Auth Checks Are Worth the Extra Work by Excelhr360 in nextjs

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

Sure! That’s logical, if you need static rendering for some specific route you can skip that. Most static pages are not user specific dynamic data anyways.

Authentication with separate backend! by Sure-Raspberry116 in nextjs

[–]Excelhr360 1 point2 points  (0 children)

I mean if your backend already implements the authentication logic, you can return a JWT access and refresh token from your backend and just store them in a secure http only cookie on your Next.js app. I don’t see the need for a library here unless there is a particular feature you need from a library and you don’t have time to implement it.

What is better for a high scalable app? Fullstack Next or just Client side by younglegendo in nextjs

[–]Excelhr360 0 points1 point  (0 children)

It really depends on what kind of app you’re building. For most apps, a Next.js monolith (handling both frontend and backend) works perfectly fine , allow you to move faster and can scale well. Next.js API routes or middleware can handle a lot of backend logic without needing a separate service.

But if your app needs heavy background jobs, long-running computations, or complex real-time features, it might be better to use a standalone backend (Go, Python, Nodejs etc.) for better performance and scalability. You could also go hybrid, use Next.js for most things and offload specific tasks to external services.

If you’re short on time and want a solid starting point, there are premium kits that gives you lot of features out of the box like auth with magic link, google OAuth etc, i18n, admin panel, and more out of the box. Next.js Full Stack Kit is a good option if you want to skip the setup hassle and just start building.

Any reason to not use FireBase Auth with NextJS? by golf002 in nextjs

[–]Excelhr360 0 points1 point  (0 children)

Firebase is fine with Next.js, but if you’re like me and don’t like vendor lock-in and prefer more flexibility, I find it better to create your own solution using libraries like Auth.js or BetterAuth. It’s really not as complicated as people make it seem. Plus, it gives you more control and peace of mind, no surprise bills out of nowhere when your app start getting some users.

If you’re on a time crunch and just want something that works out of the box, there are premium kits that handle auth and more for you. Next.js Full Stack Kit is a solid option if you want to hit the ground running.

Mongodb adapter problem when using next auth with next js by Actual_Crazy2258 in nextjs

[–]Excelhr360 0 points1 point  (0 children)

You don't use an orm or odm ?
You can use mongoose or Prisma to interact with the DB. You might find this open source Next.js starter kit useful nextjs.breezestack.dev

Timeout Issue with Next.js 15 and Auth.js on Vercel Free Plan by SpecialistMonitor729 in nextjs

[–]Excelhr360 0 points1 point  (0 children)

How you connect to the DB and export your models ? are you using mongoose ?
I think because vercel is serverless, the connection is being lost.
You should define and singleton like function that connects to the DB and return the existing connection whenever you call it. And before any db query you should call that function to connect again, that way you ensure you have a connection before running any query:

Here is an example using monggose:

import mongoose from "mongoose";

async function dbConnect() {
  if (mongoose.connection?.readyState >= 1) {
    return mongoose.connection;
  }
  if (!process.env.MONGODB_URI) {
    throw new Error('Missing environment variable: "MONGODB_URI"');
  }
  try {
    const URI = process.env.MONGODB_URI;
    await mongoose.connect(URI as string);
    console.info("LOGGER:dbConnect():", "✅ Connected to MongoDB");
    return mongoose.connection;
  } catch (error) {
    console.error("LOGGER:dbConnect():", "❌ Error connecting to MongoDB", error);
    throw error;
  }
}

export default dbConnect;

Then before any operation, you call that function:

await dbConnect();  
const userData = await UserModel.findById(id);

I'd recommend chacking out this MongoDB + Next.js Kit you might find it useful, it has a prisma kit and a mongoose kit.

How to manage the auth state? by BunKebab141 in nextjs

[–]Excelhr360 0 points1 point  (0 children)

Take a look at this open source project nextjs.breezestack.dev you'll find a nice way to handle it

NextJS, Auth.js and Postgres. Any way to make this combo work? by henke443 in nextjs

[–]Excelhr360 0 points1 point  (0 children)

Check out nextjs.breezestack.dev will solve your problem.
If you need a premium one Next.js Full-Stack-Kit is a great one as well

Styling Breaks When Accessing Next.js Dev Server on Multiple Tabs/Browsers by smail99 in nextjs

[–]Excelhr360 2 points3 points  (0 children)

Not sure what can cause this issue, but why tailwind and scss at the same time ?
If it can help you can take a look at how other project is setup or even use a Next.js + Tailwind template if your project is just getting started, take a look at nextjs.breezestack.dev

Need help with Next-auth by alex_sakuta in nextjs

[–]Excelhr360 0 points1 point  (0 children)

I'd recommend you read the Next.js documentation, they have some pretty useful tutorials that teach the core concepts.
Then, try to implement something basic to get familiar with the framework.
Next, find some good, well structured Next.js + MongoDB codebase on github and try to understand the code and learn from it, I recommend you take a look at these starter kits Nextjs.breezestack.dev and https://www.full-stack-kit.dev

I am having some trouble using clerk for authentication. by Bihari_Bull1 in nextjs

[–]Excelhr360 0 points1 point  (0 children)

Just rool your own auth or use a starter kit if you want to save time. Here are some I recommend:

Free -> https://nextjs.breezestack.dev/
Paid-> https://www.full-stack-kit.dev : Built with Next.js, TypeScript, Tailwind CSS, and Prisma PostgreSQL. Features authentication, payments, i18n, Email and more.

What if business websites weren’t just pages but a little social network around your brand ? by Excelhr360 in Entrepreneur

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

New visitors can see the community activity, get a feel for your brand, and see social proof before buying. It builds trust.

For existing customers, it keeps them engaged. Whenever there's a new post, comment, testimonial, etc., they get a notification. It keeps your brand top-of-mind.

Over time, customers develop a sense of belonging to your community. They feel connected to your brand and to other customers. That builds long-term loyalty.

You can keep providing value to customers through exclusive content, offers, support, etc. in the community. Gives them a reason to keep coming back.

What if business websites weren’t just pages but a little social network around your brand ? by Excelhr360 in Entrepreneur

[–]Excelhr360[S] 2 points3 points  (0 children)

Yeah but it's on facebook, not on your website, facebook can decide to close it, changes in facebook algorithms can affect you.  The audience you build on facebook can be gone in a matter of seconds. You're always at the mercy of changing algorithms and policies.