From c5a1088272bc5ef0a070ab9b5a9e21d1b745a2f7 Mon Sep 17 00:00:00 2001 From: shoofle Date: Mon, 28 Dec 2020 13:39:50 -0500 Subject: [PATCH] circle script work! --- articles/__init__.py | 2 + articles/circle_script.article.html | 90 +++++++++++++-- articles/circle_script/vowel-example.svg | 72 ++++++++++++ articles/circle_script/zagreus.svg | 138 +++++++++++++++++++++++ articles/farm_display.html | 79 +++++++++++++ 5 files changed, 372 insertions(+), 9 deletions(-) create mode 100644 articles/circle_script/vowel-example.svg create mode 100644 articles/circle_script/zagreus.svg create mode 100644 articles/farm_display.html diff --git a/articles/__init__.py b/articles/__init__.py index 301d77a..65cf7cb 100644 --- a/articles/__init__.py +++ b/articles/__init__.py @@ -64,6 +64,8 @@ def render_article(article_name): # convince this blueprint to return the former. However, as sacrifices go, I don't think it's too bad, and # that should be the only case when this happens. + # It also can't find files with hyphens in their name, because they get replaced with underscores. + # If we didn't find any files, throw up a 404. abort(404) diff --git a/articles/circle_script.article.html b/articles/circle_script.article.html index 9ccb50b..d6d0c4f 100644 --- a/articles/circle_script.article.html +++ b/articles/circle_script.article.html @@ -1,6 +1,6 @@

An introduction to Circle Script (Version... 3?)

Circle script is a writing system that I made up. The fundamental gimmick of it is that words and sentences in it form circles.

@@ -19,8 +28,8 @@ table > img {

It's largely decorative, has vague intentions at being phonetic, and I like using it in art! The other primary use case is writing cute notes to people I like.

Here's the overview of how to read circle script:

To read circle script, you start at whatever spot is marked with a little line segment outside the circle, parallel to it. If that's not present, you can usually start at the bottom. Walk around the circle widdershins (counterclockwise) and decode each shape and glyph you encounter, turning them into sounds.

-A circle script glyph showing a single word-circle, with a small line outside the circle for a starting-point indicator. -

If you're reading a whole sentence, you walk around the circle widdershins (counterclockwise), and read each word as you come across it. For each word, you read it starting from the point where it touches the circle that contains it, so you kind of reorient as you go.

+A circle script glyph showing a single word-circle, with a small line outside the circle for a starting-point indicator. +

If you're reading a whole sentence, you walk around the circle and read each word as you come across it. For each word, you read it starting from the point where it touches the circle that contains it, so you kind of reorient as you go.

Also, you might have noticed that some of the shapes inside word-circles have lines connecting them. Those are decorative! A lot of the component parts of the circle script writing system have places for lines to come off. These can be connected as you like, but the... proper? I guess? fancy, perhaps? way to use them is to draw connecting lines between words which are conceptually linked. You might use those lines to connect an adjective with the noun it modifies, or the names of two people who care about each other. There's a lot of room for poetic embellishment in drawing lines between words!

Of course, you can also just draw the lines out in a way that looks cool. :)

Okay, now the meat of circle script: How to read words!

@@ -82,14 +91,77 @@ table > img {

If you're familiar with the international phonetic alphabet this might look somewhat familiar! (Although I've taken some heavy liberties to make this fit into a grid and match with my American understanding of what sounds are similar) Each square in the grid shows the two consonants (one unvoiced, one unvoiced) indicated by that combination of diacritic (above) and shape (from the side). The unvoiced version (on the left, in a grid square) is indicated by the single-line version of the shape, seen on the left side of the grid. The voiced version uses the double-line version, seen on the right side of the grid. I've included the IPA transcription for the consonants, along with an example of that sound in my dialect, which is probably roughly General American English.

-

Vowels are a little more haphazard. Have you ever really thought about vowels? They're pretty messed up, especially in English. We were all taught the five vowels are a, e, i, o, u, and sometimes y. It turns out that while we have five and a half letters we call vowels, in English, they correspond to anywhere between twelve and fifteen different sounds. And those sounds aren't even necessarily the ones you're thinking of - a lot of the things we think of as individual vowels, like the /i/ in "right", are actually diphthongs, composed of two vowels that we run together.

+

Vowels are a little more haphazard. Have you ever really thought about vowels? They're pretty messed up, especially in English. We were taught the five vowels are a, e, i, o, u, and sometimes y. It turns out that while we have five and a half letters we call vowels, in English, they correspond to anywhere between twelve and fifteen different sounds. And those sounds aren't even necessarily the ones you're thinking of - a lot of the things we think of as individual vowels, like the /i/ in "right", are actually diphthongs, composed of two vowels that we run together.

Anyway, the vowels are vaguely organized according to whatever I thought made sense, into a handful of "sequences". In general, they're drawn by changing the shape of the overall circle defining a word - as you're drawing that circle, you make a detour to trace out the vowel shape. That overall shape indicates the sequence, and it's narrowed further down by lines or circles drawn on it. Is it lines? Is it circles? Who knows, I haven't decided yet!

The examples I give are based on my accent, so if there's any confusion, consult a resource like ipachart.com for recordings of vowels. Several common diphthongs are available as vowel shapes.

-
-
-
-
-
+

First are three groups of "primary" vowels, which are mostly monophthongs.

+
+
+
+ + [i], beat +
+
+ + [ɪ], bit +
+
+ + [ʌ, ə], but or schwa (unstressed) +
+
+
+
+ + [u], boot +
+
+ + [ʊ], book +
+
+ + [ɑ, a], box or bah +
+
+
+
+ + [ɛi, e], bait +
+
+ + [ɛ], bet +
+
+ + [æ], bat +
+
+
+
+ + [ɔi, ɔɪ], boy +
+
+ + [ai, aɪ], by +
+
+
+
+ + [o, ɔu], boat +
+
+ + [au], cow +
+
+ + [ɔ], bawk +
+
diff --git a/articles/circle_script/vowel-example.svg b/articles/circle_script/vowel-example.svg new file mode 100644 index 0000000..6248f97 --- /dev/null +++ b/articles/circle_script/vowel-example.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/articles/circle_script/zagreus.svg b/articles/circle_script/zagreus.svg new file mode 100644 index 0000000..4627c3d --- /dev/null +++ b/articles/circle_script/zagreus.svg @@ -0,0 +1,138 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/articles/farm_display.html b/articles/farm_display.html new file mode 100644 index 0000000..5e0d24c --- /dev/null +++ b/articles/farm_display.html @@ -0,0 +1,79 @@ + + + + + + +
+
+ 10:04 AM +
+
+ big 50F +
+
+ low of 20F +
+
+ high of 900F +
+
+ Happy spring! +
+
+ Today is a good day to start planting! +
+
+ There's a frost coming up, probably a long one. It might a good time to do final harvest! +
+
+ Monday is probably going to be the last frost. Get ready to plant! +
+
+ Very high chance of rain today. You won't need to water. +
+
+ Tonight it will go down to 20F. That's below freezing. +
+
+ + \ No newline at end of file