• 0 Posts
  • 183 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle
  • It always comes down to the vendor and driver.

    On Linux, I had to go through a dozen different drivers and just as many driver versions before I found the one that worked with my printer. For Windows, it worked immediately.

    With my old printer, though, it was the opposite experience. Took forever to get it working on Windows but Linux got it immediately.

    You’d think by now, with the dozen different printing standards that exist, we’d have some sort of plug and play driver that could work with every printer.















  • That would be great, but you can buy a $20 burner from a gas station that’s more powerful than those phones.

    The regular version uses the Allwinner A64 chip which retailed for $5 when it was released… Back in 2015.

    The Pro version uses the RK3399S, which is a custom lower binned version of the RK3399. Neither chip was made available retail, but the SK3399 was released in 2016 and only otherwise used in low-end Chromebooks and SBCs.


  • droans@lemmy.worldtoMemes@lemmy.mlEmail clients
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    I’ve got no problem with it, especially after I created some macros to tag and sort my emails.

    Not Oracle Cloud ERP/EPM though. Those are the worst programs I have to use on a daily basis. For whatever godforsaken reason, the Smart View extensions for the Office apps are all connected to each other so if you’re running some SV function in Excel, Outlook will freeze up.

    No worries, you can just disable the plugins in the other apps, right? Wrong. The plugins automatically re-enable each other.


  • I had a problem with some software I was using a few weeks back. I googled the error and the one result was a closed GitHub issue matching it exactly.

    The sole reply just said that the poster should stop being lazy because the problem has been discussed in other issue reports.

    Except that was the very first issue created for that repository.




  • It’s only the wrong solution if you’re writing something where every operation needs to be accounted for. Modulo is a great, easy, readable method otherwise.

    Not too certain on C++, but I think this would be the cleanest implementation that still somewhat optimizes itself:

    private bool IsEven(int number){
        return !(number % 2)
    }