Skip to content

KandZ - Tuts

  • Benchmarks ▾
    • CPU
    • GPU
  • Operating Systems ▾
    • Linux ▾
      • Fedora
      • Gnome 48
      • Gnome How-To
      • KDE
      • Linux CLI ▾
        • Linux CLI How-To
        • Linux Foundation Certified IT Associate
      • Linux How-To
      • Other Distros
      • Ubuntu
      • Various
  • Other
  • Programming ▾
    • Frameworks & Libraries ▾
      • Angular
    • How-To ▾
      • CSS How-To
      • HTML How-To
      • JavaScript How-To
    • Languages ▾
      • CSS
      • HTML
      • JavaScript
      • TypeScript
    • Tools ▾
      • Git
  • Tools
  • Windows ▾
    • Windows 11
KandZ - Tuts
AngularCSSCSS How-ToGitHTMLHTML How-ToJavaScriptJavaScript How-ToTypeScriptFedoraGnome 48Gnome How-ToKDELinux CLI How-ToLinux Foundation Certified IT AssociateLinux How-ToOther DistrosUbuntuVariousCPUGPUOtherToolsWindows 11
  • LFCA 40 🐧 Subnets and CIDR Explained
    Linux | Linux CLI | Linux Foundation Certified IT Associate | Operating Systems

    LFCA 40 🐧 Subnets and CIDR Explained

    ByKandZ September 24, 2026September 24, 2026

    An IP address is not a single number. It is two: the network the device is on, and the interface’s identity within that network. The split between the two is the subnet, and the way the split is expressed is the CIDR prefix. The subnet determines which destinations are local and which are remote, which…

    Read More LFCA 40 🐧 Subnets and CIDR ExplainedContinue

  • LFCA 39 🐧 What is an IP Address
    Linux | Linux CLI | Linux Foundation Certified IT Associate | Operating Systems

    LFCA 39 🐧 What is an IP Address

    ByKandZ September 24, 2026September 24, 2026

    Every device on a network has an address. The address is how one device finds another, how the packets know where to go, and how the responses find their way back. On the internet and on the local networks that connect to it, that address is the IP address — a number that identifies a…

    Read More LFCA 39 🐧 What is an IP AddressContinue

  • LFCA 38 🐧 Checking Disk Usage — df, du
    Linux | Linux CLI | Linux Foundation Certified IT Associate | Operating Systems

    LFCA 38 🐧 Checking Disk Usage — df, du

    ByKandZ September 24, 2026September 24, 2026

    A filesystem that fills up causes problems: the logs stop being written, the applications fail, the system can behave unpredictably. The two tools for finding out how much space is used are df and du. They answer different questions. df reports the filesystem-level usage — how much of each mounted filesystem is used, how much…

    Read More LFCA 38 🐧 Checking Disk Usage — df, duContinue

  • LFCA 37 🐧 Mounting and Unmounting Filesystems
    Linux Foundation Certified IT Associate | Linux | Linux CLI | Operating Systems

    LFCA 37 🐧 Mounting and Unmounting Filesystems

    ByKandZ September 24, 2026September 24, 2026

    The previous chapter covered the concepts: disks, partitions, filesystems, and the mount model. This chapter covers the commands. Mounting is the act of attaching a filesystem to a directory, and unmounting is the reverse. The mount command does the attaching, umount does the detaching, and findmnt reports the current mount tree. The /etc/fstab file declares…

    Read More LFCA 37 🐧 Mounting and Unmounting FilesystemsContinue

  • LFCA 36 🐧 Disks, Partitions, and Filesystems
    Linux | Linux CLI | Linux Foundation Certified IT Associate | Operating Systems

    LFCA 36 🐧 Disks, Partitions, and Filesystems

    ByKandZ September 24, 2026September 24, 2026

    Storage on Linux is organized in three layers. At the bottom is the disk — a physical device or its virtual equivalent, presented as a block device under /dev. On the disk is a partition table that divides the space into partitions. On each partition is a filesystem that tracks files, directories, permissions, and free…

    Read More LFCA 36 🐧 Disks, Partitions, and FilesystemsContinue

  • Angular 50 🅰️ Signal-Based Components
    Programming | Angular | Frameworks & Libraries

    Angular 50 🅰️ Signal-Based Components

    ByKandZ September 24, 2026September 24, 2026

    A signal-based component is a component whose state is expressed with signals, whose inputs are signals, whose outputs are signal-aware, and whose template reads the signals directly. The change detection is driven by the signals, and the component is checked only when the signals it reads change. The model is the modern Angular, and it…

    Read More Angular 50 🅰️ Signal-Based ComponentsContinue

  • Angular 49 🅰️ Effects and Side Effects
    Angular | Frameworks & Libraries | Programming

    Angular 49 🅰️ Effects and Side Effects

    ByKandZ September 24, 2026September 24, 2026

    An effect is a function that runs when the signals it reads change. It is the escape hatch from the signal graph to the imperative world — the place where a signal’s change is translated into a side effect that is not a value: a DOM update, a log, a persistence write, an external API…

    Read More Angular 49 🅰️ Effects and Side EffectsContinue

  • Angular 48 🅰️ Computed Signals
    Programming | Angular | Frameworks & Libraries

    Angular 48 🅰️ Computed Signals

    ByKandZ September 24, 2026September 24, 2026

    A computed signal is a derived value. It reads other signals — called its dependencies — and produces a value from them. When any dependency changes, the computed signal marks itself as stale, and the next read recomputes the value. This is the mechanism that turns a set of independent signals into a graph, where…

    Read More Angular 48 🅰️ Computed SignalsContinue

  • Angular 47 🅰️ Signals — Reactive Primitives
    Programming | Angular | Frameworks & Libraries

    Angular 47 🅰️ Signals — Reactive Primitives

    ByKandZ September 24, 2026September 24, 2026

    Signals are Angular’s reactive primitive. A signal is a value that notifies its consumers when it changes, and a component that reads a signal is marked for change detection when the signal changes. The API is small — signal, computed, and effect are the three functions — but the model they implement is the foundation…

    Read More Angular 47 🅰️ Signals — Reactive PrimitivesContinue

  • Angular 46 🅰️ Advanced RxJS State Patterns
    Programming | Angular | Frameworks & Libraries

    Angular 46 🅰️ Advanced RxJS State Patterns

    ByKandZ September 24, 2026September 24, 2026

    State management in Angular has moved through several generations. The first was services holding plain properties, mutated by components. The second was services holding BehaviorSubjects, with components subscribing to the observable streams. The third, in modern Angular, is signals — synchronous, dependency-tracking reactive values. But RxJS has not gone away: signals handle synchronous state, while…

    Read More Angular 46 🅰️ Advanced RxJS State PatternsContinue

Page navigation

1 2 3 … 99 Next PageNext

© 2026 KandZ - Tuts - WordPress Theme by Kadence WP

    Search