OSDev.org

The Place to Start for Operating System Developers
It is currently Thu Mar 28, 2024 2:23 pm

All times are UTC - 6 hours




Post new topic Reply to topic  [ 5 posts ] 
Author Message
 Post subject: Where do I start with this project?
PostPosted: Mon May 04, 2020 1:26 pm 
Offline

Joined: Mon May 04, 2020 1:16 pm
Posts: 1
I am fairly new to programming. I am lightly familiar with python, html and css from courses I have done several years ago. Right now I am working my way through CS50 and really enjoying it.

I have an idea for a project I want to develop full stack by myself. I would like to know if you think I will be able to figure it out by myself after CS50, or if i should look for more training before starting. Also If you have any recommendations on anything that could help me, please do help.

Project:

A web application for organizational scheduling and organization. The user would be the manager of a company. They would input all of their employees and current projects. They would be able to assign the projects to certain/groups of employees. The manager would then be able to make a daily/weekly/monthly schedule by selecting only the project. The application would know which employees are involved and schedule them accordingly. The app would also alert the manager if they called an employee to two different meetings at the same time without realizing.

A later iteration of this app would allow the employees to log in and see their personalized schedule for the day/week/month, rather than searching through the full company schedule.

I am sure there is software very similar to this already. I want to do this as a personal development project regardless.

Right now I am thinking about python and a framework like django for the back end. And obviously html/css for the front end. Is it essential that I learn javascript for the front end too? These ideas of how to implement it are purely because I don't know any better, so please give me suggestions.

Thank you!


Top
 Profile  
 
 Post subject: Re: Where do I start with this project?
PostPosted: Wed Nov 04, 2020 12:39 pm 
Offline

Joined: Mon Oct 19, 2020 10:32 am
Posts: 14
pilecarls8 wrote:
Right now I am thinking about python and a framework like django for the back end. And obviously html/css for the front end. Is it essential that I learn javascript for the front end too?


I'm not an expert on web developing, but every website I have made uses JavaScript for the front end, and that is what I would recommend using, but I think you can use PHP for front end too. Also, you could use other languages for the back end, if you want.

pilecarls8 wrote:
These ideas of how to implement it are purely because I don't know any better, so please give me suggestions.


You could use a MySQL or any other kind of database, with information about the users, the employees, the projects, etc. Then for things like assigning projects to employees you can store some kind of identifier of either of those to the other.


Top
 Profile  
 
 Post subject: Re: Where do I start with this project?
PostPosted: Wed Nov 04, 2020 12:51 pm 
Offline
Member
Member
User avatar

Joined: Thu Oct 13, 2016 4:55 pm
Posts: 1584
pilecarls8 wrote:
I am fairly new to programming. I am lightly familiar with python, html and css from courses I have done several years ago. Right now I am working my way through CS50 and really enjoying it.
Please don't get this the wrong way, but your experience is definitely inadequate for OS development. See Required Knowledge.

pilecarls8 wrote:
A web application for organizational scheduling and organization.
Hmmm, doesn't sound like an OS at all. Are you sure you have posted this question on the right forum? You might have better luck with stackexchange IMHO.

Cheers,
bzt


Top
 Profile  
 
 Post subject: Re: Where do I start with this project?
PostPosted: Wed Nov 04, 2020 1:34 pm 
Offline
Member
Member

Joined: Wed Aug 30, 2017 8:24 am
Posts: 1593
bzt wrote:
Hmmm, doesn't sound like an OS at all.
Well, this is the "General Programming" category, in the "Everything Else" section. Meaning it is specifically not about operating systems.
segfaultdev wrote:
I'm not an expert on web developing, but every website I have made uses JavaScript for the front end, and that is what I would recommend using, but I think you can use PHP for front end too. Also, you could use other languages for the back end, if you want.
You can make do without JavaScript, and whether you have your sites generated by PHP, Perl, or even C (with CGI) doesn't really matter. More important at the start is a plan for how you can get what you want. You want a web app that saves data persistently, so that sort of hints at the need for a database. But before you roll out your SQL schema, think about how this all should come together. What do the pages look like? What pages exist, and how do they interact? You have to plan this stuff out. Once you have that, writing a program to generate the HTML is basically the easy part.

Maybe foregoing JavaScript for the moment is easier, if only because this way you only have to think about two layers of source code (PHP/Perl/whatever generating HTML, which then is displayed) rather than three (JavaScript at the end of it all). Mind you, I also don't do web dev professionally.

_________________
Carpe diem!


Top
 Profile  
 
 Post subject: Re: Where do I start with this project?
PostPosted: Wed Nov 04, 2020 3:23 pm 
Offline
Member
Member
User avatar

Joined: Tue Sep 15, 2020 8:07 am
Posts: 264
Location: London, UK
I built a project/resource scheduler to support a matrix working environment a few years ago... the database side of it is very difficult to get right (lots of transaction and relationships), I had to go through quite a few design iterations before I had something even remotely useful from a data structure point of view.

I really hate SQL databases :)

I would suggest a much more straightforward project, to bring your skills up!

_________________
CuriOS: A single address space GUI based operating system built upon a fairly pure Microkernel/Nanokernel. Download latest bootable x86 Disk Image: https://github.com/h5n1xp/CuriOS/blob/main/disk.img.zip
Discord:https://discord.gg/zn2vV2Su


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 

All times are UTC - 6 hours


Who is online

Users browsing this forum: No registered users and 27 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group