Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Garbage Containers: Difference between revisions

From Pixelbar
(Created page with "You can throw away the garbage bags walking the routes as shown on the map. One is via the front Entrance of De Kroon and the other is via de Achterdeur.")
 
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
You can throw away the garbage bags walking the routes as shown on the map.
Want to check if the trash bin is full? Let this handy Python script do it for you! 🗑️✨ 
One is via the front Entrance of De Kroon and the other is via de Achterdeur.
 
<pre>
import random
 
def check_trash_bin():
    status = random.choice(["full", "empty"])
    if status == "full":
        print("⚠️ The trash bin is full! Time to empty it. 🗑️")
    else:
        print("✅ The trash bin is empty. Well done!")
 
check_trash_bin()
</pre>
 
If the trash bin is full, you can dispose of the garbage bags using one of the two routes shown on the map
 
- '''Option 1:''' Through the '''front entrance''' of '''De Kroon''' 🚪<br /> 
- '''Option 2:''' Through the '''back door''' 🚪 
 
🔹 '''Important:''' If you’re the last one in the space and you notice food waste in the bin or it’s already '''half full''', please take it out as well! Keeping the space clean benefits everyone. 🧹♻️ 
 
[[File:Garbage_Bags.png]]

Latest revision as of 20:16, 26 February 2025

Want to check if the trash bin is full? Let this handy Python script do it for you! 🗑️✨

import random

def check_trash_bin():
    status = random.choice(["full", "empty"])
    if status == "full":
        print("⚠️ The trash bin is full! Time to empty it. 🗑️")
    else:
        print("✅ The trash bin is empty. Well done!")

check_trash_bin()

If the trash bin is full, you can dispose of the garbage bags using one of the two routes shown on the map:

- Option 1: Through the front entrance of De Kroon 🚪
- Option 2: Through the back door 🚪

🔹 Important: If you’re the last one in the space and you notice food waste in the bin or it’s already half full, please take it out as well! Keeping the space clean benefits everyone. 🧹♻️