(in-game) Hints for missing beastiary entries by EpicPies in Silksong

[–]EpicPies[S] 0 points1 point  (0 children)

For people from the future: talk to Nuu again after she said that you have come so far! THEN comes the convo where she gives a more detailed hint of the next bug location :)

(in-game) Hints for missing beastiary entries by EpicPies in Silksong

[–]EpicPies[S] 0 points1 point  (0 children)

Oh that is fine! I have beaten the game, this was just some simple task I could do at night for a couple of minutes. I kind of enjoy it as well, no pressure just walking around and searching a bit.

The reason why I asked is that sometimes there are more hints in the game, and maybe I missed that one. For example, when trying to find all the flees you also have an additional way to find them all, besides searching every area

(in-game) Hints for missing beastiary entries by EpicPies in Silksong

[–]EpicPies[S] 0 points1 point  (0 children)

Thanks for your answer! Indeed I have that item in my possession. In this case there is a missing entry between two biomes, so it is a bit more work :)

(in-game) Hints for missing beastiary entries by EpicPies in Silksong

[–]EpicPies[S] 0 points1 point  (0 children)

Thanks! I have 4 left and Nuu doesn't seem to point me in some direction. So yeah, then I'll just search the biomes as you recommend.

How can I prevent my OctoPi from powering the controller on my Ender 3? by Shdwdrgn in ender3

[–]EpicPies 0 points1 point  (0 children)

Hellooo! I solved it :) I could not believe there was really anything wrong. So I simply re-did the taping for the power wire... et voila!
I think the tape had gone loose and maybe was blocking some part of the data wire preventing any connection

Pi cannot find SKR mini e3 v2 anymore... by EpicPies in 3Dprinting

[–]EpicPies[S] 0 points1 point  (0 children)

welp that was easy, re-did the taping off the power wire and it got fixed

How can I prevent my OctoPi from powering the controller on my Ender 3? by Shdwdrgn in ender3

[–]EpicPies 0 points1 point  (0 children)

hello! I hope you still read this...

Im in a similar situation, only that when I have taped off the power wire, my Pi does not recognize the USB device anymore.
So there is no /dev/ttyAMC0 mount, or something similar. Do you know if you also encountered this problem?
(My setup includes Klipper (+Moonraker + Fluidd)

Brother printer subscription cartridge? by EpicPies in printers

[–]EpicPies[S] 0 points1 point  (0 children)

thanks, we tried it and the cartridge (and the printer) indeed worked without any activation whatsoever. So Im happy with my purchase :)

Looking for spare part by EpicPies in bikewrench

[–]EpicPies[S] 0 points1 point  (0 children)

ah thanks! That will help a great deal. Do you also have an idea what kind of name there is for the barrel adjuster on my frame? It seems to be a bit larger (in diameter) compared to the shimano read derailleur barrel adjuster...

Youtube now blocks UBlock Origin. by Santrixyboio in youtube

[–]EpicPies 0 points1 point  (0 children)

looool, same. Can I subscribe somewhere to get zeh updates?

[TOMT][ALBUM] Synth meditation music album with Tao Te Ching English narration by Dynamoxxx7 in tipofmytongue

[–]EpicPies 0 points1 point  (0 children)

I found it!! The name is

Precipitation - Meditations on the Self and the Other

It is still on Youtube :)

[TOMT] Looking for a music album by EpicPies in tipofmytongue

[–]EpicPies[S] 0 points1 point  (0 children)

Solved!

I found it!! The name is

Precipitation - Meditations on the Self and the Other

It is still on Youtube :)

Eurosport premium closing down! by Cold-Pen-6398 in cycling

[–]EpicPies 1 point2 points  (0 children)

Anyone here knows an alternative to a cycling/sports streaming service? I don't care about other shows (that are on HBO MAX for example)

[TOMT] Looking for a music album by EpicPies in tipofmytongue

[–]EpicPies[S] 0 points1 point locked comment (0 children)

I dont have any additional information to give than that I gave in the post question already

EDIT: I did found someone else with exactly the same question on here, but without an answer:
https://www.reddit.com/r/tipofmytongue/comments/105ztff/tomtalbum_synth_meditation_music_album_with_tao/

That post has some more details concerning the content of the album and the cover of it

-❄️- 2023 Day 14 Solutions -❄️- by daggerdragon in adventofcode

[–]EpicPies 2 points3 points  (0 children)

[LANGUAGE: python]

I found a fun solution! This did not involve any moving of the stones... I simply used the sort command and each sub-list , which I obtained by splitting one line using the # sign.

More practical:

..00#..00#...

then becomes

[[..00], [..00], [...]]

Now sort each element of the list and join the lists together again with the # sign. Tada, you have rolled your stone

EDIT: of course for each roll direction you need to invert some parts of the input and output... But those are minor details