Search results

  1. fukurou

    c district

    import random # Initialize scores player_score = 0 opponent_score = 0 # Choices for the game choices = ["rock", "paper", "scissors"] def check_win(player_choice, opponent_choice): """ Determines if the player wins against the opponent. Returns True if the player wins, False...
  2. fukurou

    [MEDIA]

  3. fukurou

    [MEDIA]

  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    [MEDIA]

  9. fukurou

    [MEDIA]

  10. fukurou

    👨‍💻 dev yoga skill

    class DiYoga(Skill): def __init__(self): super().__init__() self.UResponder: UniqueResponder = UniqueResponder() self.UResponder.addResponse("frog pose") self.UResponder.addResponse("butterfly pose") self.chat: EventChat = EventChat(self.UResponder...
  11. fukurou

    👨‍💻 dev yoga skill

    class DiYoga(Skill): def __init__(self): super().__init__() self.UResponder: UniqueResponder = UniqueResponder() self.UResponder.addResponse("frog pose") self.UResponder.addResponse("butterfly pose") self.chat: EventChat = EventChat(self.UResponder...
  12. fukurou

    To open a .png file in Python

    pip install pillow from PIL import Image # Open an image file image = Image.open('path/to/your/image.png') # Display the image image.show()
  13. fukurou

    [MEDIA]

  14. fukurou

    [MEDIA]

  15. fukurou

    jizzm.JS

    livingrimoire.js // livingrimoire.js class AbsDictionaryDB { save(key, value) { // Save to DB (override me) } load(key) { // Override me return "null"; } } class Mutatable { constructor() { this.algKillSwitch = false; } // Abstract...
  16. fukurou

    [MEDIA]

  17. fukurou

    [MEDIA]

  18. fukurou

    stand by mode dev

    class AXStandBy(pause: Int) { private val tg: TimeGate = TimeGate(pause) init { tg.openGate() } fun standBy(ear: String): Boolean { // only returns true after pause minutes of no input if (ear.isNotEmpty()) { // restart count...
  19. fukurou

    stand by mode dev

    public class AXStandBy { private final TimeGate tg; public AXStandBy(int pause) { this.tg = new TimeGate(pause); this.tg.openGate(); } public boolean standBy(String ear) { // only returns true after pause minutes of no input if (ear.length() > 0)...
Top