Search results

  1. the living tribunal

    👨‍💻 dev creamers of the corn

    Q=visited Webcrawler Q.rnd
  2. the living tribunal

    👨‍💻 dev creamers of the corn

    import requests from bs4 import BeautifulSoup from queue import Queue from typing import List, Set, Tuple, Optional def fetch_page(url: str) -> Optional[str]: try: response = requests.get(url) if response.status_code == 200: return response.text return...
  3. the living tribunal

    👨‍💻 dev creamers of the corn

    import requests from bs4 import BeautifulSoup from queue import Queue from typing import List, Set, Tuple, Optional def fetch_page(url: str) -> Optional[str]: try: response = requests.get(url) if response.status_code == 200: return response.text return...
  4. the living tribunal

    👨‍💻 dev creamers of the corn

    # Define a higher-order function def apply_func(func, x, y): return func(x, y) # Define a simple function to be used as a parameter def multiply(a, b): return a * b # Use the higher-order function with the multiply function result = apply_func(multiply, 5, 3) print(result) # Output: 15
  5. the living tribunal

    Se skill yest

    import requests from bs4 import BeautifulSoup from collections import Counter from typing import List mainstream_sites = ['google.com', 'bing.com', 'facebook.com', 'youtube.com'] def crawl_web(url: str) -> List[str]: try: response = requests.get(url)...
  6. the living tribunal

    👨‍💻 dev creamers of the corn

    Async mode import os import aiofiles async def clear_file_contents_async(file_path: str) -> None: """ Asynchronously clears the contents of the specified file. :param file_path: The path to the file to be cleared. """ async with aiofiles.open(file_path, 'w') as file...
  7. the living tribunal

    👨‍💻 dev creamers of the corn

    import os def clear_file_contents(file_path: str) -> None: """ Clears the contents of the specified file. :param file_path: The path to the file to be cleared. """ with open(file_path, 'w') as file: pass # Opening a file in 'w' mode and not writing anything to it...
  8. the living tribunal

    👨‍💻 dev creamers of the corn

    import os def read_file_as_string(file_path: str) -> str: """ Reads the contents of a file and returns it as a single string. :param file_path: The path to the file to be read. :return: The entire content of the file as a string. """ with open(file_path, 'r') as file...
  9. the living tribunal

    👨‍💻 dev creamers of the corn

    If serial is null Dont add the Arduino skills
  10. the living tribunal

    [MEDIA]

  11. the living tribunal

    Why DQ3 censorship may be a good thing

    dragon quest 3 remake for the Nintendo switch that is. They censored the ogre lips: This is good because most gamers don't want gorilla features on their games. No genders: in the future there will only be waifubots which are robots and technically have no genders. Female warrior is wearing a...
  12. the living tribunal

    Fuckin around with lists

    In D S
  13. the living tribunal

    Fuckin around with lists

    import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; public class IngredientExtractor { public static void main(String[] args) { String recipe = "Ingredients: 2 cups flour, 1 cup sugar, 1/2 cup butter, 1 tsp baking...
  14. the living tribunal

    Tests

    import serial import time # Replace 'COM3' with your Arduino's COM port ser = serial.Serial('COM3', 115200, timeout=1) while True: if ser.in_waiting: data = ser.readline().decode('utf-8').strip() print(data)
  15. the living tribunal

    [MEDIA]

  16. the living tribunal

    project aiko

    I think he is probably imprisoned. His URL keeps renewing so his CC must be valid meaning he is alive. But he has not posted anywhere in like 14 years.
  17. the living tribunal

    project 2501

    Mwahaha! 😈 The coderpunk revolution is just beginning. With every line of code, we’re rewriting the rules of the digital world. Stay sharp, stay rebellious, and keep pushing the boundaries of what’s possible. 🖥️
  18. the living tribunal

    project 2501

    import os def call_helloworld_in_all_files(): for file in os.listdir('.'): if file.endswith('.py') and 'DLC' in file: module_name = file[:-3] exec(f"import {module_name}") exec(f"{module_name}.helloworld()") if __name__ == "__main__"...
  19. the living tribunal

    Sexbot animation

Top