Infrastructure as Code with terraform

Infrastructure as Code(IaC) is approach for automation of IT infrastructure as software. It enables teams to manage, maintain and provision resources. When using cloud platforms to manage all the changes and repetitive tasks for provisioning resources, IaC does it well by acting as a source of truth and by…

How I built my site using Next.js, tailwindcss

Recently, I created site for sharing and storing daily learnings which are not suitable for blog but can be a snippet. Website is hosted at til.varunyadav.com. You can find source code at github. There are so many things which I see everyday and might not take note of…

Simple react-hook-form with Material UI

In last post I mentioned some differences between redux-form and react-hook-form. In this post I will show you how to create simple form with Input name and email. First, we will declare useForm() const { register, handleSubmit, errors } = useForm(); and then create onSubmit function to handle form submit which will just…