Many fall in the face of chaos, but not this one, not today

  • 8 Posts
  • 28 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle

  • Pencilnoob@lemmy.worldtoMicroblog Memes@lemmy.worldEmpathic
    link
    fedilink
    English
    arrow-up
    13
    arrow-down
    1
    ·
    18 days ago

    With an open field, who would you vote for president?

    Now given the field has two candidates, who do you think will do a better job between the two? I’m actually curious to hear your answers and why.

    Your comment here indicates you think being able to talk over others is an important part of the job. Why do you see that as an important attribute? Does the President of the most powerful country in the world often need to be the loudest person in the room? Do they need to dominate conversations, preventing other people from talking, to do their job effectively?








  • Definitely include a graph of shareholder value overlayed on top.

    Sarcasm aside, maybe we should have a graph that also shows:

    • average hours worked a year
    • average number of sunsets a person sees before they die
    • average hours spent with loved ones per year
    • average rent
    • average hours worked to pay for groceries
    • average hours spent doomscrolling on social media
    • average student loan debt payments
    • suicide rate
    • average zoom calls a year
    • happiness

    And see that by basically all metrics we are working more, paid less, more depressed, more stressed, and unhappy.









  • I suppose this is a hot take, but I’d never intentionally select a closed source paid database or programming language. Your data is the most valuable thing you have. The idea that you’d lock yourself into a contract with a third party is extremely risky.

    For example, I’ve never seen a product on Oracle that didn’t want to migrate off, but every one has tightly coupled everything Oracle so it’s nearly impossible. Why start with Oracle in the first place? Just stay away from paid databases, they are always the wrong decision. It’s a tax on people who think they need something special, when at most they just need to hire experts in an open source database. It’ll be much much cheaper to just hire talent.

    Meanwhile I’ve done two major database shifts in my career, and you are correct, keeping to ANSI standard SQL is extremely important. If you’re on a project that isn’t disciplined about that, chances are they are undisciplined about so many other things the whole project is a mess that’ll be gone in ten years anyway. I know so few projects that have survived more than fifteen years without calls for a “rewrite”. Those few projects have been extremely disciplined about 50% of all effort is tech debt repayment, open source everything, and continuous modernization.









  • I like React because these days it’s pretty well known and just about anything I need I can find easily. There’s newer similar tools like Vue, or entirely different approaches like Next, but React remains a dominant choice for the time being. I’m sure fashion will move the industry along soon enough, but none of the newer tools I’ve seen really are such a huge leap forward that I couldn’t get stuff done in a few days of prep and tutorials. So for now, I’ll stick with react until I need to move or a client requests it.

    For backend I’m increasingly preferring simple Restful APIs. If it can map an endpoint to a function and convert JSON into a dictionary or object, it’s probably good enough. I just wrapped up a project in ASP.Net Core and that pretty much just got out of the way and let me make web API endpoints.