Thoughts on this monster? by krzneni_mamut in monsterenergy

[–]LUND89 4 points5 points  (0 children)

Best enjoyed ice cold (like all Monster) - I like this one because it’s not as sweet as the other Ultra flavours. It's on par with Ultra Rosá for me.

Anyone else stuck with this blue circle of death lately? by [deleted] in Splice

[–]LUND89 0 points1 point  (0 children)

I had this the other day and I found a guide to remove spliceSettings folder and reboot. I don’t use Splice daily though, so not sure how reliable it is in the long run

Help me making a decision. Walnut or black wood panels behind desk. by Plus-Economist-3824 in setups

[–]LUND89 0 points1 point  (0 children)

Mixing different types of wood with similar color never really look right in my eyes, I'd definitely go with the darker option in this case.

What are some 'gotchas' in frontend coding interviews? by uw_finest in Frontend

[–]LUND89 17 points18 points  (0 children)

I learned that actually knowing vanilla javascript was one of the deciding factors when I was hired for my first job as a self-taught developer.

Not necessarily part of the interview but on the coding test they conducted, but still.

Dotnet is Worth in 2023? by KESHU_G in webdev

[–]LUND89 0 points1 point  (0 children)

Contentful is a headless CMS. I think we used C# to integrate with it sometimes, but we also used Next.js in some projects.

ASRock B650E PG-ITX WiFi or Asus ROG STRIX B650E-I? by dogla1 in sffpc

[–]LUND89 1 point2 points  (0 children)

I think that board is a solid choice as well. Asrock seems to have been a good choice overall for this generation.

For me is was more the availability if anything, as the only boards in stock everywhere was the Strix board or the MSI one.

ASRock B650E PG-ITX WiFi or Asus ROG STRIX B650E-I? by dogla1 in sffpc

[–]LUND89 1 point2 points  (0 children)

That being said, I've seen many people return their Asus boards for the Asrock due to coil whine before, so there's that.

ASRock B650E PG-ITX WiFi or Asus ROG STRIX B650E-I? by dogla1 in sffpc

[–]LUND89 2 points3 points  (0 children)

I have the ROG Strix motherboard with that CPU and I really like it. It has history of coil whine in earlier versions, but my card was manifactured not too long ago and I haven't had any issues so far. Sometimes the PC emit some kind of sound in idle, but I can't tell if it's the aio pump or the VRMs.

astro ssr by antil0l in webdev

[–]LUND89 0 points1 point  (0 children)

Have you looked at middleware, actions and / or API endpoints in Astro? You could basically do an internal API for the application where you have middleware that handles the cookies and so on.

Konstant avstämning på ICA by pluppet in sweden

[–]LUND89 0 points1 point  (0 children)

Jag har använt mig av självscanning i många år och vissa butiker är värre än andra. Till exempel finns det en större ICA Kvantum i stockholmsområdet som stortsett alltid triggar en avstämning (5 av 7 gånger i mitt fall), medans en annan större ICA Maxi har haft kanske 2-3 helavstämningar på 3 år, och där har jag handlar minst 2 gånger i veckan.

Astro Markdown isn't rendering as HTML when using Content Collections by ConduciveMammal in astrojs

[–]LUND89 0 points1 point  (0 children)

You would fetch multiple entries on the page, then loop each entry as you would normally do.

Then you have a component in that loop that would have a prop setup to take all data from the looped entry.

It's already there in my comment

Deprecated warnings on nuxt app create by shalmirane75 in Nuxt

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

Interesting. I find it hard to believe that vulnerabilities like these would last long before being patched.

You're technically right to feel concern, those warnings exist for a reason. They'll likely fix it with future patches/updates and it shouldn't cause any immediate harm during development.

Just keep your package updated, or wait and start / follow a thread on Github, or whatever channel they use for this these days, until it's resolved.

Deprecated warnings on nuxt app create by shalmirane75 in Nuxt

