• 0 Posts
  • 59 Comments
Joined 9 months ago
cake
Cake day: December 30th, 2023

help-circle
  • survivalmachine@beehaw.orgtoMemes@lemmy.mlMe irl
    link
    fedilink
    arrow-up
    2
    ·
    5 months ago

    I can’t dispute that. I’m not a Word person. I live in Excel and often have half a dozen people working in the same file without issue, but that’s much more logically structured than a Word document. Google’s team sites are also disjointed and janky af compared to Sharepoint.






  • This was not allowed before. Until just recently, the technology didn’t exist to place icons anywhere in the grid. They would automatically smoosh up into orderly rows starting at the top-left with no gaps between icons. Apple is continuing to develop cutting edge innovation, though, and now you will be able to leave entire rows and columns empty, or any specific icon space you choose!










  • It depends on what you interpret kneeling to mean. In the US, kneeling for the flag or kneeling for the national anthem is a form of protest when tradition dictates that you should stand with your hand over your heart. In recent years, the act has made news due to NFL players (starting with Colin Kaepernick) kneeling in protest of police brutality and racial inequality in the US. It is not an act of reverence as if you were kneeling before a ruler or deity.

    Kneeling for the US flag and supporting communism/socialism and LGBTQ rights are all very leftist concepts.



  • The POSIX standard is more portable. If you are writing scripts for your system, you can use the full features in the main man pages. If you are writing code that you want to run on other Linux systems, maybe with reduced feature sets like a tiny embedded computer or alternates to gnu tools like alpine linux, or even other unixes like the BSDs, you will have a better time if you limit yourself to POSIX-compatible features and options – any POSIX-compatible Unix-like implementation should be able to run POSIX-compliant code.

    This is also why many shell scripts will call #!/bin/sh instead of #!/bin/bash – sh is more likely to be available on tinier systems than bash.

    If you are just writing scripts and commands for your own purposes, or you know they will only be used on full-feature distributions, it’s often simpler and more comfortable to use all of the advanced features available on your system.