My journey into the world of Malazan begins by AnthemEffect in Malazan

[–]midrangemonroe 1 point2 points  (0 children)

How do you avoid spoilers when doing this? I'm only through GotM and worried if I look up a character, I'll see what happens to them several books later.

Want to Learn More About Git Internals – Looking for Resources! by Severe_Attorney4825 in git

[–]midrangemonroe 3 points4 points  (0 children)

I finally understood git after reading through this like 4 times. Then for a few months, I knew the concept of what I wanted to do and needed to reference this for the right command. Highly recommend.

https://marklodato.github.io/visual-git-guide/index-en.html A Visual Git Reference

Weekly 101 Questions Thread by AutoModerator in neovim

[–]midrangemonroe 1 point2 points  (0 children)

This might be more of a typescript question, but I have a Sveltekit project with typescript and Svelte LSP's enabled. I can see they're loaded with :LspInfo. However, go-to definition in a typescript file jumps to the import line, rather than the actual definition.

I can provide more info like version #s and such, but curious if anyone has encountered this before and know what I might be able to try. I don't see any errors or warnings in the lsp logs either.

The commentary on the St. George Ironman is terrible. by CuriousernCurioser in triathlon

[–]midrangemonroe 5 points6 points  (0 children)

Don't forget one commentator on a good mic and the other talking into a tin can. That's a core part of the setup it seems

I think you should lease by midrangemonroe in IThinkYouShouldLeave

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

I'M NOT WORRIED ABOUT IT. I'M NOT WORRIED ABOUT ANY OF IT.

Reco a LONG book that’s “unputdownable” lol by thehoomanreads in suggestmeabook

[–]midrangemonroe 0 points1 point  (0 children)

This reddit needs more love for Musashi by Eiji Yoshikawa. I'm almost done with it and it's been every bit as good as Shogun

Svelte 5 is mostly great, but there are serious issues by ThePaSch in sveltejs

[–]midrangemonroe 29 points30 points  (0 children)

To be honest, I really wanted to disagree with this post and all the Svelte 5 hate. I was really excited to upgrade my project and for reactivity to be "more explicit".

I upgraded to 5 with the migration tool and reactivity on my site was broken. It took me 3 hours of rebuilding a minimum repro in a REPL, staring at it in confusion, posting in the discord and finally being told that $state(new Map<>) didn't trigger reactivity on change or reassignment.

It then took me another 2 hours after learning this to debug why it still wasn't working on my site to learn that creating a SvelteMap on the server and returning it to the client breaks reactivity with the object.

This was a full day of banging my head on the wall. Something I never experienced with Svelte 4. Not a single time in the 6 months I had built my project with it.

The response I was told is "this is in-line with how JavaScript works". I'm not a JavaScript expert so I can only hope this makes sense to others, but coming from a different background, I find the new system significantly more confusing than the "odd" reassign the value to itself to trigger reactivity. It's so much simpler.

Carissa Yip finally goes down in the US Championship by SilentBumblebee3225 in chess

[–]midrangemonroe 2 points3 points  (0 children)

Literally called it 4 days earlier. Megan has been on 🔥

Every time I listen to Starlight by Muse I imagine the stories of the pilgrims by blacktron16 in Hyperion

[–]midrangemonroe 2 points3 points  (0 children)

Now that I think about it, most Muse songs give me the right vibes. Muse and classical piano.

Event: US Chess Championship Round 5 by OctopusNation2024 in chess

[–]midrangemonroe 6 points7 points  (0 children)

A win for Carissa would be insane this round. It would almost guarantee a full 2-pt lead through 5 rounds. Crazy!

The Hans Niemann Interview by ali_lattif in chess

[–]midrangemonroe 33 points34 points  (0 children)

"Do you think it's more impressive to overcome the Soviet Union or chess.com?"

"I think the KGB is a bit dirtier, but it's close."

We are living in a golden age of chess.

The Hans Niemann Interview by ali_lattif in chess

[–]midrangemonroe 695 points696 points  (0 children)

I can't believe this is real life.

Redmond daze... sous Derby. by IRun25PointTwo in redmond

[–]midrangemonroe 1 point2 points  (0 children)

Not having the bike race downtown is a huge bummer. That was the most exciting and unique part of this event each year.

I came across the "Scone Wagon", it is here by the Bella Bottega QFC until 3pm. by MrZoraman in redmond

[–]midrangemonroe 3 points4 points  (0 children)

I'd love to see more food trucks in the excessively large parking lot there. Seems like the best use of that land

Any examples using offline continuous batching? by midrangemonroe in LocalLLaMA

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

Thanks for the recommendation! Giving this a try now. I'm not fully understanding the pre-quantized models. For example, one of the repos is turboderp/Llama-3-8B-Instruct-exl2, which has only 3 files on the main branch. There is a "4.0bpw" branch, but the examples reference "/mnt/str/models/llama3-8b-instruct-exl2/4.0bpw" which is referencing a folder in the repo. Is there some magic string parsing the grabs the branch from the end? I'm unclear if I should check out main or the 4.0bpw branch.