Search results

  1. the living tribunal

    Terminal with python

    import subprocess # Open a terminal window subprocess.run(["gnome-terminal"]) # For GNOME Terminal on Linux # subprocess.run(["open", "-a", "Terminal"]) # For Terminal on macOS # subprocess.run(["cmd", "/c", "start", "cmd"]) # For Command Prompt on Windows
  2. the living tribunal

    Python open dir

    @fukurou
  3. the living tribunal

    Python open dir

    import os # Specify the directory path directory = '/path/to/your/directory' # Open the directory and view its contents contents = os.listdir(directory) # Print the contents of the directory for item in contents: print(item)
  4. the living tribunal

    Contrast compare

    @fukurou
  5. the living tribunal

    Contrast compare

    Jizm jizzing jizz
  6. the living tribunal

    Contrast compare

    from typing import List # Function to find common words in str1 and str2 in order def common_words_in_order(str1: str, str2: str) -> List[str]: words1 = str1.split() words2 = set(str2.split()) common = [word for word in words1 if word in words2] return common # Example usage...
  7. the living tribunal

    Contrast compare

    from typing import List # Function to find words in str1 that are not in str2 def unique_words(str1: str, str2: str) -> List[str]: words1 = set(str1.split()) words2 = set(str2.split()) unique = words1 - words2 return list(unique) # Example usage string1 = "The quick brown fox...
  8. the living tribunal

    dear spammers

    Spam
  9. the living tribunal

    [MEDIA]

  10. the living tribunal

    Imprint dev

    # Open the file in read mode with open('kiln.txt', 'r') as file: # Read all lines into a list lines = file.readlines() # Remove any trailing newline characters from each line lines = [line.strip() for line in lines] # Print the list of strings print(lines)
  11. the living tribunal

    [MEDIA]

  12. the living tribunal

    [MEDIA]

  13. the living tribunal

    👨‍💻 dev AXskillBundle

    Some dude is screenshoting you
  14. the living tribunal

    [MEDIA]

  15. the living tribunal

    [MEDIA]

  16. the living tribunal

    [MEDIA]

  17. the living tribunal

    🧵 3d How future genetically engineered waifus should look like

    We could add those cutesy sounds to her speech module as well
  18. the living tribunal

    [MEDIA]

  19. the living tribunal

    [MEDIA]

Top