codemelted 25.1.2

The aim of this project is to deliver a swiss army knife module to aid software engineers for building full stack solutions for their applications. Utilizing the Rust programming language, the module serves as a backbone to engineer solutions for multiple build targets.
Documentation
<!DOCTYPE html>
<html lang="en"><head>
  <base>
  <title>codemelted.rs The Swiss Army Knife Full Stack Solution</title>
  <meta charset="UTF-8">
  <meta name="description" content="The aim of this project is to deliver a swiss army knife module to aid software engineers in building full stack solutions for their applications. Utilizing the Rust programming language, the module serves as a backbone to engineer solutions for multiple build targets.">
  <meta name="keywords" content="CodeMeltedDEV, raspberry-pi, modules, cross-platform, gps, html-css-javascript, flutter-apps, pwsh, pwsh-lib, js-module, flutter-library, deno-module, pwsh-scripts, pwsh-module, rust, rust-lib">
  <meta name="author" content="mark.shaffer@codemelted.com">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <!-- Open Graph Settings -->
  <meta property="og:type" content="website">
  <meta property="og:title" content="codemelted.rs The Swiss Army Knife Fullstack Solution">
  <meta property="og:description" content="The aim of this project is to deliver a swiss army knife module to aid software engineers in building full stack solutions for their applications. Utilizing the Rust programming language, the module serves as a backbone to engineer solutions for multiple build targets.">
  <meta property="og:url" content="https://codemelted.com/developer/index.html">
  <meta property="og:image" content="https://codemelted.com/assets/images/logo-codemelted-rs.png">
  <meta property="og:image:height" content="100px">
  <meta property="og:image:width" content="100px">
  <link rel="icon" type="image/x-icon" href="https://codemelted.com/favicon.png">
  <link rel="stylesheet" href="https://codemelted.com/assets/css/services.css">
  <link rel="stylesheet" href="https://codemelted.com/assets/css/developer-theme.css">
  <script src="https://codemelted.com/assets/js/codemelted_navigation.js" defer></script>
  <style>
    .content-nav {
      overflow-y: auto;
      background-color: black;
      position: fixed;
      right: 0;
      top: 0;
      bottom: 78px;
      display: grid;
      grid-template-rows: auto auto auto auto auto auto;
    }
    .content-nav a {
      padding: 5px;
      cursor: pointer;
    }
    .content-nav a:hover {
      background-color: #1f1f1f;
    }
    .content-nav img {
      height: 45px;
    }
    .content-container {
      top: 0px;
      right: 55px;
      bottom: 78px;
    }
  </style>
</head><body>
  <div class="content-nav">
    <a id="mdbook"        onclick="onAnchorClicked('mdbook'); return false;" title="codemelted.rs The Swiss Army Knife of Code"><img src="https://codemelted.com/assets/images/icon-design.png" /></a>
    <a id="codemelted.rs" onclick="onAnchorClicked('codemelted.rs'); return false;" title="codemelted.rs Module"><img src="https://codemelted.com/assets/images/icon-rust.png" /></a>
    <a id="js"            onclick="onAnchorClicked('js'); return false;" title="codemelted.js Namespace"><img src="https://codemelted.com/assets/images/icon-js.png" /></a>
  </div>
  <div class="content-container">
    <iframe id="frmContent" src="mdbook/index.html" frameborder="0" width="100%" height="100%" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
  </div>
  <codemelted-navigation></codemelted-navigation>
  <script>
    // setup our page controls
    const frmContent = document.getElementById("frmContent");
    const anchors = {
      "mdbook"        : `mdbook/index.html?rand=${Math.random()}`,
      "codemelted.rs" : `codemelted.rs/codemelted/index.html?rand=${Math.random()}`,
      "js"            : `js/index.html?rand=${Math.random()}`,
    };

    // Setup our initial page state.
    const url = new URL(window.location.href);
    const params = new URLSearchParams(url.search);
    if (params.has("src")) {
      // Set our frame source
      const src = params.get("src");
      frmContent.src = src;

      // Go set the active page.
      for (const [key, value] of Object.entries(anchors)) {
        if (src.includes(key)) {
          document.getElementById(key).style.backgroundColor = "#1f1f1f";
        } else {
          document.getElementById(key).style.backgroundColor = "black";
        }
      }
    } else {
      document.getElementById("mdbook").style.backgroundColor = "#1f1f1f";
    }

    // Setup our anchor click action.
    function onAnchorClicked(id) {
      for (const [key, value] of Object.entries(anchors)) {
        document.getElementById(key).style.backgroundColor = "black";
      }
      frmContent.src = anchors[id]
      document.getElementById(id).style.backgroundColor = "#1f1f1f";
    }

    // Handle the override of codemelted_navigation.js click actions.
    setTimeout(() => {
      // Hide the controls not applicable to this page.
      document.getElementById("btnPrintPage").style.visibility = "hidden";
      document.getElementById("btnTTS").style.visibility = "hidden";
      document.getElementById("btnSharePage").style.visibility = "hidden";
      document.getElementById("anchorDisqus").style.visibility = "hidden";
    }, 250);
  </script>
</body></html>