Posts

Welcome to CodeWithAbby!

  Hello Everyone! Welcome to the blog " CodeWithAbby ". One stop solution for all your technical needs. I am from INDIA and create informative videos/write blogs and contents on various technical topics. Programming Languages, .NET Frameworks, .NET Core, Databases, Security, Career Development etc. Comment or write me for any of your queries at mailtocodewithabby@gmail.com . Our youtube channels : https://www.youtube.com/@codewithabby https://www.youtube.com/@taknikishala Stay tuned.... Stay updated! Regards, Abby

Your Next Teammate Might Not Be Human…

Image
 ðŸš€ The Team of 2030 Is Already Here… and It's Not What You Think Every few decades, something shifts the very foundation of how we work. The PC did it. The Internet did it. Cloud and mobile did it. But this time, it's different . This time, the new team member doesn't sit in a cubicle. Doesn't ask for a coffee break. Doesn't sleep, take leaves, or attend town halls. Welcome to the era of Hybrid Teams — where a product team might have 2 humans and 2 AI agents working together seamlessly . Yes, you read that right. Not tools. Not assistants. Agents. Teammates. Contributors. 🤖 An AI agent that writes better code than juniors. 🤖 One that runs simulations overnight. 🤖 Another that summarizes legal documents in seconds. 🤖 One that responds to support tickets with empathy and accuracy — 24x7. And this is not the future. It’s already happening . 💬 But here's where the anxiety kicks in… People are asking: “What will happen to human jobs?” “What’...

Design Principles [ S.O.L.I.D.]

Image
  ----------------------------------------------------------------- Single Responsibility Principle ----------------------------------------------------------------- About : The Single Responsibility Principle is a simple and intuitive principle. This is one of the 5 principles of S.O.L.I.D.. A responsibility in the current context is said to be a reason for change. The single responsibility principle states that if there more than one reasons for a class to change then we say that this class is not proper and it should be divided into further classes. There cannot be more than a reason for a class to be changed. Example : Suppose there is a class called " Customer " and contains a method called as " CalculateBills() " we should call this class has not been written properly. The customer class should only perform the customer related responsibilities. Please see  the below snap shot: There are some observations out of the above snap shot: Customer class should be re...

Why Do We Need Design Principles & patterns?

Image
  What Goes Wrong With The Software? Software applications begin as a vital image in minds of designers Its clean and elegant this time Intention initially is to see the software working As the time passes , the software starts to rot Over the time rotting continues….. Finally this becomes hard to maintain , at times the sheer effort required to make even the simplest change to it  Here is the situation resulting into redesign of the project. Rotting Software Design Over the period of time the software starts rotting. One can sense the symptom of rotting in case he/she finds any of the following in the existing software : Rotting software design-symptoms... Rigidity: Tendency of software to be difficult to change. Every change causes a cascade of subsequent changes in dependent modules A 2-day change to one module grows into many week marathon changes ( in module after module ) When software becomes like this, managers fear to allow engineers to fix non critical problems....

SQL Queries - Assignment-8

 ASSIGNMENT 08 ---------------------------- Interview Questions Based On IDENTITY in SQL Server  What is the purpose of the IDENTITY property in SQL Server? How do you define an IDENTITY column in SQL Server? Can you insert values manually into an IDENTITY column? If yes, how? How would you reset the identity seed of a table after deleting all rows from it? What is the difference between an IDENTITY column and a SEQUENCE in SQL Server? What is SCOPE_IDENTITY() and how does it differ from @@IDENTITY and IDENT_CURRENT()? How can you retrieve the last identity value generated in the current session or scope? Explain how DBCC CHECKIDENT works. Can an IDENTITY column have a negative seed or increment? What happens if you try to insert a record after the identity value reaches its maximum limit? How would you handle gaps in an IDENTITY column caused by transaction rollbacks or deletions? If you delete a row from a table with an IDENTITY column, will SQL Server reuse that identity va...

SQL Queries - Assignment-7

Image
 SQL Assignment -  07  --------------------------------- Creat the following tables. These tables are to be created at the top of 5 earlier tables. Table Name :  amenitiesMaster About this table: The table amenitiesMaster holds the data related to all the amenities in the apartment society. The amenities are those facilities which are shared/utilized/enjoyed by all the residents of the society.  Field Name Field Type Constraints (if any) Description amenityID smallint                     PRIMARY KEY This is a unique and not null field. This holds all the unique amenity ID.               amenityName varchar(40) NOT NULL This contains the amenity names. For example : Club House, Party Hall etc. oneTim...