Distributed and decentralized pi calculation
at main 37 lines 1.5 kB view raw
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>Pistributed Home</title> 7 <style> 8 * { 9 font-family: "Roboto", sans-serif; 10 font-optical-sizing: auto; 11 color: white; 12 text-align: center; 13 font-style: normal; 14 font-variation-settings: "wdth" 100; 15 } 16 body { 17 background-color: black; 18 } 19 </style> 20 <link rel="preconnect" href="https://fonts.googleapis.com"> 21 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 22 <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> 23</head> 24<body> 25 <h1>Pistrubuted {{ version }}</h1> 26 <p>Pistrubuted is an open-source server & client to calculate Pi with distrubuted machines. Get started by downloading the client and connecting to this server.</p> 27 <p>Pi is multiplied by {{ multi }}</p> 28 <p>{{ pi }}</p> 29 <p>{{ pilen }}</p> 30 <hr> 31 <footer> 32 <p>This server is run by {{ name }}. Contact them at {{ email }} for support.</p> 33 <p>Made with Python, Flask, and love by Wish ❤️</p> 34 <p>Client, server, and website is made available via GPL-3.0. Learn more at <a href="https://github.com/wish13yt/pistributed">https://github.com/wish13yt/pistributed</a>.</p> 35 </footer> 36</body> 37</html>