HackerTrans
TopNewTrendsCommentsPastAskShowJobs

timojeajea

no profile record

comments

timojeajea
·قبل 28 يومًا·discuss
From our production stats, a median screenshots capture is 5.7s. Browser-use bills per minute, not per millisecond like lambda does. As is, it's around 2x more expensive than Lambda for our use-case.
timojeajea
·قبل 28 يومًا·discuss
We run a screenshot API (ApiFlash) with Chromium packaged in an AWS Lambda container image instead of Firecracker on EC2. AWS Lambda gives you the isolation and autoscaling for free which is ideal for spiky stateless work like screenshots. I believe we get mostly the same benefits compared to browser-use solution but with a much much simpler architecture. The tradeoff is the AWS lambda cold starts, but in practice sequential AWS Lambda invocations actually reuse a hot function. As a result, with a large enough volume, spikes are smoothed and cold starts are not that frequent.
timojeajea
·قبل 3 سنوات·discuss
I built a screenshot API called ApiFlash.

https://apiflash.com

Quite a few of my clients use it to add "always up to date" screenshots to their documentation.
timojeajea
·قبل 4 سنوات·discuss
I think you need to try it if you want to understand how it can be useful. I also tend to write as little code as possible. Since I started using Copilot, I don't write more code nor less code. I write the exact same code I would have written without Copilot, I'm just 25% more productive with it.
timojeajea
·قبل 4 سنوات·discuss
You picked mainly data science python projects. It would make more sense to compare with other python web frameworks.

django, 1101 open, 32662 closed

cherrypy, 218 open, 1505 closed

starlette, 31 open, 570 closed

pyramid, 70 open, 966 closed

falcon, 168 open, 789 closed

flask, 14 open, 2318 closed

fastapi, 1044 open, 1855 closed

Fast api has one of the worst ratio regarding open/closed issues.
timojeajea
·قبل 4 سنوات·discuss
One major advantage Flask has over FastAPI is maturity. FastAPI has 1000+ open issues on Github vs 14 for Flask. That is quite scary.