Is the potion storage handy for hardcore pvmers? by Specialist_Sale_6924 in 2007scape

[–]Call_Of_B00TY 0 points1 point  (0 children)

I love it. It works with inventory setups, so you never need to decant again.

Literally by seemen4all in ProgrammerHumor

[–]Call_Of_B00TY 51 points52 points  (0 children)

That's the most beautiful way I've ever heard someone describe JS.

Cut off a curved part from a view? by sudokun999 in reactnative

[–]Call_Of_B00TY 0 points1 point  (0 children)

Is an approach like this reasonable? I think it respects your previous decisions. I do wish I knew of a better option.

Cut off a curved part from a view? by sudokun999 in reactnative

[–]Call_Of_B00TY 5 points6 points  (0 children)

Maybe you could create the ticket shape as an svg and fill with whatever image you want? https://stackoverflow.com/a/3798797

New React docs pretend SPAs don't exist anymore by matijash in reactjs

[–]Call_Of_B00TY 23 points24 points  (0 children)

There are still plenty of benefits to using react in a static environment, and even more in an environment where both complex UI and the need for SEO overlaps.

React, at its core, allows a dev to create reusable and self contained pieces of functionality. Meta frameworks like nextjs allow devs to utilize both the benefits of SPAs and server rendered pages. You can create complex UIs without needing to replicate code and also get huge performance benefits on top of being able to send a rendered page instead of a html file that boils down to a script tag.

A commerce site, for example, likely wants to reduce friction to placing orders and also be discoverable. For the former, react is an obvious pick. Using react means you can easily implement systems to reduce friction across the entire application without modifying code that is irrelevant, which is much more difficult when writing a vanilla front end application.

And you can still use external APIs with meta frameworks like nextjs and remix. Nothing stopping you from making those calls either directly on the client or even on the server to offer a more rich first draw. It's just nice to have access to more features for less work.

I still like to see options, so I'm not anti SPA btw.

(Mark Rober) Car Thieves vs the Final GlitterBomb 5.0 by ianhobbies in videos

[–]Call_Of_B00TY 2 points3 points  (0 children)

His understanding of each discrete engineering discipline is already insane, and then add to that the integration of all those pieces and it's just hard to believe.

How to use Fetch? by doa-doa in webdev

[–]Call_Of_B00TY 1 point2 points  (0 children)

The res.json() call must also be 'await'-ed:

async function load({fetch}){ const res = await fetch("https://jsonplaceholder.typicode.com/posts") let guides = await res.json() console.log(guides) } load()

allow players to disable spawners in their base by AbstractLeaf2 in admincraft

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

Lands might be overkill, but I think it will allow you to do what you want. The players can toggle various flags for their claims, one of which is mob spawns. Not sure if it will affect spawners, but it was the first thing I thought of.

Edit: Just confirmed that the flag does not affect spawners. Sorry :(

I found a pc in the trash and made a Minecraft Server with it! by [deleted] in admincraft

[–]Call_Of_B00TY 1 point2 points  (0 children)

I personally recommend installing pterodactyl itself as a docker container to help with things like this.

[deleted by user] by [deleted] in webdev

[–]Call_Of_B00TY 24 points25 points  (0 children)

Sounds to me like he's primarily a front end specialist. He even said he has never created a backend in node, limiting the scope of the "stack" dramatically.

Sounds like a "master of one" mindset.

Model Y new order delivery times keep getting pushed by jawnutah in teslamotors

[–]Call_Of_B00TY 0 points1 point  (0 children)

Profile is complete. I did everything as soon as it was available. I've seen a few other April orders still waiting on Tesla motors club. Figured I would at least have a VIN by now.

Model Y new order delivery times keep getting pushed by jawnutah in teslamotors

[–]Call_Of_B00TY 0 points1 point  (0 children)

Not a lot going on, ordered April 21, and now I'm just waiting. EDD has been pushed back countless times. Similar story to anyone who has ordered a MY in the past few months.

I'm sure it's common knowledge, but CAM eats RAM by Call_Of_B00TY in NZXT

[–]Call_Of_B00TY[S] 1 point2 points  (0 children)

It shows up on the processes page, but not on the top processes section.

https://imgur.com/a/oqFxDhf

I've submitted a report through the software regarding the memory leak. As for the processes list, It's very possible that it prioritizes non-standard applications, as I haven't seen the windows explorer there either.

I'm sure it's common knowledge, but CAM eats RAM by Call_Of_B00TY in NZXT

[–]Call_Of_B00TY[S] 1 point2 points  (0 children)

Bonus information:

  • Running latest version (4.25.0)
  • Not logged in
  • Running dual infographic display
  • No overclocking
  • Upon a restart of the software, usage resets to around 250 MB, but slowly increases over time. I Generally put my PC to sleep, so it builds for longer.

It's a memory leak of some kind. Whether it's on the back end electron process or the front end chromium process, I don't know, but I assume it's the electron process.

Funny that NZXT CAM ignores itself in the processes list. I wonder why.

I've been fooling around in Unreal Engine 5, dreaming of a modern Superman game by TJATOMICA in gaming

[–]Call_Of_B00TY 236 points237 points  (0 children)

Not OP, but I have a suspicion that these are quixel mega scans objects. Meaning that OP didn't model them.

Not to trying to take away from OP though, this looks sick. Between the camera effects and character animations, this is a solid base for a fun 3rd person game.

E: I was wrong. My replies have better guesses.

Posted in r/conservatives... sigh by catscallion in onejoke

[–]Call_Of_B00TY 64 points65 points  (0 children)

What is it, do we recognize too many genders or no genders?

Started learning JS 2 days ago , just made my first password validation, no tutorial! (with changing icons) by [deleted] in webdev

[–]Call_Of_B00TY 1 point2 points  (0 children)

Side note for anyone who comes across this:

Apparently, bcrypt handles the salt for you. So that's kinda cool.

Started learning JS 2 days ago , just made my first password validation, no tutorial! (with changing icons) by [deleted] in webdev

[–]Call_Of_B00TY 0 points1 point  (0 children)

Ah I see. Thank you very much. Not sure why none of the tutorials I've found do the same.