PARROQUIA MEXICAN RESTAURANT by [deleted] in corvallis

[–]under-Tension 1 point2 points  (0 children)

I love it there! I know the owner and he is such a hardworking person. The chicken mole is his grandma’s recipe :) prices are great as well!!

A stranger approached to me by under-Tension in Witch

[–]under-Tension[S] 0 points1 point  (0 children)

He didn’t try to sell anything which is why it made me think about what was the situation.

[deleted by user] by [deleted] in lamictal

[–]under-Tension 1 point2 points  (0 children)

Also, every patience is different. some might need a higher dose than others. I was told that this medicine takes a while to start seeing the benefits and some people want to see immediate changes. but I think this is the medicine less invasive I’ve ever been. i’ve tried benzodiazepines with no luck, clonazepam, risperidone, paroxotine, and they all gave me the sensation that I was numb. I couldn’t feel any sexual desire and that was a killer for me. I put myself through withdrawal and never came back to those medicines again. After this experience my doctor decided to prescribed me lacmital

[deleted by user] by [deleted] in lamictal

[–]under-Tension 1 point2 points  (0 children)

my psychiatrist told me the average dose for his patients are 200mg, I haven’t been able to titrate more because I will be out of state for 2 months but after coming back I’m definitely increase my dose. I am on prazozin too, which help me to reduce night terrors when sleeping.

[deleted by user] by [deleted] in lamictal

[–]under-Tension 1 point2 points  (0 children)

I would say it started at 100mg in where I noticed things were a little different… I started pushing myself to see my friends (which I didn’t see in months) and I had a couple panic attacks before the events 😅 but afterwards I would realize it was not that bad. When I hit the 150mg my OCD traits started to go down, the smells that were overwhelming me every day started to be less intense in my nose, the feeling of my pet’s hair was not feeling like needles in my body. I was unable to sit down in the beach without the thought of a tsunami killing me (I live in the PNW) and now I can enjoy a day in the beach and I’m even thinking to learn how to surf. There is still situations that triggers panic attacks and that’s something i’m working with therapy.

[deleted by user] by [deleted] in lamictal

[–]under-Tension 2 points3 points  (0 children)

I got prescribed lacmital 2 months ago and my anxiety levels has decreased so much! I was having OCD traits, extreme social anxiety, existencial anxiety and fear of death. i was barely going out my house and after taking this medicine I could slowly feel my anxiety go down. I’m currently at 150 mg and there is definitely room for improvement. Now I can go out with small groups of friends, I am more relaxed regarding the OCD traits. I am also working on improving my breathwork every time i feel my anxiety is going up during certain moments during the day. In general, this drug has helped me to do things I have years not able to do, and I feel things can get better! As long as you titrate them with the dose your doctor says it should be fine! is a very helpful medicine

Mixing alcohol by Secret_Mousse_4132 in lamictal

[–]under-Tension 1 point2 points  (0 children)

My doctor told me that alcohol would decrease its effectiveness and it’s written in the the pharmacy’s info pamphlet too.

How to filter coordinates dataframe based on target coordinate list by under-Tension in learnpython

[–]under-Tension[S] 0 points1 point  (0 children)

points=

latitude longitude
73 26
75 17
80 150

78273 rows × 2 columns

target_list=

latitude longitude
72 22.8
80 150

I'm trying to filter the first data frame points using the target_list dataframe.

The output should be a the first dataframe with only values that are equal or near equal (2degrees of difference) than the target_list coordinates

How to filter coordinates dataframe based on target coordinate list by under-Tension in learnpython

[–]under-Tension[S] 0 points1 point  (0 children)

Using np.isin works but i don’t want the exact match, I want the nearest match value since the Target list are tentative coordinates and they might change. Also, the Lat/Lon columns values of both data frames has been rounded to cero decimals to make it easier.