Search results

  1. fukurou

    📱android Red Magic 10 + super Gaming Phone 🤟🤟🤟🤟

    יפה גם אתה מצפה שאקרא מה שאתה כותב :s9:
  2. fukurou

    [MEDIA]

  3. fukurou

    📱android Red Magic 10 + super Gaming Phone 🤟🤟🤟🤟

    אה ... אז תגיד
  4. fukurou

    📱android Red Magic 10 + super Gaming Phone 🤟🤟🤟🤟

    בוידאו יש לו ROG
  5. fukurou

    📱android Red Magic 10 + super Gaming Phone 🤟🤟🤟🤟

    חור בתוך המסך שחור בעיניים
  6. fukurou

    📱android Red Magic 10 + super Gaming Phone 🤟🤟🤟🤟

    זה לא לגיימרים
  7. fukurou

    📱android Red Magic 10 + super Gaming Phone 🤟🤟🤟🤟

    יש חור במסך אתה לא מבין?!!!
  8. fukurou

    📱android Red Magic 10 + super Gaming Phone 🤟🤟🤟🤟

    The Hole-Punch Camera: A Deal Breaker for Gamers The ASUS ROG Phone 9 Pro is marketed as the ultimate gaming phone, boasting top-tier specs and features designed to deliver an unparalleled gaming experience. However, there's one glaring flaw that undermines its potential: the hole-punch camera...
  9. fukurou

    📱android Red Magic 10 + super Gaming Phone 🤟🤟🤟🤟

    hey what the fuck?! it has a hole in the screen! shit product. can't game on that shit! :s79:
  10. fukurou

    📱android Red Magic 10 + super Gaming Phone 🤟🤟🤟🤟

    The ASUS ROG Phone 9 Pro is a powerhouse designed for gaming enthusiasts. Here are the key specifications: ### Display - **Size**: 6.78 inches - **Type**: FHD+ AMOLED - **Resolution**: 2400 x 1080 pixels - **Refresh Rate**: Up to 185Hz - **Brightness**: 2,500 nits peak - **Protection**: Corning...
  11. fukurou

    👨‍💻 dev creamers of the corn

    import random from typing import List def concat_combinations(list1: List[str], list2: List[str], list3: List[str]) -> List[str]: combinations = [] for item1 in list1: for item2 in list2: for item3 in list3: combinations.append(item1 + item2 + item3)...
  12. fukurou

    UI beefup

    in this example, the root.attributes("-topmost", True) line ensures that the Tkinter window will always stay on top of other windows. You can toggle this attribute on and off by setting it to True or False as needed.
  13. fukurou

    UI beefup

    import tkinter as tk def create_window(): root = tk.Tk() root.title("Always on Top Window") # Set the window to always be on top root.attributes("-topmost", True) label = tk.Label(root, text="This window is always on top!") label.pack(padx=20, pady=20)...
  14. fukurou

    👨‍💻 dev creamers of the corn

    from AXPython import AXCmdBreaker, RegexUtil from LivinGrimoire23 import Brain, Skill import webbrowser class DiBrowser(Skill): def __init__(self): super().__init__() self.cmdBreaker: AXCmdBreaker = AXCmdBreaker("surf") self._str1: str = "" self.regexUtil =...
  15. fukurou

    👨‍💻 dev creamers of the corn

    @staticmethod def check_url_operational(url: str) -> bool: # Ensure the URL has a scheme (http or https) parsed_url = urlparse(url) if not parsed_url.scheme: url = 'http://' + url parsed_url = urlparse(url) # Ensure the URL has a...
  16. fukurou

    👨‍💻 dev creamers of the corn

    def check_codephrase(s: str) -> str: codephrase = "codephrase" if s.startswith(codephrase): return s[len(codephrase):] return s # Example usage input_string = "codephraseThis is the leftover part." result = check_codephrase(input_string) print(result) # Output: "This is the...
  17. fukurou

    [MEDIA]

  18. fukurou

    👨‍💻 dev creamers of the corn

    import requests from bs4 import BeautifulSoup from urllib.parse import urljoin, urlparse from typing import List mainstream_sites = ['google.com', 'bing.com', 'facebook.com', 'youtube.com'] def crawl_web(url: str) -> List[str]: response = requests.get(url) response.raise_for_status()...
  19. fukurou

    👨‍💻 dev creamers of the corn

    def search_engine(*seed_sites: str) -> List[str]: all_links = [] for seed_site in seed_sites: links = crawl_web(seed_site) filtered_links = filter_mainstream_sites(links, seed_sites) all_links.extend(filtered_links) ranked_sites = rank_sites(all_links) return [site for site, _ in...
Top