Dennis Schridde
Dennis Schridde
This helps analyzing exceptions thrown when `deref`-ing a `future` whose body had thrown.
In Raven 1.7.0 `capture` is: https://github.com/sethtrain/raven-clj/blob/6a5fada1793bc0026b4f75c93db1763a54aeb99f/src/raven_clj/core.clj#L61-L73 Raven always overrides `event_id`. Thus retrying `capture` (e.g. in case of network errors) would create additional events, making `capture` not idempotent. It would we...
Sentry supports a `user` key on the event payload: * https://develop.sentry.dev/sdk/event-payloads/user/ * https://develop.sentry.dev/sdk/event-payloads/types/#user `raven-clj.ring/wrap-sentry` supports a `http-alter-fn` to amend the `sentry.interfaces.Http` event payload. There is currently no way to amend...
It would be nice if I could install eastwood using https://github.com/clojure/tools.tools (`clojure.tools.tools`): ``` ❯ clojure -Ttools install-latest :lib com.github.jonase/eastwood :as eastwood Cloning: https://github.com/jonase/eastwood.git Checking out: https://github.com/jonase/eastwood.git at 441e3781293bcca13ccd087c099ed2f2ff40ce5b eastwood: Installed...
Would it be possible for `java-time.api/>` (and similar) to support `java.sql.Timestamp`? ```clj (require '[java-time.api :as t]) (t/> (t/instant->sql-timestamp (t/instant)) (t/instant)) ``` throws: `No implementation of method: :single-after? of protocol: #'java-time.core/Ordered...
# What I did for the problem to appear I started my phone in "safe mode" (long press power button until reboot menu appears, long tap "power off" until "reboot...
Following code (with `sepBy1` wrapped as needed to workaround https://github.com/francisrstokes/arcsecond/issues/109): ```ts import { optionalWhitespace, Parser, possibly, sepBy1 as _sepBy1, sequenceOf, str, whitespace } from "arcsecond"; const sepBy1 = (sep: Parser,...
With following code, copied almost unchanged from tutorial 4 (changes are in template arguments, to workaround #109): ```ts import { char, letters, Parser, possibly, sepBy, sequenceOf, } from "arcsecond"; const...
Following code has type errors with TypeScript 5.1.3: ```ts import { between, char, regex, sepBy, sequenceOf, whitespace } from "arcsecond"; const word = regex(/^\w+/); const quotedString = between(char('"'))(char('"'))(regex(/^[^"]+/)); const attribute...
- [x] I have read [Contribution Guidelines](https://github.com/CircleCI-Public/circleci-cli/blob/master/CONTRIBUTING.md). - [x] I have checked for similar issues and haven't found anything relevant. - [x] This is not a security issue (which should...