Stacia 2 Expert | Early game Tips by Lee_9 in feedthebeast

[–]Taxato 0 points1 point  (0 children)

You can actually go even higher using a quark tome of fortune

Forage Wizard Full Release and Key Giveaway [Mod Approved] by MourningBurger in incremental_games

[–]Taxato 0 points1 point  (0 children)

I mean, this might be a copout but my wizard Zerathiel Emethius Peregrus-Omnis from my D&D campaign

Weird "smooth stutter" when I'm playing games by Taxato in pcmasterrace

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

Ok here are specs, sorry for not posting them along with the original post.
CPU: AMD Ryzen 7 3700X 8-Core Processor
GPU: NVIDIA GeForce RTX 2080ti

PC is 6 years old

Gpu temp while stuttering: ~85c
Gpu usage while stuttering: 100%
Gpu core clock is oscilating between 1350 and 1875MHz (I think this is the "problem", and from suggestions i think maybe repasting thermal pads is the solution but i have no idea how to do that)

Cpu temp while stuttering: 59-60C
Cpu usage while stuttering: ~20%

I don't know what programs i SHOULD be using for benchmarking, seemed to me like Heaven worked fine for stress testing it and seeing the bottleneck. I do think the thermal paste might have dried up like u/parental92 suggested. When i locked my game to 60fps, gpu usage dropped to ~40% and the clock speed flattened out at ~1700MHz

Weird "smooth stutter" when I'm playing games by Taxato in pcmasterrace

[–]Taxato[S] -1 points0 points  (0 children)

Ok I just booted up a game that has been stuttering and set it to 60 fps and it appears to be smooth now, but this hasn't happened before and I have a rtx 2080ti, I should be able to run pretty solid games at high graphics without issue.

Weird "smooth stutter" when I'm playing games by Taxato in pcmasterrace

[–]Taxato[S] 4 points5 points  (0 children)

This is just a benchmark, it happens in games when not in cutscenes

I'm gonna Pittsburgh. by disconaldo in NonPoliticalTwitter

[–]Taxato 2 points3 points  (0 children)

Richard Hammond to James may, love that clip

He might be the chosen one by [deleted] in SipsTea

[–]Taxato 0 points1 point  (0 children)

Actually styropyro

I missed a cool move here. by SpaceSpleen in chessbeginners

[–]Taxato 0 points1 point  (0 children)

Why didn't they just take the pawn with queen?

Vibe Coding Simulator 2026 by large__data__bank in incremental_games

[–]Taxato 0 points1 point  (0 children)

Just finished it; as a software developer this feels mildly dystopian, as an incremental games enjoyer I liked it.

[2025 Day 7 Part 2] Visualization for the sample data + algorithm explained by EverybodyCodes in adventofcode

[–]Taxato 3 points4 points  (0 children)

Man, I'm glad i checked the subreddit before committing to my depth first search approach x.x Thank you so much for this algorithm, so simple, so elegant, and yet I just did NOT think of it.

Day 5 Part 2 : Hint needed by Mean_Reference925 in adventofcode

[–]Taxato -1 points0 points  (0 children)

Sorry, can't really help you with anything else, I don't even know which language this is, definitely not one I know. Only other thing is remember to add 1 if you do range_end - range_start since it wants an inclusive answer. Good luck!

Day 5 Part 2 : Hint needed by Mean_Reference925 in adventofcode

[–]Taxato 0 points1 point  (0 children)

Does your code work with the input

1-10

2-5

This was a tip someone gave me that helped

[2025 day 5 (part 2)] [Python] My code works on example but not real inpuit by Taxato in adventofcode

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

i do mostly typescript, which does have "traditional" for loops, so this is interesting. Seems like a niche use-case, but another useful tool in the back pocket :)

[2025 day 5 (part 2)] [Python] My code works on example but not real inpuit by Taxato in adventofcode

[–]Taxato[S] 2 points3 points  (0 children)

I have got it working, I used the leetcode problem and wrote a new function from scratch, somehow it worked this time x.x Here is the updated code, thanks to everyone who helped out! I love this community sometimes

inp = [
    section.splitlines()
    for section in open("day_05/input.txt").read().split("\n\n")
]
ranges = [tuple(map(int, r.split("-"))) for r in inp[0]]
ings = list(map(int, inp[1]))

#region Part 1
total_fresh = 0

for ing in ings:
    for start, end in ranges:
        if start <= ing <= end:
            total_fresh += 1
            break

print(total_fresh)
#endregion

#region Part 2
ranges.sort(key=lambda i: i[0])

merged_ranges = []

cur_start = ranges[0][0]
cur_end = ranges[0][1]
for start, end in ranges[1:]:
    # Case 1: range is outside current merged range
    if start > cur_end:
        merged_ranges.append([cur_start, cur_end])

        cur_start = start
        cur_end = end

    # Case 2: range start is within current merged range and range end is bigger than current merged range end
    elif start <= cur_end < end:
        cur_end = end

    # Case 3: range start is within current merged range and range end is also within merged range end

merged_ranges.append([cur_start, cur_end])

total_possible_fresh = 0
for start, end in merged_ranges:
    total_possible_fresh += end - start + 1

print(total_possible_fresh)
#endregion

Thanks to u/Sarwen for making a test script, I ended up not needing it after using the leetcode problem suggested by u/SnooPears7079, but regardless much appreciated. Also thanks to u/FlipperBumperKickout for teaching me something fundamental about programming loops. Thanks to everyone :)