diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-10 18:13:33 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-10 18:13:33 +0530 |
commit | 305b87aaa0c5a5fcab4295f83744831a5cb8586e (patch) | |
tree | 5979f725a00ae5f012068436f69e0856d714a5a3 /projects/index.html | |
parent | c1927ab79c96435b325be26eaefda430e929d442 (diff) |
progress
Diffstat (limited to 'projects/index.html')
-rw-r--r-- | projects/index.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/projects/index.html b/projects/index.html index 31cec81..f1e73a3 100644 --- a/projects/index.html +++ b/projects/index.html @@ -2,10 +2,20 @@ layout: default title: Projects --- -<div class="flex flex-row flex-wrap" onclick="window.location='/projects/tensorspeare'"> +<div class="flex flex-row flex-wrap"> + <div class="flex flex-row flex-wrap" onclick="window.location='/projects/tensorspeare'"> <div class="blog-block flex-col break-words transform hover:bg-gray-900 justify-start max-w-sm" style="cursor: pointer;"> <a class="text-xl text-white mt-2 border-b pb-1 hover:underline">Tensorspeare</a> <a class="text-lg text-gray-400 pt-2">A TensorFlow model which generates text that sounds like it was written by Shakespeare </a> </div> + </div> + + <div class="flex flex-row flex-wrap" onclick="window.location='/projects/chip8emu'"> + <div class="blog-block flex-col break-words transform hover:bg-gray-900 + justify-start max-w-sm" style="cursor: pointer;"> + <a class="text-xl text-white mt-2 border-b pb-1 hover:underline">CHIP8Emu</a> + <a class="text-lg text-gray-400 pt-2">An emulator for CHIP-8 written in C++</a> + </div> + </div> </div> |