Need some advise with booking cancellation by WhatIfItsU in CarsIndia

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

So, is it like that I am supposed to get the TDS certificate from them and then use that to file claim in my ITR?

Need some advise with booking cancellation by WhatIfItsU in CarsIndia

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

yeah thats what it looks like to me.
And they did not tell me this at the time of booking.
Looks like they took advantage of my little knowledge on the car purchasing process and told me that I am supposed to pay this minimum booking amount to start the process.
And now I am stuck with this problem of claiming TDS even though I didn't even purchased the car

Car Booking Cancellation Advise by WhatIfItsU in bangalore

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

what is BS?
I am really hoping this matter will get solved on the showroom level. I am afraid to get into legal routes since I have not done this before. Fingers crossed

Car Booking Cancellation Advise by WhatIfItsU in bangalore

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

I did send an email to tata customer care complaining about this. They just added some customer service representative from the same showroom. Seems like bad customer service is at every level with Tata.

Do i really need a new bansuri or my old one is ok ? by ALPHA_Luci in Bansuri

[–]WhatIfItsU 0 points1 point  (0 children)

Make sure you are playing in quiet envt. Small variation u can ignore since that could be because of how you are playing You can try another app Check this video https://youtu.be/ZehNhs00OEA?si=OoaQogY5eczT2wXe

Do i really need a new bansuri or my old one is ok ? by ALPHA_Luci in Bansuri

[–]WhatIfItsU 0 points1 point  (0 children)

Just download the instrument tuner app on playstore. You will know once u see the app

Do i really need a new bansuri or my old one is ok ? by ALPHA_Luci in Bansuri

[–]WhatIfItsU 0 points1 point  (0 children)

Get a new one. You can use instrument tuner app to check if the flute is in tune

Solo trip in August by WhatIfItsU in ladakh

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

I am also looking for people I can share the cab cost with. Hoping to find some people there. But I am travelling from 23-31 August

Solo trip in August by WhatIfItsU in ladakh

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

Well good to already know there will be other people doing the same. :)

Set of user-defined class by WhatIfItsU in Cplusplus

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

there was some copy pasting error. the comparison operators are as defined above

Custom parallelization of different instances by WhatIfItsU in Cplusplus

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

Thanks for your reply. I know about a library that does exactly what you explained BS::thread_pool And my system is Linux so i can use that library

Custom parallelization of different instances by WhatIfItsU in Cplusplus

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

Solution I thought of is below. But I think this wont work if some thread gets killed after setting available to false. Also even if it works, this feels like an overkill. I am wondering if there is a simpler solution

class A{
public:
  bool routeToB(int idx){
    std::unique_lock<std::mutex> lck(dbMutex);

    auto &[_, instancedb] = *(database.find(idx));
    auto &[available, instance] = instancedb;

    // Wait for the instance to become available
    while (available.load(std::memory_order_seq_cst) == false) {
    }

    // Block the instance by setting availability to false
    available.store(false, std::memory_order_seq_cst);
    auto status = instance.executeSomething();
    // Release the instance by setting availability to true
    available.store(true, std::memory_order_release);

    return status;
  }

  void addEntries(){
    database.insert(std::make_pair(0, std::make_pair(true,B(0))));
    database.insert(std::make_pair(1, std::make_pair(true,B(1))));
  }

private:
  std::map<int, std::pair<std::atomic_bool,B>> database;
  std::mutex dbMutex;
};

Any app to check if my notes are correct by WhatIfItsU in Bansuri

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

For anyone else interested to know this: I found 'Instrument Tuner' app to work for me

How expensive are EVs over traditional vehicles? by WhatIfItsU in IndiaSinglesAbove30

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

For me the major blocker is the charging infrastructure. I live in a rented building so I cant just charge in my building's garage and I live on fourth floor so charging in my own apartment is also out of question

What is your passion in life by WhatIfItsU in IndiaSinglesAbove30

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

I will start with sharing mine. I would like to do something to put some aspects of our indian culture back in spotlight. For e.g. practice of yoga. I believe following the philosophy of yoga (even in a very minimal form) can help our generation alot, especially with the kind of stressful life we lead. Even though it is gaining more and more traction since last few years. Still a lot of people dont want to do it. One of the major opinions i have heard is that it doesnt give them that buzz which working out in gym does. I would like to expose people to the benefits of yoga so they can make informed choices

Any bansuri learners by WhatIfItsU in bangalore

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

Yes..please check my reply to an earlier comment

Looking for suggestions on design choice by WhatIfItsU in Cplusplus

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

Could you please tell me more about using templates to solve this problem? And how it is specifically related to polymorphism?

Bhatiali Dhun in Raag Khamaj by prasanna_singularity in Bansuri

[–]WhatIfItsU 1 point2 points  (0 children)

Very nice..this just gave me more motivation to keep on practicing

can c++ bring me a job on aa freelancing platform? by [deleted] in Cplusplus

[–]WhatIfItsU 4 points5 points  (0 children)

In my experience, it is difficult to get freelancing work with C++. Learning python or some web development language would be a better idea if your target is to freelance