Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Этот видеообзор посвящен мощному и бюджетному повербанку ASOMTECH PP083. Автор называет его потенциальным «царем бюджетных повербанков». | |
| Вот подробный пересказ содержания с таймкодами: | |
| Таймкоды и события: | |
| 0:00 — 0:20 — Вступление. Представление новинки, которая может потеснить популярный Zime Z5. | |
| 0:21 — 0:39 — Распаковка. В комплекте: повербанк, инструкция и качественный 100-ваттный кабель Type-C. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def longest_pattern(s: str, pattern : str = "youit") -> int: | |
| """ | |
| Находит длину самой длинной непрерывной подпоследовательности, | |
| которая повторяет шаблон "youit" | |
| """ | |
| # pattern - базовый шаблон | |
| plen = len(pattern) # длина шаблона (5) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| import requests | |
| import urllib3 | |
| from typing import Dict, Any, List | |
| # Отключение предупреждений о небезопасных запросах | |
| urllib3.disable_warnings(category=urllib3.exceptions.InsecureRequestWarning) | |
| # Конфигурационные константы | |
| BASE_PROMPT = "Тебя зовут Глиномес. Ты чат-бот, созданный в качестве примера для Максима." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] ───────────────────── Starting Seelen UI v2.2.3 ───────────────────── | |
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] Operating System: Windows | |
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] version : 10.0.26100 | |
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] edition : Windows 11 Professional | |
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] codename : None | |
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] bitness : 64-bit | |
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] architecture : x86_64 | |
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] locate : ru-RU | |
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] WebView2 Runtime: Ok("134.0.3124.93") | |
| [2025-04-02][06:10:17][seelen_ui::utils::integrity][INFO] Elevated : Ok(false) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| --bg: #00000066; | |
| --tabpanel-background-color: #00000000 !important; | |
| --in-content-page-background: #00000000 !important; | |
| --in-content-box-background: #00000088 !important; | |
| --tabs-navbar-separator-color: rgba(0, 0, 0, 0) !important; | |
| } | |
| tab.tabbrowser-tab[selected="true"] stack.tab-stack vbox.tab-background { | |
| background: #FFFFFF28 !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __new__(cls[,…]): Этот метод создания типа класса. Он принимает первым аргументом тип класса, в котором он вызывается, и, как правило, возвращает этот же тип. В основном используется, чтобы настраивать создание экземпляра класса тех объектов, которые наследуются от неизменяемых типов (например, `int`, `str`, или `tuple`). | |
| __init__(self[,…]): Это конструктор класса. Используется для инициализации объектов при их создании. | |
| __str__(): Определяет поведение при преобразовании объекта в строку. Вызывается при использовании функции str() на объекте. | |
| __len__(): Возвращает длину последовательности или количество элементов в ней. Вызывается при использовании функции len(). | |
| __eq__(self, other): Определяет поведение оператора равенства (==). Сравнивает текущий объект с другим объектом. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "description": "Test NFT", | |
| "image": "https://sun9-79.vkuserphoto.ru/impg/6RsDyvV_JM3XRRRxY1kJBWmqJmkvruMv7zKWGw/BmmrQLIpsUo.jpg?size=2560x1810&quality=96&sign=54bd6f9b1b6d5aa22de8c5d23be772ed&type=album", | |
| "name": "Soulbound NFT", | |
| "attributes": [ | |
| { "trait_type": "Type", "value": "Value" } | |
| ] | |
| } |
NewerOlder