this post was submitted on 28 Jan 2024
-8 points (34.6% liked)

Ask Lemmy

26281 readers
1409 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 1 year ago
MODERATORS
 

I'm looking for a good idea that should be easy, but unique, and never existed, or maybe not. The web application ought to resemble the GitHub project, however, it should incorporate a distinct concept. Using Next.js and MongoDB.

Help me! :)

top 5 comments
sorted by: hot top controversial new old
[–] [email protected] 11 points 7 months ago

Experience designer here. Flip your question around. Ask people about what they hate about event planning, RSVPing, meetups, etc. Then fix one of those things.

Find a user need, the build something to address that need.

[–] [email protected] 11 points 7 months ago

"Help me with my homework"

[–] [email protected] 9 points 7 months ago

Pro tip: if you want to ask for help, it's not a good idea to disparage the people who are supposed to help you immediately before you ask for help

[–] [email protected] 4 points 7 months ago

For programming, you should probably be able to copy that project design.

If you want to make it difficult for yourself, you pick a user or use case to optimise for.

Maybe you make it a wargaming centered booking and matching site (for ladders and weekly games type tournaments)?

Maybe you make it conference centre based, giving appropriately sized suggestions and showcase the rooms?

Maybe you make it for yourself and add schedule sync, or notifications, or whatever you've always been missing from your calendar app.

[–] [email protected] 1 points 7 months ago

Why event organization? are you already familiar with each piece in that list? Why that tech stack? Do you need to care about scaling or is self hosting more fun for this?

The distinct concept might be to take that stack and do something else with scheduling? I think weaving in a thing you like or want to specialize in would be better than a generic scheduling app (I don't know those apps you mentioned).

If you're doing a web app focus then the MongoDB INSERTS and updates will be easy to template once you find how they communicate. The DB should do less of the logic and just hold your "primative" data that can't be calculated. It might even do BLOBs if you want to skip a cloud bucket because you won't have to scale..

Good luck!