Category: Education
-
REST API

A REST API (Representational State Transfer Application Programming Interface) is a set of rules and conventions for building and interacting with web services. REST APIs utilize standard HTTP methods such as GET, POST, PUT, and DELETE to perform CRUD (Create, Read, Update, Delete) operations on resources, which are represented by URLs (Uniform Resource Locators). They Read more
-
Object Oriented Programming Concepts

Object-oriented programming (OOP) is a programming paradigm centered around the concept of objects, which are instances of classes. These objects encapsulate data and behavior, allowing for a modular and organized approach to software development. Key principles of OOP include encapsulation, which hides internal state and exposes functionality through methods; inheritance, which enables new classes to Read more
-
100 Useful .NET NuGet Packages

NuGet is a package manager for the Microsoft development platform, primarily used to manage .NET libraries and dependencies. It allows developers to create, share, and consume reusable code, which can be distributed via the NuGet Gallery, an online repository of packages. NuGet simplifies the process of integrating third-party libraries into projects, ensuring that the correct Read more
-
Git Commands Cheat Sheet

Git is a distributed version control system widely used in software development for tracking changes in source code during development. Created by Linus Torvalds in 2005, it allows multiple developers to work on a project simultaneously without overwriting each other’s contributions. Git’s branching and merging capabilities enable efficient management of different development streams and collaboration Read more
-
Search Google Like a Pro

Here are a few simple search operators for google search. The following images are owned by respective owners and here are shared only for educational purposes. Read more
-
Number Bases

Following provide a simple introduction about Base10, Binary, Little Endian vs Big Endian and other related topics. Introduction People count in 10s, the explanation commonly given for this is that we have 10 fingers on our hands. Counting in 10 means that we have 10 different symbols for numbers i.e. 0-9 (different writing styles in Read more