edit content

This commit is contained in:
Adam 2023-06-17 22:31:24 -04:00
parent 1dbaf23129
commit 0c54df790b
8 changed files with 59 additions and 28 deletions

View file

@ -25,6 +25,13 @@ def get_html(content):
fake_db = [ fake_db = [
Article(
content_type='project',
title='''Lightning''',
date=date(2023, 4, 27),
content=get_html('projects/20230427-lightning.html'),
),
Article( Article(
content_type='project', content_type='project',
title='''Cartman is public!''', title='''Cartman is public!''',

View file

@ -1,3 +1,6 @@
<article> <article>
<p><a href="https://doordesk.net/games/adam/" target="_blank">adam</a> is a quick fps demo to test how well WebGL performs using <a href="https://unity.com">Unity</a>.</p> <p>
<a href="https://doordesk.net/games/adam/" target="_blank">adam</a> is a quick fps demo to test how well WebGL
performs using <a href="https://unity.com">Unity</a>.
</p>
</article> </article>

View file

@ -1,3 +1,6 @@
<article> <article>
<p><a href="https://doordesk.net/games/balls/">balls</a> is another demo to test WebGL performance. This time using <a href="https://godotengine.org/">Godot Engine</a>.</p> <p>
<a href="https://doordesk.net/games/balls/" target="_blank">balls</a> is another demo to test WebGL performance.
This time using <a href="https://godotengine.org/">Godot Engine</a>.
</p>
</article> </article>

View file

@ -1 +1,6 @@
fps <article>
<p>
<a href="https://doordesk.net/games/fps/" target="_blank">fps</a> is a Godot/WebGL experiment from scratch with
multiplayer using websockets and a master/slave architecture. Invite a friend or open multiple instances!
</p>
</article>

View file

@ -16,7 +16,8 @@
<ul> <ul>
---MY GAMES--- ---MY GAMES---
<li><a href="https://doordesk.net/games/adam">adam</a> - The first. Unity Demo/Tutorial with some mods</li> <li><a href="https://doordesk.net/games/adam">adam</a> - The first. Unity Demo/Tutorial with some mods</li>
<li><a href="https://doordesk.net/games/fps">multiplayer fps</a> - Dive into netcode with Godot (Open two, invite your friends!)</li> <li><a href="https://doordesk.net/games/fps">multiplayer fps</a> - Dive into netcode with Godot (Open two, invite
your friends!)</li>
<li><a href="https://doordesk.net/games/../snek">snek</a> - Canvas + JS (the actual first)</li> <li><a href="https://doordesk.net/games/../snek">snek</a> - Canvas + JS (the actual first)</li>
<li><a href="https://doordesk.net/games/balls">balls</a> - Godot demo engine test</li> <li><a href="https://doordesk.net/games/balls">balls</a> - Godot demo engine test</li>
</ul> </ul>

View file

@ -1 +1,5 @@
snek <article>
<p>
<a href="https://doordesk.net/snek" target="_blank">snek</a> is a simple snake game made with JS/Canvas.
</p>
</article>

View file

@ -1,27 +1,24 @@
<article> <article>
<ul> <p>
<li><a href="https://doordesk.net/cartman">Cartman</a> is trained by combining Microsoft's <a href="https://doordesk.net/cartman">Cartman</a> is trained by combining Microsoft's
<a href="https://huggingface.co/microsoft/DialoGPT-large">DialoGPT-large</a> <a href="https://huggingface.co/microsoft/DialoGPT-large">DialoGPT-large</a>
NLP model (trained on 147M samples of multi-turn dialogue from Reddit) with 17 seasons of NLP model (trained on 147M samples of multi-turn dialogue from Reddit) with 17 seasons of
<a href="https://southparkstudios.com">South Park</a> <a href="https://southparkstudios.com">South Park</a>
transcripts. transcripts.
</li> </p>
<li> <p>
<p> Requests are routed from
Requests are routed from <a href="https://nginx.com">Nginx</a>
<a href="https://nginx.com">Nginx</a> through
through <a href="https://www.wireguard.com">WireGuard</a>
<a href="https://www.wireguard.com">WireGuard</a> to a
to a <a href="https://www.tomshardware.com/news/raspberry-pi-4-8gb-tested">Raspberry Pi 4B 8GB</a>
<a href="https://www.tomshardware.com/news/raspberry-pi-4-8gb-tested">Raspberry Pi 4B 8GB</a> running
running <a href="https://fastapi.tiangolo.com">FastAPI</a>,
<a href="https://fastapi.tiangolo.com">FastAPI</a>, and the Cartman model using <a href="https://pytorch.org">PyTorch</a>.
and the Cartman model using <a href="https://pytorch.org">PyTorch</a>. It has enough RAM for more, but the CPU is pretty much at its limit. Expect it to take a few
It has enough RAM for more, but the CPU is pretty much at its limit. Expect it to take a few seconds, I'm cheap. Sorry(kinda).
seconds, I'm cheap. Sorry(kinda). </p>
</p>
</li>
</ul>
<p> <p>
You can download a Docker image if you'd like to run it on your own hardware for either You can download a Docker image if you'd like to run it on your own hardware for either
<a href="https://doordesk.net/files/chatbots_api_x86_64.tar.gz">x86_64</a> <a href="https://doordesk.net/files/chatbots_api_x86_64.tar.gz">x86_64</a>

View file

@ -0,0 +1,11 @@
<article>
<p>
<a href="https://lightning.doordesk.net" target="_blank">Lightning</a> is a mapping/data vis project for finding
EV charging stations. It uses <a href="https://github.com/maplibre/martin" target="_blank">Martin</a> to serve
tiles generated from <a href="https://www.openstreetmap.org" target="_blank">OpenStreetMap</a> data to a <a
href="https://maplibre.org/" target="_blank">MapLibre</a> frontend. Additional layers are added on top
via <a href="https://deck.gl" target="_blank">Deck.gl</a> using data from <a
href="https://github.com/kevin-fwu/EVChargerFinder" target="_blank">EVChargerFinder</a> made by by friend
Kevin.
</p>
</article>