Skip to content

Instantly share code, notes, and snippets.

View aloysmose's full-sized avatar

Aloys Mose aloysmose

View GitHub Profile
@aloysmose
aloysmose / index.html
Created May 6, 2024 19:47
Multiple object detection using pre trained model in TensorFlow.js
<!DOCTYPE html>
<html lang="en">
<head>
<title>Multiple object detection using pre trained model in TensorFlow.js</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Jason Mayes">
<!-- Import the webpage's stylesheet -->
@aloysmose
aloysmose / index.html
Created February 14, 2024 17:26
Space globe - Three.js
<div id="canvas_container"></div>
<!-- <button id="fullscr">Go Fullscreen</button> -->
@aloysmose
aloysmose / index.html
Created October 26, 2023 09:37
PDF.js with file input
<input type="file" id="pdf-upload"/>
<hr/>
<canvas class="page" size="A4" layout="landscape"></canvas>
@aloysmose
aloysmose / google-map-street-view-side-by-side.markdown
Created October 17, 2023 06:41
Google Map / Street View side-by-side

Google Map / Street View side-by-side

A good starting point to do more with google maps than just a simple ROADMAP design. Here is one you can play around with and try some different experiments. See if you can add a click event, multiple markers, filters or just change the way it displays. Send me a note to let me know what you did and how you did it. Check out my “beginners” articles at http://www.pailwriter.wordpress.com

A Pen by aloysmose on CodePen.

@aloysmose
aloysmose / 3d-spinning-globe.markdown
Created October 15, 2023 11:36
3D Spinning Globe

3D Spinning Globe

It's a THREE.JS version of a spinning globe, with an illustrated cartoon style globe.

A Pen by aloysmose on CodePen.

License.

@aloysmose
aloysmose / index.html
Created July 17, 2023 14:30
Metaverse
<div id="loading">
<h2>Loading...</h2>
<div class="spinner"></div>
</div>
<div id="overlay" />
@aloysmose
aloysmose / index.html
Created July 17, 2023 14:30
Metaverse
<div id="loading">
<h2>Loading...</h2>
<div class="spinner"></div>
</div>
<div id="overlay" />
@aloysmose
aloysmose / abandoned-planet-metaverse.markdown
Created July 14, 2023 14:07
Abandoned Planet (metaverse)

Abandoned Planet (metaverse)

Just a mobile game demo I'm working on. Still a work in progress

A Pen by aloysmose on CodePen.

License.

@aloysmose
aloysmose / index.html
Created January 6, 2023 11:57
Solar System Surfaces - CSS :has()
<div class="info"><div class="name"></div></div>
<div class="surfaces">
<div class="sun"><input type="radio" name="surfaces" id="sun" checked><label for="sun"></label><span>Sun</span></div>
<div class="mercury"><input type="radio" name="surfaces" id="mercury"><label for="mercury"></label><span>Mercury</span></div>
<div class="venus"><input type="radio" name="surfaces" id="venus"><label for="venus"></label><span>Venus</span></div>
<div class="earth"><input type="radio" name="surfaces" id="earth"><label for="earth"></label><span>Earth</span></div>
<div class="moon satellite"><input type="radio" name="surfaces" id="moon"><label for="moon"></label><span>Moon</span></div>
<div class="mars"><input type="radio" name="surfaces" id="mars"><label for="mars"></label><span>Mars</span></div>
<div class="jupiter"><input type="radio" name="surfaces" id="jupiter"><label for="jupiter"></label><span>Jupiter</span></div>
<div class="io satellite"><input type="radio" name="surfaces" id="io"><label for="io"></labe