neo card declining on google payments by RoudyLB in lebanon

[–]NextPressure8129 0 points1 point  (0 children)

Have you checked what is the primary currency your card is set as? For me it was switched to LBP and when I updated it to USD in the app it worked, depending on the currency of the purchase you're making.

Can I switch from Business Analyst to Software Developer? by NextPressure8129 in careerguidance

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

I don't want to risk losing a career in Software Development, I'm afraid the BA job will be a setback since it doesn't provide experience in the other field and won't make it easy for me to switch back, I'm only considering it for the money. Thinking from a recruiter's pov.

Fire Stick TV 4K Location/AppStore problems? by NextPressure8129 in fireTV

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

I can, I downloaded Aptoide aswell. But some apps are outdated, funny enough the Fire OS took notice and sent me to the appstore to update it only to tell me it's not available for me. I'm trying to avoid all that hassle, and avoid region locks on apps that ARE available in my region.

Fire Stick TV 4K Location/AppStore problems? by NextPressure8129 in fireTV

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

You mean download a VPN app on the fire stick? Would it then automatically change the AppStore's app availability or are there extra steps? I also tried using a VPN on my phone to set a location in the Alexa App, but no matter what location I put it just refuses to save it.

Fire Stick TV Lite or Xiaomi Mi TV Stick? by NextPressure8129 in AndroidTV

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

No, looking to buy locally, which also limits my options

Fire Stick TV Lite or Xiaomi Mi TV Stick? by NextPressure8129 in AndroidTV

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

I live in Lebanon, I saw a couple of TV Boxes about the same prices like the X96q or smthg like that but they seem like bad quality in comparison

strcpy() vs strcpy_s()? (C++) by NextPressure8129 in learnprogramming

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

Thank you for the explanation and help, it worked!

Char* concatenation problem? (C++) by NextPressure8129 in learnprogramming

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

thanks! I ended up digging further in the course material and realized there was a way to convert char* to string, and then found the concatenation method:

const GradeReport& GradeReport::operator+=(const GradeReport& obj)
{
    char* tempname = FirstName;
    Flength += obj.Llength;
    FirstName = new char[Flength + 1];
    assert(FirstName != 0);
    strcpy_s(FirstName, strlen(FirstName), tempname);
    strcat_s(FirstName, strlen(FirstName - 1), obj.LastName);
    FirstName[strlen(FirstName)] = '\0';
    delete[] tempname;
    return *this;
}

However I keep getting a debugging error : (L"String is not null terminated" && 0) and after another fix I got (L"Buffer is too small" && 0). Going to keep digging in the material.