• 0 Posts
  • 27 Comments
Joined 11 months ago
cake
Cake day: July 29th, 2023

help-circle





  • Sometimes home owners will sell their house after retirement for something smaller, live off the difference, then sell that house and use the money from that for long term care, or inheritance.

    There’s also the obvious: they worked for something, possibly quite hard, why do they have to pay the price for others? Presumably they’ve been paying taxes all along, and have already been contributing to the greater good.

    I guess my feeling is, it’s not so simple to just wreck housing prices. I absolutely feel like corporations, and probably some ultra wealthy don’t work that hard and get most of the rewards (or aren’t even people), like if the money has to come from somewhere there is a clear set of people who could afford to lose some wealth, and not materially effect their life; and that’s not necessarily single dwelling home owners.


  • I think what’s being said is: if housing prices lower, you are going to ruin some people’s retirement plan – at least some of those people will have worked hard their entire life to purchase and pay off that house. There’s been some incentive to save in this way as well (first time home buyer plan, tax deductions for more ecologically sound houses, that kind of thing).

    I suspect he’s probably right, that letting house prices drop would over all make things worse in Canada. My goto solution would be to subsidize housing by increasing taxes on corporations and people/corporations that own more than one house. but i’m not any kind of expert


  • I’m very lazy so I’d probably start by looking at filters on those sites, if i really wanted to tackle this with programming, i’d:

    see if there’s an api, or rss feed for these sites, if so i’d pull that down with a cron job and do filtering locally with probably regex.

    if not i’d scrape the html and pull out the relevant links with whatever the latest html parser is for the language i use (i.e. it used to be beautiful soup for python, but there’s i think a new better one).

    but as i said i’m rather lazy, and haven’t been on the prowl for jobs for some time.







  • I hear this quite a bit, and think there’s actually a good deal of nuance to it. I’ve seen places that insisted on comments for everything, and it was silly, a significant number of comments had no value. This made people not read comments, as opposed to other places I’ve worked with very few comments - when you ran across a comment you gave it more weight (something here was complex, or not as simple as it seemed).

    So imo, use comments which can communicate effectively, but use them sparingly for important parts that are complicated, for the rest attempt to communicate with the code itself.


  • Probably my quotes implied sarcasm, what i should have said is there are so many hats that a “software developer” or “software engineer” is really really broad like by the wikipedia definition at my current company we typically call those “principal engineers”, or “principal architect”; i’ve also seen them called staff software engineers.

    Likely it’s super domain dependent; the failure cost with a satellite’s or hardware cost you the business. Where with a website the MTTR can be very small. So a large oversight isn’t quite as needed, as the cost is so small.




  • For my local team: Generally a container (docker) for local dev. My team uses go so sometimes a Makefile without docker is enough. For other teams i’ve mostly i see docker.

    for multiple apps this can get more complicated, docker compose, or skaffold is what i generally reach for (my team is responsible for k8s clusters so skaffold is pretty natural). I’ve seen other teams use garden.

    hashicorp makes something called waypoint which i’ve never used. Nix people seem to be well liked as well.


  • I think of OOP as encapsulation, abstraction, and polymorphism primarily. Inheritance is definitely taught as part of it, but it seems like most people have found that to be the least used part of it.

    It seems like you understand oop, but find it overrated, from your post it sounded like you didn’t understand it – but maybe you meant you didn’t understand it’s popularity.