Skadabucci

joined 1 year ago
[–] [email protected] 1 points 10 months ago

My Mac book pro from 2019 charges properly on 3 of the 4 USB c ports it has. I have tried everything to get the 4th to work. All other peripherals work on that port. When I first got it, all ports worked. I feel this persona pain.

[–] [email protected] 10 points 11 months ago (2 children)

I have heard (and I forget the source) that it is advantageous for reviewers to give a new game a good score, otherwise they might not be invited to review early-access games in the future. With that in mind, the best reviews might come after launch.

[–] [email protected] 1 points 11 months ago

This isn't a pip issue though. Either these packages work together and the packaging is wrong, or they don't work together.

[–] [email protected] 3 points 11 months ago

This is my sentiment too.

[–] [email protected] 1 points 11 months ago (1 children)

An RPG that utilizes LLMs to interact with NPCs in meaningful ways.

[–] [email protected] 7 points 1 year ago (2 children)

Are these files that need renaming? You could open the terminal cd to the directory.

for filename in $(ls *.mp4); do
  if [[ "$filename" =~ some_file_match*.mp4 ]]; then
    modified_filename=
    cp $filename $modified_filename && rm $filename -f
  fi
done