• 1 Post
  • 147 Comments
Joined 1 year ago
cake
Cake day: June 28th, 2023

help-circle
  • You’d be surprised how little math is involved in programming that doesn’t require it. A significant majority of programming is simply managing conditionals. For example: “when the door opens, turn on the light.”

    Math comes into place when you need it, and hardly ever comes as a surprise. Additionally, solved problems are generally kept in libraries. For example, you don’t need to calculate a sum; simply tell it to calculate a sum for you, because this is a solved problem.

    What you’re already running into is called “impostor’s syndrome.” You believe that you are not capable of something to some degree, even though reality says otherwise. You haven’t tried your hand at programming, so why worry now? You’re inventing problems for yourself before you even got a chance to start.

    Just go for it and see what you think. If you don’t enjoy it, no biggie. If you do enjoy it, keep going. No obligations 👌





  • You’re talking to a 40 year old with no future working three minimum wage jobs who will be homeless if any of them let him go.

    Well that’s a wild assumption.

    Be kinder to fellow working class people. Hold the capitalists responsible for creating this situation in the first place.

    I am kind, I promise. Voices often get raised at me when confirming my order, and I stay calm anyway. I’m not obligated to get yelled at for simply trying to place an order.


  • I own the LCD deck and goofed off with the OLED deck. The screen is perfect, just like I imagined. But the thing that caught me off guard was how much lighter it feels. They say it’s 30% or something lighter, but because of the way that you typically hold it, it feels half the weight. The joysticks also have a deep recess on the inside, which makes your thumbs slip a lot less.

    Overall, I would say that if you currently have a Deck and play it every day, if you can sell your old one for a reasonable price, the cost is probably worth it. If you’re a casual gamer and you only play every so often, the upgrades on the new Deck are great to have but probably not worth the cost. As a new purchase, OLED without question.



  • Synthead@lemmy.worldtoProgrammer Humor@lemmy.mlWhich other AI product is like this?
    link
    fedilink
    English
    arrow-up
    10
    arrow-down
    5
    ·
    edit-2
    7 months ago

    I’m a vegetarian. Ordering an impossible burger off the broiler from Burger King always seems to make the drive-thru person want to fight me, for some reason. They’re often too occupied to hear what I’m saying well, and they don’t always put it on the screen right away. When I ask to confirm it, ~80% of the time they give me lip service.

    This is my metric. As long as Burger King keeps giving me shit, I’m in favor of AI replacing their jobs. If they were kinder, I would never think this. To be honest, this experience has kept me from going to Burger King most times. Try ordering this at 10 places that aren’t dead and you’ll see what I mean.










  • I think Docker is a tool, and it depends on how you implement said tool. You can use Docker in ways that make your infra more complicated, less efficient, and more bloated with little benefit, if not a loss of benefits. You can also use it in a way that promotes high uptime, fail-overs, responsible upgrades, etc. Just “Docker” as-is does not solve problems or introduce problems. It’s how you use it.

    Lots of people see Docker as the “just buy a Mac” of infra. It doesn’t make all your issues magically go away. Me, personally, I have a good understanding of what my OS is doing, and what software generally needs to run well. So for personal stuff where downtime for upgrades means that I, myself, can’t use a service while it’s upgrading, I don’t see much benefit for Docker. I’m happy to solve problems if I run into them, also.

    However, in high-uptime environments, I would probably set up a k8s environment with heavy use of Docker. I’d implement integration tests with new images and ensure that regressions aren’t being introduced as things go out with a CI/CD pipeline. I’d leverage k8s to do A-B upgrades for zero downtime deploys, and depending on my needs, I might use an elastic stack.

    So personally, my use of Docker would be for responsible shipping and deploys. Docker or not, I still have an underlying Linux OS to solve problems for; they’re just housed inside a container. It could be argued that you could use a first-party upstream Docker image for less friction, but in my experience, I eventually want to tweak things, and I would rather roll my own images.

    For SoC boards, resources are already at a premium, so I prefer to run on metal for most of my personal services. I understand that we have very large SoC boards that we can use now, but I still like to take a simpler, minimalist approach with little bloat. Plus, it’s easier to keep track of things with systemd services and logs anyway, since it uniformly works the way it should.

    Just my $0.02. I know plenty of folks would think differently, and I encourage that. Just do what gives you the most success in the end 👍