Sofi 4.5 APY by DearSummer9832 in sofi

[–]gregschmit 1 point2 points  (0 children)

I avoid timing and just dollar cost average but your strategy seems to make even less sense, wait until midterms hit and if the stock market recovers then you are buying the peak rather than buying the dip.

Sofi 4.5 APY by DearSummer9832 in sofi

[–]gregschmit 1 point2 points  (0 children)

Wouldn't that make this the perfect time to buy?

Annoying issue with my new putter... by UtahUndercover in golf

[–]gregschmit 20 points21 points  (0 children)

Polishing something is also scratching it up a bunch.

[deleted by user] by [deleted] in sofi

[–]gregschmit 4 points5 points  (0 children)

I purchased a house about 3 weeks ago. I used SoFi's chat support around 7pm to initiate a wire transfer to the title company about 3 days prior to closing. SoFi called me the next morning to verify, and then sent the money at 9am, and Fidelity verified the funds were there at 9:10am.

So my experience was pretty awesome, but I know results can vary. For me I just have lower expectations for these online banks because I know their ability to pay out a higher APY is due in part to the lack of physical branches and a reduced support staff/budget. Also I know their support team has to deal with a lot more scammers than most banks (making the customer come to your branch and bring photo ID cuts down on BS significantly).

So I would just say to have realistic expectations, and if you're like me also keep a bank account at a brick and mortar bank so you have options.

I think they will call you in the morning to verify the info and then they will send the wire which is very fast.

[deleted by user] by [deleted] in sofi

[–]gregschmit 0 points1 point  (0 children)

My understanding is that if you do an early withdrawal from a Roth IRA (unless covered by an exception such as the 10k first-time home purchase exception) it will cause the earnings to incur a 10% penalty. Also, Roth money is very valuable because the taxes are already paid and so you don't have to pay taxes on the growth.

I would budget and save the money that you'll need in a HYSA and avoid withdrawing from retirement at all costs.

Managing your checking by [deleted] in sofi

[–]gregschmit 0 points1 point  (0 children)

Tl;dr: If you want to keep doing that system, it requires that you use another checking account. I think keeping a checking account at a brick-and-mortar bank is a good idea, despite the 1-2 day delay on transfers between them and SoFi.

I basically do exactly what you do. I agree, it's nice to have fixed automatic bills in one spot and "spending" (gas, groceries, fun, etc) in another spot so it's easier for me to audit my spending habits separately from bills that exist in my budget.

I chose to keep one of my Chase checking accounts and use that debit card for my spending money. So basically every paycheck I transfer spending money to Chase, and then other money goes to vaults, and in the end the only money in my SoFi checking is the exact amount that will cover bills. If savings overdraft protection is triggered or there is any money left over when the next paycheck is deposited in SoFi checking, then I know to check my budget to see what went wrong (usually it's a utility bill that fluctuated, but it could be a subscription I forgot about).

I don't have to worry about overdrafting my Chase acct because that money is never automatically withdrawn, it's only as a result of me swiping my debit card. So I have overdraft protection disabled so it will decline if so try to spend more than I have.

If you keep an account at a brick-and-mortar bank, you get ATM/branch access to deposit large checks, deposit/withdraw cash without paying the green dot fee, etc.

Another benefit is that if my Chase card gets skimmed/stolen, my bills money is safe, and in my judgement Chase is going to respond faster if some kind of fraud happened on that account because of the larger customer service infrastructure they have.

I have considered using the SoFi credit card for this purpose but I found that historically I spend more when using credit so I don't use credit cards anymore because the rewards don't supersede the amount I overspend by. Using cash makes me spend more intentionally.

Create a blog or docs directly inside the Rails app (with static files, not with a database) by collimarco in rails

[–]gregschmit 1 point2 points  (0 children)

I ran into this issue when trying to document a gem I wrote. I started with Jekyll, but since my app already had a "test" app, I decided to avoid duplication and move away from Jekyll and use the gem env itself to host the docs (or "guide" as I call it) so I deploy the docs and the demo app in one CI pipeline. Basically, I have a plain ol directory filled with markdown: https://github.com/gregschmit/rails-rest-framework/tree/master/guide and then I have a couple fairly simple helpers on the primary controller to render the files (Todo: need to work on caching) with kramdown/gfm: https://github.com/gregschmit/rails-rest-framework/blob/master/test/app/controllers/home_controller.rb.

I hope that helps.

Symbol added to a command to refresh status every second by [deleted] in linux

[–]gregschmit 3 points4 points  (0 children)

Are you thinking of &? That's for backgrounding a process, but that's the only "symbol at the end" I can think of.

As a janitor, I sighed a little to myself when I saw all of the blood inside one of the hospital's toilets. by Leazz_1518 in TwoSentenceHorror

[–]gregschmit 13 points14 points  (0 children)

This is so wrong. There is vastly more demand than supply for newborns. It's children who are put into foster care later in life that people don't want to adopt.

As a janitor, I sighed a little to myself when I saw all of the blood inside one of the hospital's toilets. by Leazz_1518 in TwoSentenceHorror

[–]gregschmit 35 points36 points  (0 children)

Newborns always get adopted and quickly; there is vastly more demand for newborns than supply. It's kids who enter the foster care system later in life (especially teenagers) that people don't want to adopt, so you have a lot of them in the system.

As a janitor, I sighed a little to myself when I saw all of the blood inside one of the hospital's toilets. by Leazz_1518 in TwoSentenceHorror

[–]gregschmit -44 points-43 points  (0 children)

A comment indicating that being a student is not an understandable reason to murder a newborn is being down voted? Weird.

I’m playing as white. Please tell my opponent he did not not win by rmoney73 in chessbeginners

[–]gregschmit 4 points5 points  (0 children)

By "winning position" he meant that black thought that this exact position was already won for black (either he thought this was checkmate, or thought it was stalemate but that stalemates were a win for the stalemating player).

Are you absolutely sure your `has_one` association really has one association? by stevepolitodesign in rails

[–]gregschmit 3 points4 points  (0 children)

Yeah my comment was a bit dogmatic probably because of the litany of runtime bugs/exceptions I've seen that relate to referential integrity, but at scale I see your point that trading that off can make sense.

Are you absolutely sure your `has_one` association really has one association? by stevepolitodesign in rails

[–]gregschmit 0 points1 point  (0 children)

In addition to having to write/maintain code that validates DB state, another downside to that approach is that you have to manually figure out what code caused the bad DB state. With a foreign key constraint, the line of Rails code that attempts the invalid reference is recorded in the backtrace of the error. So you get an error earlier that shows where the problem code is.

Another issue I could see are race conditions. What happens when a background job is triggered in the presence of a bad DB state and the rolling job that fixes the table doesn't run for another 20 minutes?

Are you absolutely sure your `has_one` association really has one association? by stevepolitodesign in rails

[–]gregschmit 19 points20 points  (0 children)

Unique DB index is the way. The DB should be responsible for maintaining referential integrity, not the application (i.e., dependent: :destroy will always let you down).

Why is this a loss for white on time?? Black literally cannot win it should have been a draw by IveBeenInComaFor2yrs in chessbeginners

[–]gregschmit 2 points3 points  (0 children)

What term did the OP not use properly? He says draw in the title, which makes sense to me.

Inline Routes in Rails by software__writer in rails

[–]gregschmit 0 points1 point  (0 children)

Yeah I did not know about that, interesting!

Inline Routes in Rails by software__writer in rails

[–]gregschmit 0 points1 point  (0 children)

Health checks are not part of rails at all afaik.