PATAPOsha
PATAPOsha
Using `beanie==1.10.1` Trying to preform bulk update with `upsert=True` with no luck. ``` async def run_test(): await init_mongo() docs = [TestDoc(a=f"id_{i}", b=random.randint(1, 100)) for i in range(10)] # docs =...
https://www.mongodb.com/docs/manual/reference/method/db.collection.findOneAndUpdate/ https://www.mongodb.com/docs/manual/reference/method/db.collection.findOneAndReplace/ Any chance to add it soon? Along with bulk support.
Managed to set bot's status to online by adding `make_presence()` in `set_entity()` inside _mac.py_: ``` def set_entity(instance): global entity entity = instance # online(entity) # doing nothing, don't know how...
``` import requests from hyper.contrib import HTTP20Adapter sess = requests.session() sess.mount('http://', HTTP20Adapter()) sess.mount('https://', HTTP20Adapter()) sess.proxies.update({ 'http': 'http://login:pass@ip:port', 'https': 'https://login:pass@ip:port' }) sess.get(url) ``` Actually, the problem is described in the title....
After changing branch plugin stops working. Environment variables become empty. However, .env file still marked as active in "Run/debug configuration" section. Tried to disable/enable it manually and delete/add .env file...
What is difference between ".isADVirtual" and ".isAd" in tiktok api response? I saw some tiktok posts have different values for these fields. Basically, ".isAd" means that post is advertisement. But...
`/ads_archive` - does return Facebook page ID of an advertiser, but not Instagram ID/username. Web desktop version does include Instagram info - [example link](https://www.facebook.com/ads/library/?active_status=all&ad_type=political_and_issue_ads&country=UA&id=447291187674580&view_all_page_id=114239804036917&search_type=page&media_type=all)  How to get username/ID of...
I can confirm that v17.1 works for me on Pixel 7, Android 13, Magisk 27000, LSPosed v1.9.2. I pass Basic Integrity + Device Integrity. It stooped to work today, so...
I'm trying to launch `frida-server-17.0.5-android-arm64` on AVD emulator running Android 16.0. I successfully installed Magisk 26.4 root via rootAVD.  But after starting `frida-server` - it throws error: "Unexpectedly timed...