Articles

Here are some of my thoughts, experiments, documents and things how I prefer to do it.

I Accidentally Built a Modern Data Platform Years Before It Became a Trend

કેડ માં છોકરું, ને ગામ માં ઢંઢેરો. A personal story of how a simple pricing pipeline—raw inputs, a stored procedure, and one final table—mirrored today’s data engineering ideas like FDP, DDP, data products, lineage, and orchestration, long before I knew the terminology.

  • Data Engineering
  • Data Products
  • Data Architecture
  • Data Mesh
  • ETL

Revert the full commit

Sometimes you may want to undo a whole commit with all changes. Instead of going through all the changes manually, you can simply tell git to revert a commit, which does not even have to be the last one. Reverting a commit means to create a new commit that undoes all changes that were made in the bad commit. Just like above, the bad commit remains there, but it no longer affects the the current master and any future commits on top of it.

  • Git