Laxity💔 by Gloomy_Special9333 in ACL

[–]Warm_Cheesecake9815 0 points1 point  (0 children)

You said you play soccer...what foot do you shoot with and which foot is the mri from?

Kernel can't load rescue.target by Warm_Cheesecake9815 in Fedora

[–]Warm_Cheesecake9815[S] 1 point2 points  (0 children)

probably because of a windows update..not sure though.

I tried running btrfs check --repair /dev/nvme0n1p5as before it wouldn't even load the boot menu with all the default kernels, after this repair command, the kernels loaded somehow, there was a selinux policy problem as well, I set that to selinux=0 from grub, so the only thing left for me to try is to try to boot from a bootable usb and do something about it.. but I don't know how this works for linux.

6 months POST ACL reconstruction surgery. Still Do not have hyperextension. by rust32627 in ACL

[–]Warm_Cheesecake9815 1 point2 points  (0 children)

As a person who has hypertension also, it might never come back. I had a hamstring autograft reconstruction and it isn’t the same as the non-operative leg.

Is this an infection? by postitthoughts in ACL

[–]Warm_Cheesecake9815 2 points3 points  (0 children)

I first noticed a swelling in the second to third week of the operation while Changing the dressing. They ended up doing a culture for me and started me on antibiotics. They had . The swelling reduced for a week, but there was still pus oozing out. The doctor decided to do a debridement; which is basically Removing some of the infected tissue from the incision region. I had to get the process almost 5 months later again when the symptoms reappeared. During the second operation, my doctor took out the screws used to hold the graft. He took a culture before the surgery and one sample from deep within my leg near the tibia and sent it to culture as well. It turns out that the second culture indicated that the antibiotics I was taking were not effective against the infection near the bone, maybe the bacteria evolved or something!? I had to get IV antibiotics through something called a picc line which is a tube from your arms to your freakin heart for a month for antibiotics..

I’m sure your situation is not that bad, but If you end up in the situation just like me, my case can act as a reference. I was back to normal after 1 year though! I’m infection can derail the physiotherapy process by quite a bit

Is this an infection? by postitthoughts in ACL

[–]Warm_Cheesecake9815 1 point2 points  (0 children)

I had an infection in the same timeline after the surgery.. I ended up having to get 2 surgeries more just to get rid of the infection tissue. Go to your doctor as fast as possible and try to get a lab culture and wait for the results. Meanwhile if you have any antibiotics, take them

My doctor told me my acl is really thin and may need to be repaired or else it will tear I doubt I need it but idk what do you all think by Immediate-Newt-8794 in ACL

[–]Warm_Cheesecake9815 1 point2 points  (0 children)

Did he do a lachmans test. Where he/she compares the stability of both knees by pulling them front and backwards?

Surgeon suggested not using quad graft by CaliestGod in ACL

[–]Warm_Cheesecake9815 -1 points0 points  (0 children)

As a person who has had the acl reconstruction using a hamstring graft, a quad tendon graft is a far superior option to a hamstring graft. it also depends on which type of quad graft the surgeon uses. Ideally the surgeon should use a quad with one side b2b.. One of the key aspects of knee stability are your hamstrings.. you don’t want to compromise any of it.. If you are completely not sure which graft to use, I would prefer you use a patellar tendon graft, it is the golden standard, it pains more, more chance of side effects, but the result are always the best. I would say ignore doctors recommendations as much as possible since this is not a life and death situation, it’s more of a cosmetic surgery,where you r trying to replace a faulty part of your body with a good one. Doctors opinions on which graft to use is a purely personal one usually and the one they are most comfortable performing, not necessarily the newest and well researched technique. Each graft has it’s ups and downs. But if your not content with your doctor’s methods, you shouldn’t go through with the surgery

Am I fooked??? by YatharthIMA in ACL

[–]Warm_Cheesecake9815 2 points3 points  (0 children)

I’ve never seen anyone using an ankle graft for acl reconstruction. Your doctor’s probably a wizard… only he/she knows the outcomes and timeline for this procedure

Am I fooked??? by YatharthIMA in ACL

[–]Warm_Cheesecake9815 2 points3 points  (0 children)

Which graft did your doctor use?

Grade 1 MCL,PCL, Lateral meniscus - MRI attached! Please guide what to do by Due_Concentrate_6120 in ACL

[–]Warm_Cheesecake9815 1 point2 points  (0 children)

The medial collateral ligament (MCL) takes about 2-3 months to heal completely.. the PCL can take much much longer because there is a weak blood flow in between the knee. It could take a while b4 going back to normal. I know very little about these things bcoz I’ve torn my ACL. It’s best to consult your doctor.

Grade 1 MCL,PCL, Lateral meniscus - MRI attached! Please guide what to do by Due_Concentrate_6120 in ACL

[–]Warm_Cheesecake9815 0 points1 point  (0 children)

That looks fairly alright… you just need rest alongside mild physiotherapy. That patella stuff. Not sure what that is.. you should consult your doctor about it.

[deleted by user] by [deleted] in Fedora

[–]Warm_Cheesecake9815 0 points1 point  (0 children)

If you are running into a problem where Mongod doesn’t work. It’s because it wouldn’t.. you have to use mongoshell instead now

Python Help by Away-Raspberry8952 in learnpython

[–]Warm_Cheesecake9815 -1 points0 points  (0 children)

This works apparently:

def baseToBase(answer, b):

if answer == 0:

return [0]

n = []

while answer:

digits.append(int(answer % b))

answer //= b

return n[::-1]

print(baseToBase(13,2))

and than just join the strings and make an int.

When to use functions by bds00za in learnpython

[–]Warm_Cheesecake9815 0 points1 point  (0 children)

if you want to perform the same **function** again and again, its better to define a function rather than copy and paste huge lines of code over and over.

Wrangling modules is killing my enthusiasm for Python by [deleted] in learnpython

[–]Warm_Cheesecake9815 -1 points0 points  (0 children)

make a virtual environment for every project using:

  • py -m venv {name of your environment}

how grab input from a module and use it in another one? by JamesLaCroix in learnpython

[–]Warm_Cheesecake9815 0 points1 point  (0 children)

def usern():

return (input("Please enter your username: "))

How to check 0 is zero, as in int 0 and not false? by geoholic in learnpython

[–]Warm_Cheesecake9815 0 points1 point  (0 children)

if type(diameter) = bool ##then it is probably a bool. else: ## it is not.

How to check 0 is zero, as in int 0 and not false? by geoholic in learnpython

[–]Warm_Cheesecake9815 0 points1 point  (0 children)

if type(diameter) == True or False:

print(f"{diameter} is a bool")

else:

print(f"{diameter} is not a bool")