website update; added bash scripts
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<!--200810-->
|
||||
<h1>slimeAI - state transition diagram </h1>
|
||||
december 10, 2020<br>
|
||||
#ai #programming<br>
|
||||
<br>
|
||||
<br>
|
||||
blessfrey's slimes use finite state machines. <b>Finite state machines</b> (FSM) are models with a finite number of states that either decide to generate output or transition to a new state based on input. They can only be in one state at a time. <br>
|
||||
<br>
|
||||
<br>
|
||||
<h2>why use a finite state machine? </h2><br>
|
||||
Because they are simple and flexible, while still allowing for interesting behavior. FSMs reflect our own mental model of how slimes behave (attack mode, wander mode, sleep mode, etc). These different modes or states are written as manageable chunks that easy to code, debug, update, and refactor. It's also efficient with processor time, since the behavior is abstracted to basic conditionals. <br>
|
||||
<br>
|
||||
A state can be as broad or specific as you need, so long as it's granular. So they can be more easily debugged and swapped out with one another, it's a good idea to have one entry point and one exit point for all your states.<br>
|
||||
<br>
|
||||
Of course, since FSMs can be used for anything with states and transitions. You can think of specific menus, mechanics or even your entire game in terms of states. I'm just using them here for understanding the AI for my slime monster. <br>
|
||||
<br>
|
||||
<br>
|
||||
<h2>designing AI </h2><br>
|
||||
Planning ahead is extra important, since any dead-ends will halt your slime. I used a state transition diagram to design the slime's AI. In the diagram, circles represent states and arrows represent transitions, triggered by some kind of event. I marked the initial state with a star, but Buckland recommends a double circle. <br>
|
||||
<br>
|
||||
The slime is a simple creature. It idles, chases anything that gets too close, and attacks until its target dies. Here's the diagram version of that:<br>
|
||||
<br><center>
|
||||
<img src="/static/img/ent/slimeai_diagram.png" alt="(image: a state transition diagram for slime ai.)" width="500" height="250"><br>
|
||||
</center>
|
||||
<br>
|
||||
The states are Idle, Choose Target, Attack, and Move to Target. The initial state is Idle. <br>
|
||||
<br>
|
||||
If there's a valid target, the slime enters Choose Target. If there's no longer a valid target, it returns to Idle. If it successfully gets a target, it begins moving to target. If the target becomes invalid, it returns to Idle. Once the target is in attack range, it enters Attack. If the foe moves out of range, it returns to Move to Target. If the target becomes invalid, it returns to Choose Target. And the cycle continues. <br>
|
||||
<br>
|
||||
No matter how you follow the arrows, there are no dead-ends and all states can be reached eventually, so it'll work okay when it's implemented as code. <img src="/static/img/emo/heart.gif" alt="<3"><br>
|
||||
<br>
|
||||
<br>
|
||||
<h2>reference </h2><br>
|
||||
<a href="https://www.goodreads.com/book/show/161139.Programming_Game_AI_by_Example"><b>Programming Game AI by Example by Mat Buckland</b></a>. It's an easy to understand introduction to game math + AI concepts. The code examples are in C++, but they are still useful for understanding the underlying principles. I didn't even know where to begin before I started reading and it got me pretty decent groundwork for AI creatures with different behavior that reacts to the players.<img src="/static/img/emo/heart.gif" alt="<3"> <br>
|
||||
<br>
|
||||
@@ -0,0 +1,28 @@
|
||||
<!--200810-->
|
||||
<h1>my favorite GDC talks </h1>
|
||||
january 7, 2020<br>
|
||||
#gamedesign #marketing<br>
|
||||
<br>
|
||||
I really should be keeping a list of these with descriptions, so why not keep them in an article? <br>
|
||||
<br>
|
||||
<h2><a href="https://www.youtube.com/watch?v=W20t1zCZv8M">Automated Testing and Instant Replays in Retro City Rampage </a></h2><br>
|
||||
Vblank Entertainment's Brian Provinciano (2015) <br>
|
||||
log button inputs to replay the game, for use in preproducing bugs, sharing replays on the community leaderboard, running cutscenes, and even controlling AI. It is 100% accurate in deterministic engines but also helpful in less deterministic engines.
|
||||
<br>
|
||||
<ul>
|
||||
<li><a href="/static/extra/SimpleInputRec.cpp">I backed up the code he shared here. </a> It is a simple example of how to record and playback button input, written in C++.</li>
|
||||
</ul>
|
||||
<br>
|
||||
<br>
|
||||
<h2><a href="https://www.youtube.com/watch?v=UJiv14uPOac">Empathizing with Steam: How People Shop for Your Game </a></h2><br>
|
||||
Chris Zukowski (2020) <br>
|
||||
tips for how to design your Steam store page based on Zukowski's screenshare and shopping diary observations of ordinary people shopping on Steam <br>
|
||||
<br>
|
||||
<ul>
|
||||
<li>Essentially, make your gameplay genre absolutely clear within the first 4 screenshots and in the short description so that people will wishlist your game to buy during a seasonal Steam Sale. </li>
|
||||
<li>Approach your wishlisters as complete newcomers. Jazz up your Steam page before a Steam Sale. Release an update, post in your forums, put a Santa hat on your character. When wishlisters return to your page, they will see an active game and be sold on it all over again. </li>
|
||||
<li>His conclusions are very similar to how I shop on Steam, except I could care less for the tag section. </li>
|
||||
<li>The romantic indie fiction section on Amazon dwarves the indie game section on Steam. To be immediately visible to their audience, romance authors follow a clear visual language on their covers to communicate their genres and sub-genres. Zukowski uses this as an extreme method for attracting your audience using the tropes of your genre, pointing out common UI elements and the shooter guy on every FPS cover. </li>
|
||||
<li>More notes @ <a href="/diary/entries/extra/gdc-design-steam-store">/diary/entries/extra/gdc-design-steam-store </a>
|
||||
</ul>
|
||||
<br>
|
||||
@@ -0,0 +1,94 @@
|
||||
<!--200810-->
|
||||
<h1>questionnaire for making a fantasy race </h1>
|
||||
march 4, 2021, 2020<br>
|
||||
#design #lore #worldbuilding<br>
|
||||
<br>
|
||||
<h2>Aspects of Culture </h2>
|
||||
General things to consider about your fantasy race to fill out their culture. Obviously not every point is going to be relevant. <br>
|
||||
<br>
|
||||
<h3>Basics </h3>
|
||||
<ul>
|
||||
<li>Basic Needs </li>
|
||||
<li>Reproduction </li>
|
||||
<li>Survival </li>
|
||||
<li>Climate </li>
|
||||
<li>Enemies </li>
|
||||
<li>Allies </li>
|
||||
</ul>
|
||||
<br>
|
||||
<h3>Lifecycles </h3>
|
||||
<ul>
|
||||
<li>Birth - how and where are offspring born? who is allowed to give birth? </li>
|
||||
<li>Parenthood </li>
|
||||
<li>Childhood </li>
|
||||
<li>Coming of Age </li>
|
||||
<li>Love </li>
|
||||
<li>Mating </li>
|
||||
<li>Marriage </li>
|
||||
<li>Death </li>
|
||||
<li>Education </li>
|
||||
<li>Career </li>
|
||||
</ul>
|
||||
<br>
|
||||
<h3>Religion + Legend </h3>
|
||||
<ul>
|
||||
<li>Dominant Religions </li>
|
||||
<li>Denominations </li>
|
||||
<li>Cults </li>
|
||||
<li>Atheism </li>
|
||||
<li>Religious Figures </li>
|
||||
<li>Central themes of the religious teachings </li>
|
||||
<li>Explanations for the natural world - how the world came to be? the origin of Man? </li>
|
||||
<li>Afterlife - where do they go after they die? </li>
|
||||
<li>Evidence for religion </li>
|
||||
<li>Local legends </li>
|
||||
</ul>
|
||||
<br>
|
||||
<h3>Climate </h3>
|
||||
<ul>
|
||||
<li>Preferred climate, climates inhabitted </li>
|
||||
<li>How do they adapt to their climate? </li>
|
||||
<li>Danger </li>
|
||||
<li>How does their climate connect and separate them from other cultures? </li>
|
||||
<li>What raw materials are available to them? </li>
|
||||
<li>What seasons do they have? </li>
|
||||
<li>Weather </li>
|
||||
</ul>
|
||||
<br>
|
||||
<h3>History </h3>
|
||||
<ul>
|
||||
<li>How is history recorded and shared? Is it accurate? </li>
|
||||
<li>Origin of their people, nation </li>
|
||||
<li>Significant events - expansion, wars, diaspora, exile, mass murder, transfers of power </li>
|
||||
<li>Local history - early settlement, original population, development, local heroes, times that national events or figures that visited the local area </li>
|
||||
</ul>
|
||||
<br>
|
||||
<h3>Culture </h3>
|
||||
<ul>
|
||||
<li>Cultural Identity </li>
|
||||
<li>Housing </li>
|
||||
<li>Cuisine, Dining </li>
|
||||
<li>Leading Industries, Imports, Exports, Trade </li>
|
||||
<li>Class Stratification, Castes </li>
|
||||
<li>Factions, Politics </li>
|
||||
<li>Gender, Gender Roles </li>
|
||||
<li>Race, Sub-race - Where and when did the other races or subraces arrive? Where do they tend to live? Influence on the greater culture, and vice versa? Race relations? Stereotypes? How are biracial people perceived? </li>
|
||||
<li>Foreign culture - immigration policies to and from, perception of immigrants </li>
|
||||
<li>Crime - Forms of crime, punishment </li>
|
||||
<li>Health </li>
|
||||
<li>Beauty, Fashion - Beauty Standards/Desired traits for mating, Differences among different demographics + factions, Influences </li>
|
||||
<li>Rituals, Holidays, Festivals, Fairs, Masquerades </li>
|
||||
<li>Language </li>
|
||||
<li>Naming practices - when are names received? how many names are given? are names ever changed? what are naming conventions and how do they differ among the different factions? are there naming authorities or rules? </li>
|
||||
<li>Etiquette </li>
|
||||
<li>Art - Architecture </li>
|
||||
<li>Entertainment - sports, hobbies</li>
|
||||
<li>Symbols, Color associations </li>
|
||||
</ul>
|
||||
<br>
|
||||
<h3>Others </h3>
|
||||
<ul>
|
||||
<li>Time </li>
|
||||
<li>
|
||||
</ul>
|
||||
<br>
|
||||
@@ -0,0 +1,15 @@
|
||||
<!--reading-journal-->
|
||||
<h1>Magic: A Fantastic Comedy in a Prelude and Three Acts</b> - G.K. Chesterton (1913) </h1>
|
||||
january 8, 2020<br>
|
||||
<br>
|
||||
<br>
|
||||
Did you know G.K. Chesterton wrote a play? Its existence really surprised me while browsing Project Gutenberg. I know him mostly as the author of The Everlasting Man and lots of other books about philosophy and religion. He's not stuffy, though. His style is so poetic and dramaticized through use of personification, he makes the topics as enjoyable as fiction...at least, from what I remember. It's been 10 years since I read anything else by him. <br>
|
||||
<br>
|
||||
Apparently, George Bernard Shaw wrote a letter pressuring him into drama because he felt he was wasting his talent on journalist. (According to <a href="https://www.chesterton.org/lecture-25/">Chesterton University's Lecture 25: Magic by Dale Ahlquist</a>) <br>
|
||||
"I shall deliberately destroy your credit as an essayist, as a journalist, as a critic, as a Liberal, as everything that offers your laziness as a refuge, until starvation and shame drive you to serious dramatic parturition. I shall repeat my public challenge to you; vaunt my superiority; insult your corpulence; torture Belloc; if necessary, call on you and steal your wife’s affections by intellectual and athletic displays, until you contribute something to British drama." (also from that <a href="https://www.chesterton.org/lecture-25/">link</a>) <br>
|
||||
<br>
|
||||
You can read Magic, too, at <a href="https://www.gutenberg.org/files/19094/19094-h/19094-h.htm">Project Gutenberg</a>. Plays are meant to be performed, though, so hopefully you can find something on Youtube at least. <br>
|
||||
<br>
|
||||
|
||||
<br>
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
<!--reading-journal-->
|
||||
<h1>Drinker of Souls - Jo Clayton (1986) </h1>
|
||||
january 8, 2020<br>
|
||||
<br>
|
||||
<br>
|
||||
I usually read classics or philosophy, so I thought I'd cut loose and read my first 80s science fiction novel: Drinker of Souls, from Jo Clayton's Drinker of Souls trilogy. Unfortunately, Clayton's novels are probably all out of print and won't be entering the public domain for a long, long time. I found mine at a thrift store. <br>
|
||||
<br>
|
||||
I just picked up a random scifi book, but apparently the Skeen Trilogy by this author is more popular. <br>
|
||||
<br>
|
||||
Review here
|
||||
<br>
|
||||
I read half of the next book, Blue Magic, but it was kind of boring and the characters were less interesting for me. It explored more parallel worlds, all with dramatically different levels of technology and magic. It had that 'wizards using computers' aesthetic that isn't done often enough. The setting reminded me of the Sigil in Planescape: Torment, how characters from all over get trapped in Brann's world. There was the guy from a futuristic trapped there with his phaser, like that number tattoo guy in the Buried Village who tells you about his cyberpunk world. <br>
|
||||
<br>
|
||||
|
||||
@@ -0,0 +1,132 @@
|
||||
<!---->
|
||||
<h1>FlightRising badges </h1>
|
||||
january 8, 2020<br>
|
||||
<br>
|
||||
<br>
|
||||
Privately hosting my collection of community badges, in case imgur goes up in flames. <br>
|
||||
<br><center>
|
||||
<b>Fire - Lava Bank - 1/21</b> <br>
|
||||
<img src="/static/img/fr/badge/XUdWkkW.gif" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/b1AOHoJ.gif" alt="(image: FlightRising badge)"><br>
|
||||
<br>
|
||||
<b>Fire - Snowy Safari Zone - 1/21</b> <br>
|
||||
<img src="/static/img/fr/badge/berniecg_copy.gif" alt="(image: FlightRising badge)"><br>
|
||||
<br>
|
||||
<b>Fire - WildFire Lottery - 1/21</b> <br>
|
||||
<img src="/static/img/fr/badge/A6QWEY1.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/3ukZc7M.png.gif" alt="(image: FlightRising badge)"><br>
|
||||
<br>
|
||||
<b>Fire vs Light - 12/20</b> <br>
|
||||
<img src="/static/img/fr/badge/yaVmX6u.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/xDr8a1W.png" alt="(image: FlightRising badge)"><br>
|
||||
<br>
|
||||
<img src="/static/img/fr/badge/ZVJmarp.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/tcCHz91.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/vnh3Mff.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/LYPRI6F.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/SjrQCts.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/GgpglGe.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/aaDmWw4.png" alt="(image: FlightRising badge)"><br>
|
||||
<br>
|
||||
<b>Arcane - 9/20</b> <br>
|
||||
<img src="/static/img/fr/badge/rlMOyL9.png" alt="(image: FlightRising badge)"><br>
|
||||
<br>
|
||||
<b>Water - Dom Push - 9/20</b> <br>
|
||||
<img src="/static/img/fr/badge/qjHFcDc3_o.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/nZVpG4qA_o.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/zizf7QON_o.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/w6nm2ozw_o.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/j8UN9lFU_o.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/jp31RUVs_o.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<img src="/static/img/fr/badge/BQ0130S.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/kEdMEAr.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/ooqpaDf.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/TPdrafh.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/uC4Bb27.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/xQhJ1xN.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/z9l1QrF.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Fire - Flameforger's Festival - Exalts, Geyser's Grocery Games - 8/20</b> <br>
|
||||
<img src="/static/img/fr/badge/xtPgVlw.png" alt="(image: FlightRising badge)"><img src="/static/img/fr/badge/JkzY8tq.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/4hr3mkF.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<img src="/static/img/fr/badge/Ugwb1bB.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/Vsjjk1F.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/TikpO8M.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/9fWw4WY.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/aFpsZk8.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<img src="/static/img/fr/badge/gmc2rJz.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/KBPvEjz.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/q2tTUld.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Fire - <a href="https://www1.flightrising.com/forums/adopt/2898646/1">Pyro's Kitchen Window Bonsai</a> - 8/20</b> <br>
|
||||
<img src="/static/img/fr/comm/BJ41FcK.gif" alt="(image: FlightRising commission)">
|
||||
<img src="/static/img/fr/comm/dNdPm9U.gif" alt="(image: FlightRising commission)">
|
||||
<img src="/static/img/fr/comm/Lqh2ToP.gif" alt="(image: FlightRising commission)">
|
||||
<img src="/static/img/fr/comm/upFf3lM.gif" alt="(image: FlightRising commission)">
|
||||
<img src="/static/img/fr/comm/XRywlxo.png" alt="(image: FlightRising commission)">
|
||||
<br>
|
||||
<b>Fire - Lava Bank - 8/20</b> <br>
|
||||
<img src="/static/img/fr/badge/5jRjhgz.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Lightning - Thundercrack Carnivale - 7/20</b> <br>
|
||||
<img src="/static/img/fr/badge/6sma760.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/UBTHVjT.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/yNi4cd2.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/Qku4U0s.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Fire - Shocking Safari Zone - 7/20</b> <br>
|
||||
<img src="/static/img/fr/badge/0QLVhCv.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Fire - Baldwin's Brew for the Bank Over 9000 - 7/20</b> <br>
|
||||
<img src="/static/img/fr/badge/Cauldron1.gif" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/bm199ed.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Ice - 7/20</b> <br>
|
||||
<img src="/static/img/fr/badge/ebTXM7P.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/d2Sm0UO.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Arcane - 7/20</b> <br>
|
||||
personality quiz result: Starseeker <br>
|
||||
<img src="/static/img/fr/badge/1532000966.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<img src="/static/img/fr/badge/R1I3CHl.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/jy44Pp7.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/Y6Uxj5O.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<img src="/static/img/fr/badge/p1lH9gN.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/wBDxnV5.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/t5oWqxC.gif" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Fire - Shining Safari Zone - 7/20</b> <br>
|
||||
<img src="/static/img/fr/badge/l3XfYkQ.gif" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Fire - Trash for Cash - 7/20</b> <br>
|
||||
<img src="/static/img/fr/badge/ASvvnTt.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/Pixel_Trash_for_Cash_v2.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Wind vs Plague - 6-7/20</b> <br>
|
||||
<img src="/static/img/fr/badge/wvpfire.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/hogZwcV.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/wvpwind.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<img src="/static/img/fr/badge/dqixKfS.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/WvP-OOF-t1.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/WvP-OOF-t2.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<img src="/static/img/fr/badge/Kp99Tes.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/Saa8Z5q.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/G130THg.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/vhzV2z9.png" alt="(image: FlightRising badge)">
|
||||
<br>
|
||||
<b>Fire - Subspecies Raffle - 5-6/20</b> <br>
|
||||
<img src="/static/img/fr/badge/Cake.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/Candles.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/Balloons.png" alt="(image: FlightRising badge)">
|
||||
<img src="/static/img/fr/badge/PartyHat.png" alt="(image: FlightRising badge)">
|
||||
<br></center>
|
||||
<br>
|
||||
Last updated: 1/29/21<br>
|
||||
<br>
|
||||
@@ -1,6 +1,7 @@
|
||||
abyssal whip
|
||||
adamantine
|
||||
airship
|
||||
alchemy
|
||||
aloe
|
||||
alpine
|
||||
amber fossil
|
||||
@@ -15,6 +16,9 @@ apothecary
|
||||
apricot
|
||||
asterism
|
||||
atelier
|
||||
aura
|
||||
baby's breath
|
||||
backhoe
|
||||
bad cat
|
||||
Baldur
|
||||
bamboo
|
||||
@@ -25,6 +29,7 @@ bell tower
|
||||
birthday dress
|
||||
birthstone
|
||||
black bear
|
||||
black market
|
||||
The Black Hand
|
||||
black knight
|
||||
black water
|
||||
@@ -32,6 +37,7 @@ black widow
|
||||
blackguard
|
||||
bloodstone
|
||||
blue and yellow
|
||||
blue bell
|
||||
blue blood
|
||||
blue rose
|
||||
bluebell
|
||||
@@ -42,37 +48,51 @@ bubble bath
|
||||
bubble tea
|
||||
bunny boy
|
||||
buried treasure
|
||||
butter cake
|
||||
butterfly woman
|
||||
café
|
||||
camel
|
||||
candlelight
|
||||
candy store
|
||||
caravan
|
||||
cashmere
|
||||
castle
|
||||
cat café
|
||||
cat familiar
|
||||
cat man
|
||||
catnip
|
||||
catacombs
|
||||
cathedral
|
||||
celestial
|
||||
cemetery
|
||||
centaur
|
||||
chained to rocks
|
||||
chain mail
|
||||
chalcedony
|
||||
chameleon
|
||||
chamomile
|
||||
chandelier
|
||||
charmeuse
|
||||
cheese bread
|
||||
chiffon
|
||||
chimera
|
||||
chives
|
||||
chocolate factory
|
||||
chronomancer
|
||||
chrysanthemum
|
||||
cipher
|
||||
citadel
|
||||
citrine
|
||||
city of the dead
|
||||
clipart
|
||||
clover
|
||||
coin flip
|
||||
cold iron
|
||||
confetti
|
||||
constellation
|
||||
cookie cutter
|
||||
copycat
|
||||
coral
|
||||
cotton
|
||||
couture
|
||||
cove
|
||||
@@ -81,6 +101,7 @@ crazy quilt
|
||||
Crossroad Keep
|
||||
crucibled
|
||||
crystal sea
|
||||
cucumber
|
||||
daeva
|
||||
dark horse
|
||||
dark hour
|
||||
@@ -95,14 +116,17 @@ dire wolf
|
||||
dollhouse
|
||||
donkey
|
||||
doppelgänger
|
||||
double life
|
||||
dragonfruit
|
||||
dragonstone
|
||||
dreamweaver
|
||||
dump truck
|
||||
Dymer
|
||||
dystopia
|
||||
ectoplasm
|
||||
edelweiss
|
||||
egg hunt
|
||||
El Dorado
|
||||
elemental
|
||||
elipse
|
||||
elixir of life
|
||||
@@ -146,6 +170,7 @@ geode
|
||||
ghost orchid
|
||||
ghost ship
|
||||
ghost town
|
||||
gingham
|
||||
girl in the internet
|
||||
girl in white
|
||||
glow stick
|
||||
@@ -170,9 +195,15 @@ happy place
|
||||
haunted house
|
||||
headscarf
|
||||
heart
|
||||
heather
|
||||
hermit
|
||||
hermit crab
|
||||
holly
|
||||
holy grail
|
||||
honeycomb
|
||||
honeydew
|
||||
honeysuckle
|
||||
horizon
|
||||
hot air balloon
|
||||
hot and cold game
|
||||
hot cocoa
|
||||
@@ -183,11 +214,14 @@ imp
|
||||
incense
|
||||
invisible man
|
||||
iridescence
|
||||
iris
|
||||
ironwood
|
||||
ivory
|
||||
jack-o'-lantern
|
||||
jacquard
|
||||
jade
|
||||
jade chain
|
||||
jasmine
|
||||
jellyfish
|
||||
juicebox
|
||||
kaleidoscope
|
||||
kesi silk
|
||||
@@ -204,8 +238,11 @@ lair
|
||||
lamentation
|
||||
lavender
|
||||
lemonade
|
||||
licorice
|
||||
life-giver
|
||||
lighthouse
|
||||
lily
|
||||
lip gloss
|
||||
lip oil
|
||||
Little Red Riding Hood
|
||||
lizardman
|
||||
@@ -222,9 +259,12 @@ love letter
|
||||
love potion
|
||||
low poly
|
||||
lullaby
|
||||
lunar eclipse
|
||||
lust
|
||||
macramé
|
||||
mages guild
|
||||
magic carpet
|
||||
malachite
|
||||
man in the moon
|
||||
mandrake
|
||||
manna
|
||||
@@ -243,13 +283,19 @@ meteorite
|
||||
metropolis
|
||||
miasma
|
||||
Midas Touch
|
||||
Milky Way
|
||||
millennial moon
|
||||
mind game
|
||||
miniature
|
||||
mink
|
||||
mirage
|
||||
mire
|
||||
mirror of Venus
|
||||
mirror on the wall
|
||||
mithril
|
||||
monastery
|
||||
money tree
|
||||
monk's hood
|
||||
monkey and bear
|
||||
moon rock
|
||||
moonflower
|
||||
@@ -261,21 +307,27 @@ moth
|
||||
mudskipper
|
||||
mural
|
||||
muse
|
||||
naga
|
||||
necromancer
|
||||
nightlight
|
||||
nocturnality
|
||||
nymph
|
||||
oneiromancer
|
||||
oblivion
|
||||
odalisque
|
||||
olive
|
||||
omen
|
||||
opal
|
||||
orb
|
||||
orchid
|
||||
orichalcum
|
||||
orphan
|
||||
palace
|
||||
panda eyes
|
||||
paper crane
|
||||
paper fan
|
||||
paper lantern
|
||||
paragon
|
||||
pearl
|
||||
periwinkle
|
||||
personality test
|
||||
@@ -316,9 +368,12 @@ reclining woman
|
||||
red
|
||||
reverse trap
|
||||
road roller
|
||||
rogue
|
||||
rooibos tea
|
||||
rose gold
|
||||
rose petal
|
||||
rose quartz
|
||||
rosemary
|
||||
runestone
|
||||
s'more
|
||||
sailor fuku
|
||||
@@ -326,10 +381,12 @@ Sanctum
|
||||
sandalwood
|
||||
sandcastle
|
||||
sandman
|
||||
sandstone
|
||||
sanguine, my brother
|
||||
sardonic
|
||||
satire
|
||||
satyr
|
||||
scone
|
||||
scrying pool
|
||||
scythe
|
||||
sea foam
|
||||
@@ -354,7 +411,9 @@ skeleton
|
||||
skipping stone
|
||||
slide puzzle
|
||||
slime
|
||||
smartphone
|
||||
smoke and mirrors
|
||||
smoothie
|
||||
snow globe
|
||||
soma
|
||||
soulmate
|
||||
@@ -367,18 +426,21 @@ spice cookie
|
||||
spirit animal
|
||||
spy
|
||||
stained-glass
|
||||
star sapphire
|
||||
stardust
|
||||
stargazer
|
||||
starry sky
|
||||
statuesque
|
||||
sticker
|
||||
sticker book
|
||||
stinky cat
|
||||
stone circle
|
||||
stone face
|
||||
stone people
|
||||
storm cloud
|
||||
strawberries and cream
|
||||
strawberry blonde
|
||||
strawberry shortcake
|
||||
streusel
|
||||
sunflower
|
||||
swamp light
|
||||
swan song
|
||||
@@ -393,9 +455,12 @@ three women
|
||||
tide pool
|
||||
tiger's eye
|
||||
toasted marshmallow
|
||||
topaz
|
||||
topiary
|
||||
toy kingdom
|
||||
treasure trails
|
||||
tree of life
|
||||
treehouse
|
||||
trick or treat
|
||||
trickster
|
||||
tulip
|
||||
@@ -406,11 +471,14 @@ unicorn horn
|
||||
unstoppable mailman
|
||||
urban legend
|
||||
utopia
|
||||
vampire
|
||||
Venice
|
||||
vanity of vanities
|
||||
Venus
|
||||
waiting room
|
||||
waking dream
|
||||
walled city
|
||||
wallflower
|
||||
wampus cat
|
||||
wandering eye
|
||||
wanderlust
|
||||
@@ -419,6 +487,7 @@ watchmen on the wall
|
||||
water bearer
|
||||
water nymph
|
||||
waterfall room
|
||||
waterlily
|
||||
weeping willow
|
||||
Whip-Poor-Will
|
||||
whisper
|
||||
@@ -427,12 +496,14 @@ will-o'-wisp
|
||||
wind chimes
|
||||
wings
|
||||
wishing well
|
||||
wisteria
|
||||
witchhouse
|
||||
witching hour
|
||||
wizard tower
|
||||
wolf's-bane
|
||||
woman and serpent
|
||||
the woodsman
|
||||
workshop
|
||||
wormwood
|
||||
wreath
|
||||
wyvern
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
<!---->
|
||||
<h1>reading journal </h1>
|
||||
january 8, 2020<br>
|
||||
<br>
|
||||
<br>
|
||||
I'll collect summaries, thoughts, and excerpts as I read. I used to read so much more. I should read more. <br>
|
||||
<br>
|
||||
<b>reading now</b> <br>
|
||||
<ul>
|
||||
<li><b>The Goddess of Atvatabar: being the history of the discovery of the interior world, and conquest of Atvatabar</b> - William R. Bradshaw (1892) </li>
|
||||
<li><b>An American Tragedy</b> - Theodore Dreiser (1925) </li>
|
||||
<li><b>How Few Remain</b> - Harry Turtledove (1997) </li>
|
||||
</ul>
|
||||
<br>
|
||||
<br>
|
||||
<b>books to read next</b> <br>
|
||||
<ul>
|
||||
<li><b>The Divine Comedy</b> - Dante Alighieri (1320) </li>
|
||||
<li><b>The Pilgrim's Progress from This World, to That Which Is to Come</b> - John Bunyan (1678) </li>
|
||||
<li><b>The Faerie Queen</b> - Edmund Spenser (1590) </li>
|
||||
<li><b>Waiting for Godot</b> - Samuel Beckett (1953) </li>
|
||||
<li><b>Metamorphoses</b> - Ovid (8) </li>
|
||||
<li><b>The Canterbury Tales</b> - Geoffrey Chaucer (1320) </li>
|
||||
<li><b>Phantastes</b> - George MacDonald (1858) </li>
|
||||
<li><b>The Lady of Shalott</b> - Alfred Tennyson (1833, 1842) </li>
|
||||
</ul>
|
||||
<br>
|
||||
<br>
|
||||
<b>completed books</b> <br>
|
||||
<ul>
|
||||
<li><b>Candide</b> - Voltaire (1759) </li>
|
||||
<li><b>Drinker of Souls</b> - Jo Clayton (1986) </li>
|
||||
<li><b>Making of a Bigot</b> - Rose Macaulay (1914) </li>
|
||||
<li><b>Magic: A Fantastic Comedy in a Prelude and Three Acts</b> - G.K. Chesterton (1913) </li>
|
||||
</ul>
|
||||
<br>
|
||||
@@ -0,0 +1,7 @@
|
||||
<!--210201-->
|
||||
<h1>March for Trump </h1>
|
||||
january 6, 2020<br>
|
||||
<br>
|
||||
<br>
|
||||
Today, the March for Trump resulted in a Capitol break-in. The photos are like something out of a videogame. I took them from Twitter, so I can't easily credit. <br>
|
||||
<br>
|
||||
Reference in New Issue
Block a user