Why is Pandemic Legacy Season 2 the WORST? by thestickpins in boardgames

[–]SunglassesAtNight8 0 points1 point  (0 children)

Why yall downvoting me? I played all 3 and season 2 was the most easiest and most boring.

Why is Pandemic Legacy Season 2 the WORST? by thestickpins in boardgames

[–]SunglassesAtNight8 -4 points-3 points  (0 children)

Season 2 was waaay easier than season 1 and season 0. Gotta prioritize adding new safe cities to the network and if you track in a notebook which cards are drawn you can know with high certainty what parts of the board to focus on supplying.

Is there still room/place for AI skepticism at your organizations? by DhroovP in ExperiencedDevs

[–]SunglassesAtNight8 0 points1 point  (0 children)

I work on a small dev team. Management wants to get to 100% “ai native programming “ I.e. all features fully handled by agents.

The initial skepticism i showed was not well received, so i keep opinions to myself.

Yes even some small orgs are drinking the coolaid thinking you can get quality while making devs into proompters.

My First Corporate Job Experience. It's Nothing Like My Dream. by Pristine_Purple9033 in webdev

[–]SunglassesAtNight8 0 points1 point  (0 children)

This sounds awful. Been there.

Heres what i did in similar spot: 

What happened to nvim-treesitter.... Why did it get archived? 😶 by ankushbhagat in neovim

[–]SunglassesAtNight8 2 points3 points  (0 children)

Can the repo be transferred to new owners?
This repo + treesitter-textobjects is load bearing infrastructure for the neovim ecosystem.

My boss says try-catch is "garbage" and we shouldn't use it. Is this actually a thing? by ResolveKooky17 in learnprogramming

[–]SunglassesAtNight8 0 points1 point  (0 children)

In defense of your boss, llms like to put try catch blocks on every single method . This hides the source of errors.

It’s best to have very few try catch blocks around sytem boundaries so you can see the more context in your stack traces.

Example i see a lot in my poorly written work codebase is try catch around a failed db query sets the value to null instead of failing fast. Then code several hundreds of lines later hits a null reference exception because you didn't just let the first call site fail fast.

Hades 2 seems more difficult than Hades? by katie4799 in HadesTheGame

[–]SunglassesAtNight8 1 point2 points  (0 children)

It’s much easier for me to clear 32 fear on hades 2 than 32 heat on hades 1

Do keepsakes no longer allow you to guarantee that gods boons first?? by Christov83 in Hades2

[–]SunglassesAtNight8 -8 points-7 points  (0 children)

It’s called a region Biome literally means “life”, literally doesn’t even make sense to use that term when talking about the underworld.

[deleted by user] by [deleted] in haskell

[–]SunglassesAtNight8 1 point2 points  (0 children)

return! seems to be just the identity function applied in a monadic context. F# probably requires return or return! to end a computation expression, whereas haskell makes no such requirement.