$guide) { if (!empty($guide['published']) && $guide['published'] === false) { continue; } if (($guide['category'] ?? '') === $categorySlug) { $categoryName = $guide['category_name'] ?? ucfirst($categorySlug) . " Guides"; $guides[] = [ 'name' => $guide['name'] ?? '', 'url' => $guide['url'] ?? '', 'description' => $guide['description'] ?? '', 'published_at' => $guide['published_at'] ?? '2000-01-01' ]; } } } usort($guides, function ($a, $b) { return strcmp($b['published_at'], $a['published_at']); }); $pageTitle = $categoryName; $pageDescription = "Browse practical development guides for JSON, Base64, UUID, and other everyday developer tasks."; $seoCanonical = "https://toolsmeet.com/guides/" . $categorySlug . "/"; include_once $_SERVER['DOCUMENT_ROOT'] . "/inc/header.html"; ?>

Practical guides for common development tasks, structured data handling, and useful web workflows.

Explore practical development guides for formatting data, handling encoded content, generating identifiers, and solving common technical tasks.

No guides available yet.