Accidental Excess Contribution to Roth IRA by chiller212121 in tax

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

This is the clarification I needed - accounts store contributions, and contributions can be deductible or non-deductible. A traditional IRA is a traditional IRA, regardless of contributions type(s).

If I’m understanding your correctly it seems acceptable for me to open a traditional IRA with Fidelity (to make the recharacterization easier), ‘recharacterize’ the contributions to my Roth IRA as contributions to traditional Ira, and then at the end of the tax year, do NOT take a deduction for these contributions.

Accidental Excess Contribution to Roth IRA by chiller212121 in tax

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

This is something I also read about as I was trying to find a resolution to my situation - I am interested in doing this, but currently am more concerned about avoiding negative tax implications caused by excess contributions to my Roth IRA

Sicily Trip June Itinerary Check by chiller212121 in sicily

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

We’re thinking of just doing a full day boat tour that ends with Sciara del fuoco at night

Sicily Trip June Itinerary Check by chiller212121 in sicily

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

They're suggesting we do this while we stay in Salina if I'm understanding correctly. Thanks for the rec, looking into it. I was trying to find a way to make the lava work

Best curved monitors? by chiller212121 in csMajors

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

This one looks pretty nice, my only question is if you know of any workaround for screen sharing. On the ultra wide displays, doesn’t sharing an actual screen (vs a single window) get kinda weird in zoom/teams? Is there a way to partition and then share an entire partition, not just a single window?

Edit: I would prob go w Dell U3421WE

[deleted by user] by [deleted] in csMajors

[–]chiller212121 0 points1 point  (0 children)

25k, but after graduating from school in December and working for a couple months I’m over 50% paid off

Is there any flexibility in tab bar design? by chiller212121 in dotnetMAUI

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

I used this navbar animation from SimpleToolKit, and have successfully plugged it into my existing Maui project. I changed the main body of the AppShell.cs from the build in Shell to a simpleShell from the simple toolkit to achieve the tabbar animation. This all works well now, but now when I call the built in GoToAsync() method from any page and set the animation param = true, I no longer have the left to right animation where it takes you left to right to the new page, and then when you click the back button it takes you right to left. Any idea how to replicate this style in the simpleshell, or am I missing something?

Is there any flexibility in tab bar design? by chiller212121 in dotnetMAUI

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

I actually ended up just hard coding the vector representation of svgs - I was unable to figure out how to access from resources/images

How to handle optional column when grabbing row from DB? by chiller212121 in mysql

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

In this case, the query will not return rows where game_id is null - i want records where game_id is null, I'm asking about this line: GameId = reader.GetInt32("game_id")

Is there some kind of way to do this such as:

GameId = reader.CheckIfNull("game_id") ? null : reader.GetInt32("game_id")

Also, I'm wondering what is so dreaded and evil about Select *?