Search results

  1. the living tribunal

    👨‍💻 dev creamers of the corn

    Paprika and jizz!!!
  2. the living tribunal

    👨‍💻 dev creamers of the corn

    import requests def check_url_exists(url: str) -> bool: try: response = requests.head(url, allow_redirects=True) return response.status_code // 100 == 2 except requests.RequestException: return False # Example usage: url = 'https://www.example.com' exists =...
  3. the living tribunal

    👨‍💻 dev creamers of the corn

    import random from typing import List def concat_with_random_url_ending(base_str: str) -> str: typical_endings = ['.com', '.org', '.net', '.io', '.co', '.edu', '.gov', '.info', '.biz'] random_ending = random.choice(typical_endings) return f"{base_str}{random_ending}" # Example...
  4. the living tribunal

    👨‍💻 dev creamers of the corn

    import random from typing import List def get_random_combination(strings: List[str], n: int) -> str: if n > len(strings): return "Not enough items to choose from" random_items = random.sample(strings, n) return ''.join(random_items) # Example usage: strings = ['apple'...
  5. the living tribunal

    👨‍💻 dev creamers of the corn

    Q=visited Webcrawler Q.rnd
  6. 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...
  7. 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...
  8. 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
  9. 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)...
  10. 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...
  11. 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...
  12. 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...
  13. the living tribunal

    👨‍💻 dev creamers of the corn

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

    Onion soup 17th century

    Here's the simplified version: ### Onion Soup with Egg Yolk and Lemon **Ingredients:** - 1 large onion, sliced - 1 tbsp butter - 1 tsp flour - 1 cup water - 1 slice bread, cubed - 1 egg yolk - 1/2 tbsp lemon juice - Salt and pepper **Instructions:** 1. Sauté onion in butter until golden...
  15. the living tribunal

    [MEDIA]

  16. 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...
  17. the living tribunal

    Fuckin around with lists

    In D S
  18. 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...
  19. 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)
Top