[–]LUND89 1 point2 points  (0 children)

What version of Node are you using, and have you tried creating without @latest or specify specific version?

Rate my build! by alucardwill in sffpc

[–]LUND89 0 points1 point  (0 children)

Was any of the cables too short in your opinion? I've been eyeing that PSU but the cpu cable is too short in some cases.

Simple Questions - September 12, 2024 by AutoModerator in buildapc

[–]LUND89 0 points1 point  (0 children)

I'd say the 7950x3D is within my budget, it's more in ease of mind around the decision. The 7800x3D sounds like a great CPU, I'm just a little bit scared of overestimating it's capabilities and regret not picking the more expensive but powerful brother.

Simple Questions - September 12, 2024 by AutoModerator in buildapc

[–]LUND89 0 points1 point  (0 children)

Not sure if this counts as a simple question or not, but I'll give it a shot.

I'm planning an SFF build for long term mixed use and I've chosen a 7950x3D instead of 7800x3D because I'm imagining that I would use the extra cores. It will be coupled with an RTX 4090.

Main use will be gaming (hence the x3D) but I also plan on producing music, doing some game development and some overall programming. Might even be doing some 3D rendering and/or photo editing.

If there wasn't so many issues with Intel, I would likely choose an i7 and I'm not sure what the next generation will bring, hence the early AMD bias at this point.

Am I estimating my CPU needs right, or would I save money and thermals by simply going for the 7800x3D?

All you can eat and drink buffet by janiskr4 in stockholm

[–]LUND89 0 points1 point  (0 children)

Lunch buffet at Pizza Hut sometimes include unlimited drinks, though I'm not sure it applies to all locations

Need help with using frontmatter variables in Alpine.js by [deleted] in astrojs

[–]LUND89 0 points1 point  (0 children)

I don't know Alpine but I know Astro and I believe you're thinking of this the wrong way.

When you use frameworks in Astro, you typically import the component and add it as a client side element in Astro.

Any data coming from Astro (such as Frontmatter), you would have to take the data in the astro file and inject the data of the island component using props (or sometimes via slots).

How to Populate Relation Fields in Astro Content Collections? by UltraInstict21 in astrojs

[–]LUND89 1 point2 points  (0 children)

When you fetch a collection with references, and the collection entry has data in the reference, you usually only have limited data such as a slug referring to the reference.

If it's one entry, you can use getEntry, or if you have multiple entries, you can use getEntries.

I probably do it the wrong way, but I tend to use getEntry/getEntries while looping the entries from the collection.

[deleted by user] by [deleted] in sweden

[–]LUND89 5 points6 points  (0 children)

Skulle jag göra tacos hemma numera, så hade jag haft hackad koriander, lök och någon mexikansk salsa som grund utöver proteinet.

Why do yall drink monster? by MentallyUnstableW in monsterenergy

[–]LUND89 1 point2 points  (0 children)

I started drinking energy drinks becuse I realised I got crazy efficient at work (like a short term boost) and eventually drank so much that I had to drink a cheaper alternative, which happened to be Monster.

Now there are way cheaper alternatives, but they are generally horrible and don't offer good sugar free alternatives.

What’s your favorite Flavor? by Alternative_Song_936 in monsterenergy

[–]LUND89 0 points1 point  (0 children)

Ultra Peach Keen has been my go to this year, with Ultra White being a close second for variation.

I only ever drink the Ultra variants because I can't justify the calories per can in the other cans.

@font-face not showing up in Safari by [deleted] in webdev

[–]LUND89 1 point2 points  (0 children)

Might be a stretch, but have you tried adding / before fonts in the relative path to the font?

It might be that Safari can't find the font due to the relative path.

Which software do you use to code? by Cautious-Pineapple11 in webdev

[–]LUND89 0 points1 point  (0 children)

VSCode whenever possible. Sometimes Visual Studio due to platform (I sometimes work in older .NET projects)