A ChatGPT based emulation of the therapist Doctor Kernel from the book "A digital Affair" by Neora Shem Shaul
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

lan-help.html 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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">
  6. <title>Connect to Doctor Kernel's WWW server over LAN</title>
  7. <link href="css/bootstrap.min.css" rel="stylesheet">
  8. <style>
  9. .center-block {
  10. display: block;
  11. margin-left: auto;
  12. margin-right: auto;
  13. }
  14. </style>
  15. </head>
  16. <body style="background-color:white">
  17. <div class="container">
  18. <div class="row">
  19. <div class="col-12">
  20. <div class="jumbotron text-center" style="background-color:#000084">
  21. <br/>
  22. <h1>Doctor Kernel's session logs</h1>
  23. <h3>How to connect via WWW over LAN</h3>
  24. </div>
  25. <div class="alert alert-danger text-center" style="background-color:white">
  26. <h4>*** CONFIDENTIAL ***</h4>
  27. <p>
  28. This service provides
  29. you &mdash; the patient &mdash; with
  30. access to <strong>your own</strong> session logs.
  31. It is unethical to access logs of other patients
  32. and you are <strong>firmly</strong> requested
  33. <strong>not</strong> to do so.
  34. </p>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="row">
  39. <div class="col-md-6">
  40. <div class="alert alert-info text-center">
  41. <h4><span class="badge">1</span> First, connect to the <code>doctor_kernel</code> WiFi network with the password <code>daemonthedog</code><h4>
  42. <img class="img-responsive center-block" style="marginalt="WiFi QR code" src="qrwifi.png" />
  43. </div>
  44. </div>
  45. <div class="col-md-6">
  46. <div class="alert alert-info text-center">
  47. <h4><span class="badge">2</span> You can then use your browser to connect to the <code>http://192.168.113.94:8000</code> WWW server<h4>
  48. <img class="img-responsive center-block" style="marginalt="WWW server QR code" src="qrlogserver.png" />
  49. </div>
  50. </div>
  51. </div>
  52. <div class="row">
  53. <div class="col-12">
  54. <div class="alert alert-warning text-center">*** VERTRAULICH ***</div>
  55. </div>
  56. </div>
  57. </div>
  58. <script src="js/bootstrap.min.js"></script>
  59. </body>
  60. </html>