• 0 Posts
  • 111 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle












  • Yeah, I tried it toasted. I dealt with this for over two months. I tried just about everything. I know everyone is coming from a good place with these suggestions. I’m trying not to come across unpleasant, but it feels like it has the same energy as asking a depressed person if they’d tried being happy before.

    I promise, I tried it. I put effort into putting food into my body that wouldn’t get caught in my throat and make me feel like I was going to choke and die. At one point I had 7 appointments with 6 different doctors in a two and a half week span. I really genuinely put effort into finding something I could eat. Soylent and mashed potatoes and soggy bread got me through it. I got sick of people telling me how much weight I’d lost like I didn’t own a mirror. I got sick of people telling me I’m just not cooking things right.

    I went through something I think is similar to op, and I offered my suggestions. I’m not saying this is what op or anyone needs to do.

    I’m just saying this is what helped me when I couldn’t eat, give it a shot if you want.


  • My issue was with my swallowing. So actual toast was too crunchy to reliably get down. When the butter melted in the microwave, it sort of “set” into the bread. So it was super soggy and easily “dissolved” in my throat. So I personally couldn’t really eat “solid” foods. Microwaved cinnamon toast was the best way I found to get carbs.

    Edit: could to couldnt


  • Yeah Soylent is still my go to for breakfast since I have a hard time eating in the mornings in general. I definitely am glad I can eat solid foods now, but Soylent is definitely convenient, easy, and nutritional.

    I will admit I’ve only ever had the chocolate and vanilla. I’m not a big vanilla guy, so I pretty much “ate” only chocolate Soylent for a couple months lol. I had to “eat” more often since it’s only 320 I think calories per drink, though. I personally had a goal of 5 a day, so it was definitely hard to keep up the pace, and it got expensive for a time there.



  • I’ve had illness that broke my swallowing. Soylent is relatively good tasting, has the nutrients you need, and goes down fast and easy. It isn’t pleasant to live on, but I did it for almost two months and it was way better than only eating soggy bread. I definitely recommend Soylent.

    Edit: there’s also (I’m sorry I don’t remember the brand) a really good cinnabon breakfast shake that tastes good and helps break up the monotony of a meal replacement shake only diet.



  • The public key doesn’t decrypt the information. The public key is used only for encryption. The private key is what is used for the decryption. Since the private key is on-device, there’s no way to get access to the decryption. It’s actually a bit more complicated than I wanted to go into for an already ridiculously long comment, but I’ll explain a bit more here.

    With a hard drive, you have one key. This kind of encryption is called symmetric encryption. It uses a single private key, and that key can be used to decrypt at any time.

    E2E encryption uses what is called asymmetric encryption. The key used to encrypt the information is actually the recipients public key. This is where some information is exposed to Apple (or anybody else who uses a directory lookup to find a public key). That lookup tells Apple who and how often you are messaging. This they will absolutely give to law enforcement with a warrant. It doesn’t tell a lot, but it does give information about your correspondence.

    Once the information is encrypted, the matching private key is the only thing that can decrypt the content. This also places a vulnerability because if somebody sends a different public key, now the message is decryptable by the bad actor.

    So because of the two key system, the private key for each individual is inaccessible to anyone except the individual. It’s actually a really cool concept. This is how HTTPS functions as well. TLS (it’s just the cryptographic protocol HTTPS uses) creates a secure connection using asymmetric encryption. The information it sends then uses symmetric encryption.

    I’m a developer, and not an information security expert, so some of this may not be completely accurate, but it should be accurate for the most part. If you’re interested at all I would definitely suggest looking into it because I think it’s super neat.

    Of course if you have any more questions I’m willing to talk as well.