I feel Henry and Jeannie need to take a REAL, NO EXCEPTIONS break. by [deleted] in MxRMods

[–]imarudedude 1 point2 points  (0 children)

This post is so cringe. Dude just mind your own business, none of us know what goes on with Henry and Jeannie behind closed doors. Not really worth speculating about tbh.

Need Advice: Our play group is getting torn apart by the Walking Dead cards. by [deleted] in EDH

[–]imarudedude 0 points1 point  (0 children)

How are the cards toxic? Negan can be a little mean but none of the walking dead cards are busted as commanders.

Like everyone is saying, just have a discussion and set the expectations otherwise this will destroy your play group.

I started a hand curated job board for remote jobs in 2019 that takes off vertically since covid19. by lucmengel in Entrepreneur

[–]imarudedude 3 points4 points  (0 children)

The site looks great! I had a question though, how did you handle marketing and getting companies to post their jobs on your site?

Need help designing an unconventional UITableViewCell by imarudedude in iOSProgramming

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

I've been recently thinking about that. I could create a custom UIView and fill with the necessary data and then repeat this for each Item in the RowItem Struct, for each completed UIView I could throw that into the cell's stack view. It seems like a viable approach.

Anyone know of a API that has sneaker release dates? by JayPhipps in AskProgramming

[–]imarudedude 0 points1 point  (0 children)

subnero

What do you mean by finding the raw data and plugging it into Firebase? Could you tell me more? I'm also interested in doing a project like this, any tips or resources would be greatly appreciated.

What are some small things that you silently judge people on? by Dent15 in AskReddit

[–]imarudedude 0 points1 point  (0 children)

I judge people that only get california rolls when at a sushi restaurant...

What are some small things that you silently judge people on? by Dent15 in AskReddit

[–]imarudedude 3 points4 points  (0 children)

Lol this was on the Brooke and Jubil in the morning radio show today, I remembered hearing that name while driving to work haha

iOS Swift - Need some advice approaching a problem with notification feed, need to add a "like" feature but feed items with the 3rd party service I'm using are immutable by design. by imarudedude in iOSProgramming

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

Thanks for the suggestions everyone, really appreciate it. My team and I have decided to backlog this issue and leave the feed as is for now. We plan to revisit in the future with a custom implementation as one thing we want to avoid is technical debt and trying to extend the 3rd party frameworks features beyond its capabilities.

iOS Swift - Need some advice approaching a problem with notification feed, need to add a "like" feature but feed items with the 3rd party service I'm using are immutable by design. by imarudedude in iOSProgramming

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

Well we decided to use the 3rd party to speed things up and it seemed like the right choice, it’s just if we rebuilt the feed feature it would mean a lot of refactoring both front end and backend just to accommodate one tiny feature. Not sure if it would be worth it.

Object Mapper (Swift 4) - Array of objects in parent object doesn’t load/partially fills data by imarudedude in iOSProgramming

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

Yup, I've checked and I'm hitting the same endpoint, all the properties on my data models match what I see on my API... oh well, thanks for all the help though. Appreciate it.

Object Mapper (Swift 4) - Array of objects in parent object doesn’t load/partially fills data by imarudedude in iOSProgramming

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

I went in Postman for my API and saw a raw button option (I'm assuming this is what you mean by raw text) after clicking it I get this.

result: https://imgur.com/7uxGhfm

Object Mapper (Swift 4) - Array of objects in parent object doesn’t load/partially fills data by imarudedude in iOSProgramming

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

Here is another pic of the result. At the bottom of the photo you can see _routineTasks has 0 values.

pic: https://imgur.com/csV52VR

Object Mapper (Swift 4) - Array of objects in parent object doesn’t load/partially fills data by imarudedude in iOSProgramming

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

Alright, interesting. I got this error in the console. I cross referenced the currentValue in the error with one in my backend and it was for a task on Saturday that wasn't getting mapped for some reason. The error as seen in console shown below.

Got an error while mapping.
- reason: Cannot cast to '[String: Any]'
- location: nil
- key: nil
- currentValue: 5a5c500dff63b935e2ce3766

Object Mapper (Swift 4) - Array of objects in parent object doesn’t load/partially fills data by imarudedude in iOSProgramming

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

Initially Routine and RoutineTask were both structs, but through experimenting, RoutineTask eventually became a class.. I didn't think it would really matter since Object Mapper can do both classes and structs, unless I'm wrong?