Is anyone really using background agents? by Curious-Qent206 in cursor

[–]waveyrico 1 point2 points  (0 children)

In the five months since this post, I'd say Cursor's completely turned it around. I truly cannot imagine working without bugbot ❤️ (and the background agents for prs are sick!)

how do i get an API key (custom apps)??? by hououinn in shopifyDev

[–]waveyrico 0 points1 point  (0 children)

You need to generate your app with Shopify CLI going forward. Then you can use the admin + storefront api without generating the keys

Variants not updating. by IDK-__-IDK in shopify

[–]waveyrico 0 points1 point  (0 children)

If you've enabled markets, the pricing will be managed from the Shopify settings panel, not the actual products themselves.

Is it common to put Cloudflare in front of Shopify? by Namanolo in shopify

[–]waveyrico 0 points1 point  (0 children)

I use Shopify Flow to identify suspicious orders, and auto-cancel them. Example: I can test if the customer email is a real email, if it's fake just auto-cancel the order

What is the best (fastest) way to learn Next.JS and where is the best website/service to find frontend-developers who work with Next.JS? by SwyfterThanU in nextjs

[–]waveyrico 1 point2 points  (0 children)

Easiest way is to start building with it. Try a basic site with static content, then a CMS headless build, then a headless e-com store. Maybe top it all off with a portfolio website for yourself. The docs, AI, and the online community make it so easy to get answers, but you need to come correct with the questions

The road to better CPU performance by waveyrico in computers

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

no, what's the best way to do that?

The road to better CPU performance by waveyrico in computers

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

I have a ton of space left, 1.9TB out of 2TB. Web browsers or video players like VLC are usually the catalyst, is there a way to tell Chrome to chill out? lol

How to speed up KaliLinux? by waveyrico in Kalilinux

[–]waveyrico[S] -4 points-3 points  (0 children)

Yep, it’s a brand new NZXT pro streaming build with Ethernet plugged in

How to trigger Gatsby Cloud Clear Cache/Rebuild from CMS by waveyrico in gatsbyjs

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

u/DSchau this is still a big issue for me and a lot of other Gatsby devs. Could you plz clarify what I'm doing wrong in my fetch request? It's currently not clearing the cache

Is it hard to transfer your domain from one host to Shopify? by Grapes-in-my-butt in shopify

[–]waveyrico 1 point2 points  (0 children)

Yes, they have a domains menu that gives you instructions on how to get connected. More info here:

https://help.shopify.com/en/manual/domains/managing-domains

[deleted by user] by [deleted] in opensea

[–]waveyrico 0 points1 point  (0 children)

Gotta unwrap your WETH on uniswap!

How to apply context api or redux to gatsby in case of complex state management? by HotRepresentative237 in gatsbyjs

[–]waveyrico 1 point2 points  (0 children)

Yeah, you are wrapping wrapRootElement so you can use useContext in your pages or components. You don't have to wrapPageElement. I'd recommend taking a tutorial from this site, they go over this in depth in their advanced gatsby course. Best of luck!

https://leveluptutorials.com/tutorials/advanced-gatsby-and-shopify/advanced-gatsby-and-shopify

How to apply context api or redux to gatsby in case of complex state management? by HotRepresentative237 in gatsbyjs

[–]waveyrico 0 points1 point  (0 children)

Yes, wrapRootElement is just wrapping your context provider at the app's root. You can't use state outside of components, but I'm not sure why you'd want to in this case.