Posts

Showing posts from June, 2023

New Post

Poplar Optimization Algorithm || Step-By-Step || ~xRay Pixy

Image
The Poplar Optimization Algorithm (POA) is a nature-inspired optimization method based on how poplar trees reproduce. It uses sexual propagation (seed dispersal by wind) for exploration and asexual reproduction (cutting and regrowth) for exploitation. Mutation and chaos factors help maintain diversity and prevent premature convergence, making POA efficient for solving complex optimization problems. Learn the Poplar Optimization Algorithm Step-By-Step using Examples. Video Chapters: Poplar Optimization Algorithm (POA) 00:00 Introduction 02:12 POA Applications 03:32 POA Steps 05:50 Execute Algorithm 1 13:45 Execute Algorithm 2 16:38 Execute Algorithm 3 18:15 Conclusion Main Points of the Poplar Optimization Algorithm (POA) Nature-Inspired Algorithm ā€“ Based on the reproductive mechanisms of poplar trees. Two Key Processes : Sexual Propagation (Seed Dispersal) ā€“ Uses wind to spread seeds, allowing broad exploration. Asexual Reproduction (Cuttings) ā€“ Strong branches grow ...

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{      ...

Hunger Games Search Algorithm || Step-By-Step || ~xRay Pixy

Image
Learn Hunger Games Search (HGS) Optimization Algorithm Step-By-Step Hunger Games Search Algorithm Video Chapters: 00:00 Introduction 00:30 About Hunger Games Search Algorithm 06:00 Algorithm Steps 16:00 Conclusion

JavaScript Calculator Step-By-Step ~xRay Pixy

Image
HTML + JAVASCRIPT CODE <html> <head> <title>JavaScript Calculator</title> <link rel="stylesheet" href="calc.css"/> </head> <body> <div class="front"> <form name="form"> <input id="clac" type="text" name="result"><br><br> <input type= "button" value ="1" onclick="form.result.value += '1'"> <input type= "button" value ="2" onclick="form.result.value += '2'"> <input type= "button" value ="3" onclick="form.result.value += '3'"> <input type= "button" value ="+" onclick="form.result.value += '+'"> <br><br> <input type="button" value="4" onclick="form.result.value += '4'"> <input type="button" value="5"...
More posts