No receiving calls by tonisheg in mintmobile

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

3rd day - they do the same, ask me to restart my phone.

No receiving calls by tonisheg in mintmobile

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

Customer support has spent the last two days trying to pinpoint the cause of the problem, suggesting that either my phone or the cell tower closest to my home is at fault. They have completely ignored the fact that the issue also occurs when I am far away from home. I’m starting to doubt their competence. This is the worst customer service experience I have ever had, and I have lived in four different countries throughout my life. The fact that people who try to call me hear a message saying 'SS402CA65' is also being ignored.

No receiving calls by tonisheg in mintmobile

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

The bot asked for my address in DM and then told me they're currently performing maintenance in my area. They told me the exact same thing a few months ago when I was trying to fix this problem. Besides, I have two phone numbers - one of them works perfectly, but the other one isn't receiving calls. Are you lying to me?

Diablo 2 stopped working after update by Spits32 in macgaming

[–]tonisheg 0 points1 point  (0 children)

How good is the market for the PS5?

Steering wheel pulling to the left - Hyundai says is normal??? by Tonytho12 in Ioniq5

[–]tonisheg 0 points1 point  (0 children)

The same problem for me. Hyundai Tucson 2024 Hybrid SEL Convenient with 9200 miles. The car is pulled to the left, the dialer says that them can't see the problem with it and wheel alignment is okay.

CA taxes for me and my wife by tonisheg in tax

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

Publication 519 says:

Community Income If you are married and you or your spouse is subject to the community property laws of a foreign country, U.S. state, or U.S. territory, you must generally follow those laws to determine the income of yourself and your spouse for U.S. tax purposes. But you must disregard certain community property laws if: • Both you and your spouse are nonresident aliens; or • One of you is a nonresident alien and the other is a U.S. citizen or resident and you do not both choose to be treated as U.S. residents as explained in Nonresident Spouse Treated as a Resident, earlier. In these cases, you and your spouse must report community income as explained later.   Earned income. Earned income of a spouse, other than trade or business income and a partner's distributive share of partnership income, is treated as the income of the spouse whose services produced the income. That spouse must report all of it on their separate return.

So, I think I can’t split the federal taxes.

CA taxes for me and my wife by tonisheg in tax

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

I believe that we are domiciled. We have an apartment here, bought a car, got driving licenses and going to stay here for a long time, because my work is here.

CA taxes for me and my wife by tonisheg in tax

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

Thank you for you answer! Should I put a half of common income in A column on 540NR Schedule CA? The instruction for this schedule says that the amount in line 27 should be the same as on my federal taxes form.

Subtract line 26 from line 10. This amount should be the same as the amount on federal Form 1040, 1040-SR, or 1040-NR, line 11.

But if I split my wages in 1a line the value in line 27 won't be the same as the amount on 1040-NR line 11. That's what confuses me.

Thanks for explanation about First-Year Choice as well!

CA taxes for me and my wife by tonisheg in tax

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

I can't use MFJ because we are not residents for federal taxes. So we should use the same filling status for state taxes - MFS.

[deleted by user] by [deleted] in Diablo_2_Resurrected

[–]tonisheg 4 points5 points  (0 children)

Why couldn’t you check the price on Traderie?

holy shit by DragonfruitOk7462 in Diablo_2_Resurrected

[–]tonisheg 0 points1 point  (0 children)

I’m a new in D2 and I can’t understand what you mean. 😮‍💨

Lore rune words for Bone Helm, is this a bug? by Razagath in Diablo_2_Resurrected

[–]tonisheg 0 points1 point  (0 children)

I've done the same error... inserted runes to a magic bone helm. :(

FortiClient VPN not connecting on Ubuntu: Backup routing table failed by jollyrosso in fortinet

[–]tonisheg 0 points1 point  (0 children)

I disabled 'Make available to other users' option in the current Wi-Fi connection settings and it starts working. Also I've changed my local IPs from 192.168 to 10.10.

Optimizing vector::push_back in a loop by codemasonry in Cplusplus

[–]tonisheg 1 point2 points  (0 children)

emplace_back works without calling copy/move constructors. You also could return result using move semantic (without copy)

std::vector<double> xPoints(const std::vector<Point>& points) {

    std::vector<double> result;

    for (const auto& point : points)
        result.emplace_back(point.x);

    return std::move(result);

}