diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..b39ed5c --- /dev/null +++ b/index.html @@ -0,0 +1,127 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>Projects</title> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="mobile-web-app-capable" content="yes"> + <meta name="color-scheme" content="dark light"> + <link rel="stylesheet" href="style.css"> + </head> + <body> + <nav> + <!-- todo: put this in a "pages" drop down on mobile --> + <a href="/">Home</a> + <a href="/blog">Blog</a> + <a href="/projects">Projects</a> + <a href="/contact">Contact</a> + <span class="spacer"></span> + <!-- todo: put this in a "links" drop down on mobile --> + <a href="https://git.jaseg.de/">cgit</a> + <a href="https://github.com/jaseg">Github</a> + <a href="https://gitlab.com/neinseg">Gitlab</a> + <a href="https://chaos.social/jaseg">Mastodon</a> + </nav> + <header> + <h1>Projects</h1> + <strong>jaseg on 2023-03-18</strong> + </header> + <main class="cards"> + I maintain a number of open-source projects. Most of these I started out of some personal need or interest. + I strive to keep all of them up to date and maintained, so if you notice an issue with one of them, please + open an issue on the project's issue tracker. + + <div class="card"> + <h2>Gerbolyze</h2> + + Gerbolyze is a tool that allows the modification of Gerber PCB artwork with a vector graphics editor + like Inkscape. Gerbolyze directly converts between SVG and Gerber, and accurately reproduces details + that other tools can not. + <a href="https://github.com/jaseg/gerbolyze/blob/main/README.rst">Read more</a> + + <div class="links"> + <a href="https://git.jaseg.de/gerbolyze.git">Source</a> + <a href="https://github.com/jaseg/gerbolyze/issues">Issues</a> + <a href="https://gerbolyze.gitlab.io/gerbolyze">Docs</a> + <a href="https://pypi.org/projects/gerbolyze">PyPI</a> + </div> + </div> + <div class="card"> + <h2>svg-flatten</h2> + + svg-flatten is a command-line utility that performs vector occlusion and clipping on SVG files, + producing a flattened SVG file without overlapping elements, without changing what the file looks + like. svg-flatten is used as a part of gerbolyze. + <a href="https://github.com/jaseg/gerbolyze/blob/main/svg-flatten/README.rst">Read more</a> + + <div class="links"> + <a href="https://git.jaseg.de/gerbolyze.git/tree/svg-flatten?h=main">Source</a> + <a href="https://github.com/jaseg/gerbolyze/issues">Issues</a> + <a href="https://gerbolyze.gitlab.io/svg-flatten">Docs</a> + </div> + </div> + <div class="card"> + <h2>Gerbonara</h2> + + Gerbonara is a user-friendly, powerful tool for reading, writing, modification and rendering of + Gerber PCB artwork from the command line or from Python code. Gerbonara supports the Gerber dialects + of all industry-standard EDA tools. + <a href="https://github.com/jaseg/gerbonara/blob/main/README.rst">Read more</a> + + <div class="links"> + <a href="https://git.jaseg.de/gerbonara.git">Source</a> + <a href="https://gitlab.com/gerbolyze/gerbonara/issues">Issues</a> + <a href="https://gerbolyze.gitlab.io/gerbonara">Docs</a> + <a href="https://pypi.org/projects/gerbonara">PyPI</a> + </div> + </div> + <div class="card"> + <h2>python-mpv</h2> + + python-mpv is a small, ctypes-based Python library wrapping the libmpv media player library. Despite + its small size and simple API, python-mpv allows advanced control over libmpv and beyond simple + remote control of mpv can be used to embed mpv in OpenGL, Qt, and GTK-based Python applications. + <a href="https://github.com/jaseg/python-mpv/blob/main/README.rst">Read more</a> + + <div class="links"> + <a href="https://git.jaseg.de/python-mpv.git">Source</a> + <a href="https://github.com/jaseg/python-mpv/issues">Issues</a> + <a href="https://neinseg.gitlab.io/python-mpv">Docs</a> + <a href="https://pypi.org/projects/mpv">PyPI</a> + </div> + </div> + <div class="card"> + <h2>lolcat-c</h2> + + lolcat-c is a small, high-performance re-implementation of the + <a href="https://github.com/busyloop/lolcat">lolcat</a> rainbow cat utility. lolcat-c is meant as a + lolcat that you can actually use in production. It is fast, not slowing down whatever you pipe + through it, and it robustly handles real-world terminal output including escape sequences. + <a href="https://github.com/jaseg/lolcat/blob/main/README.md">Read more</a> + + <div class="links"> + <a href="https://git.jaseg.de/lolcat.git">Source</a> + <a href="https://github.com/jaseg/lolcat/issues">Issues</a> + </div> + </div> + <div class="card"> + <h2>wsdiff</h2> + + wsdiff is a command-line utility that produces self-contained, syntax-highlighted, HTML-formatted + diffs that support both unified and side-by-side diffs from a single source file using nothing but + CSS magic. + <a href="https://github.com/jaseg/wsdiff/blob/main/README.md">Read more</a> + + <div class="links"> + <a href="https://git.jaseg.de/wsdiff.git">Source</a> + <a href="https://github.com/jaseg/wsdiff/issues">Issues</a> + <a href="https://pypi.org/projects/wsdiff">PyPI</a> + </div> + </div> + </main> + <footer> + Copyright © 2023 Jan Sebastian Götte / <a href="/about">About me</a> / <a href="/imprint">Imprint</a> + </footer> + </body> +</html> |