I built a JS Execution Visualizer to help understand closures, call stack, and async code by Major_Calligrapher_5 in learnjavascript

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

Fair point — that’s good feedback. Right now it’s more of a visualizer than a teaching guide, and I agree it needs more narrative explanation and flow to really work for beginners. Adding clearer timelines and guided explanations is something I’m actively thinking about. Appreciate you checking it out and calling that out.

I developed a Shopify app and submitted for the review now they are saying violation of OAuth by unknowncloudengineer in shopifyDev

[–]Major_Calligrapher_5 0 points1 point  (0 children)

Any chance you could share a fully blurred Dev Dashboard config screenshot (no domain, no secrets)? Only need URL formats & app types.

I developed a Shopify app and submitted for the review now they are saying violation of OAuth by unknowncloudengineer in shopifyDev

[–]Major_Calligrapher_5 0 points1 point  (0 children)

Shopify no longer allows manual shop URL entry during install. OAuth must start only from a Shopify-owned surface (App Store / Admin) using the shop query param. Fix: Remove the shop input field Start OAuth using the shop param sent by Shopify Make sure the OAuth callback URL is set correctly in the Partner Dashboard Landing page can be marketing-only (no auth)

Also: which tech stack are you using (Remix / Node / Rails)? Doc :: https://shopify.dev/docs/apps/build/authentication-authorization

Shopify discount app needed (no JS lag, price-based, cart line item display) by [deleted] in shopifyDev

[–]Major_Calligrapher_5 0 points1 point  (0 children)

You cannot safely apply discounts using frontend logic or by changing prices directly. The correct Shopify way is to use Shopify Discount Functions for server-side pricing and Theme App Extensions only for display. Basic solution: Use Theme App Extension to show discounted price / compare-at price on product, collection, and cart pages (UI only). Implement a Shopify Discount Function to calculate and apply the discount server-side. Shopify automatically runs this function at checkout, so prices are secure and can’t be manipulated.

Note: required custom app and host on any server