<!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">
<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: darkblue;
}
.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>
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()}`,
};
let activeSelection = "mdbook";
const url = new URL(window.location.href);
const params = new URLSearchParams(url.search);
if (params.has("open")) {
const open = params.get("open");
const value = anchors[open];
frmContent.src = value;
for (const [key, value] of Object.entries(anchors)) {
if (open.includes(key)) {
document.getElementById(key).style.backgroundColor = "darkblue";
activeSelection = key;
} else {
document.getElementById(key).style.backgroundColor = "black";
}
}
} else {
document.getElementById("mdbook").style.backgroundColor = "darkblue";
}
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 = "darkblue";
activeSelection = id;
}
setTimeout(() => {
document.getElementById("btnPrintPage").style.visibility = "hidden";
document.getElementById("btnTTS").style.visibility = "hidden";
document.getElementById("anchorDisqus").style.visibility = "hidden";
document.getElementById("btnSharePage").onclick = async function() {
try {
const isMobile = 'ontouchstart' in window ||
navigator.maxTouchPoints > 0 ||
navigator.msMaxTouchPoints > 0
const tooltip = globalThis.document.getElementById("divTooltip");
let origin = window.location.origin;
let pathname = window.location.pathname;
let href = `${origin}${pathname}?open=${activeSelection}`;
await globalThis.navigator.clipboard.writeText(href);
if (!isMobile) {
tooltip.style.display = "inline-block";
setTimeout(() => { tooltip.style.display = "none"; }, 750);
}
} catch (err) {
let msg = Object.hasOwn(err, "message")
? err.message
: "unable to perform share";
console.error("onSharePageClicked()", msg);
alert(msg);
return false;
}
}
}, 250);
</script>
</body></html>