Jack Hedaya
Jack Hedaya
I think it's fine for the priority to be dynamic too. It's not objectively the most important page but based off the current state, it's the "best" next page to...
Priority queues can actually implement an updateKey function that runs in O(log n) time as long as the "location of the value being changed is known." This means the PQ...
@B4nan Please let me know if there's interest in this... happy to work on it if need be!
Thinking of creating a new underlying `UpdateablePriorityQueue` data structure instead of the `DictionaryList` that conforms to the same API. I think I would use [this class](https://github.com/bbecquet/updatable-priority-queue/blob/master/src/PriorityQueue.js) and add a `Dictionary`...
@B4nan I've been giving this some thought and I think it might be cool for crawlee to accept a queue implementing an interface to be used. This would offer the...
Having the same issue
Still getting the same error running Puppeteer on Apple Silicon.
Example of @tarupo 's recommendation: ```go package middleware import ( "github.com/gin-gonic/gin" "github.com/whiskaway/whiskaway-api/api/responses" ) func CatchAllMiddleware() gin.HandlerFunc { return func(c *gin.Context) { c.Next() if len(c.Errors) > 0 && c.Writer.Status() == 200...
I'm definitely with you on supporting multiple formats but I still think we should leave an option to write to a file without using a shell. For one, let's say...
Sounds good! What do you propose the default option should be for format?