Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,160,479 members, 7,843,462 topics. Date: Wednesday, 29 May 2024 at 05:51 AM

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

Nairaland Forum / Science/Technology / Programming / Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work (511 Views)

Marketspaceng Just Scammed Me After Sending Him A Feature Source Code / How To Implement A Simple Image Upload Feature In Node.js / How To Develop A Feature-rich Mental Health Solution (2) (3) (4)

(1) (Reply) (Go Down)

Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by chukwuebuka65(m): 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

1 Like

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"

3 Likes

Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by chukwuebuka65(m): 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.

1 Like

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

2 Likes

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.

1 Like

Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by chukwuebuka65(m): 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

1 Like

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

1 Like

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

1 Like 1 Share

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

1 Like

Re: Have Abandoned A Feature In Your Project Because You Couldn’t Get It To Work by mocochannel: 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)

A Nairalander Creates A Music App Using React And Django REST / Let's See The Real Programmers Here / What TECH Can A Graphic Designer Learn In 2024

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 25
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.