Tagged articles
8 articles
Page 1 of 1
Liangxu Linux
Liangxu Linux
Aug 14, 2025 · Fundamentals

Master IP Addressing: From Basics to Subnetting and VLSM

Starting from the basics of IPv4 address format, this guide explains class structures, binary‑decimal conversion, subnet masks, step‑by‑step subnet calculations, soft and hard planning rules, and introduces VLSM with a practical example, providing a comprehensive foundation for effective network address design.

CIDRIP addressingSubnetting
0 likes · 14 min read
Master IP Addressing: From Basics to Subnetting and VLSM
MaGe Linux Operations
MaGe Linux Operations
Jul 2, 2025 · Fundamentals

Master IP Addressing: From Basics to Subnetting and VLSM Explained

This comprehensive guide covers IP address formats, classful and private ranges, binary‑decimal conversion, subnet masks, the reasons and principles behind subnetting, hard and soft subnetting rules, and introduces VLSM with step‑by‑step examples for efficient network planning.

IP addressingSubnettingVLSM
0 likes · 13 min read
Master IP Addressing: From Basics to Subnetting and VLSM Explained
IT Services Circle
IT Services Circle
Jun 14, 2024 · Fundamentals

Understanding Floating‑Point Precision and Common Pitfalls in Java

The article explains why comparing floating‑point numbers with == in Java often yields unexpected results, describes the IEEE‑754 representation of float and double, demonstrates common pitfalls through code examples, and provides step‑by‑step methods for converting decimal fractions to binary.

IEEE-754JavaSoftware Engineering
0 likes · 10 min read
Understanding Floating‑Point Precision and Common Pitfalls in Java
Liangxu Linux
Liangxu Linux
Jan 29, 2024 · Fundamentals

Master IP Subnetting: From Binary Conversion to CIDR Calculations

This guide explains core concepts of IP subnetting, including binary‑decimal conversion, network and host counts for A/B/C classes, default masks, valid mask rules, CIDR notation, and a step‑by‑step example solving a /18 subnet problem.

CIDRIP subnettingbinary conversion
0 likes · 14 min read
Master IP Subnetting: From Binary Conversion to CIDR Calculations
Laravel Tech Community
Laravel Tech Community
Jan 17, 2021 · Backend Development

decbin() – Convert Decimal to Binary in PHP

The article explains PHP’s decbin() function, detailing its purpose of converting a decimal integer (0‑4294967295) to a 32‑bit binary string, describing its parameter and return value, and providing a complete code example with expected output.

BackendPHPbinary conversion
0 likes · 1 min read
decbin() – Convert Decimal to Binary in PHP
Liangxu Linux
Liangxu Linux
Nov 4, 2020 · Fundamentals

Why 0.2 + 0.1 Equals 0.30000000000000004 in JavaScript and How IEEE‑754 Handles Decimal Fractions

JavaScript’s 0.2 + 0.1 yielding 0.30000000000000004 stems from binary floating‑point representation, where many decimal fractions cannot be expressed exactly; the article explains decimal‑to‑binary conversion, the repeating binary of 0.1, IEEE‑754 format, and how to avoid precision loss using BigDecimal in Java.

BigDecimalIEEE-754Java
0 likes · 9 min read
Why 0.2 + 0.1 Equals 0.30000000000000004 in JavaScript and How IEEE‑754 Handles Decimal Fractions