• 0 Posts
  • 4 Comments
Joined 1 year ago
cake
Cake day: August 2nd, 2023

help-circle


  • So with a 401k loan, which is kind of this, you are limited to borrowing against it by like only up to 50% of its face value due to factors such as market volatility. And then all payments made to that loan are with alreaey taxed income, so you aren’t securing money in any way that dodges taxation.

    Also using shareholdings is no different from using a house or property as collateral… property equity has unrealized value until it is sold too. One might argue you pay property taxes on that equity, but ideally, the company behind the stocks you own pays property taxes for its ownings annually, so that’s still happening. So the real problem is large companies dodging taxes due to exploiting broken tax code loopholes.


  • If there’s commonly used data that would be good for indexing or filtering, you can take a few key values and keep them stored in their own fields.

    There are also often functions that can parse structured text like XML or JSON so you can store data in blobs but not actually need to query all the blobs out to a client to use them on the database side and retrieve specific values. Another nice thing about blobs is the data can be somewhat flexible in structure. If i need to add a field to something that is a key/value pair inside a blob, i dont necessarily have to change a bunch of table schemas to get the functionality on the front end that I’m after. Just add a few keys inside the blob.