Ideas

Published: 2020-08-02
Updated: 2021-09-07

Misc

Jokes

Just some jokes that I came up with that have no other place to go. You might, some day, find these in my writings.

Software

Writing

Anki / srs

(look up "spaced repetition software" online for context)

An extremely simple markup language

Basically is just plaintext with several extensions. But the interesting thing is that it doesn't render to anything different than the plaintext, it just adds hyperlinks and shit to the already existing text. I guess the HTML output would be expected to be rendered with monospace at a fixed with of 72 (?) characters.

For example:

This is *italics*!

Would render something like:

This is *italics!*!

(That was annoying to make work in markdown, but notice how the asterisks are still there while the text is also rendered in italics (if you're viewing in HTML)? That's kind of what I'm thinking.)

metadata

What about metadata? Here's a couple ideas of a metadata field:

%title This is a title!

title(This is a title!)

title: This is a title!

The idea being that it should be easy to parse with command line tools.

But! There's another way to go about it. What if it was all on the first line with a standardized markup? Like:

This is a title! | 2018-04-17 | A description of the thing

Could work.

misc

Since it has to render to X width, since you're expecting monospaced display text to be the width of what you're editing, it might not be the best mobile viewing experience what with its thin screens and whatnot. Hmm... Maybe somehow make the output more flexible? Actually, that would probably be better all around for many reasons, not just mobile display.

For reference, check out this other site's build script to get an idea of what I'm talking about.

timtimestim

This is for ideas that are about this site.

This isn't a "future features / content" list! It's just ideas, nothing more.