RGRobus Gauliinrobus.dev·Dec 17, 2021 · 2 min readMany ways of Function Signature in pythonRecently I was looking through the implementation of Counter implementation in the standard library. It was interesting to see the following function signature in the constructor: def __init__(self, iterable=None, /, **kwargs): .... This peculi...00
RGRobus Gauliinrobus.dev·Sep 13, 2021 · 4 min readTypesafe, Generic & Extremely Fast Dictionary Implementation in CCheck out the project here. If you want to understand the motivation behind writing one, you are welcome :) Well, I had few design goals in my mind while implementing Dictionary in C. Safety, safety, safety Trust me, it smells when you see void* as ...00
RGRobus Gauliinrobus.dev·Sep 3, 2021 · 4 min readTypesafe & Fast as F**k Set in CCheck out the project here. If you want to understand motivation behind writing one, you are welcome :) Well, I had few design goals in my mind while implementing HashSet in C. Safety, safety, safety Trust me, it smells when you see void* as value t...00
RGRobus Gauliinrobus.dev·Aug 23, 2021 · 3 min readTalk: From Dev to {Production}Rationale This talk tries to provide insights into why any project during its lifecycle slows down in terms of the team's productivity and ability to deliver. Doing so lays out three core areas where we could incorporate "better" engineering practice...00
RGRobus Gauliinrobus.dev·Aug 17, 2021 · 3 min readEssence of TerraformThis blog post is more on the fundamental principle of Terraform and hopefully should provide you a framework and a perspective to understand the Essence of Terraform. If anyone of you who is going through this does not have a basic understanding of ...00