Mishors
Senior Software Engineer at Enjaz Bank | Expert in IBM App Connect Enterprise, Integration Bus, MQ, API Connect, Cloud Pak for Integration (CP4I)
Riyadh, KSA
Pinned Repositories
8-Puzzle
The program is implemented in Java to solve 8-Puzzle using Informed and Uninformed Search Algorithms like (BFS, DFS & A*). The solver is supported with nice GUI to view the steps of reaching the goal state from the initial state.
Chess_game
Simple 2-player console chess game 8 by 8 grid implemented in C. It supports vali- dations of the wrong moves, checkmates, promotion and stalemate. Also it supports Undo/Redo facility.
Deep-Learning
Dynamic-Memory-Allocator
Dynamic memory allocator project to implement malloc and free functions in C to perform like the built-int functions in malloc Package of C. Hint: The base code for this project is taken from Computer Systems_ A Programmer's Perspective by Randal E. Bryant, David R. O'Hallaron
Hajj-Assistant
Smart assistant similar to Google assistant is designed us- ing Google DialogFlow NLP Engine to help Muslims during their pilgrimage (Hajj) journey. I participated with this ap- plication in Hajj Hackathon 2018. The back-end is Nodejs and DialogFlow.
Landing-Page
This Project is a front-end implementation of a website landing page using HTML and CSS.
Maze-Solver-using-RL
Implemented in Python. It generates a random maze that has a solution and two Reinforcement Learning algorithms (Policy Iteration & Value Iteration) are used to solve the maze to give the shortest path as the program output.
PintOS
Implementation of the operating system named PintOS which is a project from Stan- ford university. It consists of 3 projects for implementing Threads, timer interrupt, priority schedulers, UI to run user programs and system calls.
Replicated-Distributed-File-System
The system consists of one main server (master) and, data will be replicated on multiple replicaServers. This file system allows its concurrent users to perform transactions, while guaranteeing ACID properties.
RISK
Simple implementation for the game in Python with options to play with Smart Agents (Computer Side). There are multiple types of smart agents implemented for example (passive, aggressive, pacifist and greedy agents) to compare their performance and intelligence. The game has a nice GUI that enables the players to play the game.
Mishors's Repositories
Mishors/PintOS
Implementation of the operating system named PintOS which is a project from Stan- ford university. It consists of 3 projects for implementing Threads, timer interrupt, priority schedulers, UI to run user programs and system calls.
Mishors/8-Puzzle
The program is implemented in Java to solve 8-Puzzle using Informed and Uninformed Search Algorithms like (BFS, DFS & A*). The solver is supported with nice GUI to view the steps of reaching the goal state from the initial state.
Mishors/Chess_game
Simple 2-player console chess game 8 by 8 grid implemented in C. It supports vali- dations of the wrong moves, checkmates, promotion and stalemate. Also it supports Undo/Redo facility.
Mishors/Deep-Learning
Mishors/Dynamic-Memory-Allocator
Dynamic memory allocator project to implement malloc and free functions in C to perform like the built-int functions in malloc Package of C. Hint: The base code for this project is taken from Computer Systems_ A Programmer's Perspective by Randal E. Bryant, David R. O'Hallaron
Mishors/Hajj-Assistant
Smart assistant similar to Google assistant is designed us- ing Google DialogFlow NLP Engine to help Muslims during their pilgrimage (Hajj) journey. I participated with this ap- plication in Hajj Hackathon 2018. The back-end is Nodejs and DialogFlow.
Mishors/Landing-Page
This Project is a front-end implementation of a website landing page using HTML and CSS.
Mishors/RISK
Simple implementation for the game in Python with options to play with Smart Agents (Computer Side). There are multiple types of smart agents implemented for example (passive, aggressive, pacifist and greedy agents) to compare their performance and intelligence. The game has a nice GUI that enables the players to play the game.
Mishors/Maze-Solver-using-RL
Implemented in Python. It generates a random maze that has a solution and two Reinforcement Learning algorithms (Policy Iteration & Value Iteration) are used to solve the maze to give the shortest path as the program output.
Mishors/Replicated-Distributed-File-System
The system consists of one main server (master) and, data will be replicated on multiple replicaServers. This file system allows its concurrent users to perform transactions, while guaranteeing ACID properties.
Mishors/Data-structures-in-C
This project includes implementation of basic data structures written in C language. Singly linked list is implemented and support the basic operations done on the list and also Hash-table is implemented using arrays and the linked list (implemented in the project) to resolve collision of hashed keys.
Mishors/DBMS-JDBC
Mishors/Linux-Shell
Implementation of Linux shell in C which support exeution of most of Linux shell commands.
Mishors/Math-Steps-Solver
Math Steps Solver Libraries
Mishors/Misho_Weather
Mishors/Numerical-Methods
Mishors/Order-Processing-System
Mishors/Rock-Paper-Scissors
This is simple Javascript implementation of the the classical Rock, Paper, Scissors game.
Mishors/SIC-Assembler
The assembler reads the source SIC Machine assembly program and generates the object program and the listing file. Implemented in Java