Writing a tool at work to move our infrastructure setup to a more declarative approach. To do so, I run terraform inside AWS Lambda (will write about this some time), every time a configuration needs to be applied. I use the terraform import feature to copy configurations from test accounts, and need to do so… Continue reading til: TF plugin cache
Category: Uncategorized
Using a bootstrap modal as a dynamic component
Working in an application involving multiple components under different modules, there are scenarios where in you’d not want to fix another template for a simple functionality like a modal component, let’s say! For such components, we can actually build a dynamic component where in we would not need to render the template at the build… Continue reading Using a bootstrap modal as a dynamic component
Deploying your Angular app to IBMÂ Cloud
I will be writing about how to deploy an angular application on to the public IBM cloud platform and be able to access the application. So, to put it briefly here about what this blog post will include, we will create an angular application using the CLI, make our application deploy-ready, build the application, create… Continue reading Deploying your Angular app to IBMÂ Cloud
ng-Srilanka: Good to knows before attending my talk
Hey everyone! In around 10 days from today, I will be speaking at ng-Srilanka, the first ever Angular conference of SriLanka. I will be speaking on the topic “Creating Libraries in Angular” on 14th September, 2019, along with some other great speakers. The purpose of this blog post is to make sure you are well-versed… Continue reading ng-Srilanka: Good to knows before attending my talk
Build a Web page with WEB2PY
Fond of Python? Thinking how to use it for web development? I come from a similar background. I have always had a thing for Python. It just attracts me a lot! Getting into web development right after my graduation took me away from Python but I though why not do the same thing, i.e., web… Continue reading Build a Web page with WEB2PY
Understanding Component Communication using @Input()
Angular & SPAs
I was scrolling through questions on stackoverflow and saw a lot of people questioning if Angular applications are SPAs (Single-page applications) or what are SPAs. Hope this blog post will contain the information required to understand what this actually means. To start with, let us try to comprehend the meaning of the term Single-page applications.… Continue reading Angular & SPAs