diwashmainali.hashnode.devThe Zocdoc Heist: How I Reverse-Engineered a $2.8B Healthcare Platform and Extracted Its Beating HeartTLDR; In the rapidly evolving landscape of healthcare technology, the ability to aggregate and synchronize real-time data across fragmented provider networks is a critical capability. Zocdoc, a pioneer in the patient-provider matching space, presents...Feb 9·15 min read
diwashmainali.hashnode.devReverse Engineering a Mobile API: Scraping Pinduoduo When the Web FailedMost scraping tutorials start with a website.This one didn't. I needed structured product data from Pinduoduo (拼多多), one of China's largest e-commerce platforms. The web version was a dead end: aggressively throttled, inconsistently responsive, and m...Feb 8·28 min read
better-diwash.hashnode.devParallel Computing With CUDAParallel Computing Parallel computing can be defined as a form of computation in which many calculations are carried out simultaneously, operating on the principle that large problems can often be divided into smaller ones, which are then solved conc...Jan 12, 2025·7 min read
better-diwash.hashnode.devMulti-Tenant Database Connection In LaravelSource Code Motivation behind this mini project: Many companies use one centralized database and a company-specific database. I have done this in core PHP with session but not in Laravel. So, I wanted to try this out in Laravel, and it was not easy &...Sep 10, 2024·9 min read
better-diwash.hashnode.devRoutes in LaravelRoutes are defined in 'routes/web.php'. It is the endpoint that the user will call and then a certain value will be received by the user either in the form of UI or by the request to the call.The basic way to create a route is as follows: Route::get(...Sep 6, 2024·3 min read