Abdelrahman Sayed (@xBodda)

Top repositories

1

cross_road

JavaScript
1
star
2

OsteoEgypt

Blade
1
star
3

lets-hike

University Web Project
JavaScript
1
star
4

Brain-Tumor-Classifiers

Propose various machine learning/deep learning models (at least 5 classifiers including a deep learning model)
Jupyter Notebook
1
star
5

Disk-Scheduling

The direct-access nature of disks gives us flexibility in the implementation of files. In almost every case, many files are stored on the same disk. The main problem is how to allocate space to these files so that disk space is utilized effectively, and files can be accessed quickly. Three major methods of allocating disk space are in wide use: contiguous, linked, and indexed. Each method has advantages and disadvantages. Although some systems support all three, it is more common for a system to use one method for all files within a file-system type. You are required to implement a simulator the runs the different file allocation methods shows the content of the different associated tables.
Java
1
star
6

Teaching-Assistant

A university computer science department has a teaching assistant (TA) who helps undergraduate students with their programming assignments during regular office hours. The TA’s office is rather small and has room for only one desk with a chair and computer. There are three chairs in the hallway outside the office where students can sit and wait if the TA is currently helping another student. When there are no students who need help during office hours, the TA sits at the desk and takes a nap. If a student arrives during office hours and finds the TA sleeping, the student must awaken the TA to ask for help. If a student arrives and finds the TA currently helping another student, the student sits on one of the chairs in the hallway and waits. If no chairs are available, the student will come back at a later time. Using threads, mutex locks, and semaphores, implement a solution that coordinates the activities of the TA and the students.
Java
1
star