blob: f1e73a3f1601ff3d499b5eeb023799703ffc24f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
layout: default
title: Projects
---
<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>
|