Ecosyste.ms: Timeline

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

joprice

joprice closed an issue on Daydreamer-riri/vite-react-ssg
react-router ctrl-click behavior doesn't work on Link
The react-router Link component has some logic to handle the case where the you hold ctrl while clicking, which is expected in most browsers to open the link in a new tab: https://github.com/remix-...
joprice opened an issue on Daydreamer-riri/vite-react-ssg
react-router ctrl-click behavior don't work on Link
The react-router Link component has some logic to handle the case where the you hold ctrl while clicking, which is expected in most browsers to open the link in a new tab: https://github.com/remix-...
joprice created a comment on an issue on Zaid-Ajaj/Npgsql.FSharp.Analyzer
Yes I have been using that one, but just got other analyzers working and thought it would be nice to see the immediate output directly in vim in realtime. I can try updating the project to the latest.

View on GitHub

joprice opened an issue on npgsql/npgsql
option to include query in error when syntax exception is thrown
I have provided a logging configuration using `.UseLoggerFactory(loggerFactory)` and see queries when they succeed, but I don't see the query when an exception such as a syntax error is thrown such...
joprice created a comment on an issue on haf/expecto
I was curious how to get this working for a setup function that requires `Task`, like a testcontainer or a local server, and got this variant working, where the setup function returns a task and an...

View on GitHub

joprice starred destructurama/fsharp
joprice created a comment on an issue on fable-compiler/Fable
Nice find! That's a simple fix and great improvement to everyday usage.

View on GitHub

joprice opened an issue on demystifyfp/FsToolkit.ErrorHandling
helper to convert option to result with transform
I may have overlooked a helper in either this or the standard library, but I end up finding this function useful, similar to `requireSome` but where the fallback is evaluated on demand. ```fshar...
joprice created a comment on an issue on fable-compiler/Fable
Does it require a large rewrite to add a general error message for an unhandled flag? I hit this a lot when first writing some Fun.Build wrappers around various fable commands that it exits with ju...

View on GitHub

joprice deleted a branch joprice/FsToolkit.ErrorHandling

ignoreExplicitType

joprice starred G-Research/TypeEquality
joprice pushed 1 commit to ignoreExplicitType joprice/FsToolkit.ErrorHandling
  • add explicit type param to Option.ignore 88717b7

View on GitHub

joprice created a comment on a pull request on demystifyfp/FsToolkit.ErrorHandling
The more the merrier.

View on GitHub

joprice created a comment on an issue on MoiraeSoftware/myriad
Yea I experienced something along those lines when iterating on my custom generators. I ended up touching input files in the consuming project to make sure the generator gets re-run when the genera...

View on GitHub

joprice created a comment on an issue on demystifyfp/FsToolkit.ErrorHandling
Done! Let me know if there's anything else to do. I can add a test if you think it's worth it.

View on GitHub

joprice opened a pull request on demystifyfp/FsToolkit.ErrorHandling
add explicit type param to ignore
## Proposed Changes Adds explicit type parameter to `Task.ignore` to improve type-directed refactoring, as discussed in https://github.com/demystifyfp/FsToolkit.ErrorHandling/issues/299 ## Ty...
joprice created a branch on joprice/FsToolkit.ErrorHandling

ignoreExplicitType - An opinionated F# Library for error handling

joprice created a comment on an issue on fsprojects/Paket
If you have a global.json set to an sdk other than 9 such as `8.0.403`, should you be seeing this warning? As in, is there some actual configuration issue here on the user's end, besides the librar...

View on GitHub

joprice created a comment on an issue on fable-compiler/Fable
Ah I see. Yea in that case it seems to me to be a bug if it's still generating code that references the erased type for an effectively anonymous structurally typed pojo.

View on GitHub

joprice created a comment on an issue on fable-compiler/Fable
Adding `Global` tells fable that the type is pre-existing, so no code will be gererated for it. Removing that attribute will produce [a record class definition](https://fable.io/repl/#?code=PYBwpgd...

View on GitHub

joprice opened an issue on demystifyfp/FsToolkit.ErrorHandling
suggestion: add explicit type param to ignore to allow specifying type
It would be convenient to have an explicit type parameter on `ignore`: ``` let inline ignore<'a> (x: Task<'a>) = x |> map ignore ``` This allows being more strict by speci...
joprice opened an issue on G-Research/fsharp-analyzers
VirtualCall analyzer suggests quickfix on Collections.Generic.List
When using a function like `Seq.head` on a `Collections.Generic.List`, the suggested fix is to call the function on the `List` module, which does not accept the list from `Collections.Generic`, res...
joprice opened an issue on Zaid-Ajaj/Npgsql.FSharp.Analyzer
fsautocomplete error on startup when using analyzer
**Describe the bug** After following the instructions to install using paket, fsautocomplete throws the following error on initialization: ``` System.Collections.Generic.KeyNotFoundException...
joprice starred Zaid-Ajaj/Npgsql.FSharp.Analyzer
joprice created a comment on an issue on fable-compiler/Fable
This issue is similar, but using `createObj` https://github.com/fable-compiler/Fable/issues/3626#issuecomment-1837597888. `Object.assign` (`JS.Constructors.Object.assign`) was suggested, and I've b...

View on GitHub

joprice created a comment on an issue on fable-compiler/Fable
I found a workaround by providing the offset explicitly: ```fsharp let offset = System.DateTimeOffset.Now.Offset let date = System.DateTimeOffset.FromUnixTimeMilliseconds(1578294840000L) ...

View on GitHub

joprice opened an issue on fable-compiler/Fable
incorrect date when using ToLocalTime
### Description I'm trying to convert a utc timestamp to local time. The snippet below returns `2` in fsi using my est timezone, but `7` when run from fable in the repl and locally. Is seems the...