Skip to content

Commit

Permalink
Deploying to gh-pages from @ ec21365 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
rukh-debug committed May 7, 2024
0 parents commit 38d82e6
Show file tree
Hide file tree
Showing 12 changed files with 1,760 additions and 0 deletions.
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rubenk.dev
5 changes: 5 additions & 0 deletions _headers
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
Cache-Control: no-cache
Hello: world
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET
Binary file added favicon-f402c8741ce815ec.ico
Binary file not shown.
Binary file added icon-1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icon-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icon_ios_touch_192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
170 changes: 170 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<!-- Disable zooming: -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>

<head>
<!-- change this to your project name -->
<title>Ruben Kharel</title>

<!-- config for our rust wasm binary. go to https://trunkrs.dev/assets/#rust for more customization -->

<script type="module">
import init, * as bindings from 'https://rubenk.dev/rk_playground-b9dad1158b8eb986.js';
const wasm = await init('https://rubenk.dev/rk_playground-b9dad1158b8eb986_bg.wasm');


window.wasmBindings = bindings;


dispatchEvent(new CustomEvent("TrunkApplicationStarted", {detail: {wasm}}));

</script>
<!-- this is the base url relative to which other urls will be constructed. trunk will insert this from the public-url option -->
<base href="https://rubenk.dev/" />

<link rel="icon" href="https://rubenk.dev/favicon-f402c8741ce815ec.ico" integrity="sha384&#x2D;jNOAE6jgE03LznIulCTVP6BH4NrTuROFjP9wj8bV1UUMJKtZAvstFpIAP3PDcFpx"/>









<!-- <link data-trunk rel="copy-dir" href="src/_post/published"/> -->

<link rel="manifest" href="manifest.json" />
<link rel="apple-touch-icon" href="icon_ios_touch_192.png" />
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="white"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#404040"
/>

<style>
html {
/* Remove touch delay: */
touch-action: manipulation;
}

body {
/* Light mode background color for what is not covered by the egui canvas,
or where the egui canvas is translucent. */
background: #909090;
}

@media (prefers-color-scheme: dark) {
body {
/* Dark mode background color for what is not covered by the egui canvas,
or where the egui canvas is translucent. */
background: #404040;
}
}

/* Allow canvas to fill entire web page: */
html,
body {
overflow: hidden;
margin: 0 !important;
padding: 0 !important;
height: 100%;
width: 100%;
}

/* Position canvas in center-top: */
canvas {
margin-right: auto;
margin-left: auto;
display: block;
position: absolute;
top: 0%;
left: 50%;
transform: translate(-50%, 0%);
}

.centered {
margin-right: auto;
margin-left: auto;
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #f0f0f0;
font-size: 24px;
font-family: Ubuntu-Light, Helvetica, sans-serif;
text-align: center;
}

/* ---------------------------------------------- */
/* Loading animation from https://loading.io/css/ */
.lds-dual-ring {
display: inline-block;
width: 24px;
height: 24px;
}

.lds-dual-ring:after {
content: " ";
display: block;
width: 24px;
height: 24px;
margin: 0px;
border-radius: 50%;
border: 3px solid #fff;
border-color: #fff transparent #fff transparent;
animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}
</style>

<link rel="modulepreload" href="https://rubenk.dev/rk_playground-b9dad1158b8eb986.js" crossorigin=anonymous integrity="sha384-POvCom7bqDss+6ZxfJ+WzmT/H3r7Y/hvRtiFhpJ+4Wi9nLchhyU1fpg0TMe8I3td">
<link rel="preload" href="https://rubenk.dev/rk_playground-b9dad1158b8eb986_bg.wasm" crossorigin=anonymous integrity="sha384-PdWu0dNYb92T8m47yoWLrMxc8KLH9XIxcDMQbq5eyGbtDLfukIimYAQ51ljE+mDo" as="fetch" type="application/wasm"></head>

<body>
<!-- The WASM code will resize the canvas dynamically -->
<!-- the id is hardcoded in main.rs . so, make sure both match. -->
<canvas id="rk_playground"></canvas>

<!-- <div class="canvas_wrap one">
<canvas id="canvas_id_one"></canvas>
</div>
<div class="canvas_wrap two">
<canvas id="canvas_id_two"></canvas>
</div> -->
<!--Register Service Worker. this will cache the wasm / js scripts for offline use (for PWA functionality). -->
<!-- Force refresh (Ctrl + F5) to load the latest files instead of cached files -->
<script>
// We disable caching during development so that we always view the latest version.
if ("serviceWorker" in navigator && window.location.hash !== "#dev") {
window.addEventListener("load", function () {
navigator.serviceWorker.register("sw.js");
});
}
</script>
</body>
</html>

<!-- Powered by egui: https://github.com/emilk/egui/ -->
28 changes: 28 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "rk_playground",
"short_name": "rk_playground",
"icons": [
{
"src": "icon-256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "maskable_icon_x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "icon-1024.png",
"sizes": "1024x1024",
"type": "image/png"
}
],
"lang": "en-US",
"id": "index.html",
"start_url": "index.html",
"display": "standalone",
"background_color": "white",
"theme_color": "white"
}
Binary file added maskable_icon_x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 38d82e6

Please sign in to comment.