Skip to content

Instantly share code, notes, and snippets.

View MandarDevarshi's full-sized avatar

Mandar Devarshi MandarDevarshi

  • Freelancer
  • Jaipur, India
  • 10:03 (UTC +05:30)
View GitHub Profile
@MandarDevarshi
MandarDevarshi / FAQ.md
Last active April 21, 2025 07:50
Rotdot Browser Extension (bex-rot) LICENSE and FAQs

FAQs

How do I use the extension?

To scan a webpage for broken or outdated links:

  1. Right-click anywhere on the page to open the context menu.
  2. Select Scan for link rot from the menu.
  3. Detected broken links will have a 🔴 (dot) next to them.
  4. Dot color, size, and HTTP status code indicators can be customized in settings.
@MandarDevarshi
MandarDevarshi / AWS Lamda with Container Image.md
Last active October 18, 2023 05:31
Deploy a serverless Node module in a Docker container on AWS Lambda and access through a REST API using API Gateway

AWS Lambda, Docker Containerized, RESTApi, API Gateway, CORS, AWS

When working with AWS Lambda functions, there may be instances where the size of the function's deployment package exceeds a certain limit, rendering the inline code editor unavailable.

In such cases, an effective solution is to leverage containerization by setting up a container image for the Lambda function. By containerizing the application and its dependencies, developers gain the flexibility to manage a larger codebase and handle complex dependencies.

This guide is a quick brief for the above and only deals with proxy integration with CORS enabled.