• 17 Posts
  • 115 Comments
Joined 2 年前
cake
Cake day: 2023年7月9日

help-circle









  • First thing you should do is read the bylaws. There should be some that define how the HOA should operate when it was incorporated. You don’t want to break any bylaws. For two units I doubt it’s that big of a document. You also should also get organized about all docs and record keeping especially if you have any sort of finances.

    My understanding thus far is that we should build up our funds and then put some of that money in CDs and brokerage accounts, eventually

    I don’t know how much big of a budget you’re going to have, but with larger HOAs like mine, we have operating costs and reserve expenses both with their own accounts. Reserve is for long term expenses like you need a new roof. Operating for paying things like shared landscaping. Reserve studies can help you identify how much time until you need to replace the roof or the siding or whatever other things are common with your building.

    Don’t invest in the stock market, but at a certain account size CDs for long term investments are a good idea. We use that to help offset dues increases.

    It doesn’t have to be complicated but you are technically running a business.







  • Not sure what you’re trying to solve, but there are some other tricks you can employ to get matches.

    You could substring match like “size” in “size_of_foo”

    Or use Levenshtein distance to find typoed names. Though set the acceptable distance very low for this

    Could feed the names into an LLM and ask it to classify them. I did this at a job to identify likely column name mappings

    But at the end of the day if this is for an import feature, you need to have a user confirm the import because there’s a lot that could go wrong, like did you get the right encoding? Are numbers encoded the way you expect?





  • Different Operating Systems call it different things. Windows calls it Alternate. Even if it was only used when the primary was down, DNS doesn’t provide any sort of guidance or standard on when to switch between primary and secondary. Is one query timeout enough to switch? How often do you reattempt to the first DNS server? When do you switch back? With individual queries, you can timeout and hit another NS server, but that’s a lot easier at an individual level than to infer a global system state from one query timing out.