blob: bd37efc49b571ce1506e4385d22a00c4d86b2591 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/blog/blog.css">
</head>
<body>
<div class="text-section">
<a href="..">↰ Back</a>
<a href="/">⌂ Home</a>
</div>
<article>
<section>
<div class="text-section">
<!-- Header Section -->
<h1>Terminal Renderer - Rendering to Text with Compute</h1>
<p>October 2, 2025</p>
<p>This week I brought my terminal renderer to the next level by performing text rendering on the GPU.</p>
</div>
<figure class="cover-image">
<img src="cover.png" alt="">
<figcaption>The Stanford Dragon, outlined and rendered as Braille characters in a terminal emulator.</figcaption>
</figure>
</section>
<section class="text-section">
<h2>Preamble: Unicode Braille and Ordered Dithering</h2>
<p>
I first messed around with rendering images to the terminal with Braille characters in like 2022 I think? I wrote a simple CLI tool
that applied a threshold to an input image and output it as Braille characters in the terminal.
</p>
</section>
<section class="text-section">
<h2>Generating and Parsing Logs</h2>
<p>
</p>
</section>
</article>
</body>
</html>
|