Posts

Showing posts from June 28, 2023

New Post

Intelligent Traffic Management Using || AI & Metaheuristics || ~xRay Pixy

Image
Hybrid Artificial Intelligence and Metaheuristics for Smart City TRafci Management Problem Video Chapters: 00:00 Introduction 00:40 Smart Cities 01:14 Traditional Methods for Traffic Management 02:12 Hybrid Approach AI and Metaheuristics 02:47 STEPS for Hybrid  Traffic Management System 08:40 Advantages of Smart Traffic Management System 09:33 Conclusion

JavaScript Analog Clock || Step-By-Step || ~xRay Pixy

Image
---------------------------- clock.html --------------------------------------- <html> <head> <title>Javascript Analog Clock</title> <link rel ="stylesheet" href="clock.css"> <script src = "clock.js"></script> </head> <body> <div id="clockBox">      <div id="hour"></div>      <div id="minute"></div>      <div id="second"></div>      <div id="point"></div> </div> </body> </html> ------------------------------ clock.css ----------------------------------------- #clockbox{           height: 650px;           width: 650px;           background: url(clc.png);           background-size:100%;           margin:auto;         } #hour, #minute, #second{                         position:absolute;                         background:red;                         border-radius:15px;                  
More posts