Mark Henderson
Mark Henderson
Python 3.6 (2.7 is okay) My object is setup to capture all `__getattr__` requests and build other objects from it. So when I am inspecting my code, pudb is always...
I had an existing set of tests that subclass `AsyncHTTPTestCase` and call routes defined as `/api/some/route` via the `self.fetch` method. These work fine. I decided that I would like the...
It took me a little bit of time to figure out that when using models, you need to ensure that you set a unique `element_type` member to return that model...
### Is your feature request related to a problem? I am updating the Go driver to support the sql interface and part of the workflow is ensuring that the correct...
Added: - An option to sort events by. date - an actual Date instance to each of the event times Fixed: - the `~` time -- it needed both a...
## Bug Description https://docs.twenty.com/start/self-hosting/docker-compose#manual-installation Step 2 says `Run the command openssl rand -base64 32 three times, make note of the string for each` and in the example there are four...
The default json.Marshal method automatically escapes the `->` pointers so the Surreal server returns a parsing error. > Actually, the way that Websocket.Send checks for an ID before an error...
Go from: ```go func URL(s string) SafeURL { ``` To: ```go func URL(format string, a ...any) SafeURL { s := fmt.Sprintf(format, a...) ``` This would be a backwards compatible change...