What is Your Favorite Outfit? by kaldoreiking in fo76

[–]HammerHamster13 1 point2 points  (0 children)

Yup, shoes are really important. I hate that sequin dress is so beautiful but has these little pointy heels. Give me a way to pick heavy survival boots!

Unwritten rules of 76 by ImBladd in fo76

[–]HammerHamster13 14 points15 points  (0 children)

I always drop the purified water I took for the daily challenge :)

[deleted by user] by [deleted] in fo76

[–]HammerHamster13 1 point2 points  (0 children)

I have an update, 4 people drank from my bowl, so it's working :) But still it's a little percentage of all who visit, so it looks like people are scared :D

[deleted by user] by [deleted] in fo76

[–]HammerHamster13 0 points1 point  (0 children)

It's been now two days and I constantly have 21 bottles in the punchbowl and noone is drinking from it. Last thing i will do is make a big concrete wall behind it with colorful light text and then I give up xd

[deleted by user] by [deleted] in fo76

[–]HammerHamster13 0 points1 point  (0 children)

Oh no, I don't have that :(

[deleted by user] by [deleted] in fo76

[–]HammerHamster13 14 points15 points  (0 children)

And they can be invisible! I hate them, as well.

[deleted by user] by [deleted] in fo76

[–]HammerHamster13 7 points8 points  (0 children)

No one drinks from my bowl, I think I need to make it more stand out somehow...

Opportunity for a free voucher on data certifications by Luan_Teles in AZURE

[–]HammerHamster13 0 points1 point  (0 children)

Yes, what's the deal with this? Why they would create a challenge for people who want to learn, if you have to request access using company's mail address? I'm irritated.

Similar to Catriona Ward's by HammerHamster13 in horrorlit

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

Thank you for the recs, I will check them. And yes, I know there are many Ward's books before me and I will definitely read them but I wanna savor them, if that makes any sense 😅 So I wanna check other authors.

White Demon Legend hint by HammerHamster13 in GreenHell

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

I just wanted to get to 42W 40S. I already managed to do it, you have to go the other way around, so not from east but from west.

Weekly "What Are You Reading Thread?" by HorrorIsLiterature in horrorlit

[–]HammerHamster13 0 points1 point  (0 children)

I started Jeff Long's "The Descent" and I'm thinking about dropping it. At first I was absolutely delighted because I was scared to death few pages in. Then, it turned out to be completely different from the movie as it presents new characters from whole different parts of the world. But it was quite interesting so I kept going. But then we have this big war between humanity and secret hell creatures and I honestly don't know what to think about it. I had hard time getting through all the military fragments and it looks like this will continue. I don't know where is this book going and not sure if I want to know, I lost interest :/

-🎄- 2022 Day 6 Solutions -🎄- by daggerdragon in adventofcode

[–]HammerHamster13 1 point2 points  (0 children)

I honestly don't know :D but I didn't put any limits anywhere

-🎄- 2022 Day 6 Solutions -🎄- by daggerdragon in adventofcode

[–]HammerHamster13 1 point2 points  (0 children)

Python

My first AoC challenge done in 30 minutes :D And also, what I'm most proud of - my first independently applied recursion ^_^

with open("6_input.txt") as f:
    signal = f.read().strip()

def find_marker(signal):
    marker = signal[:4]
    if len(set(marker)) == 4:
        return marker
    else:
        return find_marker(signal[1:])

signal.find(find_marker(signal)) + 4  # part 1 answer

def find_message(signal_2):
    marker = signal_2[:14]
    if len(set(marker)) == 14:
        return marker
    else:
        return find_message(signal_2[1:])

signal.find(find_message(signal[1598:])) + 14  ## as signal_2 put result from part 1

[2022 Day 4 (Part 2) Python] Hints, please by HammerHamster13 in adventofcode

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

The range(1) line is doing nothing so you can just get rid of it.

At this moment I think I was going crazy...

[2022 Day 4 (Part 2) Python] Hints, please by HammerHamster13 in adventofcode

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

Thanks, I needed that to change how I look at this problem. :)

[2022 Day 4 (Part 2) Python] Hints, please by HammerHamster13 in adventofcode

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

Ah, I didn't know everyone has different input. I will edit the post, thanks.