₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,008 members, 8,448,217 topics. Date: Monday, 20 July 2026 at 01:16 AM

Toggle theme

Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work - Programming - Nairaland

Nairaland ForumScience/TechnologyProgrammingHave Abandoned A Feature In Your Project Because You Couldn’t Get It To Work (824 Views)

1 Reply (Go Down)

Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by chukwuebuka65(op): 8:59am On Sep 27, 2022
In my last project , the social media app I built. I wanted to select the number of comments that a post has while getting the posts from the database at once using eager loading. I was able to implement it on my local machine using “sequelize.literal” method of the sequelize ORM , but when I deployed it , I was getting an error , “comment.postid not found”. I tried to fixed it , browsed through the whole pages on stackoverflow ( not really all the pages ) , yet no show. So I decided to leave out the feature. But I was loosing sleep over it. Think about it , while browsing through posts in a social media app, if a post has comments, users should see the number of comments, when they now click the posts, they can then see the comments.
So yesterday, I decided to give it one more shot. I found a blog post that suggested using “sequelize.fn” method. So I tried it, and the error was gone, I landed into another error, something in the line of “group by “ and “aggregate functions”. I had to go and read about aggregate functions. Long story short, I was able to get it to work, went and took a bottle of beer to congratulate myself.
So my question is, is it advisable to abandon a feature you want to implement or a whole project entirely because because something is not working ? Or do continue to search for the solution until you find it before moving to the next project?

Link to the app: https://luppi-react.herokuapp.com
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by Nobody: 11:57am On Sep 27, 2022
Hmm.... for me I'd say don't let one feature over delay u in implementing others, just circle it and move to the next.


Naturally the solution will come to u....
Sometimes you'd just sit out somewhere drinking that beer and the solution will just come to u.... like you won't even know when it hits u.... and you'd be like... "So na this thing I the here the kill myself since"
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by chukwuebuka65(op): 2:28pm On Sep 27, 2022
GREATIGBOMAN:
Hmm.... for me I'd say don't let one feature over delay u in implementing others, just circle it and move to the next.


Naturally the solution will come to u....
Sometimes you'd just sit out somewhere drinking that beer and the solution will just come to u.... like you won't even know when it hits u.... and you'd be like... "So na this thing I the here the kill myself since"
Nice one, that’s what I will be doing from now on, circle it and move to the next. I waste a lot of time on projects because when I get stuck I don’t move on until find the solution. Thanks for the idea.
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by Enceladus(m): 2:45pm On Sep 27, 2022
I have more abandoned projects than completed ones grin Mostly because of trying to do something unrealistic for a single individual.

To your answer sure why not? Another approach is to plan your personal projects the same way your product manager and tech lead does. This will help you research more about the implementation before you write a single line of code which thereby the problem would've been solved before you jump into your IDE.

great app btw
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by Ayomarcel(m): 3:22pm On Sep 27, 2022
Seems like a question for Scrum Masters. It's actually good to see you finally found a solution to the problem tho.
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by chukwuebuka65(op): 4:38pm On Sep 27, 2022
Enceladus:
I have more abandoned projects than completed ones grin Mostly because of trying to do something unrealistic for a single individual.

To your answer sure why not? Another approach is to plan your personal projects the same way your product manager and tech lead does. This will help you research more about the implementation before you write a single line of code which thereby the problem would've been solved before you jump into your IDE.

great app btw
Thanks bro
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by NEUDUDE: 6:27pm On Sep 27, 2022
I have found that revisiting a problem works

If it gives you too much trouble, take a chill pill that moment and revisit later. Always works for me
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by Fourpockets: 7:38pm On Sep 27, 2022
chukwuebuka65:
In my last project , the social media app I built. I wanted to select the number of comments that a post has while getting the posts from the database at once using eager loading. I was able to implement it on my local machine using “sequelize.literal” method of the sequelize ORM , but when I deployed it , I was getting an error , “comment.postid not found”. I tried to fixed it , browsed through the whole pages on stackoverflow ( not really all the pages ) , yet no show. So I decided to leave out the feature. But I was loosing sleep over it. Think about it , while browsing through posts in a social media app, if a post has comments, users should see the number of comments, when they now click the posts, they can then see the comments.
So yesterday, I decided to give it one more shot. I found a blog post that suggested using “sequelize.fn” method. So I tried it, and the error was gone, I landed into another error, something in the line of “group by “ and “aggregate functions”. I had to go and read about aggregate functions. Long story short, I was able to get it to work, went and took a bottle of beer to congratulate myself.
So my question is, is it advisable to abandon a feature you want to implement or a whole project entirely because because something is not working ? Or do continue to search for the solution until you find it before moving to the next project?

Link to the app: https://luppi-react.herokuapp.com
Yes, I remember one game I was working on a while back. Also my second to last react project, I didn't implement local storage functionality cos I was getting errors, though it was just supposed to be an added feature I wanted to do that's why I abandoned it
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by Fourpockets: 7:40pm On Sep 27, 2022
NEUDUDE:
I have found that revisiting a problem works

If it gives you too much trouble, take a chill pill that moment and revisit later. Always works for me
That's what I also do, then I'll just be eating the solution will just come to me
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by NEUDUDE: 8:18pm On Sep 27, 2022
Fourpockets:
That's what I also do, then I'll just be eating the solution will just come to me
Exactly lol. I was forcing myself to solve a problem for 2 days haha i wish i knew better then grin. I just ignore the thing completely came back a day later with fresh intuition and voila. Like magic it didnt take me 15minutes to solve it lol
Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by Nobody: 4:13am On Oct 16, 2022
chukwuebuka65:
In my last project , the social media app I built. I wanted to select the number of comments that a post has while getting the posts from the database at once using eager loading. I was able to implement it on my local machine using “sequelize.literal” method of the sequelize ORM , but when I deployed it , I was getting an error , “comment.postid not found”. I tried to fixed it , browsed through the whole pages on stackoverflow ( not really all the pages ) , yet no show. So I decided to leave out the feature. But I was loosing sleep over it. Think about it , while browsing through posts in a social media app, if a post has comments, users should see the number of comments, when they now click the posts, they can then see the comments.
So yesterday, I decided to give it one more shot. I found a blog post that suggested using “sequelize.fn” method. So I tried it, and the error was gone, I landed into another error, something in the line of “group by “ and “aggregate functions”. I had to go and read about aggregate functions. Long story short, I was able to get it to work, went and took a bottle of beer to congratulate myself.
So my question is, is it advisable to abandon a feature you want to implement or a whole project entirely because because something is not working ? Or do continue to search for the solution until you find it before moving to the next project?

Link to the app: https://luppi-react.herokuapp.com
awfar the project?
1 Reply

Are You A Programmer Or App Developer Who Wish To Work Remotely For A US CompanyHow To Implement A Simple Image Upload Feature In Node.jsHow To Develop A Feature-rich Mental Health Solution234

Understand Your Computer BetterPlease I Need Your Help!How To Develop Interactive Applications