Git / Git HubIt is the history of project , snap of the project Github/git lab = website like gmail Git = tech like email A Git repository is a place where your project files and their entire change history are stored. It’s created when you initialize a Git proje...Nov 6, 2024·9 min read·3
TypescriptOptional Parameters Use a question mark (?) for optional parameters. function greetWithTitle(title: string, name?: string): string { return `Hello, ${title}${name ? ' ' + name : ''}!`; } Arrow Functions Arrow functions are concise. For a single s...Oct 1, 2024·1 min read·3
Network + : Part 2Routing Protocols: Collect information about the current network status to determine the best path to reach the destination. Link-State Protocols Share information about the state of links to construct a network map. Example: OSPF (Open Shortest P...Sep 20, 2024·18 min read·1
Network + : Part 1Network Topologies: Hybrid Topology A combination of different topologies. Example: Star-Bus (a star topology connected by a bus). Star-Ring (a star topology connected by a ring). Star Topology Central location = Access Point. Clients connec...Sep 18, 2024·18 min read·3
Mastering Productivity: Key Takeaways from "Eat That Frog" by Brian Tracy💡 Summary of Key Concepts from "Eat That Frog" by Brian Tracy Understanding Resistance and Fear Cycle of Resistance: Resistance often arises when a task is important. It's a signal that you should address the task directly rather than avoiding i...Aug 27, 2024·3 min read·2
Mastering Object-Oriented Programming in Python PART:1Understanding Classes and Objects in Python Classes and objects are fundamental concepts in Python's object-oriented programming (OOP). They help in organizing and managing data and functionality. Here’s a clear explanation with engaging examples: W...Aug 11, 2024·6 min read·2
Mastering Databases: Part 1💡 Inspired by Abid Sohail Bhutta's YouTube tutorials, this article delves into the fundamentals of databases. Understanding Databases and Related Concepts A database is a shared collection of logically related data, such as a contact database with...Aug 8, 2024·9 min read·3