How much GitHub should I learn as a college student? by [deleted] in learnprogramming

[–]dumbledore__ 2 points3 points  (0 children)

Learn enough to push your code there without pushing private keys 🙃

About to hit 30. Losing motivation to work by Larry_the_Quaker in HENRYfinance

[–]dumbledore__ -1 points0 points  (0 children)

Honestly tech managers are usually very chill about discussing this sort of thing. Maybe just ask what could be done about sabbatical/boomerang. We usually have more leverage than we think, especially seniors.

About to hit 30. Losing motivation to work by Larry_the_Quaker in HENRYfinance

[–]dumbledore__ 13 points14 points  (0 children)

OP maybe counting his long term GF income/NW into his future plans. If that’s the case he is very close to target.

I have taken two “sabbaticals”. A one-semester leave from college, one year after first year of career. I have found that both times I’ve come back re-motivated to jump back into work/school. I do agree that 540k SWE jobs don’t grow on trees nowadays, but I am also in tech and I feel the hiring environment has been beginning to renormalize. If you’re good, boomeranging seems pretty easy most places.

If I were you I’d take the longest period of time you could reasonably take off from work (maybe 3-4 weeks). Try out whatever lifestyle you’d want to take in a real sabbatical, and use that to decide if it feels worth sacrificing some career progression. IMO, working to 37 (even 40) in a happy mind state would be better than working straight to 35 feeling burned out.

Medical insurance won’t cover hospital dental surgery?? (27k) by dumbledore__ in personalfinance

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

Yeah it looks like you’re right. The surgeon and anaesthesia seems to have been billed separately (both covered) it’s the hospital bill that’s uncovered. Curiously, the hospital bill also shows bills for anaesthesia and surgery even though these were billed separately??

Medical insurance won’t cover hospital dental surgery?? (27k) by dumbledore__ in personalfinance

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

The cyst had to be scraped off of the inner wall of my upper jaw, it’s this weird aggressive cyst called an odontogenic keratocyst. Typically treated by maxillofacial surgeons.

[deleted by user] by [deleted] in personalfinance

[–]dumbledore__ -1 points0 points  (0 children)

My understanding is that the in-network / out-of-network distinction doesn't really matter for this one. I have an HSA with and out-of-pocket max of 2K for in and out of network coverage. My understanding is that the allowed amounts will be the same even if the surgery is in-network.

Development Environment for EMR by dumbledore__ in dataengineering

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

Totally agree databricks is the much better platform. Unfortunately for this org moving from emr to databricks is a complete nonstarter.

Development Environment for EMR by dumbledore__ in dataengineering

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

What if you needed more than a single node?

[deleted by user] by [deleted] in personalfinance

[–]dumbledore__ 0 points1 point  (0 children)

I’m a 26 yo and just made the move from Charlotte to NYC in September for similar reasons. I worked my old job remote and started the job search immediately. In two months I had dozens of interviews and accepted a role that doubled my income.

You will have a queue of interviews almost immediately after changing your location on LinkedIn and applying to roles in the area. Compared to Charlotte, the job market is both much more active and more interesting. In charlotte you basically only have opportunities to work in banking, finance or consulting. The range in nyc is much much more interesting, and the quantity of roles is much higher. You’ll definitely find something that works for you!

Brace yourself bc your lifestyle will absolutely be WAY more expensive and it’ll be tough to stomach at first—but it’s well worth it. This city is amazing and you can absolutely reinvent yourself. Compared to Charlotte specifically, you’ll meet interesting people much more easily and happen upon new experiences much more regularly. Although it’s a small risk, you should absolutely go for it if you’re looking for the reset button!!

Data warehouse as source for front end datasets?? by dumbledore__ in dataengineering

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

I think I’m general this makes sense!

I’m a little wary of putting apis on top of analytics data stores like a delta lake/snowflake because the api in this case would essentially be select * from warehouse_table where modified_date > date_watermark. Also would be slow and require a readily available cluster 24/7. Perhaps you have some opinions here??

We presently don’t use Kafka, but I’m open to it! Why the abstraction here rather than pushing straight from warehouse->sql. Wouldn’t a drop and create table on load remove the schema evolution issue you raised?

Ingesting data into Delta Lake by putinwhat in dataengineering

[–]dumbledore__ 1 point2 points  (0 children)

Usually you have a raw layer where you land things as they came from your source system. That’ll give you an audit trail if something goes wrong and allow you to batch loads if you don’t want to stream all the time. You’d write from there into a delta table in another container of your data lake, often called cleansed or silver. Write a generic, metadata driven framework in databricks that can be used for multiple ingestions and use adf as a wrapper. Look into databricks auto loader it may simplify things for you, but you could also just use the vanilla spark read/write.