Lim Woojaejaylog.hashnode.dev·Dec 15, 2024[CS Fundamentals] Deep Dive into Shallow Copy vs. Deep Copy. Explained in PythonIntroduction Before going in, you should know the difference between mutable and immutable types in python. You can have a look at my article: [CS Fundamentals] Mutable vs. Immutable. You don’t need to care about shallow copy and deep copy for immuta...CS fundamentalsshallowCopy
NonStop io Technologieshallucinations-in-llms-101-part-i.hashnode.dev·Dec 5, 2024LLM Fundamentals — Hallucinations in LLMs 101 [Part II]In the last story, we introduced Types of Hallucinations in LLMs. In this story, let’s understand the causes or origins of hallucinations. Hallucinations in LLM can be broadly classified based on the three key origins: Data | Training | Inference ...AI
Saumyaa Gargsaumyaagarg.hashnode.dev·Nov 27, 2024Day 1: Programming FundamentalsWelcome to the beginning of my 100 Days of DSA journey! Over the next 100 days, I’ll be diving deep into the world of Data Structures and Algorithms, working on problems, exploring concepts, and sharing my learnings every step of the way. My goal wit...13 likes·54 readsWeek 1DSA
Faria Karimfariakarim.hashnode.dev·Oct 31, 2024Ballerina Basics: 5 Fundamental Programming ConceptsIntroduction: This blog covers five fundamental programming concepts—variables, control structures, functions, data structures, and OOP—illustrated with examples in Ballerina. Mastering these basics is key to building efficient applications. 1. Varia...fundamentals
J3bitokjebitok.hashnode.dev·Oct 27, 2024Windows and AD Fundamentals: Windows Fundamentals 2 (TryHackMe)In this article, I will write a write-up for Windows Fundamentals 2 that covers System Configuration, Change UAC Settings, Computer Management, System Information, Resource Monitor, Command Prompt and Registry Editor. What is the name of the service...Windows
Abou Zuhayrblog.zuhayr.dev·Oct 9, 2024Writing an Interpreter from ScratchInterpreters are the backbone of many programming languages, converting code into actions line by line. In this article, we'll build a simple interpreter from scratch using Python. If you are new to this series, you can find the previous articles her...4 likesWhat, How and Why?Interpreters
Saad Asif Mujawaressentialsofdevops.hashnode.dev·Oct 6, 2024Day 2 : Fundamentals Of LinuxToday, We will learn about Linux fundamentals. Let's talk about the What, Why, and How of Linux. What is Linux? As we all know, Linux is an operating system that is open-source and has many flavors (different distributions). Some well-known flavors o...1 like·60 reads90 Days Of DevOpsTutorial
Shubham Mergushubham-mergu-07.hashnode.dev·Oct 2, 2024Understanding HTML Elements & AttributesHave you ever wondered what makes a website tick? 🤔 Behind every sleek design and interactive feature lies a foundation of HTML elements and attributes. These building blocks are the unsung heroes of the web, quietly shaping the digital landscape we...HTML5
Vishesh Guptavisheshg.hashnode.dev·Sep 24, 2024CS50 Fall 2024 - Lecture 0 - Scratch | SummaryHow Computers Handle Text, Colors, Images, Videos, and Sound In this lecture, we explored the things from fundamentals including how computers handle various types of data, including text, colors, images, videos, and sound and many more things. Here’...1 likedavid malan
Sameera Khatoonsameerakhatoon.hashnode.dev·Sep 1, 2024Understanding Send and Receive Buffers in Network Programming on LinuxIn network programming, particularly on Linux, send and receive buffers are vital for managing data flow between applications and the operating system (OS). These buffers facilitate the transition of data from user space to kernel space and vice-vers...Linux