From e5a6b6dc274887899cfabac78ee521f9c4345b9e Mon Sep 17 00:00:00 2001 From: sanine Date: Thu, 13 Jan 2022 17:54:55 -0600 Subject: remove public directory --- .gitignore | 1 + public/about.html | 19 -------------- public/blog/announcing_honeysuckle.html | 44 --------------------------------- public/index.html | 19 -------------- public/projects/index.html | 15 ----------- public/rss.xml | 15 ----------- public/style.css | 44 --------------------------------- 7 files changed, 1 insertion(+), 156 deletions(-) delete mode 100644 public/about.html delete mode 100644 public/blog/announcing_honeysuckle.html delete mode 100644 public/index.html delete mode 100644 public/projects/index.html delete mode 100644 public/rss.xml delete mode 100644 public/style.css diff --git a/.gitignore b/.gitignore index b25c15b..9b4a572 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *~ +public/ diff --git a/public/about.html b/public/about.html deleted file mode 100644 index 001244f..0000000 --- a/public/about.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - about me | sanine.net - - - - -
-

about me
================================

-

hey! i'm kate (aka sanine) and i like to write code, hack circuits, and grow plants. -i mostly use this site for documenting and sharing various projects. -i also (very occasionally) make games!! you can see them over on itch.io.

-

if you need to get in contact with me, you can send me an email at kate AT sanine DOT net. -i hope you're having a good day. <3

- -
- - diff --git a/public/blog/announcing_honeysuckle.html b/public/blog/announcing_honeysuckle.html deleted file mode 100644 index 9c2ac0c..0000000 --- a/public/blog/announcing_honeysuckle.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - announcing honeysuckle | sanine.net - - - - -
-

announcing honeysuckle
================================

-

2021-05-23

- -

As I’ve been working on various projects for the past couple of years -I have continued to find that a combination of C and Lua is my favorite -way to write code. The ongoing development of my game engine honey -uses that pair and I’m planning on using it (whenever I get around to it) for my dream -atlas project. But, and I’ll be the first -to admit this, the C API is a little clunky. -I don’t generally mind that all too much (after all, one of my favorite things about -both C and Lua is that they’re languages you can carry around in your head, and having -a very explicit API means you only need to understand the fundamental concepts to use it) -but it does mean that dev work goes a bit slower.

-

I did a good bit of work streamlining the process of writing Lua bindings in C when -tinkering with honey and ever since then I’ve found myself peeking back at that code -and re-implementing it in other projects. A colleague of mine once said that the time -to write a library is when you’ve done something once, you’re doing it now, and you -re pretty sure you’ll do it again, and I think I’ve quite handily cleared that condition -So! I’m splitting that code out and refactoring it into its own library which, due -to its historical roots, I’ve chosen to call honeysuckle.

-

honeysuckle is still under development – the API is a bit different from the one I -came up with when working on honey and imo is easier to use – but when it’s ready -it will provide a whole host of helpful functions that make integrating Lua scripting -into C applications simple and fast. I am (attempting) to employ readme-driven development -so I’ve written up a readme for honeysuckle. Any feedback on the proposed API and -features would be much appreciated! As of writing, honeysuckle is planned to include -functions for parsing arguments to C functions from Lua, creating and processing tables -throwing and handling Lua errors, using the Lua registry, and creating printf-formatted strings.

-

I’ve already created a repository for honeysuckle. There’s just a README in there -for now, but that will probably have changed even just later today, since I’m planning -on working on it more this afternoon. :p

- -
- - diff --git a/public/index.html b/public/index.html deleted file mode 100644 index f31c9b7..0000000 --- a/public/index.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - home | sanine.net - - - - -
-

home
================================

-

welcome to sanine.net!

- -

subscribe via rss

- -
- - diff --git a/public/projects/index.html b/public/projects/index.html deleted file mode 100644 index 0e8b6c1..0000000 --- a/public/projects/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - projects | sanine.net - - - - -
-

projects
================================

-

tl;dr projects go here

- -
- - diff --git a/public/rss.xml b/public/rss.xml deleted file mode 100644 index 2297f97..0000000 --- a/public/rss.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - sanine.net - https://sanine.net/ - - argent v0.1.0 - https://www.rssboard.org/rss-specification - - - announcing honeysuckle - https://sanine.net/blog/announcing_honeysuckle.html - 23 May 2021 00:00:00 Z - - - \ No newline at end of file diff --git a/public/style.css b/public/style.css deleted file mode 100644 index f43e73d..0000000 --- a/public/style.css +++ /dev/null @@ -1,44 +0,0 @@ -body { - color: #eee; - background: #1c1c1c; - font-family: monospace; - font-size: 16px; -} - -#navigation { - text-align: center; -} - -.centered { - text-align: center; -} - -#content { - width: 600px; - max-width: 100%; - margin: auto; -} - -a { - color: #ff3a21; -} - -a:hover { - color: #1c1c1c; - background: #ff3a21; - text-decoration: none; -} - -ul { - list-style: none; -} - -li:before { - content: '* '; -} - -code { - background: black; - padding: 0 6px; - border-radius: 4px; -} -- cgit v1.2.1