Masroor Ehsan

Results 10 comments of Masroor Ehsan

Not usable in typescript. Any updates?

Thanks to spammers, SMTP commands like VRFY and EXPN are disabled by default by most sysadmins. Or these commands do not give out any definitive result ("cannot vrfy user, but...

If your controller methods need static parameters, then you may rethink your code design. The default router is optimized for capturing user-supplied dynamic inputs.

I don't think libcurl supports that. What are you trying to achieve by reordering HTTP headers?

Currently `curl_multi_setopt` only supports [CURLMOPT_PIPELINING](https://github.com/masroore/CurlSharp/blob/master/CurlSharp/CurlMulti.cs#L157). Is there any specific `CURLMOPT_` you'd like to add?

My issues arose from a particular site blacklisting my scraper based on `selenium-wire`. But the IP addresses were and not banned (I can still access the site using those proxy...

You can ignore [eac7bd5](https://github.com/paquettg/php-html-parser/pull/300/commits/eac7bd57149fa62555e08f7ea108f372366ee4bf) ... my bad.. (since the original package had not been updated, I had to create a private package repo for a PHP 8.2 project I had...

SQLAlchemy is the safest choice. the learning curve is kinda steep, but it's well worth the effort once you;ve gotten the hang of it. SQLModel is basically SQLA coupled with...

I can share an anecdote in this regard. I did a one-off scraping project with SQLModel. I was wrangling several million JSON files, which were poorly documented, the schema was...

@SHIMURA0 SQL/A 2.* (also >=v1.4) does support asyncio (`sqlalchemy.ext.asyncio`). See here: https://docs.sqlalchemy.org/en/20/_modules/examples/asyncio/basic.html keep in mind, this is not a full asynchronous rewrite of the core framework. instead, the crafty developers...