Jonathan Leroy

Results 10 issues of Jonathan Leroy

tweet-deleter don't work with Twitter API v2 limits. I get the following message: **You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g....

help wanted

First of all, thank you Kevin for your hard work on the RFB protocol. This is really appreciated. 👍 Since I've updated my noVNC setup from commit 63cc01f796ed7df80c537269f9f4855ab7df5169 (lastest commit...

Currently, `Account.id` returns an error if we’re using cookies identification method: ``` account = Account(cookies={ 'ct0': '…’, 'auth_token': '…’, 'twid': 'u%3D…’ }) print(account.id) ``` ``` Traceback (most recent call last):...

This PR fixes `SyntaxWarning: invalid escape sequence` errors on regex when using Python 3.12+ by converting the _pattern_ to raw strings (`r’’`)

Currently, `Account.id` returns an error if we’re using cookies identification method: ``` account = Account(cookies={ 'ct0': '…’, 'auth_token': '…’, 'twid': 'u%3D…’ }) print(account.id) ``` ``` Traceback (most recent call last):...

This PR fixes `SyntaxWarning: invalid escape sequence` errors on regex when using Python 3.12+ by converting the _pattern_ to raw strings (`r''`)

I'm working to deploy DKIM records across a number of domains. I'm using a dedicated provider in conjunction with `shared_filename` and `disable_zonefile` to add the records in questions only to...

I was trying to create an SRV record but used an incorrect syntax in the YAML file: ```yaml _autodiscover._tcp: - port: 443 priority: 0 target: autodiscover.example.com. type: SRV weight: 1...

Since PR #2818, most of my maps white SVG icons have been inverted to black, which in my case makes them pretty unreadable. Adding an option to disable automatic SVG...

enhancement

Fasthttp’s `ListenAndServe()` only allow listening on IPv4 addresses. This PR enable dual-stack (IPV4+IPv6) or IPv6-only listening by adding a custom listener in Fastglue’s `ListenAndServe()`.