

In the short term, custom tailoring seems like the best option. Yes it is expensive, but, if you want things to fit right, it is the best short-term solution.
Managing my life with these proportions has become nearly impossible, as every movement is difficult
However, the long term solution is to start losing that weight you picked up. You didn’t have this issue before, and you won’t after getting back to a more normal weight.
I want coders to learn from trusted sources too. How do you authorize a user and store the password (plain text, hash, encrypt)? Do you use MD5 or SHA-256? (Always hash passwords, don’t use MD5)
If you have to encrypt some information, do you use AES or Triple DES ? (never Triple DES)
When authorizing with OAuth, should one send the auth url, client id, client secret, scopes, and redirect url to the client machine? (yes, yes, no, yes, yes)
These are basic questions with answers that are easy to find…and many programmers get them very, very wrong. Mostly out of carelessness, often the question itself doesn’t even pop into their head.
Relavent XKCD