PAPixel and Codeinlearning-data-structures.hashnode.dev00Linked Lists2d ago · 16 min read · A linked list is a data structure in Computer Science where data is stored in separate elements called nodes, and each node contains both a value and a reference (pointer) to the next node in the sequJoin discussion
PAPixel and Codeinlearning-linux-from-scratch.hashnode.dev00The Command Line Interface (CLI)May 26 · 5 min read · To the uninitiated, the Linux command line looks like a relic of the 1970s—a black screen with blinking green text designed to intimidate. In reality, the CLI is an expressive, highly efficient, and iJoin discussion
PAPixel and Codeinlearning-linux-from-scratch.hashnode.dev00Installation and the BootloaderMay 26 · 5 min read · When you press the power button on a computer, the CPU is completely blind. It has no idea what an operating system is, what a file is, or how to draw a window on a screen. The journey from that initiJoin discussion
PAPixel and Codeinlearning-data-structures.hashnode.dev00ArraysMay 21 · 8 min read · An array is a linear data structure used to store a group of elements of the same data type together in a single variable. These elements are stored in continuous (contiguous) memory locations, and eaJoin discussion
PAPixel and Codeinlearning-data-structures.hashnode.dev12DSA MADE EASYMay 11 · 6 min read · Classification of Data Structures Data structures are ways of organizing and storing data in a computer so that it can be used efficiently. Different types of data structures are used depending on thePPrakhar and 1 more commented