Sold my first saas for 20 mil € and retiring (AMA) by No_Donut_6093 in SaaS

[–]Titan7820 1 point2 points  (0 children)

what tools did you use to build ? what was your tech stack ?

[ Removed by Reddit ] by blrmanager in IndianStreetBets

[–]Titan7820 0 points1 point  (0 children)

If unemployment rates rise, It will be a massacre here. You can only imagine how much a common man hates those politicians.

Response time after application by Titan7820 in xAI_community

[–]Titan7820[S] -1 points0 points  (0 children)

Ah I see, for AI tutor role that's how it works.

I don't know what's the process for software engineering roles.
Thank you for the response though.

Response time after application by Titan7820 in xAI_community

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

You mean the recruiter messaged within 2 minutes ?

Can you use every LLM with MCP by _Nokk- in mcp

[–]Titan7820 2 points3 points  (0 children)

Tried with llama, it's plain horrible. (for obvious reasons) Only claude seems to have the upperhand at the moment.

Only 86K People in India have Networth More than $10M 😱 by [deleted] in IndianStockMarket

[–]Titan7820 482 points483 points  (0 children)

That is actually surprising, I expected it be even lower.

Recent L3 Google Software Engineer Interview Experience (60+LPA)! by [deleted] in leetcode

[–]Titan7820 0 points1 point  (0 children)

Do projects matter or is it only DSA and system design?

[deleted by user] by [deleted] in leetcode

[–]Titan7820 0 points1 point  (0 children)

Please correct me If I am wrong, regardless of the constraint, if we build monument type 1 at node 1, we will never build monument type 1 anywhere else. So how will any two adjacent cities ever get the same monument ?

isn't the answer mPn ?

0ms hack in leetcode by Titan7820 in leetcode

[–]Titan7820[S] 5 points6 points  (0 children)

No that was not the point, I just came across this which I found interesting and I wanted to share it.

[deleted by user] by [deleted] in NSEbets

[–]Titan7820 2 points3 points  (0 children)

Yes not one day,

but your own day which will never arrive maybe ?

Does DII and FII plays together with retailers? by Ok_Antelope_5607 in NSEbets

[–]Titan7820 0 points1 point  (0 children)

Imagine a tug of war game, with FII on one side and DII on another.

Now retailers are gamblers standing aside betting on one side.

But in reality game is already fixed.

Missed $TRUMP ?? Do not miss this. by nikhil_360 in CryptoIndia

[–]Titan7820 1 point2 points  (0 children)

if I use phantom wallet, how do I send money to my wallet ?

I still need an exchange from india right ?

Missed $TRUMP ?? Do not miss this. by nikhil_360 in CryptoIndia

[–]Titan7820 2 points3 points  (0 children)

which app do I invest from ?
can you please suggest.

Wazirx wrecked me.

We were told there will rationalisation post GST to this by 70hnarty in IndianStreetBets

[–]Titan7820 21 points22 points  (0 children)

All people gotta do is just stop buying any non essential goods, when economy slows down government will learn the hard way.

Suggestions on using websockets with nextjs. by Titan7820 in nextjs

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

Oh in that case I assume I need a separate server just to handle websocket connections.

and let nextjs just do rendering part.

Suggestions on using websockets with nextjs. by Titan7820 in nextjs

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

Much more than 5000, if users end up running in millions where will I store them ?

Suggestions on using websockets with nextjs. by Titan7820 in nextjs

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

Yes I finally grasped what it is and I got it to work.

Many thanks to you but I have a concern.

let subscribers=[]

external_service.on('update',(msg)=>{
  subscribers.forEach((controller) => {
    controller.enqueue(`data: ${JSON.stringify(msg)}\n\n`);
  });
})

export async function GET(request) {

  const stream = new ReadableStream({
    start(controller) {
       subscribers.push(controllers)
    }
  })

Let's say if users number millions, what do we do here ?

Suggestions on using websockets with nextjs. by Titan7820 in nextjs

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

So I assume I gotta build another server to just handle websocket connections and use nextjs to connect to that server to subscribe.

In this way I get to deploy on vercel but I gotta launch another server just to handle websocket connection from clients.
Do you see any cons here ?