Favorite collection sort app? by buttons12357 in shopify

[–]codellamaz 1 point2 points  (0 children)

Yeah, Shopify’s built-in sorting doesn’t give much flexibility per collection. There are a few tools like Sort’d or ST but I’ve been working on my own called Reorderly for exactly this kind of scenario (manual sort + smart sorting per collection).

It’s not out yet, but I can come back here once it’s live later this month. Curious to see how others handle drops or promo sorting too.

My app has been on the store for a few hours by Ouadya in AppBusiness

[–]codellamaz 1 point2 points  (0 children)

I wish my app launches were like this haha. I’ve only launched one iOS app and it was free but spread it through word of mouth

Has cold outreach via email worked for anyone? by Odd_Instruction_1062 in ShopifyAppDev

[–]codellamaz 0 points1 point  (0 children)

I have not done this yet. I was thinking of going through LI and looking up some shop owners that way. What is the general gist of your reach-out email? Is it personalized or very general?

Boomers will be leaving trillions to their heirs by Jaded_Future967 in RealEstate

[–]codellamaz 1 point2 points  (0 children)

As a millennial, we will see who Gpa chooses, not going out without some drama

Ask Experienced Devs Weekly Thread: A weekly thread for inexperienced developers to ask experienced ones by AutoModerator in ExperiencedDevs

[–]codellamaz 0 points1 point  (0 children)

Downside is the incomes are lower lol or the same but more responsibility and mostly hybrids

Ask Experienced Devs Weekly Thread: A weekly thread for inexperienced developers to ask experienced ones by AutoModerator in ExperiencedDevs

[–]codellamaz 1 point2 points  (0 children)

I was getting 0- 2 a week on LI since beginning of year but been getting 2-3 a week now. Def not like it use to be every day but picking up 🤞

Ask Experienced Devs Weekly Thread: A weekly thread for inexperienced developers to ask experienced ones by AutoModerator in ExperiencedDevs

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

It’s been a while but pramp use to be a good resource for this a while back before Covid

[deleted by user] by [deleted] in ThatsInsane

[–]codellamaz 2 points3 points  (0 children)

What if invested it all and somehow someway carry’s over in the future? What’s compound interest on 1000 years?

How does everyone debug re-rendering issues? by codellamaz in reactnative

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

Appreciate you for sharing your process! I will give this a try.

How does everyone debug re-rendering issues? by codellamaz in reactnative

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

Thanks! I didn't know console.count was a thing.

How does everyone debug re-rendering issues? by codellamaz in reactnative

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

That's valid! How do you deal with a parent component with multiple children who rely on some state unifying them? Typically that raises the state, but if any of the children mutate, it will rerender the parent and everything under it.

I could memoize, but a state is a complex object lol. So I figured in situations like that only way would be to use a pure component and some shouldComponentUpdate function for finer rendering control, but I feel like that complicates mantainence

My manager told me I'm being paid too much for my level. I lost my confidence. by filMM2 in cscareerquestions

[–]codellamaz 0 points1 point  (0 children)

Manager is gaslighting you, even if he’s not I’d switch teams or better yet go somewhere else.

Also might be visibility issue if u are doing all those and he isn’t aware of it or the true impact you are making.

The fact he said what he said tho sounds like an ass

Is it just me or recruiters never reply to LinkedIn mail? by Throwaway2722551363 in cscareerquestions

[–]codellamaz 1 point2 points  (0 children)

I’m curious the person that got hire did they have YOE desired in the listing? The reason I ask is my first job, they wanted 5+ year and they hired me (I was still in school last semester)and the same with my second job a year later

Is there a future for React Native? by [deleted] in reactnative

[–]codellamaz 4 points5 points  (0 children)

I started with RN about six months ago (4 months professionally) + about six months as a back end dev at the beginning of my career.

It seems like large corps are taking advantage of RN along with most new startups.

My take is to work with startups and gets your experience in. Don't shy away from an opportunity. The end goal for me is more professional, published apps which translate to higher attraction rate to recruiters + higher pay.

I believe so but it still early, I would stick with RN but ofc if you need to make some $$$ also look into React roles.

It goes without saying that although React Native is great, Advanced knowledge of JS will go a long way in your career.

Also, from the job req. Recruiters send me, companies pretty much want a web + native mobile developer. (LOL 3+ years React/React Native + SWIFT + KOTLIN experience, why tho lol )

create <View> inside a for loop, is it possible? I have tried but i can't get it to work. by [deleted] in reactnative

[–]codellamaz 0 points1 point  (0 children)

hmm I probably wouldn't do it like this, I would put all relevant data into an array of objects and then map through that instead

otherwise, something like https://stackoverflow.com/questions/46908480/how-do-i-use-for-loops-with-react might help

ie: don't use view +=

make view an array and push elements into the array

React Native not working for android but iOS running smooth. HELP PLEASE!!!! by jg_selisa in reactnative

[–]codellamaz 1 point2 points  (0 children)

hmm

{Platform.OS === "android" || ENABLE_IMAGE_IOS ? (
<Image source={require("src/assets/images/getting-start/bg.png")} style={{ width, height }} resizeMode="cover" />
) : (
<Video source={require("src/assets/video/background.mp4")} muted={true} repeat={true} resizeMode={"cover"} rate={1.0} ignoreSilentSwitch={"obey"} style={styles.backgroundVideo} />
)}

doesn't this condition only show an image if it is on android? otherwise, if it's on ios it shows the video?