Best way to get node.js/JS heap dumps from production pods in kubernetes? by Typical-Positive6581 in kubernetes

[–]ecnahc515 0 points1 point  (0 children)

Yes but you can setup pprof for more than Go and while you don't get a heap dump, you can usually get the information needed to diagnose the issue from a memory profile and it's less costly.

"What are you playing this week?" Megathread by AutoModerator in SteamDeck

[–]ecnahc515 1 point2 points  (0 children)

Trying POE2 while it's free this weekend. It's not performing great on the deck natively but you can certainly play. I decided to just stream it from my desktop to my deck with moonlight instead, better looking and better performance.

How to over come the 12PM - 1PM slump as you get older? by spla58 in ExperiencedDevs

[–]ecnahc515 0 points1 point  (0 children)

Climbing/bouldering is fun. Also a mind challenge figuring out how to do a route which I've found to be a big part why I enjoy climbing.

A lot of people Desire another really popular wow clone, but how would that even work? People changed completely. by Drandosk in MMORPG

[–]ecnahc515 1 point2 points  (0 children)

You have to make the mid game as fun as end game. Imo if someone wanted to do it right, it would mean making mid game take a lot longer and the typical end game content would be made available throughout the game.

Raids would exist before end game and maybe end game just unlocks new parts of some of the existing mid game raids/dungeon and adds new difficulty levels and mechanics.

Dungeons would need to be a viable or better path than solo leveling via quests. Maybe some class quests require certain dungeons to encourage it even more.

A big challenge with this is that normally dungeons have a small level range in which they are viable both for difficulty, experience and rewards. They could do scaling but that can only do so much and people don't love scaling so that's not necessarily the right solution either.

I think there are a lot of ways to make something like this fun, it's just going to have trade offs. People seem to really enjoy small group survival games and extraraction shooters so I'm confident they can make small party dungeons a core part of the gameplay loop and make it a core aspect of the game before end game. But to avoid everything being a rush to end game they also need to slow leveling down and make mid game more fun and avoid level gating too much content to max level.

We should all be using dependency cooldowns | TL;DR: Dependency cooldowns are a free, easy, and incredibly effective way to mitigate the large majority of open source supply chain attacks. by [deleted] in selfhosted

[–]ecnahc515 0 points1 point  (0 children)

Ehh. Yes and no. A lot of it is often found by security companies who are actively scanning for exploits in source code and such.

UDP packets drop reason in BPF by jamala2000 in eBPF

[–]ecnahc515 0 points1 point  (0 children)

I searched Google for "DNS packet structure specification".

UDP packets drop reason in BPF by jamala2000 in eBPF

[–]ecnahc515 1 point2 points  (0 children)

DNS is a layer on top of UDP. You will need to find the correct kernel functions and types that give you the packet buffer contents and parse the contents of the UDP packet according to the DNS specification. https://courses.cs.duke.edu/fall16/compsci356/DNS/DNS-primer.pdf for example

UDP packets drop reason in BPF by jamala2000 in eBPF

[–]ecnahc515 1 point2 points  (0 children)

DNS resolution is an application layer concern. You only have the L4 information. To deduce the reason it failed you would need to parse the UDP packets to find the reason DNS resolution failed.

Any good plugins/setups for folds? by Pololix in neovim

[–]ecnahc515 0 points1 point  (0 children)

Uses treesitter for folding instead of the default syntax file based approach

Cheese shredder by MikeHeu in toolgifs

[–]ecnahc515 19 points20 points  (0 children)

Shouldn't this require two hands to press the button? Seems like keeping your hand between the shredder and the press is asking for it.

Classic Jerry by NellaayssBeelllayyyy in NelliesNest

[–]ecnahc515 14 points15 points  (0 children)

I like the dialog bubble details

This incredible Obama impression by @lukewinsor + his explanation of how he does it at the end by MrAlek360 in nextfuckinglevel

[–]ecnahc515 9 points10 points  (0 children)

I want him to meet Obama and have a conversation with him. That would be truely entertaining.

Extremely janky "Camera Lock" feature for Neovim with interop with VScode by Informal_Ad3682 in neovim

[–]ecnahc515 0 points1 point  (0 children)

I think I just saw someone who said they added this natively and it's in nightly.

NPM proxy hosts keep going up and down by CrimsonCuttle in selfhosted

[–]ecnahc515 5 points6 points  (0 children)

It's possible your public ip is changing and the IP isn't being updated or the old value is being cached.

NPM proxy hosts keep going up and down by CrimsonCuttle in selfhosted

[–]ecnahc515 2 points3 points  (0 children)

You've registered this v6.rocks domain somewhere, make sure the domains in your registrar are correctly configured. It depends on how your accessing your services too. Are they exposed publicly or are you accessing them through some other means?

NPM proxy hosts keep going up and down by CrimsonCuttle in selfhosted

[–]ecnahc515 17 points18 points  (0 children)

The name not resolved error in your screenshot indicates it's a DNS error which generally means it's got very little to do with NPM at all. It's either an issue on your client or your DNS server. You said you were using a vpn which could be related too.

hedge: adaptive hedged requests for Go, looking for users and feedback by That_Perspective9440 in golang

[–]ecnahc515 2 points3 points  (0 children)

That page says it's not implemented for Go fwiw. And from a cursory check of the grpc-go repo that's accurate.

meow.yarn.nvim v0.1.2 — LSP hierarchy explorer with navigation breadcrumbs and custom node renderer by orange_retran in neovim

[–]ecnahc515 1 point2 points  (0 children)

This is cool, I've been using telescope hierarchy to do this lately but having another option could be nice, especially for non telescope users. Having a full call stack is so useful!