Arham Jain

Results 65 comments of Arham Jain

Please add somewhere to get the binaries. I really don't want to spend half a day trying to compile it on windows. Nor do I want to install all of...

I looked through #78 and I like the custom handler approach, I'll have to try it out. Never thought to use callbacks in that way. For the points you raise...

I've updated my code over at https://github.com/ajusa/250 and deployed it to https://www.arhamjain.com/250, just as an FYI. Seems to be running behind Apache without any issues so far, I just had...

This is really great to see, thank you guzba! Two questions: 1. Will there be any work to be able to extract a list of query parameters out? I see...

Another +1 on 0.24, I started experiencing it after a MacOS update. It happens randomly, like the other posters have said, and the only way I've found to recover is...

Good question! My use case was specifically to reduce latency (the API I call to populate this data is pretty slow), and to reduce the number of calls I make...

That is a different option I considered (and actually used for a static data source) but this data still needs to be updated every so often. My current implementation expires...

Thanks for the well reasoned response! I also considered something very similar (using https://github.com/soasme/nim-schedules to have a worker thread update in the background). There were a couple reasons why I...

Ah, not fork `curly` but fork the wrapper client I'm using. What I had in my mind was adding caching to something like https://github.com/treeform/digitalocean - obviously if I'm using a...

Never came back to this issue - as the API for curly is pretty small, I just wrapped each method I used with a new "CachedCurly" client.