diff --git a/archive/feature-change-applier.scm b/archive/feature-change-applier.scm new file mode 100644 index 0000000..e9397ec --- /dev/null +++ b/archive/feature-change-applier.scm @@ -0,0 +1,100 @@ +(article + (hgroup + (h1 "feature change applier") + (p (em "a first attempt at a conlanging tool"))) + (section + (hgroup + (h2 "what is this?") + (p + (em + "a tool for conlanging: a feature-based sound-change applier + capable of applying multiple sets of rules at once.")) + (hr)) + (p + "you can try it out here: " + (a ((href "https://sorrelbri.github.io/feature-change-applier/")) + "feature change applier app")) + (img ((src "/static/img/settled/1/fca.jpg") + (alt "an image of Feature Change Applier application. visible + are labeled sections. 'proto language lexicon' is a text + field with nonsense weirds. 'phonetic features' is a list + of binary values shuch as '+ back' / '- back' and + characters representing associated sounds like 'a / u / ɯ' + / 'ə', 'epoch 1' is a text field with a list of phonetic + rules such as + '[+ occlusive - nasal]>[+ occlusive + nasal]/n_.' and + buttons to 'Remove epoch 1' or 'Add Epoch'. 'modeling + options' is a single selected radio button labeled + 'Default output' with buttons labeled 'Run Changes' and + 'Clear Output'. 'Results of Run' is a list headed 'epoch + 1' and containing newline separated words 'annɯ anat ant + annɯ tʰa nnɯ"))) + (h3 "an unfinished project") + (p + "some background on conlanging and my interst in conlanging software + can be found in this " + (a ((href "/unsettled/1")) + "introductory post about conlanging software")) + (p + "this project was initially intended to function as a sound change + applier: a software tool that takes as input a list of lexical items + in a language and a list of sound change rules and produces as + output a new list of lexical items resulting from the application of + each rule to each of the lexical items in the input. more info about + sound change appliers will be available: " + (a ((href "/unsettled/?")) + "[pending] review of existing conlanging tools")) + (p + "there are two ways in which i sought to extend the functionality of + the typical sound change applier: through feature-based rules, and + through the processing of multiple rule sets at one time. " + (a ((href "https://en.wikipedia.org/wiki/Distinctive_feature")) + "phonological features") + " are proposed binary attributes of phonology that can be used to + distinguish different phonemes. [+/- nasal] is the distinguishing + feature in the minimal pair of phones [n][d]. the processing of + multiple rule sets is accomplished in this project via the notion + of an 'epoch.' at least one epoch must be defined, which takes as + its input the initial lexicon. any additional epochs must have + their input lexicons configured by the user, but they will default + to running in sequence. what this allows is for 'snapshots' of + lexicons between suites of rules (analogous to 'intermediate' + phases in historical linguistics, such as old english>middle + english>early modern english>modern english.) this also allows for + comparisons of different rule sets or the simulation of sound + changes across a family of related languages (analogous to vulgar + latin>italo-western, vulgar-latin>eastern romance, vulgar + latin>southern romance)") + (p + "both of these additional features are present, although the app is + quite buggy and unreliable")) + (section + (hgroup + (h2 "how does it work?") + (p (em "i'll tell you what i remember")) + (hr)) + (p + "i made this a few years ago, right after i first learning how to + write web apps and so i used the tools that i knew a few years ago. + this means that it's javascript! specifically, a react app, where + all the fun processing stuff happens via the react hooks useReducer + pattern. " + (a + ((href + "https://github.com/sorrelbri/feature-change-applier/tree/sj_latl/src/reducers" + )) "all of the reducers are here")) + (p + "at the end of my meaningful work on the project, i started using a " + (a ((href "https://nearley.js.org/")) + "javascript earley parser called nearley") + " as i started conceptualizing the tool as just one component in a + larger suite of tools i hoped to create. the language part never got + very far--writing a language is hard! writing a language when you've + not had significant programming experience is hard! ill advised? " + (a + ((href + "https://github.com/sorrelbri/feature-change-applier/blob/sj_latl/src/utils/latl/grammar.ne")) + "there's the start of something like an ebnf grammar for the + project")) + (p + "this project isn't done! and it never will be!"))) \ No newline at end of file diff --git a/data/atom.csv b/data/atom.csv index e022ca0..8aa6e33 100644 --- a/data/atom.csv +++ b/data/atom.csv @@ -1,4 +1,5 @@ title,link,summary,published,updated +feature-change-applier,https://oxaliq.net/settled/1,a first attempt at a conlanging tool,2024-01-25T16:26:10, beginning latl,https://oxaliq.net/unsettled/1,beginning the process of thinking through an environment for conlanging and other language shenanigans,2024-01-18T22:39:00, now,https://oxaliq.net/now,what the author of this site is up to (not computer things),2024-01-18T22:22:03, contact,https://oxaliq.net/contact,how to talk to me,2024-01-18T22:21:26, diff --git a/data/settled.csv b/data/settled.csv index c545860..a5e731c 100644 --- a/data/settled.csv +++ b/data/settled.csv @@ -1 +1,2 @@ id,headline,description,history-> +1,feature-change-applier,a first attempt at a conlanging tool,2024-01-25T16:26:10 \ No newline at end of file diff --git a/data/tagged.csv b/data/tagged.csv index 971be52..b8ba424 100644 --- a/data/tagged.csv +++ b/data/tagged.csv @@ -1,5 +1,6 @@ tags,-> about,root/now,root/contact,root/very-earnest-disclaimer,root/this,root/about latl,unsettled/1 -conlang,unsettled/1 -programming-language,unsettled/1 \ No newline at end of file +conlang,settled/1,unsettled/1 +programming-language,unsettled/1 +tool,settled/1 \ No newline at end of file diff --git a/in-progress/documentation-driven-development.scm b/in-progress/documentation-driven-development.scm new file mode 100644 index 0000000..e69de29 diff --git a/in-progress/latl-primitives.scm b/in-progress/latl-primitives.scm new file mode 100644 index 0000000..e69de29 diff --git a/in-progress/syntax-considered-harmful.scm b/in-progress/syntax-considered-harmful.scm new file mode 100644 index 0000000..e69de29 diff --git a/source/feed.atom b/source/feed.atom index 9002d21..1de0b70 100644 --- a/source/feed.atom +++ b/source/feed.atom @@ -1 +1 @@ -λ.oxaliq.net2024-01-18T22:39:00sorrelhttps://oxaliq.netbeginning latlhttps://oxaliq.net/unsettled/1beginning the process of thinking through an environment for conlanging and other language shenanigans2024-01-18T22:39:00nowhttps://oxaliq.net/nowwhat the author of this site is up to (not computer things)2024-01-18T22:22:03contacthttps://oxaliq.net/contacthow to talk to me2024-01-18T22:21:26very earnest disclaimerhttps://oxaliq.net/very-earnest-disclaimerbeing earnest in the streets2024-01-18T22:20:50thishttps://oxaliq.net/thisthe site this bitch made2024-01-18T22:19:43abouthttps://oxaliq.net/aboutabout the bitch who made this site2024-01-18T21:56:45 \ No newline at end of file +λ.oxaliq.net2024-01-25T16:26:10sorrelhttps://oxaliq.netfeature-change-applierhttps://oxaliq.net/settled/1a first attempt at a conlanging tool2024-01-25T16:26:10beginning latlhttps://oxaliq.net/unsettled/1beginning the process of thinking through an environment for conlanging and other language shenanigans2024-01-18T22:39:00nowhttps://oxaliq.net/nowwhat the author of this site is up to (not computer things)2024-01-18T22:22:03contacthttps://oxaliq.net/contacthow to talk to me2024-01-18T22:21:26very earnest disclaimerhttps://oxaliq.net/very-earnest-disclaimerbeing earnest in the streets2024-01-18T22:20:50thishttps://oxaliq.net/thisthe site this bitch made2024-01-18T22:19:43abouthttps://oxaliq.net/aboutabout the bitch who made this site2024-01-18T21:56:45 \ No newline at end of file diff --git a/source/settled/1.scm b/source/settled/1.scm new file mode 100644 index 0000000..45b5377 --- /dev/null +++ b/source/settled/1.scm @@ -0,0 +1 @@ +'(body (article (hgroup (h1 "feature change applier") (p (em "a first attempt at a conlanging tool"))) (section (hgroup (h2 "what is this?") (p (em "a tool for conlanging: a feature-based sound-change applier\n capable of applying multiple sets of rules at once.")) (hr)) (p "you can try it out here: " (a ((href "https://sorrelbri.github.io/feature-change-applier/")) "feature change applier app")) (img ((src "/static/img/settled/1/fca.jpg") (alt "an image of Feature Change Applier application. visible\n are labeled sections. 'proto language lexicon' is a text\n field with nonsense weirds. 'phonetic features' is a list\n of binary values shuch as '+ back' / '- back' and\n characters representing associated sounds like 'a / u / ɯ'\n / 'ə', 'epoch 1' is a text field with a list of phonetic\n rules such as\n '[+ occlusive - nasal]>[+ occlusive + nasal]/n_.' and\n buttons to 'Remove epoch 1' or 'Add Epoch'. 'modeling\n options' is a single selected radio button labeled\n 'Default output' with buttons labeled 'Run Changes' and\n 'Clear Output'. 'Results of Run' is a list headed 'epoch\n 1' and containing newline separated words 'annɯ anat ant\n annɯ tʰa nnɯ"))) (h3 "an unfinished project") (p "some background on conlanging and my interst in conlanging software\n can be found in this " (a ((href "/unsettled/1")) "introductory post about conlanging software")) (p "this project was initially intended to function as a sound change\n applier: a software tool that takes as input a list of lexical items\n in a language and a list of sound change rules and produces as\n output a new list of lexical items resulting from the application of\n each rule to each of the lexical items in the input. more info about\n sound change appliers will be available: " (a ((href "/unsettled/?")) "[pending] review of existing conlanging tools")) (p "there are two ways in which i sought to extend the functionality of\n the typical sound change applier: through feature-based rules, and\n through the processing of multiple rule sets at one time. " (a ((href "https://en.wikipedia.org/wiki/Distinctive_feature")) "phonological features") " are proposed binary attributes of phonology that can be used to\n distinguish different phonemes. [+/- nasal] is the distinguishing\n feature in the minimal pair of phones [n][d]. the processing of\n multiple rule sets is accomplished in this project via the notion\n of an 'epoch.' at least one epoch must be defined, which takes as\n its input the initial lexicon. any additional epochs must have\n their input lexicons configured by the user, but they will default\n to running in sequence. what this allows is for 'snapshots' of\n lexicons between suites of rules (analogous to 'intermediate'\n phases in historical linguistics, such as old english>middle\n english>early modern english>modern english.) this also allows for\n comparisons of different rule sets or the simulation of sound\n changes across a family of related languages (analogous to vulgar\n latin>italo-western, vulgar-latin>eastern romance, vulgar\n latin>southern romance)") (p "both of these additional features are present, although the app is\n quite buggy and unreliable")) (section (hgroup (h2 "how does it work?") (p (em "i'll tell you what i remember")) (hr)) (p "i made this a few years ago, right after i first learning how to\n write web apps and so i used the tools that i knew a few years ago.\n this means that it's javascript! specifically, a react app, where\n all the fun processing stuff happens via the react hooks useReducer\n pattern. " (a ((href "https://github.com/sorrelbri/feature-change-applier/tree/sj_latl/src/reducers")) "all of the reducers are here")) (p "at the end of my meaningful work on the project, i started using a " (a ((href "https://nearley.js.org/")) "javascript earley parser called nearley") " as i started conceptualizing the tool as just one component in a\n larger suite of tools i hoped to create. the language part never got\n very far--writing a language is hard! writing a language when you've\n not had significant programming experience is hard! ill advised? " (a ((href "https://github.com/sorrelbri/feature-change-applier/blob/sj_latl/src/utils/latl/grammar.ne")) "there's the start of something like an ebnf grammar for the\n project")) (p "this project isn't done! and it never will be!"))) (footer (a ((href "https://git.bunk.computer/oxaliq/oxaliq.net/src/branch/main/source/settled1.scm")) "view source") (hr) (section (h5 "tagged") (ul ((class "tag-list")) (li ((class "tag-item")) (span ((class "hx-target")) (a ((href "/tagged/conlang") (hx-get "/hx/tagged/conlang") (hx-target "closest span.hx-target") (hx-swap "innerHTML")) "conlang"))) (li ((class "tag-item")) (span ((class "hx-target")) (a ((href "/tagged/tool") (hx-get "/hx/tagged/tool") (hx-target "closest span.hx-target") (hx-swap "innerHTML")) "tool"))))) (hr) (p ((class "doc-history")) (small "published: 2024-01-25T16:26:10")) (p ((class "license-info")) (small (a ((href "static/license/license.txt")) "license"))))) \ No newline at end of file diff --git a/source/settled/index.scm b/source/settled/index.scm index 8e1ef4d..6df340d 100644 --- a/source/settled/index.scm +++ b/source/settled/index.scm @@ -1 +1 @@ -'(article (hgroup (h1 "settled* thoughts") (p (em "*-ish, something like a portfolio of projects"))) (h3 "the thoughts") (p "there's nothing here yet")) \ No newline at end of file +'(article (hgroup (h1 "settled* thoughts") (p (em "*-ish, something like a portfolio of projects"))) (h3 "the thoughts") (div ((class "post-preview")) (h4 "feature-change-applier") (p "a first attempt at a conlanging tool") (a ((href "/settled/1")) "go! to feature-change-applier page"))) \ No newline at end of file diff --git a/source/tagged/conlang.scm b/source/tagged/conlang.scm index 0898022..24701a2 100644 --- a/source/tagged/conlang.scm +++ b/source/tagged/conlang.scm @@ -1 +1 @@ -'(article (hgroup (h1 "stuff what's tagged like " (em "#conlang")) (p (em "everything (or maybe just some things) i've ever said about " (strong "#conlang")))) (h3 "the thoughts") (div ((class "post-preview")) (h4 "beginning latl") (p "beginning the process of thinking through an environment for conlanging and other language shenanigans") (a ((href "1")) "go! to beginning latl page"))) \ No newline at end of file +'(article (hgroup (h1 "stuff what's tagged like " (em "#conlang")) (p (em "everything (or maybe just some things) i've ever said about " (strong "#conlang")))) (h3 "the thoughts") (div ((class "post-preview")) (h4 "feature-change-applier") (p "a first attempt at a conlanging tool") (a ((href "1")) "go! to feature-change-applier page")) (div ((class "post-preview")) (h4 "beginning latl") (p "beginning the process of thinking through an environment for conlanging and other language shenanigans") (a ((href "1")) "go! to beginning latl page"))) \ No newline at end of file diff --git a/source/tagged/index.scm b/source/tagged/index.scm index 739c5cb..9a463d1 100644 --- a/source/tagged/index.scm +++ b/source/tagged/index.scm @@ -1 +1 @@ -'(article (hgroup (h1 "all the tags") (p (em "a categorical mess for your perusal"))) (h3 "the thoughts") (div ((class "post-preview")) (h4 "about") (p "posts about about") (a ((href "/tagged/about")) "go! to about page")) (div ((class "post-preview")) (h4 "latl") (p "posts about latl") (a ((href "/tagged/latl")) "go! to latl page")) (div ((class "post-preview")) (h4 "conlang") (p "posts about conlang") (a ((href "/tagged/conlang")) "go! to conlang page")) (div ((class "post-preview")) (h4 "programming-language") (p "posts about programming-language") (a ((href "/tagged/programming-language")) "go! to programming-language page"))) \ No newline at end of file +'(article (hgroup (h1 "all the tags") (p (em "a categorical mess for your perusal"))) (h3 "the thoughts") (div ((class "post-preview")) (h4 "about") (p "posts about about") (a ((href "/tagged/about")) "go! to about page")) (div ((class "post-preview")) (h4 "latl") (p "posts about latl") (a ((href "/tagged/latl")) "go! to latl page")) (div ((class "post-preview")) (h4 "conlang") (p "posts about conlang") (a ((href "/tagged/conlang")) "go! to conlang page")) (div ((class "post-preview")) (h4 "programming-language") (p "posts about programming-language") (a ((href "/tagged/programming-language")) "go! to programming-language page")) (div ((class "post-preview")) (h4 "tool") (p "posts about tool") (a ((href "/tagged/tool")) "go! to tool page"))) \ No newline at end of file diff --git a/source/tagged/tool.scm b/source/tagged/tool.scm new file mode 100644 index 0000000..37095da --- /dev/null +++ b/source/tagged/tool.scm @@ -0,0 +1 @@ +'(article (hgroup (h1 "stuff what's tagged like " (em "#tool")) (p (em "everything (or maybe just some things) i've ever said about " (strong "#tool")))) (h3 "the thoughts") (div ((class "post-preview")) (h4 "feature-change-applier") (p "a first attempt at a conlanging tool") (a ((href "1")) "go! to feature-change-applier page"))) \ No newline at end of file diff --git a/static/img/settled/1/fca.jpg b/static/img/settled/1/fca.jpg new file mode 100644 index 0000000..e2d9354 Binary files /dev/null and b/static/img/settled/1/fca.jpg differ diff --git a/static/style/styles.css b/static/style/styles.css index 3c076bb..f9a3a1d 100644 --- a/static/style/styles.css +++ b/static/style/styles.css @@ -145,3 +145,12 @@ li.tag-item { margin: 0 6; } +img { + width: 96%; + margin: 2%; + border-color: var(--foreground-color); + border-style: solid; + border-width: 2px; + border-radius: 2px; +} +