Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

64J0

64J0 created a comment on an issue on demystifyfp/FsToolkit.ErrorHandling
Indeed, this `and!` behavior that I had in mind is exactly what `let!` is currently doing. Btw, thanks for the reply and the links!

View on GitHub

64J0 opened an issue on demystifyfp/FsToolkit.ErrorHandling
Add `MergeSources` to AsyncResultCE so we can use `and!` safely
**Is your feature request related to a problem? Please describe.** When using this script: ```fsharp #r "nuget: FsToolkit.ErrorHandling, 4.18.0" open FsToolkit.ErrorHandling let ok1 () = pr...
64J0 deleted a branch 64J0/my-blog

dependabot/npm_and_yarn/types/node-22.13.0

64J0 pushed 1 commit to master 64J0/my-blog
  • chore(deps-dev): bump @types/node from 22.10.10 to 22.13.0 (#314) Bumps [@types/node](https://github.com/DefinitelyT... 8c728a5

View on GitHub

64J0 starred oskardrums/ebpf
64J0 created a review comment on a pull request on datarisk-io/mlops_codex
I'm getting this error when running this code block: ```python --------------------------------------------------------------------------- PreprocessingError Traceback (...

View on GitHub

64J0 created a review comment on a pull request on giraffe-fsharp/Giraffe
@nojaf and @mrtz-j I'd like to know your opinion too

View on GitHub

64J0 created a review on a pull request on giraffe-fsharp/Giraffe

View on GitHub

64J0 created a review comment on a pull request on giraffe-fsharp/Giraffe
I changed the code to expose the `type ConfigureEndpoint: IEndpointConventionBuilder -> IEndpointConventionBuilder` to the client. Is this aligned to what you had in mind?

View on GitHub

64J0 created a review on a pull request on giraffe-fsharp/Giraffe

View on GitHub

64J0 pushed 11 commits to add-new-route-fn giraffe-fsharp/Giraffe
  • Add .NET 9 as target framework, fine-tune dependabot, update CI and clean tests removing .NET 6/7 from target framewo... 914a5ce
  • ci: revert dependabot configuration to scan only one directory (#645) 0b29c5c
  • chore(deps): bump fantomas from 6.3.16 to 7.0.0 (#637) * chore(deps): bump fantomas from 6.3.16 to 7.0.0 Bumps [f... 19d3435
  • chore(deps): bump fsharp-analyzers from 0.26.0 to 0.28.0 (#631) * chore(deps): bump fsharp-analyzers from 0.26.0 to ... 82c9b53
  • Code scanning fix patches (#638) * solve #32 and #31 * solve #36 and #9 * use Option.iter for optional headers... 0376ef4
  • add new endpoint routing functions to deal with asp.net extensions 2effac2
  • add new automated tests for basic checks of the new routing functions ae3ac54
  • add new sample for asp.net rate limiting b33b600
  • add new sample to the sln 1b8cfd8
  • add documentation for the new routing functions 2fec161
  • add release notes placeholder 35d75d6

View on GitHub

64J0 starred sbdchd/squawk
64J0 deleted a branch giraffe-fsharp/Giraffe

code-scanning-patches

64J0 pushed 1 commit to master giraffe-fsharp/Giraffe
  • Code scanning fix patches (#638) * solve #32 and #31 * solve #36 and #9 * use Option.iter for optional headers... 0376ef4

View on GitHub

64J0 closed a pull request on giraffe-fsharp/Giraffe
Code scanning fix patches
## Description Fix the following code scan warnings: - Replace unsafe option unwrapping with graceful handling of each case. - https://github.com/giraffe-fsharp/Giraffe/security/code-scann...
64J0 created a review on a pull request on datarisk-io/mlops_codex
Working as expected here ![image](https://github.com/user-attachments/assets/bb41c7b3-7584-4440-adb2-3a34fbeecf10)

View on GitHub

64J0 created a review comment on a pull request on datarisk-io/mlops_codex
The user is able to upload extra files after PR https://github.com/datarisk-io/neomaril/pull/676. Since it's something recent, would you like to add this feature to the codex using this PR already ...

View on GitHub

64J0 created a review on a pull request on datarisk-io/mlops_codex

View on GitHub

64J0 pushed 1 commit to code-scanning-patches giraffe-fsharp/Giraffe
  • add a ResponseCaching test 2bed9c1

View on GitHub

64J0 pushed 8 commits to code-scanning-patches giraffe-fsharp/Giraffe
  • Add .NET 9 as target framework, fine-tune dependabot, update CI and clean tests removing .NET 6/7 from target framewo... 914a5ce
  • ci: revert dependabot configuration to scan only one directory (#645) 0b29c5c
  • chore(deps): bump fantomas from 6.3.16 to 7.0.0 (#637) * chore(deps): bump fantomas from 6.3.16 to 7.0.0 Bumps [f... 19d3435
  • chore(deps): bump fsharp-analyzers from 0.26.0 to 0.28.0 (#631) * chore(deps): bump fsharp-analyzers from 0.26.0 to ... 82c9b53
  • solve #32 and #31 f841459
  • solve #36 and #9 0ce88f6
  • use Option.iter for optional headers at ResponseCaching.fs f68c372
  • use Set operations for checking the Accept header mimetypes at RequestLimitation.fs ec66153

View on GitHub

64J0 created a review comment on a pull request on giraffe-fsharp/Giraffe
Indeed, using `Option.iter` improves readability (my POV), thanks for the suggestion!

View on GitHub

64J0 created a review on a pull request on giraffe-fsharp/Giraffe

View on GitHub

64J0 created a review comment on a pull request on datarisk-io/mlops_codex
I don't think it is necessary, check this comment https://github.com/datarisk-io/mlops_codex/pull/71#discussion_r1930887202

View on GitHub

64J0 created a review on a pull request on datarisk-io/mlops_codex

View on GitHub

64J0 created a review comment on a pull request on datarisk-io/mlops_codex
Btw: ```python >>> import re >>> match = re.match(r"^(\d+)$", "Preprocess Execution '2' created") >>> match >>> print(match) None ```

View on GitHub

64J0 created a review on a pull request on datarisk-io/mlops_codex

View on GitHub

64J0 created a review comment on a pull request on datarisk-io/mlops_codex
This is actually a potential improvement for the API @johnrc90. Instead of returning the execution id at the message string it would be better to simply return it linked to a specific json key. Wha...

View on GitHub

64J0 created a review on a pull request on datarisk-io/mlops_codex

View on GitHub

64J0 created a review comment on a pull request on datarisk-io/mlops_codex
I got this error when running this cell: ```python --------------------------------------------------------------------------- AttributeError Traceback (most recent ...

View on GitHub

64J0 created a review on a pull request on datarisk-io/mlops_codex

View on GitHub

Load more