Christian Pekeler

Results 21 issues of Christian Pekeler

I don't want to retry every error. So maybe `onError` should get a third parameter that could be used like ``` JavaScript onError: function(err, done, abort) { if (err.code ===...

Would be nice to see a more complex/realistic example using alt. Showing: - full CRUD - with asynchronous remote data fetching/storing - optimistic rendering with error handling - react-router integration...

help wanted

Prawn seems to ignore the orientation metadata in JPEGs. For example: http://www.coursewalkapp.com/test/Landscape_Orientation_3_Rotated_180.jpg look at this image in a browser or image viewer, and then compare it to the output of...

change-request

When working with a more strict layout, whitespace between elements can cause trouble. For example, if I have a couple of spans that need to be flush against each other,...

Fixes #152 (Sundays in cron can be either 0 or 7, Later only understood 0). This is better than the previous two PRs because this one also support ranges with...

``` JavaScript var schedule = later.parse.cron("* * W * *", false); ``` ^ Returns a questionable schedule. Is this even a valid cron expression? ``` JavaScript later.schedule(schedule).next() ``` ^ Takes...

`later.parse.cron('*/-2 * * * *');` I realize this is an invalid cron expression. But an endless loop is not ideal.

[Babashka](https://babashka.org) is great for writing scripts in Clojure. We use it for our CI and deployment scripts. I find it quite common wanting to send automated messages to Slack from...

I'm seeing a few of these errors in the Extension Host output: ``` 2023-09-12 14:04:36.256 [error] Error: Missing mirror document! at Object.getDocument (/Users/pekeler/.vscode/extensions/betterthantomorrow.calva-2.0.388/src/doc-mirror/index.ts:216:11) at Object.getFormSelection (/Users/pekeler/.vscode/extensions/betterthantomorrow.calva-2.0.388/src/select.ts:18:28) at _currentFormText (/Users/pekeler/.vscode/extensions/betterthantomorrow.calva-2.0.388/src/util/get-text.ts:16:34) at...

bug

The result of a reducer doesn't always change the state. Would it make sense to not trigger onStateChange in this case? For a typical choo app, I'd imagine that a...