My Learnings

Explore my blog posts documenting the insights and solutions I've gained from overcoming challenges over the past three years. Dive into a range of topics and lessons that showcase my continuous growth and expertise.

Angular: Services

Services are a key part of building a scalable and maintainable Angular application. Services are used to organize and share code across your application. They...
Continue reading

Angular: ngContent

If you want build a card design and use that card design as wrapper in multiple places you can use it with ngContent method. Example:...
Continue reading

Angular: @Input() vs input()

@Input() Decorator The @Input decorator allows parent components to pass data to their children. Example of @Input In this example child component binds userName with...
Continue reading

Angular: Property Binding

In Angular, Property Binding is a one-way binding mechanism that binds the properties of DOM elements (like <input>, <img>, <div>, etc ) to variable or...
Continue reading

SQL: SQL Basics – 1 (CRUD)

CRUD Operations: What is SQL SQL (structured Query Language) is a programing language designed for managing designed for managing data in relational database. How to...
Continue reading