• 0 Posts
  • 91 Comments
Joined 2 years ago
cake
Cake day: August 13th, 2023

help-circle
  • There’re a lot of privacy enthusiasts who seem to view privacy as a binary. So because Mozilla isn’t perfect, it’s as bad as can be.

    They also commonly have little understanding of the underlying technology, law, business, etc., which I guess is why they can’t do any threat modeling. They’re just really scared of a nebulous threat they do not understand. Which I can sympathize with.

    But privacy then becomes more about “staying pure” in some abstract sense, rather than about avoiding concrete threats.

    (As a tip to those who want to do better, any real security starts with threat modeling. There is no such thing as perfect security, it’s always a tradeoff. So you must do threat modeling to make sure you’re putting your resources where they will make a difference.)










  • kattfisk@lemmy.dbzer0.comtoADHD memes@lemmy.dbzer0.comDAE...
    link
    fedilink
    English
    arrow-up
    5
    ·
    2 months ago

    It’s mind boggling how different the modern concept of work is from how it was for 99.9% of human existence.

    I’m sure the hyper-optimization, hyper-specialization, the alienation, and the constant flux of modern work contributes greatly to the problems we are experiencing.

    Even when there was no “adventurous alternative”, work was a lot more grounded in society and had a lot more downtime at pretty much any point in history.







  • A neat thing is that a lot of command line programs use readline. So learning and configuring it will also be useful in for example the Python REPL and calc.

    Here are some neat configuration options you can put in ~/.inputrc

    set completion-ignore-case on
    set show-all-if-ambiguous on
    set completion-prefix-display-length 9
    set blink-matching-paren on
    set mark-symlinked-directories on
    

    And if you are a sensible person who is used to vim

    set editing-mode vi
    set show-mode-in-prompt on