| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="description" content="">
- <meta name="author" content="">
- <title>Algometic.com</title>
- <!-- Bootstrap core CSS -->
- <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
- <!-- Custom styles for this template -->
- <link href="css/one-page-wonder.css" rel="stylesheet">
- </head>
- <script>
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
- })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
- ga('create', 'UA-62093335-3', 'auto');
- ga('send', 'pageview');
- </script>
- <body>
- <!-- Navigation -->
- <nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
- <a class="navbar-brand" href="#">On To The Next One</a>
- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
- <span class="navbar-toggler-icon"></span>
- </button>
- <div class="collapse navbar-collapse" id="navbarResponsive">
- <ul class="navbar-nav ml-auto">
- <li class="nav-item active">
- <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="#">About</a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="#">Resources</a>
- </li>
- <li class="nav-item">
- <a class="nav-link" href="#">Contact</a>
- </li>
- </ul>
- </div>
- </nav>
- <header class="masthead">
- <div class="overlay">
- <div class="container">
- <h1 class="display-1 text-white">Algometic Dot Com</h1>
- <h2 class="display-4 text-white">Where miracle happens</h2>
- </div>
- </div>
- </header>
- <section>
- <div class="container">
- <div class="row align-items-center">
- <div class="col-md-6 order-2">
- <div class="p-5">
- <img class="img-fluid rounded-circle" src="https://unsplash.it/500/500?image=182" alt="">
- </div>
- </div>
- <div class="col-md-6 order-1">
- <div class="p-5">
- <h2 class="display-4">Organisms are algorithms...</h2>
- <p>
- public static class Problem {
- <br>
- // constants for appliance types:
- <br>
- enum Appliance {REFRIGERATOR, MICROWAVE, TV, DVD};
- <br>
- // constants for problem types:
- <br>
- enum ProblemType {NOT_RUNNING, SMOKING, ON_FIRE,
- MAKES_NOISE};
- <br>
- // constants for environmental data:
- enum EnvironmentalDescription {CIRCUIT_BREAKER_OFF,
- LIGHTS_OFF_IN_ROOM};
- </p>
- </div>
- </div>
- </div>
- </div>
- </section>
- <section>
- <div class="container">
- <div class="row align-items-center">
- <div class="col-md-6">
- <div class="p-5">
- <img class="img-fluid rounded-circle" src="https://unsplash.it/500/500?image=500" alt="">
- </div>
- </div>
- <div class="col-md-6">
- <div class="p-5">
- <h2 class="display-4">The algorithms constituting a human are not free!</h2>
- <p>
- The future evolution of technology wherein data become more valuable than humans. Dataism goes beyond techno-humanism, which envisions technology making people smarter. Dataism implies that the data are more important and that without the data, people become helpless...
- </p>
- </div>
- </div>
- </div>
- </div>
- </section>
- <section>
- <div class="container">
- <div class="row align-items-center">
- <div class="col-md-6 order-2">
- <div class="p-5">
- <img class="img-fluid rounded-circle" src="https://unsplash.it/500/500?image=239" alt="">
- </div>
- </div>
- <div class="col-md-6 order-1">
- <div class="p-5">
- <h2 class="display-4">Let there be algorithm!</h2>
- <p>
- The Matrix is everywhere, it's all
- around us, here even in this room.
- You can see it out your window, or
- on your television. You feel it
- when you go to work, or go to
- church or pay your taxes. It is
- the world that has been pulled
- over your eyes to blind you from
- the truth.
- </p>
- </div>
- </div>
- </div>
- </div>
- </section>
- <!-- Footer -->
- <footer class="py-5 bg-dark">
- <div class="container">
- <p class="m-0 text-center text-white">Copyright © cigarbar@gmx.com 2017</p>
- </div>
- <!-- /.container -->
- </footer>
- <!-- Bootstrap core JavaScript -->
- <script src="vendor/jquery/jquery.min.js"></script>
- <script src="vendor/popper/popper.min.js"></script>
- <script src="vendor/bootstrap/js/bootstrap.min.js"></script>
- </body>
- </html>
|