Julian Dax
Julian Dax
Hi, in the memoization chapter, the `fibonacci` rule runs 'backwars' just fine if you do not use tabling: ``` 2 ?- fibonacci(X, 34). X = 8 . ``` If tabling...
Hi! I'm trying to get mongodb working with NodeGui and used this repo as a starter. I get the following error: ```sh WARNING in ./node_modules/mongodb/lib/bson.js 8:11-30 Module not found: Error:...
When an HTTP query fails in @sap-cloud-sdk/http-client I get h huge error message with a lot of information I don't care about. **Describe the solution you'd like** Make logging less...
Hi, besides the code in this library, is there some open source project or larger example for DOP that's not implemented in Clojure?
## Overview This PR turns `AxiosError` into an instance of `Error` that returns true when checked with Node's [`utils.types.isNativeError`](https://nodejs.org/api/util.html#utiltypesisnativeerrorvalue). Related Issue: #5394 ## Why this PR? This PR is useful...
If you make a PUT request like this: `echo "hello world" | curl -T - localhost:3000` curl will not set the `content-length` header: ```bash ❯ echo "hello world" | curl...