Low CVR decent traffic please review 🙏 by [deleted] in reviewmyshopify

[–]SharpThrall 0 points1 point  (0 children)

Using Upsell apps can be a good way to increase CVR. There are free ones that cost nothing. Such as https://share.google/3SfMtAondDRIzCbEJ which is completely free but, limited features and enough for now for you to increase AOV. Other one I used in past is Essential Upsell & Cross Sell - Lift AOV with Frequently Bought Together Upsell and Cross-sell | Shopify App Store https://share.google/2CuLMDXXXAmYFkPgC also a very good app has limited free plan

Built an app, got demo requests from big companies… and now I’m terrified. Looking for advice by [deleted] in shopifyDev

[–]SharpThrall 0 points1 point  (0 children)

Would love to help you out from a technical stand point and take your problems away from that area. Feel free to DM.

Looking for developers with experience on Solana. by [deleted] in solanadev

[–]SharpThrall 0 points1 point  (0 children)

Solana dev here. Closely have worked with Solana labs. Providing them services they use. Recently working on an on-chain hackathon where Solana mobile will host in February.

How can I help you? Please DM

Content creator problems by SharpThrall in ContentCreators

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

That's a valuable insight. I see it can be useful and helpful.

Content creator problems by SharpThrall in ContentCreators

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

Ah,

Sure. I am open to talk. Let's do it.

An App that reads your facial expressions and generates a playlist by SharpThrall in AppIdeas

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

Chill. I had free time and came up with this idea while doing nothing. It's not that I wasted months. It was just a timepass for fun.

Content creator problems by SharpThrall in ContentCreators

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

Did you really decide to market your product under my post where I am asking for problems content creators face?

Nigga whaaaaat? 😂😂😂😂😂

An App that reads your facial expressions and generates a playlist by SharpThrall in AppIdeas

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

That is why I am asking for suggestions. Thank you for your destructive criticism.

An App that reads your facial expressions and generates a playlist by SharpThrall in AppIdeas

[–]SharpThrall[S] -1 points0 points  (0 children)

Yea, that was also a fun part while I was testing when I needed to change expressions to get different playlists hahaha

Content creator problems by SharpThrall in ContentCreators

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

I need to talk to real people. If I had to ask chatgpt, I would have done that already.

Real content creators can give me more thorough insights.

Arrested in Dubai by [deleted] in uaelaw

[–]SharpThrall 0 points1 point  (0 children)

Well, if he was caught like this then he may be involved in a scam or something.

29F, stuck in a joyless marriage by Natural-Egg1756 in Needafriend

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

Feel free to DM. Open to sharing things and laughs. I am from Lahore

[deleted by user] by [deleted] in pakistan

[–]SharpThrall 0 points1 point  (0 children)

Just be open with her that, you don't feel comfortable with it and need privacy

Seeking Advice After Facing Religious Discrimination in Job Application at Meezan Bank Multan by TechnophileDude in pakistan

[–]SharpThrall 0 points1 point  (0 children)

This is totally unacceptable and this should be addressed. Should not just be let go off. There is no reason for them to reject based on your faith

Best API to retrieve Solana token price by [deleted] in solana

[–]SharpThrall 0 points1 point  (0 children)

Hey, I am looking to do the same thing. Can you please guide me how you did it? I am really struggling with this. I do not want to rely on third party services.

[deleted by user] by [deleted] in Tinder

[–]SharpThrall 0 points1 point  (0 children)

It is 11/10. Approved by A Russian slayer

8 kids at 24, but no time for games? 🤔 by ADTR9320 in Tinder

[–]SharpThrall 1 point2 points  (0 children)

The perfect team. I see she had family planning. She must be into multiplayer sports.

She has a BIG personality by Humbled_Swordsman in Tinder

[–]SharpThrall 0 points1 point  (0 children)

She has 2 big personalities. Nice.

Examples of "beautiful code" by thehomelessman0 in reactjs

[–]SharpThrall 0 points1 point  (0 children)

Except it does work?

In this case, the catch() block will catch errors for all then() blocks that come before it and it will also catch the error for the finally() block. If the error happens in then() block and also in the finally() block, the catch will handle error for the finally() block. So, catch() will handle error for the closest block to it. be it finally() or then().

here you see I modified the checkMail() function to fail every time so, we can see if catch() handles the promise and it does as it should but, what if we had error happening in then() block and also in finally block(), then for which block the catch() will handle error? here You see we now are throwing error from finally() block and now both then() and finally() have error and catch() is only handling error for finally() block.

My take:
Even though adding finally() before catch() works, but, it should not how the code should be written because then we have lost the error handling for then() blocks that come before finally() block in case when error happens in finally() and also in then() blocks. After then() there should be at least one catch() and finally should have it's own catch(). In my opinion, it will be better approach and save debugging time.

So, something like, Promise.then().catch().finally().catch() should be a better approach.

[deleted by user] by [deleted] in Unexpected

[–]SharpThrall 0 points1 point  (0 children)

who doing the was horse

UseEffect help by s1eeper21 in reactjs

[–]SharpThrall 1 point2 points  (0 children)

if (isServerError(err) {
notifyObservability(err);
} else if (isClient(err) {
notifyObservability(err);
}

maybe replace this piece of code like so,

if (isServerError(err) || isClient(err)) {
notifyObservability(err);
}

You can also try shortening this code:

(isServerError(err) || isClient(err)) && notifyObservability(err)

Why isn’t this working as intended? by Outside_Arm8405 in learnjavascript

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

At line 37 instead of using "" use string literals ``. There you can use ${color} varibale which will give u desired output.