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
V 2 | |
[1. FACTORY DEMOLISHING SCENE] | |
As you might know, the Alpha team started | |
Demolishing the Workflow Worker Factory | |
The most significant part of the tiling department | |
has already been destroyed. | |
[2. TV SCENE] | |
Sounds scary, but the factory now consumes N times less energy and significantly decreased the amount of exhaust fumes. |
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 os | |
import pathlib | |
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options as ChromeOptions | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.remote.webdriver import WebDriver | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.support.ui import WebDriverWait |
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
{ | |
"type": "FeatureCollection", | |
"metadata": { | |
"name": "rent 2021", | |
"creator": "Yandex Map Constructor" | |
}, | |
"features": [ | |
{ | |
"type": "Feature", | |
"geometry": { |
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
haystack = [1, 2, 3, 2, 1, 2, 3, 4, 5, 4, 3, 2, 1, 2, 3, 4, 5, 6] | |
needle = [2, 1, 2] | |
def cut_substr_once(substr, string): | |
substr_size = len(substr) | |
for ind, _ in enumerate(string): | |
if substr == string[ind: ind + substr_size]: | |
return string[:ind], string[ind + substr_size:] |
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
from enum import Enum | |
from pydantic import BaseModel, Field | |
from typing import Union | |
# Artur: | |
{ | |
"boundary": "geojson", | |
"changedBy": "string", | |
"integrationId": "string" |
OlderNewer