I hereby claim:
- I am soof-golan on github.
- I am soofgolan (https://keybase.io/soofgolan) on keybase.
- I have a public key ASATYK5B9elAkfeJneddXGbriv2i3zbrQjg7fIOO0xxyXAo
To claim this, I am signing this object:
------------------------------------- | |
Translated Report (Full Report Below) | |
------------------------------------- | |
Process: Python [97970] | |
Path: /opt/homebrew/*/Python.framework/Versions/3.10/Resources/Python.app/Contents/MacOS/Python | |
Identifier: org.python.python | |
Version: 3.10.9 (3.10.9) | |
Code Type: ARM-64 (Native) | |
Parent Process: zsh [89897] |
FROM python:3.10 as python-base | |
# https://python-poetry.org/docs#ci-recommendations | |
ENV POETRY_VERSION=1.2.0 | |
ENV POETRY_HOME=/opt/poetry | |
ENV POETRY_VENV=/opt/poetry-venv | |
# Tell Poetry where to place its cache and virtual environment | |
ENV POETRY_CACHE_DIR=/opt/.cache |
I hereby claim:
To claim this, I am signing this object:
{"action":"auth","key": "API_KEY_ID","secret":"API_KEY_SECRET"} |
[[1, 1, 1], | |
[1, 0, 1], | |
[1, 1, 1]] |
import itertools | |
import os | |
from concurrent.futures import ThreadPoolExecutor | |
from pathlib import Path | |
pool = ThreadPoolExecutor(max_workers=os.cpu_count() * 2) | |
def find_needle(file, needle): | |
with open(file) as f: |