Resources  
  • Understanding __new__ vs __init__ in Python: Allocation, Initialization, and Object PoolingJul 18, 2026. Demystify Python's __new__ vs __init__: understand object creation, subclassing immutables, and implementing powerful patterns like Object Pooling.
  • Understanding the __init__ Method in PythonAug 21, 2025. The __init__ method in Python is a special method used for initializing objects when they are created from a class. It is often referred to as the constructor because it sets up the initial state of an object. In this article, we will explore what the __init__ method is, why it is important, and how to use it with practical examples.
  • A Guide To Crafting Immutable Objects With C# 10's Init-Only PropertiesMar 06, 2024. Discover how C# 10's init-only properties empower developers to craft immutable objects with precision, enhancing code readability and maintainability. In this article, Ziggy Rafiq demonstrates how you can use this powerful feature to create robust and predictable software.
  • ng-init in Angular 15Jun 05, 2023. We have mostly facing this issue while migrating from AngularJS to higher version, since angular higher version does not support ng-init we can using directive achcieve that,
  • What Is Cloud-init And How To Use It For Azure Linux VMJul 13, 2021. In this article, You will learn about cloud init and Boot Diagnostic. You will learn how to use it.
  • What Is NPM package.json, npm init, and NPM InstallMar 08, 2021. This article explains what’s a package.json file and why and why not use it. In addition to that, we’ll also show the following commands: npm init and npm install.
  • Using Init-Only Properties In C# 9.0Oct 09, 2020. In this article, you will learn about Init-Only Properties In C# 9.0.
  • C# 9.0 - Introduction To Init-Only PropertyOct 05, 2020. C# 9.0 introduced a new feature called Init-Only Properties, enhancing the language's capabilities for defining immutable types. Init-only properties allow you to create read-only properties that can only be set during object initialization. This feature simplifies the creation of immutable objects, providing a concise and expressive syntax for initializing properties at the time of object creation and ensuring their immutability afterwards.
  • ng-init Directive In AngularJSJul 27, 2016. The ng-init directive in AngularJS evaluates expressions in the current scope, initializing variables like arrays of employees. It's used alongside ng-repeat for dynamic content generation, facilitating data display in tables and lists. Best practice favors controllers over ng-init for initializing scopes.
  • Using Ng-init and Ng-repeat Directive of AngularJS in ASP.Net ApplicationDec 23, 2013. Discover efficient data initialization and dynamic data rendering techniques using these directives, enhancing your front-end development in ASP.NET with AngularJS's powerful features. Master the integration of AngularJS into ASP.NET MVC for dynamic and responsive web applications.
  • Diving in OOP (Polymorphism and Inheritance – Part 5): All About Properties in C#Aug 26, 2026. Learn C# properties from fundamentals to modern syntax, including get, set, backing fields, auto-properties, init, required, abstract properties, inheritance, and C# 14 field keyword.
  • Setting Up Docker SwarmMay 30, 2025. Learn how to set up a Docker Swarm cluster step-by-step, from prerequisites to init and join commands—perfect for beginners exploring container orchestration.
  • Create A Working Version Of 'Fifteen Puzzle' Using Applet In JavaMar 22, 2022. Using applet, create a working version of ‘fifteen puzzle’. The puzzle contains a grid with four rows and four columns. The cells of the grid are filled with numbers from 1 to 15 leaving one cell empty.
  • Classes And Objects In PythonNov 30, 2021. In this article, you will learn about Class and Object in Python.
  • C# 9 Cheat SheetDec 08, 2020. C# 9 Cheat Sheet with code examples and pros and cons.C# 9 introduced several new language features and enhancements, making it easier to write clean and concise code. Some key features include.
  • PlugIn In StrutsAug 03, 2020. Plugins are struts elements that provide a listener like capability. They also allow developers to enhance web applications.
  • Python Classes And ObjectsApr 06, 2020. In this article, I will explain Python classes and objects.
  • Page Life Cycle in ASP.NETDec 01, 2019. Learn about the ASP.NET page life cycle events including preinit, init, preload, load, prerender, and savestatecomplete. Understand their order of execution and their significance in web development. Ideal for beginners and students.
  • AngularJS DirectivesSep 12, 2016. In this article, you will learn about Directives in AngularJS.
  • Basics of AngularJSApr 13, 2015. This article explains the basics of AngularJS. AngularJS has been introduced by the giant Google. It is a framework that helps you create dynamic web apps.
  • AngularJS Application: Part 2Oct 26, 2014. In the continuity of AngularJS application, we will talk about some more directives and their usage in this article.
  • Apply Custom Bindings Using Knockoutjs in ASP.Net ApplicationAug 29, 2013. In today's article you will learn about how to apply Custom Bindings using Knockoutjs in an ASP.NET application.
  • Life Cycle of a Java ServletJul 04, 2013. In this article, I will be discussing the lifecycle of a servlet.
  • Page Life Cycle In ASP.NETJun 12, 2013. This article describes various stages or events of an ASP.NET page life cycle. ASP.NET Page Life Cycle includes events PreInit, Init, InitComplete, OnPreLoad, Load, PostBack, LoadComplete, OnPreRender, OnSaveStateComplete, Render, and UnLoad.
  • ASP.NET Page Life Cycle EventsNov 09, 2010. In this article, I will discuss in detail the ASP.NET page life cycle events.