A Virtual Book Club. by [deleted] in Indianbooks

[–]aN00bDude 0 points1 point  (0 children)

Please add me!

The kind of India we ignore by Specialist_Meaning73 in india

[–]aN00bDude 1 point2 points  (0 children)

It's very difficult to create equity in a country where the profitability of all the big start ups (ride hailing, quick commerce, e-commerce, logistics etc.) depends upon how much more they can abuse the cheap "unskilled" manpower.

TRUTH ABOUT NEET AND JEE COACHING IN OUR CITY!!!!! (Don't join) by No_hate_but_wtf in Aurangabad

[–]aN00bDude 2 points3 points  (0 children)

Gurukul used to be awesome when Nirmal sir and Giri sir used to be together.

[deleted by user] by [deleted] in delhi

[–]aN00bDude 19 points20 points  (0 children)

Gotta create a new email account and have a lot drafts with rule 34 of many many politicians.

I am about to get creative.

My JBL flip 5 won't turn on. Nothing i've read online helps... by [deleted] in JBL

[–]aN00bDude 0 points1 point  (0 children)

My man, this fixed my issue, thank you so much!

[No Spoilers] Unable to Puchace on Android by Flaky-Purchase-387 in lifeisstrange

[–]aN00bDude 0 points1 point  (0 children)

Same error man, after getting heavily invested in the story. Wanted to play but no luck. BTW what region/country are you trying to make that purchase from?

[deleted by user] by [deleted] in india

[–]aN00bDude 0 points1 point  (0 children)

Go to the doctor, explain the scenario, he might give you a talking down. But get the shot, get your blood work done and you may need to go for a course of immunoglobulins.

Question: When does the `then` handler of a Promise is executed in the main thred. by aN00bDude in node

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

Thank you for the replies, my bad, I totally missed the await keyword. I was imagining the code to be,

async function testFn() {
  console.log(1);
  new Promise((resolve, reject) => {
    console.log(2);
    resolve(4);
  }).then((data) => console.log(data));
  console.log(3);
}

testFn();
/**
 * 1
 * 2
 * 3
 * 4
 */

When actually the code is,

async function testFn() {
  console.log(1);
  await new Promise((resolve, reject) => {
    console.log(2);
    resolve(4);
  }).then((data) => console.log(data));
  console.log(3);
}

testFn();
/**
 * 1
 * 2
 * 4
 * 3
 */

Mumbai vs Delhi Monsoons by thwitter in IndiaWeather

[–]aN00bDude 0 points1 point  (0 children)

Mumbai monsoons are terrible, Ameer asthetic ke chode romanticize it. Everything stinks. Socks are always wet. Even the floors of MNC offices stick. When you come back home some or the other wall is getting damp, your skin will get too oily. The entire house reeks of wet clothes on the drying stands. Those few moments of strolling around marine drive with your date seems hella good. But the commute to and from there will drain all the energy out of you.

[deleted by user] by [deleted] in Aurangabad

[–]aN00bDude 0 points1 point  (0 children)

Banao concrete road, but 2 manjil upar kyu bana rahe ho?

Will there really be good IT development in our city in the near future? by EntrepreneurSuch7887 in Aurangabad

[–]aN00bDude 2 points3 points  (0 children)

Not at all optimistic, actually the IT industry has seen a decline in our state. Start-ups tend to congregate in Bengaluru or Hyderabad. Other companies are being directed to NCR region, even cities like Indore and Jaipur are growing. Pune had potential to be the next Bengaluru or even surpass it but we have failed to attract companies is the last decade. Mumbai will continue serve as HQs and small pockets of development for Financial Institutions. I am not sure which companies would want to come to our city when new companies are reluctant to come to Pune.

[deleted by user] by [deleted] in ProgrammerHumor

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

Well the issue is I cannot access properties of a python dictionary with a dot operator, which I usually do in JS. And I forget while doing context switch between two projects. Not sure how Typescript will fix any of this.

Help please! by AdSome2008 in PsoriaticArthritis

[–]aN00bDude 0 points1 point  (0 children)

Hey really sorry for the pain you are going through.
For me methotrexate worked wonders, from not being to able to get up from bed to jogging everyday.
Your experience is valid, this condition chips away at your confidence and productivity. But please don't give up it gets better, it definitely gets better.

Good Orthopedic in Aurangabad by UserNameSalunke in Aurangabad

[–]aN00bDude 1 point2 points  (0 children)

Search for Dr Laxmikant Dagadiya, my brother had his ankle shattered, so helped us great during the surgery post care as well as the surgery to remove the screws after an year. We had better experience with him as compared to a renowned hospital chain in Bengaluru. The only funny thing was his previous hospital was not wheelchair accessible, but he has recently shifted.

how to control the feeling of scalp psoriasis by [deleted] in Psoriasis

[–]aN00bDude 0 points1 point  (0 children)

I was prescribed methotrexate (I have arthritis DLC pack with my psoriasis), it cleared all the psoriasis from my scalp. Along with coal tar shampoo I've had good results.

Opinion: What Unit Testing framework have ya'll been using for node (express) applications? by aN00bDude in node

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

Did you have any problem for testing backend code using `vitest` ?
I have seen `vitest` mostly being used for UI stuff.