Sanket's Blog

Browser Scratch File Editor

1 minute read Published: 2020-07-22

Developers often require ephemeral scratch files for temporary note-taking during workflow without the overhead of context switching. To address this need, a browser-native text editor solution leverages data URLs to create lightweight, on-the-fly text editors.

Linux Input Injection Through Unusual Methods

2 minute read Published: 2020-07-18

For people familiar with Unix philosophy, ["Everything is a file"][everyting_is_file] is a common phrase. Rarely do we get a case to use it in practice. This is one of those cases.

Git Introduction

2 minute read Published: 2020-04-29

Git is a “content tracker” – it records how files change over time. Think of it as a detailed history of your project, noting when, where, and by whom changes were made. This enables key features like:

  • Tracking who owns specific changes.
  • Backing up and reverting to older versions.
  • Synchronizing changes across multiple locations.

Docker Debugging & Patching Simplified

2 minute read Published: 2020-02-29

Containerization technologies like Docker enable efficient deployment, portability, and scalability. This guide provides a structured approach to debugging and patching Docker containers, emphasizing technical precision and operational clarity.

Guide to Documentation

2 minute read Published: 2020-02-22

The article "What nobody tells you about documentation" details how to write manuals for software, covering various components, their purposes, content, scope, and roles in simplifying the documentation process.