• 0 Posts
  • 74 Comments
Joined 1 年前
cake
Cake day: 2024年8月12日

help-circle




  • The “biological reason” is “societal preconditioning”. Its Disney movies, toys marketed towards small girls, television, social media…

    Despite many advancements in equality, marrying a rich man is still seen (and marketed) as a live goal for women.

    Also, wedding and princess are pretty mutch the same thing for a girl. Pretty dress, center of attention, presents, etc. Its not about “getting married”.




  • groet@feddit.orgtoMemes@sopuli.xyzFor all you inked people
    link
    fedilink
    arrow-up
    11
    arrow-down
    3
    ·
    9 个月前

    So many decisions are permanent. Philosophically speaking, every decicsson is. If you decide to get that burito later you will forever be the person that decided to get that burito in that decision.

    Someone decides to go to college and spends 5 years there. That is forever. They can decide to go into a different profession of course or get a second degree in something else but those 5 years are gone. And that decision should be mutch mutch mutch more relevant to somebody hiring you that a cosmetic decision. And yet we say to children that they can change their courses and degrees if they are not right but we say a tatoo is a mark against you forever.

    Its 100% prejudice from a time when tattoos were (in western society) mainly related to gang association. A point that is 0% relevant today.












  • If you want to calculate the cipher on paper everything that works on binary will be a huge overhead and basically require you to write stuff down for the calculations. So you need to burn sheets of paper for every en/decryption. So no XOR or anything.

    I would go for a stream-caesar-cipher. Find a mathematical formula that you can calculate in your head and that gives you a numbers between 1-35 (or something similar depending on how many different characters you need). The formula must be pseudo random so f(x)=5, f(x+1)=1, f(x+2)=28, … and not loop for a looooong time. Calculate a new value FOR EVERY LETTER OF YOUR TEXT!!! and use that as your Caesar cipher for that letter only (x is the position of the character in the text)

    You need to keep track which letter in your cipher text was encoded with which x (write the x of the first letter of each page down) and keep the formula a secret. Never ever under any circumstance reuse an x. So you need to keep x going for every page/message and can’t restart at 1 each time.

    If x becomes to large and the calculations to complicated, its better to change the formula than to restart x. Never ever ever ever reuse the same cipher because then you get all the drawbacks of Caesar ciphers (probability of letters, length of words (position of the space character) etc).