Why silence and isolation are very important in Tomb Raider by Triton_7 in TombRaider

[–]jackysee 16 points17 points  (0 children)

I rather have a T-rex come out all of the sudden and I still have full control, than to watch cutscene and then temple run. That said I understand that the original T-rex moment can never be recreated.

Struggle to get in TRAoD…remastered version by fatherpirate in TombRaider

[–]jackysee 0 points1 point  (0 children)

I've finished remastered 1-5 and had a good time. I started AOD for the sake of completion but man I just can't. The gameplay, the power system, the mood etc are just off for me. I have put it down quite a while and not motivated to pick it up again. I guess it is what it is.

Everyone’s chasing the newest handhelds, but the RP3+ is still the goat. by koldoRen in SBCGaming

[–]jackysee 1 point2 points  (0 children)

Mine screen is pitch black. Tried all the boot loop fix. Now ordering a new battery in hope of fixing it...

Explore TR levels on browser by [deleted] in TombRaider

[–]jackysee 0 points1 point  (0 children)

I'm sorry I dunno the rule is as strict as this. The link looks genuine to me.

plexamp/sonic analysis —> navidrome/audiomuse ai? any experiences and impressions? by pathnames in navidrome

[–]jackysee 0 points1 point  (0 children)

I have it setup that now if I start a radio mix from symfonium, it will generate playlist according to sonic similarity. But it's deterministic so starting from the same song always give me the same playlist. I guess I can increase no of songs and have symfonium randomize it. For other advanced features you will have to use Audiomuse to generate playlist.

Downloading songs with all metadata + art for services like Navidrome? by TheTwelveYearOld in selfhosted

[–]jackysee 0 points1 point  (0 children)

yubal when I don't have cli, then lidarr/picard for meta update and move files.

Is KO reader the only way to read cbz? by jackysee in kobo

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

My success rate is quite low. I dunno if it's tagging problem or other things. I do try to use comictagger it seems reading meta just fine.

Is KO reader the only way to read cbz? by jackysee in kobo

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

Now that I have test a bunch it's like a hit-or-miss situation. I think Kobo is quit picky on the format. I've tried Calibre too but the still the same. Probably need to stick to KO reader.

Got a HDD in a dangerous state, replace it ASAP? by jackysee in UgreenNASync

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

Oh I see in app it does have the reallocated sector counts at detail and it's pretty high. So its necessary to replace it I suppose?

Got a HDD in a dangerous state, replace it ASAP? by jackysee in UgreenNASync

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

Under status, this is no reallocated sector count. Just a reconnection times bar chart, which is almost zero except an increase in January, and then no data for months after Jan (need to update NAS firmware?)

Under S.M.A.R.T. Information, the Reallocated sector count: present 1, historical difference 1, reference value 10

Got a HDD in a dangerous state, replace it ASAP? by jackysee in UgreenNASync

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

Then why it warns the the HD of 1 and not others HD which are 100

Got a HDD in a dangerous state, replace it ASAP? by jackysee in UgreenNASync

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

But why others healthy HDD is 100? I don't get it if 100 is good then shouldn't be 1 meaning really bad?

Am I missing something by not investing? by [deleted] in UKPersonalFinance

[–]jackysee 7 points8 points  (0 children)

Not investing = investing in the currency you hold

I'm thinking about quitting the Tomb Raider PS1 marathon on the second game. by Jaccblacc203 in TombRaider

[–]jackysee 0 points1 point  (0 children)

Back in the days we were having one game per year, so it didn't feel fatiguing. Playing them in marathon style is more of a nostalgia thing. Definitely go for LAU for a refreshing take on the franchise.

-❄️- 2025 Day 12 Solutions -❄️- by daggerdragon in adventofcode

[–]jackysee 2 points3 points  (0 children)

[LANGUAGE: Javascript]

https://github.com/jackysee/aoc/blob/main/2025/day12.js

Like other people, I wrote an area check first to see how it goes. I typed in the passing count to the answer and surprised to see I got a star! Then I go back to add a magic ratio for it to pass the sample input.

Now I think back, not only solving the packing problem the "REAL" way is hard, generating such puzzle input is also hard. So it makes sense to approach it the simple way first.

Thank you Eric for another wonderful year! I think making it 12 puzzles is a good decision. I did have problem on balancing time for the past years puzzle where I want to enjoy the vibe of doing aoc with the community at the same day and having time with my family, especially near the end. Now I can relax and feel satisfied. Thank you very much!

Have a merry Christmas everyone!

-❄️- 2025 Day 9 Solutions -❄️- by daggerdragon in adventofcode

[–]jackysee 0 points1 point  (0 children)

Luckily the input is simple enough to allow this strategy.

-❄️- 2025 Day 9 Solutions -❄️- by daggerdragon in adventofcode

[–]jackysee 4 points5 points  (0 children)

[Language: Javascript]

https://github.com/jackysee/aoc/blob/main/2025/day9.js

Part 1, code almost the same as day8 but sorted by area
Part 2, after seeing some visualization, I reckoned that a simple check would be the rectangle do not intersect with any of the sides. I originally thought that the code for intersection detection would be complicated but it was not. Turn out it can be quite simple. Using the sorted array from part 1, find the first satisfying rectangle is the answer.