• Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

How do I go about developing my final year project?

Dong_Dingus

New Coder
Hi guys, complete newbie here and I desperately need advice. For the final year of my course, we are tasked with developing a technical solution to solve any problem we want, so I decided that I would attempt to create an application that would allow users to browse and make bookings in pubs using Android Studios and a SQLite database. I'm having very little success with this approach and I was wondering if developing a website would be a better approach? I was hoping that somebody could clarify if achieving these things is possible with a website is possible, and if so how would I go about searching for answers ( is there any course or website that could equip me with the knowledge needed)?

The features I said I said I'd incorporate are :

  • Allow administrator to upload pub to the app.
  • Allow users to create profiles containing their contact information.
  • Allow users to make a booking.
  • Allow pub managers to view bookings schedule / cancellation list.
  • Allow pub managers to check occupancy in real-time.
  • Allow pub managers to have a record of which customers were occupying which table.
  • Allow users to filter search results.
  • Allow users to go on waiting lists for pubs.
  • Allow users to search by geographical location.
  • Allow users to be contacted in case of COVID exposure.
  • Allow users to write reviews about pubs.
Any help would be very much appreciated, I hope that this was the right place to post, if not apologies.
 
Hi guys, complete newbie here and I desperately need advice. For the final year of my course, we are tasked with developing a technical solution to solve any problem we want, so I decided that I would attempt to create an application that would allow users to browse and make bookings in pubs using Android Studios and a SQLite database. I'm having very little success with this approach and I was wondering if developing a website would be a better approach? I was hoping that somebody could clarify if achieving these things is possible with a website is possible, and if so how would I go about searching for answers ( is there any course or website that could equip me with the knowledge needed)?

The features I said I said I'd incorporate are :

  • Allow administrator to upload pub to the app.
  • Allow users to create profiles containing their contact information.
  • Allow users to make a booking.
  • Allow pub managers to view bookings schedule / cancellation list.
  • Allow pub managers to check occupancy in real-time.
  • Allow pub managers to have a record of which customers were occupying which table.
  • Allow users to filter search results.
  • Allow users to go on waiting lists for pubs.
  • Allow users to search by geographical location.
  • Allow users to be contacted in case of COVID exposure.
  • Allow users to write reviews about pubs.
Any help would be very much appreciated, I hope that this was the right place to post, if not apologies.
Hey, of course it's possible to do this with a website :)
You would need 2 portals, a user portal, and an admin portal:

Users:
> create profile
> create booking
> search for bookings (by geolocation/keyword/dates/etc)
> user waiting list
> covid push alerts
> pub reviews

Admins:
> view booking schedule/cancellation
> realtime occupancy
> table occupation record

As far as your database is concerned,

Database:
> User Roles (normal user/admin/superadmin/etc)
> User data (contact info)
> Booking records
> cancellation records
> reviews/ratings
> wating lists

As far as knowledge is concerned.. if you were to implement this project by building a website, what technologies were you thinking of using? C#.NET? python (flask/django)? php (wordpress/etc)? MERN/MEVN/MEAN stack?.. Knowing what languages you are possibly going to use will give you a clear picture as to what tutorials to look for
 
Top Bottom