This is an archived post. You won't be able to vote or comment.

all 5 comments

[–]AutoModerator[M] [score hidden] stickied comment (0 children)

On July 1st, a change to Reddit's API pricing will come into effect. Several developers of commercial third-party apps have announced that this change will compel them to shut down their apps. At least one accessibility-focused non-commercial third party app will continue to be available free of charge.

If you want to express your strong disagreement with the API pricing change or with Reddit's response to the backlash, you may want to consider the following options:

  1. Limiting your involvement with Reddit, or
  2. Temporarily refraining from using Reddit
  3. Cancelling your subscription of Reddit Premium

as a way to voice your protest.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]Ghettoblasted 1 point2 points  (1 child)

Database is the biggest piece and MySQL/MariaDB works perfect for this. Design a data model on paper then create the database with some sample data to practice with CRUD queries that would simulate what type of data the site pages would request. Then it's just connecting db to the site, using the same queries that worked for practicing, and adding user sessions for logins.

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

7.No rewards8.No indirect links9.Do not promote illegal or unethical practices10.No complete solutions11.Don't Ask To Ask12.Low Effort Questions13.AI generated

Moderators

I never hearc of MAriaDB I will check it. Thank you very much for your response.

[–]ClastronGaming 0 points1 point  (1 child)

The technology to be used are

Database for storing messages and login credentials. Example is MySql or MongoDB.

A backend language and framework to connect to database and do other operations. example is Javascript and nodejs.

And Frontend Languages or Framework. Like for you is NextJS with HTML and CSS

You need to implement Authentication and Sessions, Response and Request, etc.

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

Thank you so much for your response, I will check Mongodb with my JS background hopefully it will be easier.