Three.js-WebGL-3D-website-project-By-A_S_M_Radwan
This is a 3d website. The website is my portfolio website.Android-Location-Proximity-Alert-Using-Google-Maps-Geofencing
The app should have the following features: 1. User should be able to create new reminders along with place name. 2. The app should be able to search for places from Google’s places autocomplete API. 3. The app should also be able to retrieve the place name and details from pick from map (like google maps). 4. User should be able to set a date and time that is in the future . The user will also be able to add optional comments to the reminder saved. 5. The app should also be able to remind the user with a notification in the notification bar. 6. A visual representation of the map is mandatory and the places the user saved must be distinguishable in the map. 7. User should see all reminders in Map using Markers or in a List. 8. The app should be able to show the places and times the user saved in offline mode. Note : The user can save multiple places, have multiple reminders. UI/UX should follow modern conventions. The UI should be user friendly and simple but must accommodate all the functionalities listed above. You are required to push your code to your GitHub repository and share the URL. Any commits made after the deadline will not be considered. Moreover you need to add your updated release apk in the root directory of the project.Computer-Graphics-Project-Village-View
The project is full with so many objects of a imaginational village. Here we have included day and night mode also the auto day and night changes. I have included a train also in this project which can be move forward or backward and also can be stopped any position of the line. Color changes with day and night etc.Ultimate-Travel-Management-System
radwanromy
Procedural-Language-for-SQL-Query
PL/SQL stands for “Procedural Language extensions to the Structured Query Language”. SQL is a popular language for both querying and updating data in the relational database management systems (RDBMS). PL/SQL adds many procedural constructs to SQL language to overcome some limitations of SQL. Besides, PL/SQL provides a more comprehensive programming language solution for building mission-critical applications on Oracle Databases.Laravel-Projects-By-A.-S.-M.-Radwan
My Laravel ProjectsDofLS-AG-SP-SQL
Daily-Leet-Code-Problem-Solving-Challenge
Daily Leet Code Problem Solving ChallengeLS-FE-ANGULAR
LS FE ANGULARVideo-Game-DB-Angular-13-
Video Game DB Angular 13Google-Search-Web-Scraping-JS
Task Software Engineer - September 2022React-JS-2021-Repository
Front-end web development with React has been a hot trend in 2020 and will remain just as popular in 2021. The evidence for this statement is rock-solid. Since its release, the React library has continuously been evolving and improving.Few-Drawings-In-Computer-Graphics-Avengers-Logo-Star-Stars-Circle-Human-Batman-Ship-in-C-
Few Drawing In Computer Graphics Avengers Logo | Star | Stars Circle | Human | Batman | Ship in C++Blockchain-Application-Web-3.0-React-Solidity
Blockchain Application Web 3.0 React SolidityMusic-Player-Interface-and-Radio-Player-Interface
RadioPlayerInterface which has these below abstract methods void switch(boolean on); void retune(double frequency); void setVolume(int loudness); void changeChannel(); MusicPlayerInterface which has these below abstract methods void switch(boolean on); void play(boolean on); void setVolume(int loudness); void playNext(); void playPrevious(); Develop necessary class to implement these two interfaces and test from main method. RadioPlayerInterface which has these below abstract methods void switch(boolean on); void retune(double frequency); void setVolume(int loudness); void changeChannel(); MusicPlayerInterface which has these below abstract methods void switch(boolean on); void play(boolean on); void setVolume(int loudness); void playNext(); void playPrevious(); Develop necessary class to implement these two interfaces and test from main method.Course-Registration-Class-Methods
PHP-Practice-Project-Login-Register-With-CSS-Design-By-A_S_M_Radwan
PHP Practice Project Login Register With CSS DesignProject-Demo-PHP
Library-Management-System-In-C-
OOP2 Quiz2_Equivalent_Assignement Library Management SystemLearning-web-technologies-summer-2020-2021-sec-A
Student Name: A. S. M. Radwan Student ID: 18-36384-1Algorithms
AppenAppend , Remove, Display, Sort , Binary & Linear Search And Count Codes In A Single Python Code.Bank-Application
Video-Game-Lua-Love-2D
Video Game Lua Love 2DSP-REST-API-BLOG
Basic-Coding-Terminologies---PS
Basic Coding TerminologiesFace-Recognition-using-One-Shot-learning-technique-and-Siamese-Network
Face Recognition using One-Shot learning technique and Siamese Network.OOP-Users-Personal-Information-Registration-System-
LCPS---Radwan-Romy
Leet Code Problem SolvingUniversity-Management-System
github-pages-with-jekyll
Travel-Tourism-Web-Technologies-Project
github-slideshow
A robot powered training repository 🤖MVC-Navigation-Project-Using-Spring-Boot-Oracle-Database-Maven-Dependencies-and-Bootstrap-
MVC Navigation Project Using Spring Boot Oracle Database Maven Dependencies and Bootstrapreviewing-a-pull-request
Bank-Management-In-C-Sharp
Integration-With-Angular-Bank-Locker-Service-Fornt-End
Integration With Angular Bank Locker Service Fornt-EndDepartment-and-Faculty-Controlling-System-C-sharp-
Informed-search-algorithms-using-Python-3-to-find-the-shortest-path-from-initial-point-to-goal-point
In an informed search, a heuristic is a function that estimates how close a state is to the goal state.ERABFE
Bookmark-Manager-FE-App
python-random-quote
A file-based quote bot written in PythonFull-Stack-App-using-ASP-DOT-NET-and-Angular-14
Full Stack App using ASP DOT NET 6 and Angular 14SBWA-Docker
Spring Boot Web application with Dockerwebproject
Python Django Web Frame WorkDevelop-Student-Account-book-Library-Class
1. Develop the classes Student String name String id String department float cgpa Member fields declare private. use properties to access 2 Constructor (Empty, valued) showInfo Account String accName String acid int balance Member fields declare private use properties to access 2 Constructor (Empty, valued) Deposit(int amount) Withdraw(int amount) Extended part Transfer(int amount, Account receiver) Transfer amount from one account to another account Book String bookName String bookAuthor String bookId String bookType int bookCopy // how many copy Member fields declare private. use properties to access 2 Constructor (Empty, valued) void ShowInfo() void AddBookCopy(int x)// how many copy of book Library Reuse Book Class String libName String libAddress Book [] listOfBook int totalBook; Member fields declare private. use properties to access 2 constructors (empty and valued) void ShowLibInfo() // show library info void ShowAllBooks() //show all book info as well void AddNewBook(Book book) // add a new book into lib void DeleteBook(Book book) // delete book object void AddNewBookCopy(Book book, int copy) 2. Now we want to reuse our Account class. The scenario is every student object has an account. Tasks that you have to do: I. If a student deposit a book after certain duration then for each day 10 taka will be charged by the library authority. II. Student can pay that amount (charged amount) from his/her bank account to the library account. So the library also has an account. III. Show the total amount a student paid to the library. IV. Show the total amount library gets from the students (total charged amount). V. But if any student has any valid reason for delay then the librarian can excuse the charged amount. Librarian can excuse full or partially (%). 3. In this program we want to reuse our last developed Library and Student Class. Our objective is to develop the scenario, where student can take maximum 5 books (for 5 days each) at a time from the library, and return these books. Tasks that you have to do: I. Show all the borrowed book information of a student from student class II. Show all the student name and book information from library class, which are currently borrowed by students. III. Step 2 IV. Preserve borrowed history of student object, which he/she takes in his/her lifetime. Preserve borrowed history of book objects that are taken by students.Employee-Management-System--Spring-Boot-Project
Student Management System- Spring Boot ProjectHotel-Management-System-In-C-Sharp
Vacuum-Cleaner-Agent-in-Artificial-Intelligence
Basic-Virtual_Assistant-In-Python
Scientific-and-Basic-Both-Calculator-Interface
Interface: BasicCalculatorInterface which has these below methods int sum(int x, int y) int sub(int x, int y) int multiplication(int x, int y) int division(int x, int y) ScientificCalculatorInterface int XtoY(int x, int y) Other scientific methods that you find best fit for you Develop necessary class to implement these two interfaces and test from main method.Uninform-search-algorithms-using-Python-3-to-find-the-shortest-path-from-initial-point-to-goal-point
Search algorithms using Python 3 in order to find the shortest path from initial point to goal point.Microservices-SPB-SPC-
The project on microservices with spring boot and spring cloud, and you will also understand how things work in IT industry in real time. We have have listed down all the project that we are going to make as a part of this microservice. You can always comeback to this website to check the port configurations.Sizzle.gg-Blog-Code-Up-Work
1. 'Hello World' part removed 2. I can change the author name ‘Nitish’ to ‘Alex Chaparro’ but for that I have to create a user with name; ‘Alex Chaparro’ and then I have create a post using that author and then I will able to change the visible author name from the website. And the date will automatically generate with the date when I will create the post using the author account ‘Alex Chaparro’. For example if I create the post today it will show today’s date. 3. I have replace the photo with the given photo by Marc Stoksik . 4. I have moved the ‘Sizzle blog’ title position. 5. I have changed the mouse cursor color also. 6. ‘Center align’ the search text in the header. 7. Fixed the view for ‘mobile’ ,’tablet’ and ‘desktop’.Python-Django-Web-Frame-Work
Python Django Web Frame WorkMRCE-EMP-SP_Boot-MYSQL-ANGULAR
Model , Repository, Controller, Exception Based Employee Management System Backend Spring Boot Database My SQL and Frontend Angular TypeScriptAWS-Innovate---Modern-Apps-Edition-Conference-on-October-20-
Building a future-ready business with modern applications A guide and pathway to successful modern application development Architecting, securing, and deploying serverless applications at scale Running containers securely, reliably, and at scale Expert tips to save costs, improve security, and operations.Alram-Info
The app should have the following features: 1. User should be able to create new reminders along with place name. 2. The app should be able to search for places from Google’s places autocomplete API. 3. The app should also be able to retrieve the place name and details from pick from map (like google maps). 4. User should be able to set a date and time that is in the future . The user will also be able to add optional comments to the reminder saved. 5. The app should also be able to remind the user with a notification in the notification bar. 6. A visual representation of the map is mandatory and the places the user saved must be distinguishable in the map. 7. User should see all reminders in Map using Markers or in a List. 8. The app should be able to show the places and times the user saved in offline mode. Note : The user can save multiple places, have multiple reminders. UI/UX should follow modern conventions. The UI should be user friendly and simple but must accommodate all the functionalities listed above. You are required to push your code to your GitHub repository and share the URL. Any commits made after the deadline will not be considered. Moreover you need to add your updated release apk in the root directory of the project.ERP-based-a-poultry-and-frozen-food-company-software-
Suppose you are a project manager of a software company. Your company got a big software project to develop for a poultry and frozen food company. Project is to automate their company with an ERP (Enterprise Resource Planning). Now you are planning to start the project to develop it successfully with good quality. 1. Describe from your point of view how you can state the term quality? 2. Measuring what you can say the software you developed assured quality or not and how? 3. Is it possible to assure top quality for every quality attributes? Define your answer. 4. According to your plan the software you are developing will be tested by whom?School-Result-Operating-Application-with-MySQL-using-PHP-CodeIgniter
School Result Operating Application with MySQL using PHP-CodeIgniterWeather-Checking-App
Weather Checking App AngularJapanese-Portfolio
Personal Portfolio For BJET ApplicationLearning-Japanese-through-Science-Technology-1---University-of-Tokyo
The University of Tokyo - Learning Japanese through Science & Technology-1github-upload
Upwork---Sizzle-Blog-2.0-
Amazon-Japan---Software-Development-Engineer-position-A-S-M-Radwan-45963765
Amazon Japan - Software Development Engineer position / A S M Radwan 45963765. I have passed the coding test and got interview call with in a week of the coding test.Multiple-Dart-Projects--Practice-Projects
1. BMI CalculatorLearning-Dart-and-Problem-Solving
Learning Dart and Problem SolvingLinux-Shell-Problem-Solving
Linux Shell-Problem SolvingLove Open Source and this site? Check out how you can help us