nathanhack

Results 24 issues of nathanhack

### What version of Badger are you using? v4.2.0 But it also happened with v3.2103.2. ### What version of Go are you using? 1.21.1 ### Have you tried reproducing the...

kind/bug

``` panic: {"line":"html.go:208","message":"appending child failed","tags":{"child":{},"index":3},"wrap":{"line":"html.go:263","message":"mounting element failed","tags":{"element":{}},"wrap":{"line":"component.go:278","message":"mounting component failed","tags":{"kind":3,"name":"*Node","reason":"already mounted"}}}} ``` I have a parent app.Compo with a list of sub-app.Compo's (*Node). In the parent Render() I essentially have: ```...

Would it be possible to add the session open/close and settlement date to CalendarDay https://github.com/alpacahq/alpaca-trade-api-go/blob/efb7598b00a215d6ae06ca43b8592e7cbcb8e5c1/alpaca/entities.go#L177 ``` { "date": "1970-01-02", "open": "09:30", "close": "16:00", "session_open": "0400", "session_close": "2000", "settlement_date": "1970-01-06" }...

enhancement

Hello the GetCalendar() should really use time.Time instead of strings, the same is true for the CalendarDay struct it returns.

v4

[immich.app](https://immich.app/) failed to update so i tried to roll back but chart.release.rollback it just gets stuck at 45% and does nothing. I've tried multiple times and different versions. After the...

It would be great if there was a way to add javascript scripts to be loaded in the iframe.

Would you consider adding a simple test or example using the DWT implementation?

**Describe the bug** models.Date doesn't marshal correctly **Expected behavior** I would expect models.Date to marshal and unmarshal correctly. Example: https://go.dev/play/p/6t85zeW7AHr ``` package main import ( "encoding/json" "fmt" "os" "time" "github.com/polygon-io/client-go/rest/models"...

bug

**Describe the bug** https://github.com/polygon-io/client-go/blob/fb8e9d4845ca5e86e464919e4e864efa62e06304/rest/client/client.go#L48 The timout is set too low for queries like the following: `https://api.polygon.io/v3/reference/options/contracts?underlying_ticker=QQQ&expired=true&limit=1000` Results in this error being printed to the screen: ``` WARN RESTY Get .......

bug

This PR adds Ratelimiter option (mentioned in https://github.com/polygon-io/client-go/issues/485).