Skip to content

Instantly share code, notes, and snippets.

View GlenDC's full-sized avatar
🚀

Glen De Cauwsemaecker GlenDC

🚀
View GitHub Profile
@GlenDC
GlenDC / triangles.html
Created December 5, 2022 20:52
Experiments with ChatGPT and GitHub Co-Pilot
<!DOCTYPE html>
<html>
<!-- Generated mostly with ChatGPT, with the help of GitHub Co-Pilot to correct some bits fast -->
<head>
<meta charset="UTF-8">
<title>My page</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gl-matrix/2.8.1/gl-matrix-min.js"></script>
@GlenDC
GlenDC / Cargo.toml
Last active December 17, 2023 02:11
simple hyper (0.14) tower-based http router
[package]
name = "router"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hyper = { version = "0.14.27", features = ["full"] }
tower = { version = "0.4.12", features = ["full"] }