Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)C
Posts
1
Comments
136
Joined
7 mo. ago

  • Caddy makes HTTPS a breeze. I've tried nginx before but I never understood when and why I would need which setting.

  • What's bad about hairpin NAT? Not having to maintain a local DNS server is nice.

  • Do you need one app for syncing caldav and another app for using the calendar?

  • Deleted

    Permanently Deleted

    Jump
  • I learned from anther comment that this picture is from the Birmingham Civil Rights Institute.

  • Deleted

    Permanently Deleted

    Jump
  • Thanks! Much appreciated.

  • Deleted

    Permanently Deleted

    Jump
  • I'm not in the US.

  • Deleted

    Permanently Deleted

    Jump
  • I just read about "Racial segregation in the United States" on Wikipedia. Does signs like these still remain in places today?

  • Deleted

    Permanently Deleted

    Jump
  • I'm not from the US. I knew about Apartheid in Africa and I knew about the Triangular trade. I know that being a POC in the US comes with problems, for lack of a better description, compared to being a white male. I did not know that black people were seperated by law until around 1968 (according to Wikipedia, that is when segregation was outlawed in full, as of Civil Rights Act of 1964, Voting Rights Act of 1965, and the Fair Housing Act of 1968 (but not in de facto, because people)).

    As to my original question, I consider recent around the last five, perhaps ten years. I would imaging this picture being taken around 1970, before something like this (hopefully) would have been removed.

    EDIT: I should add that I also knew about black people and white people not mixing back then, but not that it was also by law.

    EDIT 2: Now that I think about it, this is depicted in Umbrella Academy.

  • Deleted

    Permanently Deleted

    Jump
  • What is the context behind this image? This cannot be recent, can it?

  • It was explained to be a translation error from a language with pronouns for all objects. I have to disagree with you on this one.

  • There is also the case when a computer is lost or stolen. With bitlocker on, the content of the computer cannot be accesses without the key, which the new owner will not have.

    I always thought that was the main point of using bitlocker.

  • That's when you open PowerShell ISE.

  • Install using winget: winget install LibreWolf.LibreWolf --source winget

  • A snapshot is like copying a the files in the snapshot to another location, while the original files remain as is and can be written to or read from.

    As an example, if you have a folder, let's say /important/secret/stuff, and you want to take a backup of it. You have to make sure that nothing is writing to those files while the backup is running, otherwise the backup risk being corrupted. (This is because if the backup starts to read the file, and halfway through the first part of the file changes, you now have a backuped file that half the old and half the new file).

    With a snapshop, you can "copy" /important/secret/stuff to some other location, run a backup reading from this other location and then remove it. Any changes to the original files will not affect the backup since the backup is reading from the "copied" files (snapshot).

    So what you do is take a snapshot before running the backup, have the backup read from the snapshot and when it is complete, remove the snapshot.