BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

chat.php 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?php
  2. declare(strict_types=1);
  3. # Formerly Rules::display_forum_rules()
  4. # and Rules::display_irc_chat_rules()
  5. $ENV = ENV::go();
  6. View::show_header('Chat Rules');
  7. /**
  8. * Designated debug area
  9. */
  10. /*
  11. echo '<pre>';
  12. #var_dump();
  13. #var_dump();
  14. #var_dump();
  15. echo '</pre>';
  16. */
  17. ?>
  18. <div class="box pad">
  19. <p>
  20. Anything not allowed on the forums is also not allowed on IRC and vice versa.
  21. They are separated for convenience only.
  22. </p>
  23. </div>
  24. <h2>
  25. Forum rules
  26. </h2>
  27. <div class="box pad rule_summary">
  28. <ul>
  29. <li>
  30. Let's treat the biology boards like how the Shroomery used to be:
  31. each thread a set of resourceful wisdom worth using permalinks to.
  32. It's okay if the boards are slow, that's why there are only a few of them.
  33. </li>
  34. <li>
  35. Please discuss site news in the corresponding Announcements thread instead of making a new General thread.
  36. Discussing science-related news in General is highly encouraged, but discussing political news is much less
  37. so.
  38. But don't self-censor, e.g., you can discuss the political and economic factors of the 2019-nCoV outbreak,
  39. but you can't start a thread about trade deals and hope to steer it toward biology.
  40. Thank you.
  41. </li>
  42. <li>
  43. No advertising, referrals, cryptocurrency pumps, or calls to action that involve using a financial instrument.
  44. You'll be banned on the spot.
  45. The exceptions: discussions about cryptocurrencies that derive their value from work performed on distributed
  46. science networks, i.e., Curecoin, FoldingCoin, and Gridcoin.
  47. </li>
  48. <li>
  49. All affiliate links must be labelled <code>(affiliate link)</code> and they must be related to the discussion,
  50. in a context where only you would personally benefit if someone used the link.
  51. </li>
  52. <li>
  53. Feel free to post announcements for your own projects, even and especially if they're commercial ones, in the
  54. General board.
  55. Limit all discussion of trading biomaterials, including bulk giveaways, to the Marketplace forum available to
  56. Power
  57. Users.
  58. </li>
  59. <li>
  60. Please be modest when talking about your uploads.
  61. It's unnecessary to announce your uploads because Gazelle logs everything
  62. (at least this installation's database is encrypted).
  63. If someone asks for help on his project and your upload fits the bill, go write a post!
  64. </li>
  65. <li>
  66. Use descriptive and specific subject lines.
  67. This helps others decide whether your particular words of "wisdom" relate to a topic they care about.
  68. </li>
  69. <li>
  70. Don't post comments that don't add anything to the discussion, such as "I agree" or "haha."
  71. Bottle the trained dopamine response to social media because comment reactions are an unlikely feature.
  72. </li>
  73. <li>
  74. Please refrain from quoting excessively.
  75. When quoting someone, use only the necessary parts of the quote.
  76. Avoid quoting more than 3 levels deep.
  77. </li>
  78. <li>
  79. Don't post potentially malicious links without sufficient warning, or post pictures > 2 MiB.
  80. Please only speak English as stated in the upload rules.
  81. </li>
  82. </ul>
  83. </div>
  84. <h2>
  85. IRC rules
  86. </h2>
  87. <div class="box pad rule_summary">
  88. <ul>
  89. <li>
  90. <?= $ENV->SITE_NAME ?>'s Slack channels are just are
  91. another quiet hangout you can stack your app with so you look cool at conferences.
  92. </li>
  93. <li>
  94. Please use
  95. <code>#general</code> for the usual chit-chat,
  96. <code>#development</code> for questions about the Gazelle software, and
  97. <code>#support</code> to get help with your account.
  98. </li>
  99. <li>
  100. Don't send mass alerts with
  101. <code>@channel</code>,
  102. <code>@everyone</code>, or
  103. <code>@here</code>.
  104. It's obnoxious and you should handle anything genuinely important on the boards.
  105. </li>
  106. <li>
  107. Flooding is irritating and you'll get kicked for it.
  108. This includes "now playing" scripts, large amounts of irrelevant text such as lorem ipsum, and unfunny non
  109. sequiturs.
  110. </li>
  111. <li>
  112. Impersonating other members, particularly staff members, will not go unpunished.
  113. Please remember that the Slack channels are publicly accessible.
  114. </li>
  115. <li>
  116. Please use the threaded conversations feature in Slack and avoid replying to threads with new messages or
  117. crossposting
  118. replies to the main channel.
  119. </li>
  120. <li>
  121. Announce and bot channels are in development, as standard IRC instead of Slack for obvious reasons.
  122. Any IRC bots you have must authenticate with your own username and IRC key, and set the <code>+B</code>
  123. usermode on
  124. themselves.
  125. </li>
  126. </ul>
  127. </div>
  128. <?php include('jump.php'); ?>
  129. </div>
  130. <?php View::show_footer();