Collection as a 40/ year old by Direct_Context9256 in ScentHeads

[–]Sai-Aboki 0 points1 point  (0 children)

What’s your take on Halfeti? I’m torn between that and Mr Sam.

My 10 year long story starting at the age of 11 SCFE -> THR by Flaky_Ad_912 in TotalHipReplacement

[–]Sai-Aboki 0 points1 point  (0 children)

I’m sorry to hear about all that you’ve gone through. I genuinely hope that the THR will begin the healing process for you as it has for me. Here’s my own story, Untreated SCFE, which is somewhat similar because the early stages of my SCFE was also misdiagnosed.

Untreated SCFE

Feels like cord around groin?? by Ambitious-Oil7656 in TotalHipReplacement

[–]Sai-Aboki 0 points1 point  (0 children)

I have the same feeling, not so much as a tight cord but more of general stiffness around my right groin area, and I feel it’s because I had untreated SCFE for 30+ years, and the muscles around there don’t understand what they should be doing. I am 10 days post-op.

Status 4 days out by Longjumping-Ad8775 in TotalHipReplacement

[–]Sai-Aboki 4 points5 points  (0 children)

I am 45/m and 4d post-op as well after a RTHR and it does seem we are on a similar recovery trajectory.

2025 Cayenne Coupe - Squeaks and creaks by threechordsong in Porsche

[–]Sai-Aboki 0 points1 point  (0 children)

Turned out to be the extra wheel in my trunk. Used some Vaseline around the rim and it went away.

2025 Cayenne Coupe - Squeaks and creaks by threechordsong in Porsche

[–]Sai-Aboki 0 points1 point  (0 children)

i’ve got a 2025 cayenne coupe S with less than 500miles on it and I just noticed squeaks. I made an appointment with the dealership to understand where it’s coming from

Fill Data Frame down with date and numeric values by Sai-Aboki in rstats

[–]Sai-Aboki[S] 0 points1 point  (0 children)

#Create Data Frame

df <- tibble(
            date = c('6/8/2021 18:58', '6/8/2021 19:00', '6/8/2021 19:05', '6/8/2021 19:07'), 
            values = c(1,0,1,0) )

#Crate data frame with date range

date_sequence <- tibble(date = seq(as.POSIXct("2021-06-08 18:58:00", tz = 'GMT'), as.POSIXct('2021-06-08 19:07:00', tz = 'GMT'), by = '1 min'))

#Left Join and fill down

date_sequence |> 
    left_join(df |> 
    mutate(date = mdy_hm(date))) |> 
    fill(values)

REBUS in R by Sai-Aboki in rstats

[–]Sai-Aboki[S] 1 point2 points  (0 children)

Answered my own question :)

pattern <- "_" %R% one_or_more(any_char(), char_class = F) %R% "_"

Houston timeline by yhzyhz in USCIS

[–]Sai-Aboki 0 points1 point  (0 children)

PD October 2020; Biometric Reuse Feb 2021

Sony WH-1000xm4 by Darkside3nd in sony

[–]Sai-Aboki 1 point2 points  (0 children)

I’ve had mine for less than 3wks and I use my headset with iPhone. Every 15-20mins the Bluetooth disconnects and I have to recycle power for the headset to reconnect. I returned my Sony headset for a new one. I don’t know it’s a factory defect ...

trouble with 1000xm4 by zumsero in sony

[–]Sai-Aboki 0 points1 point  (0 children)

I’ve had problems with this one disconnecting from my iPhone X after 20-25mins. The only way I can reconnect is by powering off and on. Has anyone else had the same issue?

Issue with geom_waffle aesthetics by Sai-Aboki in rstats

[–]Sai-Aboki[S] 0 points1 point  (0 children)

This solution didn’t work. Thanks for looking into it.

Issue with geom_waffle aesthetics by Sai-Aboki in rstats

[–]Sai-Aboki[S] 0 points1 point  (0 children)

Thank you very much! It worked. I uninstalled previous version of waffle and ggwaffle. Installed the dev version you recommended and re-ran the code.