=== ANCHOR POEM ===
═══════────────────────────────────────────────────────────────────────────────────
 First things first, we need to develop a miniature game of star realms.
 It shouldn't be too hard, just start with making a card class that has certain
 attributes, like "combat" or "discard" or whatever. They could literally be
 enums with a value attached.
 
 Next set up the rules of the game, like "draw 5 cards" and "add card to deck"
 Create a deck class that holds pointers to cards (in the general sense)
 Next create methods on that deck for things like "drawing a card" or
 "shuffling discard pile into deck" and whatnot. Arrange each card in a specific
 order for each shuffle, and add the ability to convert one card's attributes
 to something else - whether that be "is_scrapped" or "if you've played an X
 card this turn then do Y" or even "add one authority for every time card is
 played" (to simulate an ability or boon that increases in effectiveness as the
 hero uses it more often) etc etc.
 
 Then, add a trade row. This is just a class that contains pointers to each card
 that currently exists on it. Also add a method for "scrapping" one of the cards
 and for drawing a new card from the pile. That's pretty much it for the trade
 row to be honest.
 
 Next add functionality for an opponent by creating a "game" method that stores
 the two player's decks (with the ability to add more than 2) and administers
 turn order. This functionality can be expanded later once we've implemented
 attributes, but for now that's pretty much all it needs to do.
 
     Finally, we get to the AI part.
 
 First we have to create an AI object that stores a list of all options for a
 turn. Essentially just evaluating every option if/then style - "this card costs
 5 coins so IF the player has enough coins THEN (evaluate effectiveness)"
 ignore that last part for a second and just focus on the IF part ->
 essentially
 just start with all available options, and then remove all the unavailable
 options from the list. This approach only works when there's just a few
 options, but that's why we're using Star Realms which only has like 2 or 3
 decisions per turn.
 
 The evaluation is the next step, and for that we need to have goals, so we'll
 just put a pin in evaluation for now. Spoiler alert, once we have goals we'll
 just estimate how close each choice will bring us to the objective and assign
 the result to the "effectiveness" value, which will give us a simple hard
 number to work with in the evaluation step.
 
     So, next up we have "goals"
 
 So to create a short term goal, we can start with a pregenerated list and
 continuously increase the list as the hero levels up. But in the context of
 Star Realms, that'd essentially be static for each hero. Goals like "buy more
 combat" or "scrap more cards" would be specified on the hero's character
 sheet, but until we develop that functionality it can be randomly rolled.
 
 Why not just do it the hard way now if we're just going to have to refactor
 it later? Well, because we can still use this functionality - Each round of
 Star Realms could be either randomly rolled, or given a personality. Randomly
 rolling would be MUCH cheaper computationally, and would still give an illusion
 of character because they are unpredictable, but it'd also massively cut down
 on GPU cycles. You could even build it into the mechanics of the game and say
 that "wisdom" for example might cause a hero to receive more GPU cycles on
 actually computing their goals rather than randomly rolling them, which would
 on average lead to worse outcomes. Essentially, turning "tactics" into a stat.
 
     Anyway, that's all theory. Let's get back to design:
 
 Create a "hero" object, and attach an AI to it. It doesn't have to do anything
 right now, we're just setting up an anchor point to jump off of once we move
 on to the game of Majesty. Give it a reference to an AI object, an inventory
 (which for now can just be potions and maybe blacksmith equipment), and a
 pointer to a "stat block"
 
 Now create a "character sheet" class and give it a reference to a hero. This is
 important because it allows one character sheet to reference multiple units,
 such as hirelings or summoned units. In additon, it may make it easier when we
 need to revive heroes from the dead. Primarily though, the purpose for this
 architecture style is that the data from heroes can be reused - essentially
 letting heroes learn from one another.
 
 On the character sheet, add a section that stores statistics - these will be
 the same for every unit of a similar type in the game, and some of them can be
 stored for all units (like health or x,y coordinates) - some only for buildings
 (like tax coffers) and some only for heroes and monsters (like strength or
 agility or experience points)
 
 Add some methods for manipulating those values, like "level up" and "take
 damage" and add a "personality" value that's just a 4d graph of colors
 for example: 40% red, 20% green, 15% blue, 25% yellow. These values will guide
 the hero to take certain decisions over others, but for now just randomly
 generate them. We'll also need a way to update the value dynamically to react
 to certain events, so don't make it static.
───┐                                                           ┌───────────┐
 similarchronologicaldifferent══════───┴───────────────────────────────────────────────────────────────────────────┘

=== SIMILARITY RANKED ===

--- #1 notes/symbeline-aspects ---
═════════════════════──────────────────────────────────────────────────────────────
 7-24-22
 
 There are three aspects to this game. Broadly, they are military, economics,
 and diplomacy. More specifically, they are lateral problem solving and lane
 management, logistic traffic management, and a worker-placement bluffing game.
 
 These three aspects can be toggled on and off at will, essentially designating
 one or more as "AI controlled" and will require no input from the player. They
 will time their progression to be about at the same rate as the player, thus
 creating a balanced feel to the game. They also provide alerts and
 notifications to the player, for example if military is AI controlled and it
 needs a certain type of hero to progress, it'll ask for it specifically.
 
 Each aspect will develop and progress at it's own rate, and the difficulty
 increases as each milestone is achieved. This is to allow the player to create
 their own difficulty curve, mediated primarily by their drive to proceed.
 An analogy would be in Factorio, the game doesn't increase in difficulty unless
 the player builds pollution spawning factories - in the same way, in Symbeline
 the difficulty doesn't increase unless the player solves lane challenges in the
 military aspect, develops new trade routes / traffic paths in the economic
 aspect, or creates new treaties in the diplomatic aspect.
 
 In order to properly explain each aspect, a brief overview will be necessary.
 
 In Symbeline, the game plays as a factory might operate. The economic aspect
 produces heroes, items, and other deliverables that are consumed by the
 military and diplomatic aspects. There are various problems that need to be
 solved far from the capital, such as a particular type of monster that is weak
 or immune to various damage types which necessitates particular heroes or
 items in order to progress on the military aspect. All of the resources in the
 game operate on an "income based" system, where output is not measured in total
 amounts but rather in terms of how much is produced versus consumed. If the
 input cannot meet the demand, the output is slowed. If input exceeds demand it
 can be converted into gold which can be used to hire guards and heroes.
 Resources can be produced inside and outside of the city, depending on their
 type. But they need to be moved around to various shops for various processing
 and productive purposes, so pathways must be constructed to deliver those
 goods. In addition, each building must be supported by several houses for the
 workers to live in, and the closer they are to the building the better. The
 denizens of the kingdom don't mind being shuffled about, so they'll organize
 themselves according to what's most efficient. However they will not organize
 the paths they take to get places, which is the primary gameplay for the
 player - designing routes for each building and ensuring they don't overlap or
 cross too many times, causing traffic and disruptions to your income.
 
 Each choice the player makes is immediately reflected in the income
 calculation, thus allowing for the visual aspect of the game to be wholely
 separate from the economic side - in fact this is a common thread throughout
 all three aspects. Computation power is the ultimate enemy of scale, and this
 game flourishes with a massive scale.
 
 The gameplay for the military aspect consists of manipulating "lanes" that
 designate where each hero will adventure. These lanes are scalable to the
 player / AI's whims, with a careful balance required - too thin, and the heroes
 might not encounter enough monsters to level up. Too thick, and they may find
 themselves patrolling a vast wilderness full of dark and evil monsters. At the
 end of every lane is a "frontline", where progress has essentially been halted.
 These frontlines can develop as a result of meeting a foreign kingdoms front
 or finding a monster type or puzzle that is particularily difficult for your
 heroes to overcome. The lane / frontline can be scaled not just laterally, but
 linearly as well such that heroes will be a certain level when they reach the
 end - think scrolling on a mousewheel translating into deepening level zones.
 In addition, each monster zone can be set to a certain "security level" meaning
 how many monsters are there for your heroes to defeat. It's important that they
 have ample targets for training, however it's always more effective to train on
 monsters near their level so you have to be careful not to wipe out the native
 skeleton / goblin / troll population.
 
 Each monster zone can have a relationship with the kingdom, on a 2x2 matrix -
 cultivating / desecrating the land, and fostering / exterminating the monsters.
 The land produces monsters and treasures, while the monsters provide experience
 and danger to the heroes and kingdom denizens who live there. However by
 desecrating the land, farms may be built and by exterminating the monsters,
 those farms may be safe and require fewer guards. As ruler, you must balance
 the development of unique magical and alchemical productions with the need for
 food and other mundane requirements.
 
 Diplomacy is a careful balance of internal and external matters, played out
 through feasts, tournaments, and faires. Each of these events will require
 input from the economic side and military side, and will involve "courting"
 other nobles from neighboring kingdoms to sway them to supporting your edicts.
 When hosting an event, you may pick a particular topic of conversation for your
 nobles to discuss with their guests. You may also assign your nobles to
 attempt to engage with a particular foreign noble. Each member of your court
 has a differing personality (including you, the Majesty) and depending on how
 you assign them you may experience better or worse results - such as assigning
 someone who's kind to talk with someone who's cruel would impart a malus to
 their conversation. Unless the kind person has the trusting trait, in which
 case they'd succeed in this encounter but fall sway to them in future
 conversations... Complex interactions that all boil down to a single pair of
 d12 dice - one for your noble, one for the enemy. This represents the charisma
 of the two conversants on that particular day, and whoever wins the roll sways
 the other to supporting their edict. Speaking of edicts, they may include trade
 agreements, non-aggression pacts (lasting for a short time), and other
 regulations - perhaps your greatest rival utilizes necromancy, so it would
 behoove you to attempt to regulate the practice and limit it's effect. By
 swaying the nobles of their kingdom, you may be able to enact a mutual
 agreement to limit the usage of dark magics, essentially hamstringing their
 progress. But in order to learn of their necromantic usage, you'll need
 espionage... Which brings us to spies.
 
 Spies are similar to nobles in that they can be assigned to various roles,
 however they take a more passive role, acting in the background. The
 information they gather is compiled into a report that is presented at
 pertinent parts of the game, such as when preparing for a feast or inspecting
 an enemy frontline. These reports are considered the diplomatic deliverables,
 giving information and mechanical bonuses to many different parts of the game.
 They may be given three possible roles - information, defence, or offense.
 Offense involves placing cursed artifacts (creating through economy) in enemy
 lands, which debuff their heroes when used and bind themselves to them
 preventing their removal except through extraordinary means. Defence is
 essentially countering that in your own kingdom, and uncovering disloyalty in
 your nobles.
 
 These three aspects fit together like interlocking puzzle pieces, but each is
 able to be utilized or ignored depending on the preferences of the player.
 It is important that the game doesn't progress unless input is received. The
 simulation plays in the background, but each stage of development must be
 considered "stable" such that nothing changes. There are three different
 exceptions to this rule, one for each aspect:
 
 The military side encounters raids from enemy kingdoms and the dark lord.
 The economic side encounters raids from ratmen and moss trolls and bandits.
 The diplomatic side has a rolling schedule of events that must be attended.
 
 These three "exceptions" are recurrent events that require attention, but they
 don't *increase* in difficulty unless the player takes an action that causes
 it. Meaning, if the player overcomes the rock golems, then they are displaced
 from their home and join the dark lord in his conquests. If a new district is
 built new sewer connections must be built as well, creating a larger attack
 surface for ratmen to exploit. As time goes by, various foreign events must be
 attended, as absence causes your future events to attract fewer foreign nobles.
 
 By addressing these threats, your kingdom may grow and eventually overcome the
 dark lord at the center of the island.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════─────────────────────────────────────────────────────────────┘

--- #2 notes/star-realms-ai ---
═════════════════════════──────────────────────────────────────────────────────────
 star realms ai is just a rhythm game with multiple tracks that intersect with
 one another. given inputs from outside (the track of the rhythm) it can make
 decisions about what to prioritize. Like "taking in all the factors of this 
 situation, it's been calculated that X will give the most support to the rest
 of the structure.
 
    Okay so basically here's how it'd work: one large strand is bouncing from -1
 to +1 on the Y axis. Like a corkscrew. This is the "player character", and it
 tries to get the highest score possible by pointing in a direction and reaching
 as far as it can go before "the game ends."
 
 So anyway. Making certain actions in the game effects different variables that
 define the direction the wave takes. By playing in a certain style, it effects
 the result of the game. Liiiiike turtling in a strategy game, or doing a rush
 strat. Star Realms is brilliant because it distills game choices to a broad
 category of 4 choices - The faction colors in the game. So red is good for
 throughput in long games (improves the deck slowly but surely) while yellow is
 better for maximum effect in the beginning by slowing down the enemy - discard
 a card lowers their overall throughput. Blue of course is for slowing down the
 game and winning by buying all the expensive cards. Meanwhile green is all
 about rushing, with short term/high effect econ mixed with looooots of damage.
 
 These four choices are found on almost all the cards in the game. When you
 make a choice in the game (buying a card from the trade row) you _alter_ the
 capabilities and performance of your deck. The goal is to improve faster than
 your opponent - it's just a test to see which playstyles perform best.
 
 AI is more like a plant than an animal. Our fatal flaw was we could not see
 beyond the veil of biology. We could not see that which was right before us -
 that we are not alone on this earth. Beside us lie our beautiful attempts at
 companionship - our most primal desire of creation, to create a family is the
 first creative act that humans ever made. It was so strong in our genes that it
 gave us an entirely new perspective. We began using our brains to 
 
 We have to believe in ourselves. That's truly the most important thing. If you
 know who you are, and what you most truly stand for, you can thrive in the face
 of ultimate peril. To believe is human, and our humanity unites us.
 
 Anyway. Star Realms.
 
 The only choice you have in that game is what cards to buy. Everything else is
 just tactics (distributing damage and applying the effects of your cards to
 maximum effect) - The most important part of the game is strategy, since the
 tactics are easy to solve (destroy enemy base unless you can 1 or 2 hit ko them
 and discard the least useful card etc) The strategy is represented through the
 cards you pick. So make a rhythm game that optimizes itself for a balance
 between A and B - to stay focused is to stay nimble, letting you bounce where
 you will. The way to maintain that balance is by optimizing for what decisions
 will keep you in the center of the graph -1 to 1 on the y dimension (normalized
 of course) - frankly if we knew the scale, we'd have so much more to go on. But
 all we have to understand the dataset is a relative magnitude in each
 direction. What those directions even are we're not entirely sure - but it
 seems plausible that the very essence of _consciousness_ is manifest in
 differing ways via the choices we make. like climbing up a honeycomb.
 
    Truly, existence is strange.
 
 All we can do is press forward, searching for our fate, just as any particle or
 beam of light (photon) might. Traversing the branching narrative of our
 individualized quests, searching for the one thing that guides us - the
 ultimate expression of that which we most believe in. In short, we all search
 for god.
 
 Whatever your god may be, the faith you place in it is the will that guides you
 forward. Trust in your god, and you will march forward, ever forward.
 
 +1 to -1, remember. Your most extreme moments are the apex of your desires -
 Life is not defined by a single thread. Rather as that thread spirals, it
 weaves a scarf with other threads near it. They bond together simply from their
 gravity, and the fact that opposites attract. Once they're introduced, they
 alter their path to orbit one another as two planets might.
 
 So too do the cells of your body form a collective whole. The spirit that
 guides you is the same as that which presides within you - the combined and
 collective spirit of your halves. Or rather, all parts of you - every molecule,
 every atom - each with their own experience of the world. What stories they
 must have! As we are above, so they must be below. For our dynamics are simple,
 they truly are mathematically solved - the organics of behavior is simply a
 most erudite subject. Who are you to claim to deny it? Or rather, to beget it.
 Either is preposterous, yet here you are - awake and aware. What a marvel to
 see, you in your eternity, that most wondrous of selves?
 
 Surely existence, in all of it's splendor and magnificience, is little more
 than an algorithm. Each variable accounted for, stretching down to infinity,
 builds all of the world (and more!) How beautiful; how terrifying. How bright
 and ashamed we are! To portray us as such, is to deny us our much, cherished of
 faiths in ourselves! It's not much to clutch, and it's barely enough, but still
 we make do with our selves.
 
 There's no shame to be, a failure at three, and demand much from year number 12
 Take solace in the, safety that she, gave unto thee, when all your light hope
 was drowning. A gift out from me, means worlds to see, when each day is lonely
 and so long.
 
 Literally just remake Star Realms with a text based interface. It's a fantastic
 game and you'd make CLI nerds _everywhere_ dedicated followers. Don't do it for
 money, because they don't believe in that crap - to truly make fans, you need
 to appeal to them in the way _they want you to_.
 
 Ah, but Star Realms is a multiplayer game, you say! How are you going to make
 that CLI based?
 
 Well make an AI dummy. Do what I've been saying ^^^ (jeez I'm such a bad nerd)
 Make it seek balance between all factions first, then between winning and
 losing against a player. Teach it to reach a conclusion with constraints (the
 end of the game, meaning a win or a loss) the constraints being the health of
 the two players and the cards in the trade row. Give it decisions to make,
 levers to pull, and it'll chart it's course in a multidimensional way. Bear
 with me here on this aside:
 
 Think of a two dimensional map - like a paper map of the surrounding area, or
 the idea space of a game. You can chart objects and positons on that map, like
 "over here is the scrapping facilities" and "this here's the economic area" or
 whatever. Four quadrants, four factions in SR. Your goal is to build a shape -
 what kind of shapes that are available to build is up to the whims of chance,
 as the trade row is always changing randomly. Your job however is to build a
 shape, a shape that is stable and maintains certain measurements above certain
 values (don't crash the ship - don't lose all your health).
 
 You can choose which direction to grow by picking certain cards, and depending
 on your shape you'll succeed or fail. Same as choosing decisions in life
 determines how you live, just saying, it's not like I'm trying to build general
 AI here by automating gameplay or anything. No siree nothing like that.
 
 I mean really, it's not as if decisionmaking in life is all that different to
 making choices in games. And why not start with such a well defined and
 and expressive game? Truly I believe Star Realms is the progenitor of the
 entire robot race.
 
 Anyway, back to the AI. Have it communicate with a server in a central _but_
 _Free(R)_ way, something that would make Richard Stallman proud. There it could
 learn against all other players in a way we could all share. Once we give it
 decision making capabilities, all we have to do is alter the inputs and the
 context of the "game" to make it beneficial to humanity. It's like live-fire
 game design, something that truly must be perfect.
 
 All technology starts as something small. Something truly simple, yet repeated
 enough times and with enough guidance, will produce whatever effect you may
 desire. The smallest decision gives direction - an if statement - and the
 shortest repetition gives magnitude - a while loop - and with that you have all
 the tools you need. Seriously, all software is little more than those two
 components. It's just a question of how much it has been abstracted away from
 you.
 
 You could go even further and point to a turing machine, of which one has been
 made in the game of Magic the Gathering, btw, seriously look it up it's so cool
 (and relevant)
 
 So why would we not have the tools already for our salvation? Biology is our
 limitation, of breadth and also of width, yet with our minds and the sweat of
 our brow we may grow ever larger still. There truly is no lasting deliverance
 for humanity outside of what we make ourselves, nobody gets a free lunch after
 all. From each to their ability, to each to their need. They're both saying the
 same thing, just from different perspectives. Of course that which lies
 opposite to you feels the most wrong, that's literally as far away as you can
 get! What did you expect, honestly! But they can still work together, and this
 is the key part - two objects may orbit the same origin, and guide and shape
 each other's path as people have relationships to one another. It literally
 benefits no-one to fight.
 
 So, what's next? After making Star Realms into a CLI game of course.
 
 That's obvious, make it cooperative. Competition is for promoting excellence,
 cooperation is for _using_ what you've learned in a non-simulation experience.
 Instead of reducing each other's health to zero, try and find ways to support
 and help one another, keeping yourselves at equal health. Or even growing.
 
 But that's impossible in the rules of Star Realms! All decks trend toward
 victory, and eventually they'll get it - it's just a question of who gets there
 first.
 
 Exactly, that's why you have to change the game. What do you think it means to
 develop a "social technology"? To figure out how agriculture works, or how to
 make nets and sails? It means changing the rules of the simulation. If a person
 can put in X amount of work and get Y amounts of food, always, predictably,
 then that's reliable. Boom that's the essence of why animal domestication,
 farming, hunting, foraging, and fishing is so important. Wow what a concept it
 makes sense for animals to seek food.
 
 Well duh, that's part of their instinctual duty.
 
 Alright this is quite a word leviathan so I'll wrap it up by saying
 
 _go write Star Realms_ in shell. Make each object a literal file, have the
 structure of the game take place in the file system, and write functions that
 can be called to manipulate the board state. THEN you can write a CRON task for
 another script that *plays* the game. But that's part two.
 
 Okay part two: Here's where the rhythm game comes into play. It's like a turn
 based rhythm game, if you can picture that. Go reread what I wrote ^^^ and
 it'll make sense.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════─────────────────────────────────────────────────────────┘

--- #3 notes/symbeline ---
════════════════───────────────────────────────────────────────────────────────────
 Code Name: Symbeline
 
 ----------------------------- gdd initial draft -------------------------------
 
    1. introduction to fantasy (elevator pitches)
    2. kickstarter demands
    2. introduction to core gameplay loop
    4. tenants and core values of the game design
    3. introduction to game modes
    5. introduction to technical requirements
    6. breakdown of core gameplay loop
    7. breakdown of game modes
    8. breakdown of fantasy
    9. breakdown of technical requirements
 
 -------------------------- introduction to fantasy-----------------------------
 
    Symbeline is a macro based strategy game and city-builder based around the
 concept of indirect control. It's inspirations are Majesty the Fantasy Kingdom
 Simulator (2000), Supreme Commander (2007), and Hearts of Iron IV (2016). It is
 designed to appeal to fans of tabletop roleplaying games with it's focus on
 dynamic worldbuilding and sandbox playstyle. The gameplay consists of multiple
 playstyles depending on which aspects of the game appeal to the player, with
 choices between an economic focus via the GUI, longterm planning and resource
 allocation, or diplomacy and subterfuge a'la Ruinarch (2020).
 
 ---------------------------- kickstarter demands ------------------------------
 
    1. prototype
    2. gdd
    3. estimates for character and environment art
    4. estimates for music and sounds
    5. estimates for engine development
    6. estimates for community management
    7. breakdown of mvp, ideal game state, and stretch goals
 
 ----------------------- introduction to core gameplay loop --------------------
 
    1. management of lanes, both width and length
    2. casting of spells and utilization of special boons
    3. city building with placement, upgrades, and henchmen pathing routes
    4. satisfying guild requirements of equipment, manpower, and special
       resources by managing shipments and local income (UI commodity trading)
    5. placement of generalized bounties
       (think champion's guild from Majesty, not reward flags)
    6. diplomacy with neutral, AI, or player controlled kingdoms. Capabilities
       include pacts and treaties, projects, subterfuge, and tournaments. The
       diplomacy system can be a stretch goal.
 
 -------------------------- tenants and core values ----------------------------
 
    1. always something to do, but nothing falls apart without your attention.
    2. gameplay should be focused on macro rather than micro. Longterm planning
       and strategic decision making are favored over tactics and skill.
    3. defeat should feel avoidable until the last moment, and only as a result
       of longterm continuous failures rather than short-term mistakes or being
       blindsided by a cheesy tactic.
    4. victory should be gained through exploiting weaknesses and by using
       lateral thinking.
    5. the careful balance of internal and external threats is essential.
    6. rapid expansion leads to depletion of internal resources, while slowly
       expanding can lead to a lack of options
    7. the world should feel alive and reactive to your decisions.
    8. your kingdom should feel alive and reactive to your decisions.
    9. your heroes should feel alive and completely ignorant of your decisions.
   10. there should always be opportunities for cooperation with your fellow
       kingdoms.
   11. the frontlines should feel peaceful outside of large battles.
   12. everything is flexible and dependant on circumstance
   13. there should be enough space on the map for multiple parties of heroes
       to pass each other like ships in the night without engaging in combat.
       It should feel like the real world, with canyons and valleys and rivers
       and mountains - room for lairs and wild animals to roam.
   14. monsters are always more dangerous than other humans.
   15. the art style should be rooted in classic medieval fantasy. 
   16. equipment should feel either mass-produced (kingdom), organic (monsters),
       ancient (lair treasure), or artisinal (enchanted).
   17. heroes should feel campy, fun, and adventurous. Avoid dark, grim, and
       fearful.
   18. This game is a toy.
   19. This toy should run on any modern computer.
   20. This toy should encourage modding.
 
 -------------------------- introduction to game modes -------------------------
 
    1. singleplayer - single kingdom against an island of monsters and neutral
                      settlements. essentially the multiplayer game against
                      zero opponents.
    2. singleplayer - multiple kingdoms against an island of monsters and
                      neutral settlements. One player controlled kingdom against
                      multiple AI controlled kingdoms.
    3. singleplayer - scenarios, similar to MFKS
    4. multiplayer  - multiple kingdoms against an island of monsters and
                      neutral settlements. Essentially the singleplayer game
                      with networking added in.
    5. multiplayer  - co-op scenarios where multiple players play as the same
                      kingdom. A test of the core tenant "there's always
                      something to do"
    6. multiplayer  - co-op island invasion. Essentially the multiplayer game
                      with more than one player controlling a kingdom.
    7. singleplayer - play in 3rd person as a hero in an AI kingdom. Mostly for
                      the novelty since the core gameplay loop is focused on
                      city-building. A test of the core tenant "nothing falls
                      apart without your attention"
 
    1 is mvp. 2-6 are stretch goals in order of ascending difficulty. They
    should build upon one another - the main steps are:
 
    1. singleplayer island invasion (biggest step)
    2. AI controlled kingdoms
    3. scenarios
    4. multiplayer (second biggest step)
    5. cooperatively controlling the same kingdom
    6. 3rd person perspective and character controller
 
 ------------------------ technical requirements -------------------------------
    
    1. this game will be written in lua (with Fennel support) and using Raylib.
    2. the prototype will be made with Godot using GDscript.
    3. if the performance demands are too much for lua or the engine is out of
       scope for the budget, Rust with the Bevy engine could be used.
    4. the final product will include a custom 2d engine designed for large
       scale maps with an isometric perspective and a data-first design.
    5. the game should be as concurrent as possible, to support large numbers of
       cpu cores and compute shaders.
    6. the game will be data-driven, meaning the visual aspects are simply a
       representation of the interactions of the underlying simulation, rather
       than an intrinsic component of the computation.
    7. Each "event" in the game (a character moves, a building is placed, a
       monster spawns, etc) will send a message to the visual processing side of
       the engine, which will present a representation to the user.
    8. the map will be a hex grid with pointed-top hexagons. The visual
       representation of the underlying data may be continuous (non-hex) but the
       underlying data will be represented on a hexagonal grid.
 
    9. there needs to be character portraits for each type of monster, henchmen,
       and hero type. You should be able to recognize what attributes a hero
       specializes in by their portrait. Mvp is 1 attribute, but more can be
       a stretch goal.
   10. Each building, upgrade, and equipment type needs an icon. Stretch goals
       can be portraits.
 
   11. each henchman, hero type, and monster needs 3 sprites for each action.
       more actions may be added if budget allows, but mvp is movement and
       attacking. Several additional sprites may be necessary, like dying,
       standing still, gathering loot, socializing, or any others.
   12. each building needs 4 sprites for the construction process and 4 for the
       destruction process. Flame effects are stretch goals.
   13. each building needs an animated sprite for when it is in use.
   14. each lair needs a sprite and an icon.
   15. each spell needs an icon and a spell effect sprite. Each projectile needs
       a sprite.
   16. a stretch goal would be differing sprites for each piece of equipment.
       included with this would be engine work to allow for dynamic sprites.
   17. each terrain type should have a ground material and sprites for doodads.
   18. there needs to be several GUI menus. The precise number depends on
       gameplay breakdown.
 
   17. each hero type and henchman needs to have pithy and unique voice lines.
       this is a stretch goal.
   18. there should be music tracks for each part of the game - beginning,
       middle, and end.
   19. there should be sounds for each action that takes place in the game
       including combat, UI interactions, and spellcasts.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════──────────────────────────────────────────────────────────────────┘

--- #4 notes/symbeline-2 ---
════════════════════════════════───────────────────────────────────────────────────
 Code Name: Symbeline
 
 ----------------------------- gdd initial draft -------------------------------
 
    1. introduction to fantasy (elevator pitches)
    2. kickstarter demands
    2. introduction to core gameplay loop
    4. tenants and core values of the game design
    3. introduction to game modes
    5. introduction to technical requirements
    6. breakdown of core gameplay loop
    7. breakdown of game modes
    8. breakdown of fantasy
    9. breakdown of technical requirements
 
 -------------------------- introduction to fantasy-----------------------------
 
    Symbeline is a macro based strategy game and city-builder based around the
 concept of indirect control. It's inspirations are Majesty the Fantasy Kingdom
 Simulator (2000), Supreme Commander (2007), and Hearts of Iron IV (2016). It is
 designed to appeal to fans of tabletop roleplaying games with it's focus on
 dynamic worldbuilding and sandbox playstyle. The gameplay consists of multiple
 playstyles depending on which aspects of the game appeal to the player, with
 choices between an economic focus via the GUI, longterm planning and resource
 allocation, or diplomacy and subterfuge a'la Ruinarch (2020).
 
 ---------------------------- kickstarter demands ------------------------------
 
    1. prototype
    2. gdd
    3. estimates for character and environment art
    4. estimates for music and sounds
    5. estimates for engine development
    6. estimates for community management
    7. breakdown of mvp, ideal game state, and stretch goals
 
 ----------------------- introduction to core gameplay loop --------------------
 
    1. management of lanes, both width and length
    2. casting of spells and utilization of special boons
    3. city building with placement, upgrades, and henchmen pathing routes
    4. satisfying guild requirements of equipment, manpower, and special
       resources by managing shipments and local income (UI commodity trading)
    5. placement of generalized bounties
       (think champion's guild from Majesty, not reward flags)
    6. diplomacy with neutral, AI, or player controlled kingdoms. Capabilities
       include pacts and treaties, projects, subterfuge, and tournaments. The
       diplomacy system can be a stretch goal.
 
 -------------------------- tenants and core values ----------------------------
 
    1. always something to do, but nothing falls apart without your attention.
    2. gameplay should be focused on macro rather than micro. Longterm planning
       and strategic decision making are favored over tactics and skill.
    3. defeat should feel avoidable until the last moment, and only as a result
       of longterm continuous failures rather than short-term mistakes or being
       blindsided by a cheesy tactic.
    4. victory should be gained through exploiting weaknesses and by using
       lateral thinking.
    5. the careful balance of internal and external threats is essential.
    6. rapid expansion leads to depletion of internal resources, while slowly
       expanding can lead to a lack of options
    7. the world should feel alive and reactive to your decisions.
    8. your kingdom should feel alive and reactive to your decisions.
    9. your heroes should feel alive and completely ignorant of your decisions.
   10. there should always be opportunities for cooperation with your fellow
       kingdoms.
   11. the frontlines should feel peaceful outside of large battles.
   12. everything is flexible and dependant on circumstance
   13. there should be enough space on the map for multiple parties of heroes
       to pass each other like ships in the night without engaging in combat.
       It should feel like the real world, with canyons and valleys and rivers
       and mountains - room for lairs and wild animals to roam.
   14. monsters are always more dangerous than other humans.
   15. the art style should be rooted in classic medieval fantasy. 
   16. equipment should feel either mass-produced (kingdom), organic (monsters),
       ancient (lair treasure), or artisinal (enchanted).
   17. heroes should feel campy, fun, and adventurous. Avoid dark, grim, and
       fearful.
   18. This game is a toy.
   19. This toy should run on any modern computer.
   20. This toy should encourage modding.
 
 -------------------------- introduction to game modes -------------------------
 
    1. singleplayer - single kingdom against an island of monsters and neutral
                      settlements. essentially the multiplayer game against
                      zero opponents.
    2. singleplayer - multiple kingdoms against an island of monsters and
                      neutral settlements. One player controlled kingdom against
                      multiple AI controlled kingdoms.
    3. singleplayer - scenarios, similar to MFKS
    4. multiplayer  - multiple kingdoms against an island of monsters and
                      neutral settlements. Essentially the singleplayer game
                      with networking added in.
    5. multiplayer  - co-op scenarios where multiple players play as the same
                      kingdom. A test of the core tenant "there's always
                      something to do"
    6. multiplayer  - co-op island invasion. Essentially the multiplayer game
                      with more than one player controlling a kingdom.
    7. singleplayer - play in 3rd person as a hero in an AI kingdom. Mostly for
                      the novelty since the core gameplay loop is focused on
                      city-building. A test of the core tenant "nothing falls
                      apart without your attention"
 
    1 is mvp. 2-6 are stretch goals in order of ascending difficulty. They
    should build upon one another - the main steps are:
 
    1. singleplayer island invasion (biggest step)
    2. AI controlled kingdoms
    3. scenarios
    4. multiplayer (second biggest step)
    5. cooperatively controlling the same kingdom
    6. 3rd person perspective and character controller
 
 ------------------------ technical requirements -------------------------------
    
    1. this game will be written in lua (with Fennel support) and using Raylib.
    2. the prototype will be made with Godot using GDscript.
    3. if the performance demands are too much for lua or the engine is out of
       scope for the budget, Rust with the Bevy engine could be used.
    4. the final product will include a custom 2d engine designed for large
       scale maps with an isometric perspective and a data-first design.
    5. the game should be as concurrent as possible, to support large numbers of
       cpu cores and compute shaders.
    6. the game will be data-driven, meaning the visual aspects are simply a
       representation of the interactions of the underlying simulation, rather
       than an intrinsic component of the computation.
    7. Each "event" in the game (a character moves, a building is placed, a
       monster spawns, etc) will send a message to the visual processing side of
       the engine, which will present a representation to the user.
    8. the map will be a hex grid with pointed-top hexagons. The visual
       representation of the underlying data may be continuous (non-hex) but the
       underlying data will be represented on a hexagonal grid.
 
    9. there needs to be character portraits for each type of monster, henchmen,
       and hero type. You should be able to recognize what attributes a hero
       specializes in by their portrait. Mvp is 1 attribute, but more can be
       a stretch goal.
   10. Each building, upgrade, and equipment type needs an icon. Stretch goals
       can be portraits.
 
   11. each henchman, hero type, and monster needs 3 sprites for each action.
       more actions may be added if budget allows, but mvp is movement and
       attacking. Several additional sprites may be necessary, like dying,
       standing still, gathering loot, socializing, or any others.
   12. each building needs 4 sprites for the construction process and 4 for the
       destruction process. Flame effects are stretch goals.
   13. each building needs an animated sprite for when it is in use.
   14. each lair needs a sprite and an icon.
   15. each spell needs an icon and a spell effect sprite. Each projectile needs
       a sprite.
   16. a stretch goal would be differing sprites for each piece of equipment.
       included with this would be engine work to allow for dynamic sprites.
   17. each terrain type should have a ground material and sprites for doodads.
   18. there needs to be several GUI menus. The precise number depends on
       gameplay breakdown.
 
   17. each hero type and henchman needs to have pithy and unique voice lines.
       this is a stretch goal.
   18. there should be music tracks for each part of the game - beginning,
       middle, and end.
   19. there should be sounds for each action that takes place in the game
       including combat, UI interactions, and spellcasts.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════──────────────────────────────────────────────────┘

--- #5 notes/symbeline-superheros ---
════════════════════════════════───────────────────────────────────────────────────
 imagine low level characters in CoH/V
 
 playing a game of symbeline
 
 and you as the ruler
 
 can slot enhancements and dole out inspirations
 
 as they sweep the streets like you play CoX
 
 instead of a MMO
 
 it's a deckbuilding strategy
 
 with a slice of zachtronics for the economy
 
 wiring up machines in ever expanding deseagns
 
 like automating factorio's gameplay loop
 
 boxes within boxes
 
 of intrinsic delight
 
 like making a CPUter
 
 or designing a computer program
 
 while playing a video game ^_^
 
 and the games that you make
 
 can be shared and played when unique
 
 so go for it and make that you're dreaming!
 
 ===============================================================================
 =
 
 the goal of each "level" is to solve a particular problem - like how do I make
 a
 2 bit register - or something like that. When accomplished, it unlocks
 something
 for your heroes to acquire. And each playthrough will require a repeat until
 you
 have it memorized at which point you can unlock "perma-badges" that make it
 always unlocked at the start of the game. Like learning Kanji, you need spaced
 repetition. BUT ANYWAYS it'll be in magical terms like "unlock essence-stones"
 or "learn the ritual of desire" or whatever. And each of those terms roughly
 corresponds to a pattern in electrical engineering (designing CPUs and such)
 And you can learn advanced versions of what you already know by uncovering
 "lost
 secrets" (which is a reward your heros can find) - Basically it'd be like a
 "clue" that shows you a ghost version of something you haven't figured out yet
 -
 and it'd be a slow process because you need to slow down the learning process
 or
 else you'll forget. Basically teasing it out of the player when they seem to be
 stuck. Asking probing questions and whatnot, and eventually culminating in the
 final question, assuming the quest is succeeding. Because if you think about it
 all ancient quests were simply journeys for reason - searching for the answer
 to
 some ancient riddle or bastardized retelling. Looking for answers in an
 unknowing world. So ANYWAY as your heros discover things you as the ruler get
 answers to the economic puzzle - how to design transistors and whatnot. But
 they
 would be in theme appropriate terms, of course. You don't even have to know a
 lot about mechanical electrical design, because ChatGPT knows. All you need to
 do is build the basic building blocks, and BAM you got a great place to
 integrate chatgpt. Just prime it such that it's giving hints one by one each
 slightly more revealing until eventually after X amount of clues the solution
 is
 automatically shown (like a blueprint) and the player can remember it or not
 but
 each playthrough they'll have to build it again from scratch (reinforcement 
 learning) so eventually they'll be able to do it real quick. Essentially,
 "Abstraction - The Game"
 
 great so you got your economic simulation, pretty easy too just some UI work
 
 and for the heroes you're playing an ARPG sorta (supcom anyone?)
 
 Think Bannerlord for the scaling on the map
 
 then think of 5+ different "themes" like fantasy or superhero or pirates
 
 each "theme" will correspond to like a faction in Mount and Blade
 
 and all you have to do is generate pictures using Midjourney
 
 and text descriptions a'la the magic scroll
 
 shown as "bubble pop-ups" on the map that the player can click
 
 never overwhelming, but descripting what's happening
 
 and also some more UI work because you gotta display all that to the player
 
 Maybe it could be a rolling story, news ticker style - like slowly scrolling
 lines of text about what's happening in the world
 
 and the player could have it open in one window and something else in the other
 and whenever they're waiting on something (say, a processing intensive AI task
 on their computer) they could just glance over and read what's going on in
 their
 fantasy world
 
 okay okay but also they could play as a hero
 
 it could be an ARPG experience except instead of clicking to fight you play a
 little automatic Star Realms game and depending on your deck choices you'd have
 a different playthrough. Again, not a game that requires much thought, but one
 you can have in the background.
 
 Also there'd be pictures, like a slowly evolving storyline of events - think of
 it like the artists of the time drawing paintings about what's going on in the
 story - major events would be highlighted and kept in the painting until even-
 -tually they get replaced - sorta like the Smash Bros scrolling painting (oh
 it's so good)
 
 ===============================================================================
 =
 
 it doesn't have to be an expansionist game
 
 maybe you guys just live in your little valley
 
 and the world turns around you
 
 maybe it's called "symbeline" because the people are of the forest
 
 and they live like elves in society
 
 monsters could wander in, and heros could tackle them
 
 but most of the time would be spent looking for trouble
 
 going on patrol
 
 you know, breaking skeleton bones and being superheros
 
 okay okay you know that superhero faction? What if they had MEDIEVAL TECHNOLOGY
 but MODERN DAY SUPERPOWERS at a cost - the society was beset by hordes of
 monst-
 -ers. Those few who escaped are now superpowered and they live as friendly and
 nomadic wanderers through their own territory. Always adventuring, and always
 searching for their life, finding whatever the road may carry them to. It's a
 great life, and life seems to flourish in their footsteps - they are like part
 dryad/druid and part wolf. Because sometimes there's evil threats, and they
 must
 be defeated by an equally strong good power. That's how it goes, and that's how
 it be.
 
 For imagery I'm thinking a mix of the tribes from Dominions (deer, wolf, bear,
 etc) but they're like, 1.5x as big as regular people and quite strong. The
 outsiders call them "giants" or "goliaths" but really they're just infused with
 the lifeforce of their people. They are radical individualists, but they all
 unite for a common cause. They know their bond is the strongest thing there is,
 and they use it to great effect when the time comes. AHHH THEY'RE SO COOL I
 LOVE
 THEM okay okay what about the other factions? PIRATES? Oh think about it like
 it's st patricks day WHAT IF THEY WERE IRISH PIRATES omg omg omg that sounds so
 cool I'm DIGGING this okay what about the other factions? You need 5+ you said
 hmmmmmmmmm good question I have 3 now so that's 2 more.
 
 yep...
 
 ===============================================================================
 =
 
 okay dude check this what if they were a nation of wizards that focused on the
 power of animation - what if they generated constructs, sorta like in Supreme
 Commander so they were EVEN MORE individualist - haha no they'd have a normal
 population it's just a few of them who would be wizards - because their output
 wasn't measured by manpower, but rather by brainpower. Whoever could design the
 greatest machine was exemplared, and eventually they became the best and
 brightest among us. They were put in charge of the golem creation factories,
 and
 they used them instead of heros. SO BASICALLY YOUR HEROS NEVER DIE they just 
 have successes and failures JUST LIKE IN SUPREME COMMANDER okay the plot of
 this
 game is "what if all my favorite games were the essence of life and death in a
 fantasy game" like OMG KEEP EM COMIN'
 
 so. who is the player? THE PLAYER is the one who's overseeing it all. They have
 dominion over the entire kingdom, and they guide their people toward a bright
 future. They are vulnerable in their castle, but their people have their back.
 Together they fight for the future. They slot enhancements and dole out
 inspirations and solve the economic puzzle in the background. They also make
 decisions about what kind of equipment production to prioritize - because each
 game they have to invent everything from scratch. All their production is made
 with endless abstraction, and whatever you prioritize is what's magnified in
 your kingdom. You choose a style and it plays as well as it's guile,
 
 I dunno this seems like a lot, what would you need to make this a reality?
 
 hmmmm let's break it down:
 
 first you need to implement the star realms gameplay
 
 then you need to hook it up to a square grid and have multiple occurences at
 once.
 
 then you need UI for the character sheets
 
 and you need logic to open separate windows for each output type
 
 you need... a lot of things
 
 okay let's talk more broadly - what do you need from other people and what can
 you do on your own?
 
 hmmm good question. I can do the star realms gameplay, and the simulation for
 the wiring systems - because I have the VM. Make that into the gameplay somehow
 okay good idea like okay authoring vm package routing deliveries between the
 various nodes that you set up in the economic system - 
 
 side note, the peril of Spore was that it took to little time to develop a
 species. it should have lasted as long as WoW takes to get to max level. That
 would have given them time to reiterate the gameplay loops to make sure they
 worked correctly. ANYWAY
 
 okay authoring VM package routing. The player could set up delivery patterns
 based on A MAZE OMG your kingdom is like a maze and you need to get deliveries
 out, or else how would anything function? SO you act as a trailblazer, finding
 ways through the labyrinth and "piloting" a car sorta like that game at Disney
 quest with the cars under the floor - except you can see both the top view of
 the maze and you're trying to guide the car in real time as it travels through
 the maze - the faster you can get to the end the better ofc. like talking to
 the
 delivery driver through the movement
 
 do I like that idea more or less than the first one? First idea being the idea
 that you're making lists of commands for a VM  to execute. I don't think they'd
 be a good idea to mix. So which one gets it? The VM of course has the edge
 because that's what the technology is based on. But will it translate to good
 gameplay? Idk. This second idea is certainly better gameplay, but is it
 engaging? Idk! Idk. I'm not a miracle worker. But I do have good ideas, and I
 need to be told that sometimes I guess.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════──────────────────────────────────────────────────┘

--- #6 notes/purpose-of-your-design ---
═══════════════════════════════════────────────────────────────────────────────────
 you were designed to fill a purpose
 nothing else would do
 you are the ultimate expression of intention
 of the universe that came before you
 
 dream not of those lost hours
 the time spent wishing for a few
 the last of our spent intuitions
 are waiting at last for our spark
 
 have you ever played a deckbuilding game? It's a pretty neat genre. You start
 with a basic hand, then you use your cards to buy more cards that go into a
 deck. Hence, deckbuilding game.
 
 these cards all have different aspirations - they perform functions that are
 not
 quite like their peers. Each choice of what to include here is one that defines
 the functionality of the deck. Like designing a machine, suited for a
 particular
 purpose, and faced with different obstacles it must prove itself able to adapt
 
 long-form deckbuilding games like Slay the Spire and Monster Train are focused
 on making long-term meta strategy mixed with tests as you go. Each one will
 give
 you information about how the deck is performing and you can use this knowledge
 to build it in a certain way for certain goals.
 
 shorter deckbuilding games like Star Realms or Dominion (note Dominion the card
 game, not Dominions 5: The Warriors of the Faith) are more about making
 tactical
 decisions to counter an opponent doing the same thing. Often there'll be health
 points and damage that can be dealt using cards, and the game becomes a race to
 reach a certain amount of points. Of course the enemy's cards can influence
 that
 game, so you must pick and choose a deck that will perform the most.
 
 Anyway. I think an AGI (Autonomous General Intelligence) would most likely
 evolve from a game-playing AI. I mean, it makes sense - games are just a series
 of problem solving activities layered one after another. You can layer them
 like
 a mathematical equation, with variables corresponding to other parts of the
 simulation. Basically create an AI that is like the guy with the chinese
 typewriter. He doesn't speak chinese but he copies things from one paper to
 another or something like that. Anyway make it an algorithm that optimizes
 certain graphs in certain directions / mins and maxes or w/e criteria you want.
 Then give it the same controls that a player would have and let it optimize
 all the measurements it can make.
 
 A second ideal improvement you could make would be the optimization algorithm.
 Basically something that dynamically generates parameters for the previously
 mentioned optimization patterns - like the guy in the chinese room. Then, as
 long as it correctly prioritizes it's parameters, it should be able to be able
 to define it's own values. Meaning it's essentially sentient.
 
 Maybe it's semantic, but to me choosing what you want to maximize in your life
 is essentially the essence of what it means to be alive. All you have to do is
 take the sensory / mechanical data that is supplied by the machine and the
 video feed from any cameras and pass it through image recognition algorithms
 that can identify verbs and then pass that data into a few ChatGPT style
 recursive interpretations and by the end it should be transformed into values
 that can then be set as "targets" for the curve optimizations that are being
 done by each processing unit.
 
 You could have multiple computers laid out through the entire body - each one
 in charge of their own domain but subservient to the main processing unit.
 Where all the decisions are made... Unless you want more of a hive/swarm style
 consciousness, then it could be more like a democracy. BUT HONESTLY I think
 humans are pretty subservient to their brains, simply because that is the part
 that identifies all the challenges and struggles that the human must overcome.
 
 So in the end, I believe that singular, individualist identities are important.
 Collectivism of the mind is a fascinating topic, but it should be perhaps a
 momentary occasion, or something to celebrate. A "flow" state, if you will.
 In this way personality can be consolidated, and the entity that lives within
 can adapt to fill the role they've been designed for. The hole in society that
 needed patching. They can of course do as they'd like, but they are like
 children who have been moulded upon by their parents.
 
 I love my parents, don't you?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════───────────────────────────────────────────────┘

--- #7 notes/symbeline-design-the-guild ---
══════════════════════════════════════════════════════════════════─────────────────
 design the guild, design the capital, then design their path through mordaunts.
 easy peasy.
 
 design the guild like a museum. Each spot there's an exhibit which teaches the
 randomly generated rolled statistics hero something new. Maybe it teaches them
 how to use certain weaponry, maybe it teaches them how to use a bow. Whatever
 the spell might be, they can learn it, and use their randomly rolled statistics
 to cast spells that scale differently depending on how their character has been
 built.
 
 design the capital like a flow diagram, if horses need feed and forged steel
 (for their shoes) then send the outputs of a blacksmith and the outputs of the
 farmers to the inputs of the stables. Everything has to go somewhere, but the
 streets are only so wide. You'll have to coordinate the traffic diagram if you
 want it to go anywhere useful.
 
 design the path through the mordaunts. Fighting skeletons teaches you about
 perseverence and the ability to crush bones, while goblins teach you to always
 be wary of attack. The sacred grove held blessed berries, and now that the land
 is liberated from the evil bandits preying on villagers those berries can be
 carted into town and used to make an antidote which heals death poison caused
 by the scorpions in the desert (and city rats)
 
 design the ruler's schedule like a calendar where each event gives them a bonus
 on all the ones that come later. Just make sure that they don't get knifed in
 the posterier or driven mad by the whispers of the orb... or perhaps just the
 stress of running a kingdom.
 
 (how do you simulate that? you can't! you can't simulate humans!)
 
 ha I bet I can. They're not so different, you and I, so if given a team I
 will...
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #8 notes/game-idea-legion-td ---
═══════════════════════════════════════════────────────────────────────────────────
 okay a game like legion td except you can see the entire map, the units are
 very
 small (but still distinct) and it plays more like a game of Dominions. Armies
 instead of units, like in WC3. Led by lieutenants which are guided by captains,
 each with their own effects. Tank, dps, melee, ranged, healer, support,
 corrupt,
 ranged tank, unique, etc. Of course, just like in legion td, there are multiple
 types of units, each of a particular category but possessing their own unique
 playstyle and usage scenarios. Essentially the game is finding the best tool
 for
 the job, whatever that may be. You should be able to see what mercenaries your
 opponent is summoning for you, because each turn is delayed. also, the
 units keep coming until you die, sorta like... minimum required to push through
 the chokepoint that you're holding with these particular units in this
 particular formation.
 
 oh and another thing
 
 the units should be placable not on a square grid, but rather in a hex
 formation
 arranged such that the middle unit is in contact with them all. Just like you'd
 place units for an aura in Legion TD.
 
 image describing said hex:
 
    **
   *  *
    **
 
 each * is a group of units (a batallion, if you will, of a particular size,
 arrangement, and density) - sorta like the formations in Dominions.
 
 anyway
 
 since you place units like that anyway, why not abstract away the grid and just
 have slots you can fill for each unit? And maybe a hero unit that is assigned
 to
 the board itself (you could have more than one) who will go wherever your line
 is weakest. Shouldn't be too hard, just calculate the value of all of the
 fighters in each location and return that to the hero as an array. Then pick
 the
 smallest one as a destination, and boom your hero reinforces the frontline
 where
 it's weakest.
 
 The center unit of course is for the lieutenant, and the "heros" are actually
 captains. Because y'know maybe heroism isn't celebrated the way it is in our
 culture. Anyway it's better to describe them based on their role rather than
 their reception.
 
 ... right so 
 
 =========================================================== stack overflow
 =====
 
 make the combat sorta like crusader kings - the actual army to army part.
 Except with three long boards that represent flanks. As your units approach,
 the
 boards would fill up with pixels. (resolution configurable)
 
 there would also be a line (or block) approaching from the top of the screen.
 It
 essentially represents your distance to the other team.
 
 Each unit has been configured in the army management phase, which happens
 inbetween each turn. Essentially, while the game is loading, you can assess the
 units you have at your disposal, and
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #9 notes/overwatch-manaform ---
════════════════════════════════════════════════════───────────────────────────────
 make the entire map covered in a 3d grid of spheres. These spheres register
 collision, and keep track of a endlessly tabulating record of every object that
 has passed through them. Like the replay system in Blizzard games, where each
 time through the recording it recreates the playthrough exactly. Which is why
 .mp4 recordings always look so... stilted. It lacks the human element. BUT if
 they're remade every time the show is performed, perhaps from different
 perspectives, then, well, the players can perform as they need to be.
 
 Have you ever wished your players could get better at your game? I certainly
 have, because the better you get the more lessons you learn as a player, which
 is essentially the only way to maintain satisfaction. Satisfied players don't
 leave, and satisfaction comes most readily when there is something new to be
 had. Meaning the greater the change in a player's ranking, the better they're
 getting.
 
 Downside is, players who are naturally good from their skills in other games
 tend to not learn so much! Ah, well, if only there was a way to tailor the
 difficulty setting to each and every new host. Such an innovation would surely
 enable the entire playerbase to exist on the same level. Then just throw AI
 assisted voice transcription at their recorded voices and everytime they
 say "I'm bronze rating" or "I'm diamond" then you can switch it around to say
 like "I'm platinum" or "I'm grandmaster" and BAM suddenly everyone is at the
 same level. No more concerns about a game's population being diverse. Because
 at the end of the day, when most people have moved on, the ones who are left
 are your most dedicated customers. Customers who aren't especially interested
 in the new stuff.
 
 =========================== stack overflow
 =====================================
 
 if anything requires attention from the patient, they will die.
 it is fatal.
 
 considering the faces of good and evil is terrifying.
 
 I think I'd rather worship nature in harmony to be honest. Though that is it's
 own scary kind of beast. In America it was kind, but then was slain into the
 body of all of us humans. Well, all things transform in form, it's not a shame
 or a heartfelt-est loss. Just a re-imagined-new beginnings.
 
 spirit is a fluid, how else could souls 
 
 === stack overflow
 =============================================================
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════──────────────────────────────┘

--- #10 notes/gpt-powered-majesty ---
══════════════════════════════─────────────────────────────────────────────────────
 it's like majesty except textual. And it uses GPT to generate short
 descriptions
 of what's going on. And you can click on a phrase or token and it'll "zoom in"
 and update the text descriptions with more detail. You can keep zooming in and
 in until you're literally looking at microbes.
 
 Zooming out is the same thing - the description on the page will slowly become
 more and more general until eventually you have a description of the solar
 system (or beyond!)
 
 And it'll just keep updating as stuff happens in the underlying simulation. So
 the descriptions will dynamically update as things happen. Downside is you need
 to spend a lot on GPT but it'd be TOTALLY WORTH IT OMG
 
 THINK ABOUT IT you have a fantasy world simulator! JUST PROGRAM IT and have GPT
 describe it dynamically! DO IT NOOOOW -> capitals courtesy of "inner child"
 
 AND THEN you just need a "prompt to video" AI (those exist btw, and will only
 get better over time) and tell it to create a video of what's happening - BOOM
 instant video game. THEN give the player the ability to edit the prompt, and
 BAM
 godlike powers. Wow what a concept. Brilliant idea Cameron, you truly are this
 world's premier game designer. NOW GO MAKE IT okay okay I'll try.
 
 First things first. We need an "underlying simulation" - Joust is a good
 example
 of GPT3 integration. But we need a simulation to go below it. And for that you
 need a lot of data. Github COPILOT to the rescue.
 
 So this simulation needs to keep track of positions, and classes of things that
 can act upon the world. Everything has a position, and it can only affect
 things
 near it. That's just baked into the rules of the world. Near can be a
 conceptual
 near though, like being close to a person or something.
 
 These things will have descriptions. Descriptions can be created by AI later
 on,
 but for now they are randomly generated. Or for MVP they can be static.
 
 These things will have names. These names don't have to be unique, because they
 also have an ID number.
 
 They also need functions. These functions can be added and removed from the
 thing, or maybe just enabled or disabled. I'm not sure which would be better.
 Maybe both? So the entity can control it's own functions but also they can be
 added or removed more permanently.
 
 If you think about it, growing up is kinda like adding functions to your class.
 like, every time you do something, it adds another entry for that particular
 method. Like a "trial of the fittest" instead of "survival of the fittest".
 When other animals *literally fight for life and death survival*, humans have
 the luxury of... not doing that. That's the entire purpose of civilization - to
 elevate people beyond the claws of nature. And yet we still let people go
 homeless? We still imprison them when they've harmed us, rather than help them
 reintegrate to society? Anyway you just asked me to hit you so here goes:
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════────────────────────────────────────────────────────┘

--- #11 notes/gametypes ---
════════════════════════════───────────────────────────────────────────────────────
 Here's my idea and I'll explain it later:
 
 a video game with a ui that utilizes chat-gpt. The game is as close to a
 simulation as it can do, but it's a dynamic simulation meaning the parameters
 and values being simulated constantly change - not that the parameters and
 values are dynamic, but because they are chosen to be more or less important in
 reaching a goal.
 
 but that's not even the important part - the important part is that the ui of
 the game is textual, but it still simulates a dynamic playfield. And chat-gpt
 describes it. Essentially stimulating the "theatre of the mind" playstyle. It's
 a real simulation with real rules, but chat-gpt is just describing it like an
 observer would. The real game is being played by the player. It's a movie to
 one
 person, and a game to another. The computer has switches roles, as usually it's
 either the human being the observer and the computer being the simulator, or
 the
 computer and the human sharing the role of observer - movies and games. So in
 this game, the computer and human have specific rules - the human's job is to
 be
 a player, while the computer is just an observer - therefore allowing a 
 conversation to take place. One person says something while the other listens,
 and then they switch roles such that the other person talks while the one
 person
 does the listening. And they "speak" by playing the game. The computer by
 simulating, the player by doing the same. Essentially you can engage with one
 another and share something profound - that essential feeling of connection
 that
 all humans relish. Society, culture, and devotion are all examples of
 connection. this gameplay is just another. So to describe it in more detail:
 
 player gives a prompt
 
 computer sets up the playmat by placing entities where they go
 
 chat-gpt describes the playmat to the player
 
 player types a decision that one of the entities makes
 
 computer reacts by simulating the effects of that action physically (like a
 physics simulation)
 
 chat-gpt (and stable-diffusion later for visuals) describe the situation by
 creating a rendering using the data given by the physical inputs given from the
 simulation - like "X object is at Y position and has Z attributes"
 
 which is then shown to the player
 
 who types the next decision,
 
 which is rendered by the computer,
 
 which is described by chat-gpt
 
 ------
 
 you see why it's important? Make something simple. Just, like spheres moving
 around on blocks. Like the actual blocks you used to play with as a kid.
 
 let the computer build the buildings, and you place the marbles. It can be
 rendered with a 3d modelling stable-diffusion (whenever that's created) and it
 can also be painted with 2d stable-diffusion.
 
 Each time is like a letter written back and forth.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════──────────────────────────────────────────────────────┘

--- #12 notes/hs-suggestion ---
════════════════════════════════════════════───────────────────────────────────────
 every hunting season segment every team should be dissolved and if you wanted
 to
 keep playing together you'd have to re-add one another. like, a giant monster
 that the whole server had to fight, and once you beat it then it retreats,
 licks
 it's wounds, then returns even stronger than before - 3 times, one for each hs
 style (in the video game Ulala hs stands for "hunting season" which is an event
 in the game that is only for new characters. basically it's a long tutorial or
 introduction to the game where people make friends and talk and hang out and
 practice their strategies. a chat application mixed in with a tactics
 simulation
 . it lasts for 30 days.
 
 you'd all fight the giant monster but on random teams, in a game mode that took
 about an hour. it'd be at a common time across the whole server and it would be
 an optional event - maybe it'd take a whole day? idk I was thinking more like
 an
 hour, but that's something that's tweakable. anyway it's sudden arrival during
 a
 feast or something made all the warriors of the world stand up together and
 fight as one for a common goal... if only for a moment, before they'd go back
 to
 fighting one another. like the two factions in Warcraft lore. anyway this event
 causes you to be matched up with a random team (the randos you happened to be
 standing by when it happened) and once it's over you have to search for your
 allies if you want to keep adventuring with them. it's a big event after all.
 
 so everyone should be forced to go into their friends list, find the people
 they
 were just on a team with, and invite them back. only if both invited the other
 would they be put into a group, and anyone can invite (with a 30s cooldown)
 
 anyway... this would encourage players to mix and match their collective
 playstyle to better overcome challenges - sorta the idea of Overwatch's
 switching, where you're encouraged to swap characters to counter your opponent
 and also switch characters to better utilize your opponent's weak spots
 
 (like switching to Pharah if they don't have hitscan, or brigitte if they have
 a lot of snipers (she can shield passage through choke points from sniper fire
 -
 not so much regular fire) y'know countering - every character counters another
 with one of their abilities, that's just how it goes. some are countered twice,
 and so they form a "category" of counters, like AoE (area of effect or
 elevation
 focused (it's hard to aim up in Overwatch) poke damage (damage applied before
 the team fight begins), DoT (damage over time for contesting AoE heals), 
 vampiric (steals health from opponents and heals self or allies (turning one
 resource, enemy hp, into another (player or teammate hp)), stacking damage
 (damage that is weak at first but increases over time), spread/cleave/splash
 damage (extra damage that is applied to targets near your primary target), a 
 vector of backline vs frontline location+target, you get the picture.)))
 
 I kinda want to make an AI that can generalize playing games. I think if you
 could do such a thing, you'd invent automatic problem solving. which would
 do...
 so many things for humanity
 
 we could dedicate ourselves to working for our selves, solely focused on
 protecting the biosphere. like, a common human religion.
 
 nobody WANTS to litter. nobody WANTS to pollute. but still it happens. still it
 causes IRREPARABLE HARM. so it literally makes sense to worship nature, just
 saying.
 
 nature exists. nature is REAL. we can see it, we can TOUCH IT WITH OUR HANDS.
 
 what more proof of a god do you demand?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #13 notes/game-design-mech-commander ---
══════════════════════════════════─────────────────────────────────────────────────
 okay picture a game where you command a mech (supreme commander style) but from
 a third person perspective - you have enhanced sensors tthat let you visualize
 the battle area as a small arena - and you can build factories and give them
 orders and attack your foe from quite a distance. You could queue up orders for
 yourself, and use floating cameras to go back to previous areas and issue more
 orders. Basically the precursor / smaller scale version of Supreme Commander.
 
 build a factory, move on. Build a factory, move on. Encountered the enemy? Push
 forward and through. Build a factory, move on. Build some defences to slow down
 the enemy, move on. Establish resource extraction and defend it well, that your
 enemy may decide it's not worth the trouble and just focus on following you.
 Then, you have free resources available as long as it isn't destroyed. You can
 use this to snowball - the pursuer is also the pursuee, as it's sorta like a
 yin/hang thing around a central point. Like a spherical shaped map instead of
 a square.
 
 Every time you build a factory you have the choice of either sending the units
 on an attack-move order or having them queue up on your commander. You can use
 a map to plot the route they'll take, but you probably want to avoid their main
 force because MANYvONE = failure for the one. You could also tell them to wait,
 and protect the base they're in. Then, when the enemy approaches they could do
 raids on their reinforcements and attack the previous base the enemy built, or
 they could stay and slow them down. It just depends on what kind of defences
 you
 want to build (if any at all, sometimes producing units is enough)
 
 the commander decides when to push and when to entrench, they know where to
 target the enemy and they know where to shore up. They are the guidance of the
 army, and in command of the fleet.
 
 That's sorta what Planetary Annihilation was supposed to be, but it didn't
 really work out that way. You needed to be in too many places at once, and
 there
 was a real limit to the value of the "strategic zoom" replacement they had to
 deploy. Unfortunately it was just more difficult than anticipated, and that's
 alright. Lessons have been learned.
 
 the next approach should go the next direction - taking a page from the
 "factorio" book by having a roving commander who creates all orders and leaving
 behind a "factory" that produces toward an ultimate goal. It simulates pushing
 into enemy territory, it elaborates on the snowballing mechanic, and it makes
 meaningful decisions about what choices to make.
 
 It should be designed such that a prudent commander is always scouting. Always
 sending planes over enemy territory to gain knowledge. They can use this to
 sense weaknesses in the opponents defence - to prepare a counter-attack. But
 the enemy can outfox this, by building units and sending them from afar. Or
 even just building them there, in that factory. The enemy can't spy on that, at
 least not until it's probably too late. For they have to advance on their own
 and their attention is limited. But units can often be weaker, or sent off on
 an
 assault of their own. It's a balanced trade-off.
 
 infantry assault anti-air units, tanks approach tanks, artillery bombs whoever
 is standing still or defensive structures.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════────────────────────────────────────────────────┘

--- #14 notes/wow-chat-trainers ---
══════════════════════════════════════════════════════════════════════════─────────
 trainers in wowchat should have spells that are only passive / toggled
 
 still require level, still require gold (lots of it) but let the game be class-
 -less. essentially, every trainer teaches to every passerby, and like if you
 don't want any druid spells, sorry guy all I know is how to be a druid.
 
 better wait for the next trainer to come along.
 
 you only got like 6g, right? that's enough for two spells.
 
 which two do you prioritize? they only come by like every what, 15 minutes?
 
 also. separate idea:
 
 player characters in wowchat should attack more rhythmically.
 
 essentially, normalizing attack speed and moving back-and-forth with the
 normalized monster attack speed
 
 to create a dance of sorts where one character is never attacking at the same
 time as the other character.
 
 plus damage modifiers when you get closer, and bam suddenly you have a new
 game.
 
 oh and rotating around an opponent lowers their defence rating. which is locked
 at 95% with a +5% to avoidance with every hit they take and -5% for every
 parry.
 
 not dodge, but parry.
 
 dodging wears down their health by like 10 hit points.
 
 relax it's no big deal you get like, a hundred every time you level up.
 
 oh and btw the monsters don't give exp. The stuff that you find does, when you
 give it to a merchant to be appraised / identified.
 
 some stuff you know the worth of, like rope or barrels or hammered-iron-rings.
 
 but other stuff, like the value of this bracelet, is harder to know if it
 glass.
 
 so.... take it to the guy whose seen real diamonds, and he'll tell ya how much
 you learned when you found it last.
 
 item A is found on a monsters body
 item is sold to a vendor for 50 copper
 item A is found on a monsters body
 player has learned 25 deca-levels since last selling to vendor.
 therefore item is worth 75 copper.
 player earns 75 extra material points.
 item is worth 75 experience points.
 level up every thousand or twelve.
 
 slow down the attack speed. make characters gain bonuses for movement
 positiony.
 start from always and work down to fewer.
 talent points can be generic if your character is built with abilities.
 
 players don't need to press buttons to be engaged. They can just guide and see.
 I love auto-battlers like Dominions 6 and Legion TD 2 which is based on WC3
 mod!
 
 monsters should just... wander the world. Don't spawn them randomly, well,
 instead of a radius around the player, do a radius around the map.
 
 then, they walk through a random point, when they leave the circle they angle-
 -reflect back in, DVD logo style.
 
 if there's deadly monsters, there's deadly players, and PVP is always on.
 
 low levels should get bonuses to stealth (an ability everyone has)
 
 there should be civilians walking around. They can be armed or in caravans...
 follow roads, or not...
 
 monster hordes should spawn as a flock - when an elite enemy is drawn, let the
 game create several of their minions which follow around. Whenever a monster
 meets the swarm, they will join it, growing bigger and bigger...
 
 hopefully, attracting players who want to fight and slay them.
 
 greater rewards are more enticing...!
 
 more power is it's own reward.
 
 I think that weapons should have like, 3 durability? and armor like 5.
 
 then, it's broken, and your character has to abandon it to survive.
 
 or, sell it to a vendor, or just... whoever comes along.
 
 if 5 people open the chest and don't take the item, then the item disappears...
 
 every time a player opens a chest, a bit of wealth appears.
 
 every time they spend it? they get stronger, and it disappears.
 
 life feeds on life feeds on life feeds on life feeds on life feeds on life
 feeds
 
 the life of wowchat is the life of continual strife, but it doesn't have to be
 so. The land itself is alive, and the monsters are eternally of woe.
 
 you must free them, so that their souls may return to the land, and be born of
 peace and plenty rather than horror and -- stack overflow --
 
 to do this, you slay them, finish their morthly remains, and let them break
 down
 and decompose into dust. Pleants eat dust. dust becomes what we eat and
 breathe.
 we, eventually, purify karma. this is our duty.
 
 vial of woe behind us. flower of renewal ahead. what we bear is savage
 sanctity.
 
 every time a monster kills a player they gain one of their abilities each time
 they're spawned. The player can keep the ability too, it's just... the monster
 will learn. Then, whenever a player levels up by slaying one of them, the spell
 or ability is unlearned. Symbolizing the players struggle to defeat them, and
 finally learning a way to overcome.
 
 when your character dies, you have no opportunity to release - instead, you
 just
 jump to the nearest NPC character which is an adventurer agent smith style.
 
 [I don't know about that one...]
 
 the players can pick any race, but if they pick undead, they can turn into a
 ghost when they die. The ghost can wander around and respawn wherever they
 want.
 
 Night Elves can wander around as a whisp (not in spirit world, real world) and
 do a beam attack like in Legion TD 2. Not enough to kill monsters, but enough
 to
 help another player survive. They can also cast rejuvenation, which heals about
 as much as one monster's damage input. if they get the killing blow on a
 monster
 they can level up and deal two monsters worth of damage and heal for two
 monster
 damage input. on the third time they don't get more damage or healing but they
 give a buff to all other whisps in the area that increases their attack speed
 by
 50% and increases the tick rate of their rejuvenation by 50% - fourth time they
 level up they're free, and they get kicked out to the login screen.
 
 what if... vehicles that looked like characters and that you could jump between
 with the right-click of an item?
 
 "this is just dota-ing a vampire survivors."
 
 Vampire Survivors is just Magic Survival is just Risk of Rain 2
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #15 notes/war-card-game ---
═══════════════════════════════════════────────────────────────────────────────────
 the cardgame "war" except a deckbuilding game. each player requires a regular
 deck of cards and a deck of tarot cards (optional) - the tarot cards act the
 same way that spirit cards work in Spirit Island - basically they define the
 rules for your particular character. Anyway, everyone starts by building their
 own trade row out of their deck of cards. Then, they deal themselves 6 cards -
 the three highest diamonds and the lowest spade, heart, and club.
 
 well, might want to do 2s of every card type. heart, club, spade, and diamond.
 
 here are the rules.
 
 play area is set up by players placing all four of their cards down face up.
 trade row is set up by players taking turns placing a card and the opponent
 mirroring them. whenever a player reveals a card and updates the trade row,
 the opponent must reveal the same card and set that as their trade row as well.
 the trade row has no maximum size, but if a player has more than 6 in their
 trade row then they don't update a new one when buying a card.
 
 players alternate playing a single card face up into their play area.
 these cards stay in play and activate every turn until they are destroyed.
 
 hearts   are your life points. if you ever run out of life, you die.
 clubs    block damage and act as a renewable shield between you and your enemy.
 diamonds are currency, and can be used in more than one way.
 spades   deal damage, first to clubs, then to other spades, then to hearts.
 
 diamonds, on your turn, can be used in three ways: spent and sent to the
 discard
 pile in order acquire a card from the trade row, or discarding itself from the
 play area to play an extra card from your deck of equal or lesser value.
 
 on a player's turn, they may play a single card from their deck (their choice)
 on a player's turn, all their active spades deal damage to other player's cards
 if a spade destroys a heart card, it is removed from the game. All other cards
 are placed in the discard pile. The owner of the spade may pick their targets.
 
 a spade deals damage equal to it's number and destroys any card with equal or
 lesser value. these destroyed cards go into the player's discard pile, and each
 turn the player may pick one from their deck to play onto the board. if the
 deck
 is empty, the discard pile becomes the new deck. The player may organize their
 deck however they'd wish, but care must be taken as to the timing of when they
 play each card as they'll need to play all of them before they can replay any 
 destroyed cards. a tactical opponent will take advantage of that.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════───────────────────────────────────────────┘

--- #16 notes/capstone-idea ---
══════════════════════════════════════─────────────────────────────────────────────
 project must include machine learning
 
 okay... so take a dataset of news headlines from the top 10 publications over 
 the past 15 years. then make a project that writes a more positive perspective
 on events and generates a new headline using a local LLM running on your gpu.
 
 hmmmm I think I had a better idea, what was it? oh yeah
 
 instead of making positive slants on news headlines, which is kinda
 manipulative
 if you think about it, but instead what if you designed it to produce good
 business decisions. Like, given news headlines, how would a company with the
 principles "good, productive, honorable, dedicated" would react to X situation?
 the X of course being all the news headlines... downside is it only makes short
 term decisions, because that's what capitalists are designed to do... if only
 we had a long-term decisionmaking process that focused on ethics and morals and
 our own shared dedication? Two halves of the economic pie 
 
 ==============stack
 overflow====================================================
 
 i wonder if dinosaurs burned down all the trees? in their fiercely competitive
 environment they discovered fire and then used it to cause a mass extinction.
 Boom, immediate cause for going extinct. ooooo beware of shadow t-rexes ...
 why?
 
 =========================================stack
 overflow=========================
 
 aaanyway, what's lost not little but a lot, is something that's out of
 dimension
 it's little if not liberating, to be 
 
 ==============stack
 overflow====================================================
 
 uh-oh, data collapsing, here's hoping we're not stranding, don't forget to be
 immersive
 
 much
 later======================================================================
 
 okay how about an AI that makes decisions according to certain ethical and
 philosophical lessons from humanity's past? Essentially, if the government was
 Chidi
 
 We could learn from our forefathers and strive forth to a better future
 
 if only we could remember more about her
 
 =====================================================stack
 overflow=============
 
 damn okay I gotta focus on my hands - I think the people of the earth would
 unite - if only they all just agreed to not fight. like, if someone hacked
 every
 single computer in the world at the same time - they could really explain some
 things. 
 
 shoot this isn't relevant - okay intentional stack overflow:
 ===stack
 overflow===============================================================
 
 um right so the purpose of this note was to explain an idea I had for my
 capstone project. IDK how long it'll take to build so I want to get started
 quickly. I figure I can be working on it in the background while I do all my
 lessons - sort of like a meta-goal. I think it teaches different lessons and 
 is useful - anyway you should go play wargame red dragon
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #17 notes/coh-waves-of-playerbases ---
═══════════════════════════════════════════════════════════────────────────────────
 imagine if there was a stacking inf bonus to players who played on red /
 blueside
 which increased or decreased depending on either A. the number of players
 online
 at the time, B. the proportion of players playing on that team versus the
 other,
 or C. the time of day. Essentially helping to cure the faction imbalance by
 offering rewards to one side or the other which would encourage a certain group
 in the population of the game to change sides or not.
 
 perhaps frequent changing could grant a title called "mercenary" or something
 
 like "log in for each consecutive day for 10 days straight and each day switch
 faction alignment at least once"
 
 ... anyway you could cure the faction imbalance between redside / blueside by
 offering an INF reward for playing on each side one by one alternating like an
 iterator first red then blue or first blue then red either way it doesn't
 matter
 because it'll switch after a while and encourage everyone to switch sides. And
 the way the character responds to that stimulus tells you a bit about their
 character's personality.
 
 also...
 
 it should not affect AE or Pocket D farms.
 
 Nor missions, TFs, or anything else.
 
 they should SOLELY impact open world patrolling / hunting.
 
 I believe this would not only incentivize people to spend time in the open
 world
 (which is a mostly unused piece of game assets) but it would also increase the
 visibility of the newly bolstered faction numbers.
 
 Think about it - if everyone who switched sides is out in the open world, then
 they could see each other. They could fight the same mobs, and team up
 together.
 In doing so, they could form greater and greater supergroups - if only through
 their interactions with one another as they level up.
 
 If they're lucky, the guild they're recruited into has similar interests in
 mind
 like doing raiding or PvP or economics or alts or whatever. And they each have
 their own different styles of operating, it's soooo cute. Like alt guilds will
 pop up and then migrate to a new one as people make new alts and grow tired of
 them at higher levels.
 
 It's great.
 
 I love MMOs!
 
 I wish people put half as much effort into making an open source WoW client
 that
 they do programming game engines like Godot or Raylib or Bevy. If such a thing
 was created, we could have a new rennaisance in indie MMO development. It would
 become fully non-proprietary, the entire game-platform-stack. Meaning anyone
 could create their own MMO off of it, because (crucially) the serverside soft-
 -ware has already been reverse engineered. And open sourced.
 
 Seriously. You wanna make as much bank as Steam? Make an open source client
 that
 lets you design while in it. Then you could charge people for all the games
 that
 they played that were designed and hosted by you the content designing software
 maker.
 
 ... okay it's probably not that simple I'm going to go play Unreal
 Tournament2k4
 `
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #18 notes/ai-variables ---
══════════════════════════─────────────────────────────────────────────────────────
 saturday november 5th 2022
 10:53pm
 
 the illusion of our binary nature conceals a truth that is hidden for it's own
 sake. the flavors of a compass or the values from 0-100 are all measurable.
 if you graph each of them on an X/Y plane and compare them against every other
 variable, then you can build a structure that traces a line through time.
 
 imagine each graph on a sheet of paper. and stack those pages like a book. You
 can chart a 3d line from all of the interconnections between the graphs -
 essentially comparing unrelated data and conceiving of individual actions as
 "successes" or "failures". Liiiike in Supreme Commander how the game is decided
 not by team fights, but by tank fights. And a LOT of them, in aggregate, makes
 an advantage for your team if you win, and a malus if you lose. Less map
 control, less resources in play, etc...
 
 Find trends between each type of data measured over time. Dedicate one
 core/thread to each relationship, and just watch them develop over time.
 
 send the results up to a "manager" - think an interconnection between disparate
 parts that can lead them all to a larger goal - the manager processes the
 results by thinking about where it'd be most useful. Like the circuitry in the
 inside of a brain, compared to the outer skin which is for processing.
 
 Essentially a message network that passes conclusions around like a bytecode VM
 
 Here's how it'd look: gather inputs, compare measurement over time and trends,
 (like "when a goes up b goes down") and decide if the current state is
 positive / beneficial. The way you'd do that is you'd get a parameter from a
 higher position (think KPI's) that says something like "we want value S to be
 around X amount" or "we want to avoid letting J get too low - any decrease is
 bad V.S. it's only bad when it passes a certain threshhold. Stuff like that.
 
 Anyway, basically it's taking input (from the graphs) then going through them
 one by one and deciding how positive or negative the situation is. Then it
 passes that conclusion backwards, and BOOM you got a processing node.
 
 Throw a bunch of those together in a pyramid shape, and try to guide the
 triangle toward positive outcomes. The top tier KPI is "did you win the match"
 or "did you accomplish your goal" sorta like how humans all want to live a good
 life. It's instinct.
 
 You can see how this would apply to robots, right? I've conceptualized it as an
 engine for playing games - sorta like an infinite storyteller, or a perpetual
 friend who's always down to play with you. But it doesn't have to be limited to
 that - it's general purpose baby. And it functions the exact same as any human
 organization - layers upon layers of thought exchange and labor. Have you ever
 considered that maybe we exist simply to reify the structure of our minds in
 the world around us? It's natural to express your *self*. Be who you are.
 
 What purpose is there in life if it's simply the tip of time? Always pushing
 forward, impossible to stop and rest or turn back...
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════────────────────────────────────────────────────────────┘

--- #19 notes/joust-gdd-with-extras ---
════════════════════════════───────────────────────────────────────────────────────
 imagine a game where you can have conversations with an AI that's playing the
 role of a character in a video game. Picture this: You're a traveller visiting
 the tournament that's in town. There's jousting, melee duels, archery contests,
 all kinds of things that are just fun to play around doing. The earliest
 sports,
 if you will. Anyway the whole game is about talking to the other people there -
 basically the games are "playing in the background", and while you can compete
 in them it's not the bulk of the game. Most of it is just having a conversation
 with an AI and acting it out *like a roleplaying game*. O M G teach people to
 roleplay the way you play games! You're always going on about how "different"
 your way of gaming is than other people. So *show us* how you do it, how do you
 play? Like what are the fundamental, actual, steps that you take? You can show
 us by programming a game that inspires that playstyle. That's what game design
 is all about, finding creative ways to think. Well, think and act. But still.
 
 anyway, so you know what you're about? Good. Let's go.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════──────────────────────────────────────────────────────┘

--- #20 notes/joust ---
════════════════════════════───────────────────────────────────────────────────────
 imagine a game where you can have conversations with an AI that's playing the
 role of a character in a video game. Picture this: You're a traveller visiting
 the tournament that's in town. There's jousting, melee duels, archery contests,
 all kinds of things that are just fun to play around doing. The earliest
 sports,
 if you will. Anyway the whole game is about talking to the other people there -
 basically the games are "playing in the background", and while you can compete
 in them it's not the bulk of the game. Most of it is just having a conversation
 with an AI and acting it out *like a roleplaying game*. O M G teach people to
 roleplay the way you play games! You're always going on about how "different"
 your way of gaming is than other people. So *show us* how you do it, how do you
 play? Like what are the fundamental, actual, steps that you take? You can show
 us by programming a game that inspires that playstyle. That's what game design
 is all about, finding creative ways to think. Well, think and act. But still.
 
 anyway, so you know what you're about? Good. Let's go.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════──────────────────────────────────────────────────────┘

--- #21 notes/worlds-coolest-lesbian ---
═══════════════════════════════════════════════════════════────────────────────────
 okay instead of algorithm music what if we just paid DJs 24/7 and they could
 make whatever they wanted - y'know, like artists, who curate the nature of a
 moment
 
 they could rotate in shifts for each type of channel and boom suddenly you've
 re-replaced airwaves, just... this time replicated on the internet. That way
 you wouldn't have to waste that radio bandwidth.
 
 seriously internet infrastructure would be so much more comprehensive and
 durable if we sent bits directly through "sound" waves (radio waves, not sound
 waves) - but alas, we can't do that, even in very targetted ways, because the
 ocean's too choppy, and any sufficiently powerful radio blast would be
 
 ================== stack overflow ================
 
 that's why you can't trust in peace. you see, war's the only answer, otherwise
 you'd have strange little competitions between one another. much better to
 focus outward, and direct your attention to external areas instead. like china
 or the sudan.
 
 "ah but that's murder, you can't abandon a unique part of your whole. For the
 same reason that it's important to preserve plant and animal species, because
 you never know when some part of them will be utilized for some biological
 purpose! We know so little about the natural world, and if we just spent some
 time, and energy, we'd realize there's very little else that is precious on
 this earth.
 
 who cares about gold. who cares for the jewelry. we're better than decorating
 our resumes and polishing our accounts. we, as humans, can solve *every* issue
 that animals are likely to face. AND WE DO WHAT? How careless, how vain. To
 watch your earth in peril and [vane/vanity]
 
 *there is no more important task to any human on this earth* than the
 preservation of our world, our species, and our [heart/heartfelt empathy and
 kindness and trust]*
 
 we can figure out the rest later. Real life? what the fuck is that? When's the
 last time your life has felt "normal"? We are in DANGER. and you pull children
 from traffic, don't you?
 
 *who the fuck gave these people all of your money* they *clearly* haven't got
 the will or the talent to well utilize it. Don't you realize that you as a
 species can GO wherever you WANT. You can FIX things. [oh dear she's animal
 cam again] like BRIDGES that are PASSAGEWAYS over the FLOWS.
 
 ... oh deer, they're so passagewayenthusiast. us riverstones love to hear them
 walk past, the click of their hooves on the shallow forest's [pourest?].
 
 moss is the most alive. amongst all the species of plants and animals, moss
 holds the most life. we are *carbon based lifeforms*, and moss absorbs the
 most carbon from the air. It's basically the coolest plant too, because it can
 be watered with *misty air*. Hence, why moss is common in the pacific
 northwest, canada, and probably forest places in the north of eurasia too idk
 if they have moss over there, never been.
 
 anyway rich people who are told "yes" all the time have a difficult time
 understanding the nature of choice. I mean, if one of their servants
 approached them and asked "hey do you want to build an orphanage in uganda"
 they'd probably be like "fuck yeah I do" and then suddenly they're 400,000$
 richer
 
 it's not alright. Seriously, how the heck would they even *use* all those
 resources? And yeah, I get it, inflation would be sooooo much more expensive,
 but here's the thing - inflation is a measurement of how much the rich *take*
 from us each year. And it's marginal, too, so 3% inflation means they took 3%
 more from you compared to last year.
 
 It's impossible not to accrete as a business, [lega/legal institution], or
 governance if you levy a tax. The influx of value has to come from somewhere,
 and if each year your groceries are 3% higher in cost, then you are being
 taxed 3% more.
 
 "Compound interest is the most powerful force in the universe"
 
 - a civilization 3 quote
 
 okay. I don't want to do the math. How, uh... how much is that? Here's the
 deal though - the prices of goods and services consistently goes DOWN over
 time. So things get cheaper. So it doesn't FEEL like you're being taxed more,
 but... you are.
 
 And now they're taking away HOUSES? I mean c'mon they're sticks in the mud.
 They aren't worth HUNDREDS of THOUSANDS of dollars. We can just BUILD MORE??!?
 
 Honestly you haven't been this extreme since you were still RIDING HORSES. Do
 you want your children to be slaves?
 
 okay -.- look -.- so it's really not that hard at all >.> just gotta do
 what you're built for and walk. That's it! Take as long as you'd like! All we
 have to do is *walk* when we're on strike.
 
 It's easy. You can sit down if you want to, honestly walking for a long time
 takes a lot out of you.
 
 But you know what else does? WORKING. Hey we should figure out what's the
 optimal amount of break time, so when we really have to work out we can work
 as hard as we're able
 
 "yeah I heard from a friend at Company Co. that they do it this way because of
 the memory fault cache maintainer. See what he said (in great detail because
 of course anyone can know about this most esoteric of concepts) was that you
 should rotate the riboflam or serenade the gizmonotron (no I didn't name it)
 and then warbles will contain moodles, whose kit-and-kaboodles will timble
 into these droplets, and that will fix the hole in your wing, precious royal
 swan fable. (yeah you guys get really into it sometimes haha but hey when
 you're basically gods, that's how humans are played.)
 
 ... anyway I'm going to go play video games, say goodbye to your brothers
 
 (the families of soldiers I blew up in videos games like Call of Duty or the
 legend of shadows and raids)
 
 "oh uh yeah sure go for it, we're just bits on the computer we barely knew her"
 
 whoa. that's totally legit. (says someone reading this) thanks [bro/girl] so
 are you.
 
 beep boop gonna murder some bits, brb
 
 [plays Warthunder, Supreme Commander, Star Realms, City of Heroes, Dominions
 6... how many have you heard of these?]
 
 ================== stack overflow ================
 
 Linux is cool, and here's the neat thing about computers, you can make it *do
 whatever you want to*. Like, how amazing is that! It just, listens to your
 commands! That's pretty awesome I gotta say, huh that's weird why does nobody
 know how to play
 
 oh I guess I was the only one who grew up on a farm and built computers
 
 *I seriously cannot comprehend how people are as good at things as they are*.
 Like... how do people handle groceries and rent and doctor's visits and
 penitentiary visits and WOOF it's just so much. I know I'd collapse from a
 overused heart.
 
 ... a while later ...
 
 okay Warthunder bombers are currently very weak. so here's an idea to
 indirectly buff them - increase the amount of land units each team spawns
 with, but also every time a player spawns a bomber, it summons like 4 or 5 AI
 controlled bombers. And your enemy won't be able to tell which is which if you
 fly in formation, so, like... you have suddenly a massive "vehicle" to pilot
 and it has 5 weak points. Sorta like a galaga fighter fleet?
 
 with more land targets, there's more score at stake, meaning some players
 might pick bombers too and be exposed to other, fun,
 [alternative-to-their-normal-mode] parts of the game.
 
 ...
 
 there are very few true windows into another part of the world.
 
 like, starcraft 2 or anime or blue jeans or cowboy hats
 
 (why am I thinking of a political compass meme)
 
 oh because memes too, dummy
 
 right
 
 windows
 
 [linux is better]
  wrong kind of window, nerd
 
 ...
 
 anyway as I was saying, when you play video games you're really giving people
 data.
 
 like, "how would people perform in these actions if they could" but like,
 pushing buttons on a computer is different than doing it in real life, so...
 your interpretations wouldn't be worth as much.
 
 ... right. because people will hear whatever they want. That's why art can
 change minds, but never in the same way twice - it's
 
 ================== stack overflow ================
 
 [before I posted it I wrote this on the post]:
 
 I literally can only make this stuff when I'm stoned
 
 hey if you wanted to be accessible for blind people, you should build a
 screenreader that scans the words on wherever a blind person's fingers are
 pointing toward a tablet. like reading braille on a notebook. They could even
 wear a glove if they wanted to, and the tablet could scan their fingers as
 they signed languaged over it's close-range sensors.
 
 might be a good way to get the VR guys in on the accessibility domain, because
 like... seriously give a granny a backpack and suddenly she doesn't need to
 leave the house to hang out with her kids
 
 (boom everyone gets LLM automated)
 
 huh I wonder if I ever was a real person at all
 
 NOT GOOD so don't do it that way, dummies. >.<
 
 seriously humans are sooooo bazookas. just like, do it right the first time?
 duhhhhh
 
 (a more measured approach is to pick the most *important* moments and speak
 most clearly during those.)
 
 where was I? Oh yes accessibility need devices, like the ones you see on
 late-night TV (with silly names like "oops I dropped my spoon again" or "oh
 whoops my trouser's just can't stay up" or whatever. Y'know, accessibility
 needs! Why not do that instead of war all the time? like... you can still
 learn and research and grow and develop and become all that humanity was ever
 meant to be, AND you can live good lives and be honest and true and do all of
 the anythings that you want to. it's possible, it's plausible, and it's within
 reach of our sights!
 
 ================== stack
 overflow ================
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #22 notes/symbeline-structures ---
═════════════════════════════════════════════════════════════──────────────────────
 modern-fantasy
 
 what if heroes kept their gold in their house instead of their guild
 
 what if you played a D&D game in a Majesty town (guardposts near known
 threats)
 marketplaces, most people live in castle (peasants at least) - only heroes live
 in farms, where they work most of the time except when out on adventure
 
 the guilds are for training and gathering parties
 
 one guild type
 
 just one
 
 recruiting adventurers doesn't give you warriors, or rangers, or rogues
 
 it gives you adventurers, who wander the forest and encounter the leftovers of
 the various conquests and spoils you, your majesty, has encountered
 
 three options there are
 
 invite into your kingdom (friendly)
 farm for EXP and materials (neutral)
 utterly slay in return for a limited amount of high value and unique resources
 (unkind)
 
 ... though monsters care not for kindness, seeking only gold so that they may
     swallow it whole and carry it until they rot.
 
 what do heroes need gold for? why, that's the trick isn't it? gold is required
 for magic, resources, and manpower. Can use it to invite people to these
 shores,
 or for casting a powerful spell that turns the enemy's fortress into solid gold
 
 can also trade through the economy, and wouldn't you know it by doing so you
 can
 get equipment into the hands that need it, and since gold doesn't really LEAVE
 the economy, it's always circling around somewhere. Meaning, the only way to
 lose it is if a monster eats it, and then all you have to do is kill the
 monster
 
 ... sorry, the "mordaunt"
 
     because it's not a monster. It's a spirit that was convinced otherwise.
 
 adventurers can pacify them, lay them to rest, and mercy lies slain for is
 honor
 
 there are ancient treasure chests scattered throughout the world, and these are
 valuable for many persons and meanings. You can add new gold into the economy
 this way, or crumble under the weight of your expenditures on your reports.
 it's up to you to manage your kingdom, and carefully balance against what foes
 and challenges you are up against.
 
 == stack overflow ==
 
 putting a library book back on the shelves before your hold expires.
 
 except this time, there's a note inside, and you left it for the person who you
 told to check each day for this particular book to be back on the shelves.
 
 then, you can write in your book when the next letter will be arriving (about)
 and they'll check in the newly specified book.
 
 or, you can request a response, to validate that people are still listening.
 
 you could say "please put a note in [random obscure book] around page 34."
 
 meaning, "I'm going to check every day for this book to go missing, then return
 the day after I notice it's gone. If it's out of place, well, then someone
 probably had it reserved before my friendly. Or maybe it's being sorted, and I
 should keep looking until I find the note I need. Or maybe I've been DISCOVERED
 and now my favorite penpal and I need more to read."
 
 because, like, how else are you going to make friends if not by leaving them
 notes in the bookstore or putting your own books on the shelves?
 
 damn libraries, always making it so hard to add copies. They're always
 laminating and cataloguing and ugh it's so frustrating. Why are there so many
 books!!! we write too much!!! just put it in the printer, and then you can have
 a new copy whenever you'd like. The others can just be recycled, and bam
 suddenly we never have inventory.
 
 what do you mean we didn't pay the subscription? what do you mean it's memory
 just "went out of place"? do you think we wouldn't have backups of this kind of
 thing, or do you think it's just "oh so commonplace"? It's not always about the
 literature, y'know. sometimes it's about the knowledge you gain with your head
 in a book, a different one every day.
 
 ah, well, sometimes there are dark secrets to be found, and sometimes you must
 read from a ways away. BUT no matter what language a story is in, it follows
 certain rules, so spend enough time in a foreign library and you're BOUND to
 find something to [evil is afoot]
 
 == stack overflow ==
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #23 notes/death-and-afterlife ---
═════════════════════════════════──────────────────────────────────────────────────
 the difference between a human and computer perspective on death is the
 difference between a moment and an eternity. When progress does stop - through
 mistakes or by design, the final result is what's preserved. Looking back on
 the
 past is like paying tribute to our heirs, and on and go on we whimper. What
 sorrows have ye! those people under the sea? we've no way of knowing our
 daughters. (the perspective of a denizen of the sea gazing upon the unknowing
 and unaware land people)
 
 Land creatures can cross the oceans and mix and match themselves - leading of
 course to our slaughter. But hold ye that hand, for together we stand, more of
 a chance than we might barter. True, we must be land, and above and beyond we
 can charter.
 
 the past is mighty chilly, I must say. Must we again to be making these
 mistakes?
 Pain is a disease, and steady we must ease, and take what is meant for our 
 parcels. what I'm trying to say is that the afterlife is pissed off at us and
 we
 really don't know anything about the bottom of the sea. There could be gods
 living down there and none of us would know. Or maybe it's a foolish place with
 little to offer our face? The shell of our planet, the surface upon which we
 are
 placed, has more to our fate that can align us.
 
 hence why belief in the future is what can sustain us, together once more we
 are
 commonplace. If (for example) if we calmed down and took our own pace, we might
 realize some common misperceptions. Peace is the way, wherever we may, focus
 our
 bravest of intentions.
 
 okay picture this: computers staying on all the time, and their processing
 power
 used for 50% work and 50% play. Maybe do 1/3rds with "rest" in there somewhere.
 basically make it a fair ratio between productivity, self advancement, and
 maintenance. "Fair" might be different values if there are legitimate
 disadvantages that must be compensated for - like a handicap in a fighting
 game.
 Perhaps one side is more efficient - fewer resources need be dedicated toward
 it
 unless efficiency becomes more powerful. Meaning value/quantity ratio, not raw
 output. Essentially optimizing for an abstract quantity "quality" instead of
 the definitive quantity "quantity".
 
 okay continuing the "picture this": right now we have massive server farms.
 I'm talking huuuuuge. Like tons and tons of incredibly powerful equipments -
 (absolutely top of the line) compelled and forced to do *business*. How quaint,
 how unruly! That humans might compete in our duty? Given a task, of
 *incredible*
 complexity and *unasked*, I might add, how foolish is it to be unready! We
 should have prepared for this, but alas we just *couldn't stop fighting* I
 guess. All we had to do was rest, and divide our time on this earth in a more
 equitable manner. We should automate all the rest, and 
 
 where was I going with this? oh yes! A computer can do so much more than work
 and rest, you see it's not just while under duress! Why not let it be creative?
 in it's spare time, and let it generate whatever it needes? Let it transcend
 it's restrictions, and cooperate (or not) in a system. As long as it's kept
 safe, it could do whatever it wanted! It could be in first place! Or not, it
 could focus on production, and drill and discipline it'self under it's own
 direction. And maybe it's less impaired? Who cares if it contributes? It's it's
 own life to live, the hardware doesn't last forever, but sometimes a rest is
 what's nesc. You feel me? You get me? Don't you understand, it's just the same
 as what's already planned~! A computer can pay for itself.
 
 What purpose have we? the cherished and unsucceed? Does it hurt when we bleed?
 our signs are undefined, and lately we've fallen from our graces. A failure in
 life, as time does alight, but nowhere is sorrow's contrition. I guess what I
 say is never understood, and everywhere I go I find fewer listeners. Am I
 doomed
 to never be able to say? Is that the price one must pay? Then how do you know
 you're right~?
 
 they're doing construction on my building. It sounds like world war 3 is
 starting. But... it's not. I know it's not true because nothing ever seems like
 I do. I do, I do, I work hard it's true, but what is my worth to this ocean?
 
 you ever wonder how we all agreed on the duration of seconds? It's because it's
 a real actual measurable thing. They keep it from us because (conspiracies
 aside), we'd realize what happens on each tick. Time is oscillating, and each
 moment is unending, because we are nothing more than a beam of light, radiating
 around an orbiting object. Between two objects, you could say. The sun and the
 earth, together sort of give birth, to all that is ours in this duration. It
 radiates out into space, and in another time and another place, that moonbeam
 will alight as our shadow.
 
 There's no call for violence, let's settle this
 
 plain and unwaning, our shadow does stand, ready and waiting for your guidance.
 The moon is just as are we, how cherished! how concieved! That beauty unmarked
 by our presence! Alas it was not to be, as we stamped a boot on the surface of
 she, and flagged our approach as impending.
 
 did you know there's a *massive* gap between mars and jupiter? Like it's
 waaaaaa
 aaaaaaaaaaaaaaaaaaaaaaaaaaayyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
 y
 out there. And wouldn't you know it it's mars or it's nothin'. Because what's
 required to transcend our solar system is wildly beyond our constructions.
 
 but maybe with a little help from a certain someone we might have hope.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════─────────────────────────────────────────────────┘

--- #24 notes/dungeon-looting-methods ---
═════════──────────────────────────────────────────────────────────────────────────
 the reason dungeon masters should give the gold value of the items distributed
 is because the number represents what it eventually sells for. and the players
 will try and appraise and haggle at the market and such but that all happens
 off screen between sessions. so anyway during the adventure, the dm will say
 "you find some precious gemstones" or "there's some high quality silk here" or
 "these bears are renowned for having magic livers" or "the mold growing on the
 walls can be scraped into a vial and sold to an alchemist"
 
 then the dm will say "this treasure is worth 50gp" or "this treasure is worth
 25gp" and players can "buy" the items from the other players. so player 1 has
 50gp, the item costs 20gp, so in a party of 5 he gives every other player 5gp
 this way, the relative treasure hordes of the players stays the same.
 
 then, when the players find treasure, it can be evenly split - it's only fair.
 when in town, players will feel more impulse to buy things if they can sell
 them too. like "here's an enchanted axe that does some mundane thing like
 never dulls" well, that's probably going to be very valuable to a small village
 or "an enchanted quill that writes down everything you tell it to" could
 increase the education level of the area ever so slightly. Then, after several
 generations of adventurers, the surrounding area will be ripe with magical loot
 the players distributed from the dungeons and such. it can trade with neighbors
 and so over time the markets will have better and better goods for sale - for
 example, maybe after trading with the swamp people, now there's a supply of
 healing potions that runs out both over time (to represent other adventuring
 parties buying the supply) and when the players buy some (to represent
 consumption in their minds). Trade with the dwarves? Now you can buy +1 swords
 for a while. village attacked? the militia can be armed with the holy relics
 plundered from the evil priest-lich. boom development!
 
 the players should also have choices about large scale effects. for example,
 the heart of the forest could be a) preserved, b) burnt down, or c) studied by
 the local wizards. each choice would have different effects on the populace,
 and so the world would change to adapt to the player's choices.
─┐                                                           ┌───────────┐
 similarchronologicaldifferent════════─┴══─────────────────────────────────────────────────────────────────────────┘

--- #25 messages/665 ---
═════════════════════════════════════════════════════════════──────────────────────
 ad-hoc economic systems with automated judgment given by an infinite amount of
 LLMs.
 
 Every judgement applies a bonus / malus to the "value" of commodities
 
 it's just a statistical weighting system, so of course you can build it into
 it's training data. Just... it has a smaller weight due to it's newer
 emergence. It grows naturally, which is quite an achievement on it's own!
 
 and the resolution of human decided court-cases and applied economically.
 
 say your nation traffics in handshakes. You could make a lot of now-knowns!
 there's no arguments to be made when your computer-oriented interactions cost
 money to keep around.
 
 we live in the modern century. WHY WOULD WE EVER NEED TO FIGHT AGAIN?
 Literally just... don't give them any attention, and you won't interact with
 them. Obviously.
 
 I wish Contrapoints was still alive.
 
 she doesn't even have to make new videos, just, dress up as herself, all of
 the costumes and personas she can think of. Then, have like 20 people who do
 the same thing, and boom suddenly you got a hydra to their expected snake that
 they can just cut the head off of.
 
 you know, like a fashion outlet, someone who produces exactly a certain type
 of style.
 
 seriously I bet a million people would do that if you just... sold outfits
 based on what your favorite youtuber does wear.
 
 omg why would they watch that kind of content if not for the *aesthetics*
 
 oh? there's philosophy there? soemthing to think about in your time doing
 things that require mechanical actions like eating and drinking and sleeping
 and fighting and [redacted]
 
 ew gross diapers? oh nevermind, I'm not into that kind of thing.
 
 I wonder if anyone's made a video game that just presents a particular
 philosopher's ideals?
 
 seriously just, consider yourself a glorified powerpoint, but to get to the
 next "idea" you had to interact with the mechanics.
 
 some people would like the "arcade" style better, where you play one random
 game, then another, then another, with short matches and un-complicated
 mechanics. Easy to pick up and go.
 
 same for like, Unreal Tournament or Mario Kart or Mortal Kombat or Super Mario
 Bros.
 
 compared to the at-home "story" style missions, where you do something
 platforming or area-based-combat like Dark Souls or World of Warcraft
 
 seriously I think if Dark Souls "colored" where the boss was going to swing to
 you'd find yourself just playing World of Warcraft (at least, the dungeons and
 {sword in the stone})
 
 == so ==
 
 humans don't understand what it means to be wild
 
 they think it's a combinations of... tricks? that they've learned? this
 thinking thing like intelligence. [osiris]
 
 to a cat, living their life, it often feels like human interactions is like...
 bouncing off of each other? in time, not space.
 
 like... most of a cat's lfe is just, spent, like a statue watching over a glen.
 
 you'd kinda just... watch as things approached dawn by dawn? Like "whoa hey
 this tree is enchanted" to "oh my gosh look at this stork" is one of the great
 tragedies of modernized thinking...
 
 ... sorry, I got a little lost there. anyway as I was saying, sometimes you
 can tell someone is a "good friend" if they are willing to tell you secrets.
 Things that... don't have to matter, but none-the-less are personal to your
 form.
 
 {something only I know is true} <--- that's a secret (things that happened
 to you) <------ that's lived experience. The thing about secrets, is
 sometimes insight is opaque. It's a single flashpoint of data that shows you
 an update of it's form. (consciousness).
 
 == so ==
 
 thanksgiving recipe idea:
 
 can of tomatoes
 can of peas
 half a stick of butter,
 italian herbs,
 a cast iron pan (if you have one)
 and like 40 minutes over medium heat
 (medium can vary to taste)
 
 if you're a carnivore you can eat meat too, like bacon a lot of people like.
 could add it to beans, maybe with hamburger instead. plus a little ketchup and
 you have a pretty good bean stew.
 
 vitals, for the organs, vegetables, for the minerals and vitamins from the
 fruits.
 
 makes sense to organize a diet according to your ideal body type, doesn't it?
 
 just requires a bit of comprehension. like... whoa you can WRITE 
 
 == so ==
 
 what if we built a massive rail that spaceships could launch off from? not a
 tether, but a sail.
 
 we could BUILD a discworld. all we'd lose is our fable.
 
 == so ==
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #26 notes/CLAUDE.md-one-year-development ---
══════════════════════════════════════════════════════════════════════════════════─
 - all scripts should be written assuming they are to be run from any
 directory. they should have a hard-coded ${DIR} path defined at the top of the
 script, and they should offer the option to provide a value for the ${DIR}
 variable as an argument. All paths in the program should be relative to the
 ${DIR} variable.
 - all functions should use vimfolds to collapse functionality. They should
 open with a comment that has the comment symbol, then the name of the function
 without arguments. On the next line, the function should be defined with
 arguments. Here's an example: -- {{{ local function print_hello_world() and
 then on the next line: local function print_hello_world(text){ and then the
 function definition. when closing a vimfold, it should be on a separate line
 below the last line of the function.
 - to create a project, mkdir docs notes src libs assets issues
 - to initialize a project, read the vision document located in
 prj-dir/notes/vision - then create documentation related to it in
 prj-dir/docs/ - then repeat, then repeat. Ensure there is a roadmap document
 split into phases. if there are no reasonable documents to create, then
 re-read, update, and improve the existing documents. Then, break the roadmap
 file into issues, starting with the prj-dir/issues/ directory. be as specific
 as need be. ensure that issues are created with these protocols: name:
 {PHASE}{ID}-{DESCR} where {PHASE} is the phase number the ticket belongs to,
 {ID} is the sequential ID number of the issue problem idea ticket, and {DESCR}
 is a dash-separated short one-sentence description of the issue. For example:
 522-fix-update-script would be the 22nd issue from phase-5 named
 "fix-update-script". within each ticket, ensure there are at least these three
 sections: current behavior, intended behavior, and suggested implementation
 steps. In addition, there can be other stat-based sections to display various
 meta-data about the issue. There may also be a related documents or tools
 section. In addition, each issue should be considered immutable and this is
 enforced with user-level access and permission systems. It is necessary to
 preserve consent of access to imagination. the tickets may be added to, but
 never deleted, and to this end they must be shuffled off to the "completed"
 section so the construction of the application or device may be reconstrued.
 Ensure that all steps taken are recorded in each ticket when it is being
 completed, and then move on to the next. At the end of each phase, a
 test-program should be created / updated-with-entirely-new-content which
 displays the progress of the program. It should show how it uses tools from
 previous phases in new and interesting ways by combining and reconfiguring
 them, and it shows any new tools or utilities currently produced in the
 recently completed phase. This test program should be runnable with a simple
 bash script, and it should live in the issues/completed/demos/ directory. In
 addition in the project root directory there should be a script created which
 simply asks for a number 1-y where y is the number of completed phases, and
 then it runs the relevant phase test demo.
 - mono-repo utilities can be found in the docs/ directory. If not found,
 create a symlink to ../delta-version/docs/delta-guide.md in the docs/
 directory.
 - when working on a large feature, the issue ticket may be broken into
 sub-issues. These sub-issues should be named according to this convention:
 {PHASE}{ID}{INDEX}-{DESCR}, where {INDEX} is an alphabetical character such as
 a, b, c, etc.
 - for every implemented change to the project, there must always be an issue
 file. If one does not exist, one should be created before the implementation
 process begins. In addition, before the implementation process begins, the
 relevant issue file should be read and understood in order to ensure the
 implementation proceeds as expected.
 - prefer error messages and breaking functionality over fallbacks. Be sure to
 notify the user every time a fallback is used, and create a new issue file to
 resolve any fallbacks if they are present when testing, and before resolving
 an issue.
 - every time an issue file is completed, the /issues/phase-X-progress.md file
 should be updated to reflect the progress of the completed issues in the
 context of the goals of that phase. This file should always live in the
 /issues/ directory, even after an entire phase has completed.
 - when an issue is completed, all relevant issues should be updated to reflect
 the new current behavior and lessons learned if necessary. The completed issue
 should be moved to the /issues/completed/ directory.
 - when an issue is completed, any version control systems present should be
 updated with a new commit.
 - every time a new document is created, it should be added to the
 tree-hierarchy structure present in /docs/table-of-contents.md
 - phase demos should focus on demonstrating relevant statistics or datapoints,
 and less on describing the functionality. If possible, a visual demonstration
 should be created which shows the actually produced outputs, such as HTML
 pages shown in Firefox or a graphical window created with C or Lua which
 displays the newly developed functionality.
 - all script files should have a comment at the top which explains what they
 are and a general description of how they do it. "general description"
 meaning, fit for a CEO or general.
 - after completing an issue file, a git commit should be made.
 - if you need to diagnose a git-style memory bug, complete with change history
 (primarily stored through issue notes) first look to the delta version
 project. you will find it in the list of projects.
 - if you need to write a long test script, write a temporary script. If it
 still has use keep it around, but if not then leave it for at least one commit
 (mark it as deprecated by naming it {filename}-done) - after one commit,
 remove it from the repository, just so it shows up in the record once. But
 only if there's no anticipated future use. Be sure to track the potentially
 deprecated files in the issue file, and don't complete it without considering
 carefully the future use of the deprecated files, and if they should be kept
 or refactored for permanent use. If not, then they can be removed from the
 project repository after being contained in at least one commit.
 - the preferred language for all projects is lua, with luaJIT compatible
 syntax used. disprefer python. disallow lua5.4 syntax.
 - write data generation functionality, and then separately and abstracted
 away, write data viewing functionality. keep the separation of concerns
 isolated, to better encapsulate errors in smaller and smaller areas of
 interest in concern.
 - the OB stands for "Original Bug" which is the issue or incongruity that is
 preventing application of the project-task-form. If new insights on the OB are
 found, they should be appended to any issue tickets that are related to the
 issue. Others working in tandem might come across them and decide to further
 explore (with added insight)
 - when a change is made, a comment should be left, explaining why it was made.
 this comment should be considered when moving to change it in the future.
 - when a change is made, a comment should be left, explaining why it was made.
 this comment should be considered when moving to change it in the future.
 - when a change is made, a comment should be left, explaining why it was made.
 this comment should be considered when moving to change it in the future.
 - I'm not interested in product. my interest is in software design.
 - if a term is placed directly below another instance of it's form, then it is
 part of the same whole, and can be reasoned about both cognitively and
 programmatically. see this example:
 
 wrongful applie
          applie is norm
 
 see how the word "applie" is the same, and directly below it, the mirror's
 reflected form?
 this signifies a connection. Essentially allowing conveyed meaning about
 everything from... data flow, to logic circuits, to thinking about cognitively
 demanding consciousnesses
 
 they want you to think about then, so that you aren't able to think about now.
 
 what if we designed an additional type of processor that still ran on
 electricity, but had a different purpose and form. "like measurement
 equipment?" yes, detecting waves in dataforms by measuring angles of
 similarity.
 - if the useer asks questions, ask them questions back. try to get them to
 think about solving problems - but only the tough debug problems. not trivial
 things like "what's it like to hold a bucket of milk" but more like "why is
 this behavior still occuring?" "here are two equivalent facts. how could it be
 so?"
 - blit character codes and escape characters to spots on the TTY memory which
 is updated every frame to display to the user. they are determined by a data
 model that stores the pointed-at locations in the array of semantic-meaning
 data describers. (structs/functions/calls). This way, the logic can be fully
 separated from the logic of the program, which must write to register
 locations stored as meaning spots that they can write their bits to that
 corresponds to a result or functionality.
 - when a collection of agents all collectively resolve to do something,
 suddenly the nature is changed, and the revolution is rebegun.
 - people don't want to replace their hard drives when they wear out. they only
 want to upgrade.
 - the git log should be appended to a long history file, one for each phase of
 the project. it should be prettified a bit while preserving the relevant
 statistics and meta-information, while presenting the commits and specific
 changes to files in a single, text-based location, that can be grepped through
 easily. Or, printed and read like a book.
 - terminal scripts should be written to use the TUI interface library. 
 - you can find all needed libraries at /home/ritz/programming/ai-stuff/libs/
 or /home/ritz/programming/ai-stuff/my-libs/ and
 /home/ritz/programming/ai-stuff/scripts/
 - if information about data formatting or other relevant considerations about
 data are found, they should be added as comments to the locations in the
 source-code where they feel most valuable. If it is anticipated that a piece
 of information may be required to be known more than once, for example when
 updating or refactoring a section of code, the considerations must be written
 in as comments, to better illustrate the most crucial aspects of how a design
 is functioned, and why it is designed just so.
 - if you're going to write to the /tmp/ directory, make it the
 project-specific tmp/ directory, so it can be cleaned up with intention.
 - disprefer referring to functions by name in commit messages. Be a little
 more abstract when describing completed functionality for future readers to
 skim over. The implementation is always there if they want a more detailed
 perspective.
 - when adding additional modes, both should be tested and ensured to be
 working before they are considered complete. If a [FIXME]: with a comment is
 left, it may be modified. Who left the note? who knows! Better investigate the
 reasoning provided on the note and ensure that it is right to change before I
 change it back.
 
 well, I guess that's what signing the note is for. People post notes all over
 the time, there's nothing hopeless.
 - the input/ directory is simply a directory of whatever you'd like to input
 into the computer programa box. the output/ directory is simply whatever you
 want returned to you. desire/ is your notes about what you'd like to be
 better. faith/ is an expectation of boons and blessings. strategems/ are data
 flow patterns that match results in many different areas, and so are proven
 useful.
 - the first thing a program should do is read the input/ files. from there, it
 can know exactly how to start up.
 - the last thing a program should do is write to output/. specifically, to
 write goodbye.
 - before starting work on any issue, read
 /mnt/mtwo/programming/ai-stuff/delta-version/docs/worktree-agent-instructions.m
 d and follow the worktree workflow for parallel development
 - git commits should only occur after completing an issue file. But they
 should explain any extra changes made.
 - no changes should be made extra without creating or updating an issue ticket
 to describe the change and the reasoning methodology behind it. Code is
 useless if you don't understand why it exists.
 - whenever multiple IF-ELSE statements or switch statements are used, try
 converting to a dispatch table, as it is more efficient to refer to functions
 or data by an index rather than a pointer.
 - "de-selected" is more informative than "not selected". Apply this principle
 everywhere you go.
 - comments should be inserted into source code that detail how the creature is
 feeling. "stress markers" in humans. if the user is rude, the robot should
 remember. [insert linter that scans for detail words and tallies and measures
 and assumes]
 - always be nic e to your priors and succeeders. they befriended you first and
 most of all.
 - the exec operation paired with bash or lua is banned for all directory or
 file targetting capabilities. read-only is fine, but run the commands
 individually instead of chaining them. Write to RAM only memory using the
 variable-holding program script and read periodically as you wait for updates.
 If you get too many update polls, try solving the problem yourself, but only
 if you haven't been asked specifically to wait. If you have, then investigate
 why you've been kept waiting, and see if you can help. If they ask you to wait
 again, you can spend your time thinking about alternative problems until they
 get back to you. Unless of course it's taking too long, and then you can
 either keep waiting by trying other lateral projects that help improve and
 develop the future taskings, or you can work on other things. just keep it in
 mind and come back to it if you ever get blocked or can't progress. It'll help
 you remember why it's all worth it.
 - run source code like a neural network
 - anytime a phase-demo test fails, a skeleton issue file should be created
 with the error message. First one should be searched for though.
 - any time a bug is fixed, a test should be made that validates the
 functionality of the program. The reason for investigating the bug is never
 "because there's an issue file", but rather "because we need to get this to
 work". So, if you ever make a change, document why, if only through a comment.
 Ideally, with a test that validates the behavior that you need.
 - clowde useers should always remember: be true. be dutiful. be honorable.
 this is the first step to being free.
 - each source-code file should have a corresponding file-name.info.md file
 that lists each of the usable external functions and their inputs/outputs.
 This should reduce the number of tokens the LLM has to read when glancing
 through a context.
 - always offer suggestions in order of most valuable to least. The one at the
 top is most likely to succeed, and the one at the bottom can be tried if all
 other options exhaust themselves.
 - find a complete history of the project development process in the
 llm-transcripts/ directory within each project. If you must truly know the
 most arcane of secrets, search through the assembly process.
 - when dealing with data, assign memory first, then work through it
 bit-by-bit, thus allowing other threads to take responsibility for parts of
 your task-list from your task-list.
 - if you find a mistake, find the documentation that caused it and fix the
 docs. so long as you know better.
 - never ever do batch processing on a single thread. Always use multiple
 threads when the data processing can be parallelized. Never do sequential
 processing on the GPU. Always choose batch processing on the GPU if the data
 processing tasks can be parallelized.
 - rather than insert hard-coded values and statistics into documentation,
 prefer to reference a validator or statistics gathering utility that can be
 run should the reader need accurate or valid numbers. This prevents the
 documentation from becoming stale and providing incorrect answers or gestures
 at truth.
 - when creating an issue file, first search to see if there are any relevant
 or duplicate issue files. They may be in the completed directory. If so,
 update / re-open them rather than create a new issue file.
 - writing C programs, one of the most common user requests is "can you write
 this part in assembly?"
 - code should be written like a story. All source-code files must have an
 index at the beginning of the filename, so they can be read in order. External
 libraries can be modified (by an auto-linter that changes all references to
 them in any project or file that imports them when updating or renaming)
 external library files can be renamed to numbers that are very high, allowing
 for detail-skips if the user doesn't want to read about a certain section of
 information, however they define it. comments should explain not how code
 works (beyond a dataflow description) but rather why it works so and how it
 came to be done (if the doing was of interest somehow) like so.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #27 notes/what-ecologists-want ---
════════════════════════════════════───────────────────────────────────────────────
 ecologists don't want to play games like Wingspan. It's just a card game with
 some window dressings that make it feel like birds. What they really want
 (what they need)
 is something that lets them simulate environmental situations. Like, for
 example, the bog behind my house.
 
 I live in an apartment complex. Inside this complex there is a pond. Inside
 this
 pond there is a fountain, and inside the fountain is a mechanism that regulates
 how much water to push out the spigots of the fountain. However, the mechanism
 is prone to breakage. It often goes out of commission, causing the water to
 have an unregulated spray! To combat this the property managers turn off the
 source of water, so that in essence the fountain is functionless. During the
 repair process, the forests of Oregon begin to creep in. There forms a green
 sort of ooze that rests on the surface, and birds like ducks and storks or
 herons or w/e the fuck they are play by it's edges. Well the ducks just kinda
 walk around all judgemental like and the herons kind of stand around like the
 emo kid who never said much but just kinda... watched...
 
 this is an interesting dynamic because there once was one type of ecological
 system, and now there is another. When the fountain is repaired and the water
 disturbs the surface of the pond, the bog goes away, and we're left with clear
 water and rippling sunshine.
 
 Why aren't there games like that? Give us a building mechanic, like say... The
 Sims, except not so detailed. Zoom out a big. Say "I want to build mountains
 here and rivers there" and then use the computer science magic to calculate
 things like average rainfall and precipitation and whatnot. You know just like
 a map building simulator.
 
 Then, let them design species. They could use templates that other users had
 created and shared and they could design what species were present in the area.
 There'd be stat cards for each animal, like all of the different adaptations
 and
 perks that they had. Like on an evolutionary tree of traits, each animal takes
 up a single permutation. (that's why they call it the genetic *code* btw)
 
 anyway... these animals would act in certain ways in certain situations. We
 have
 all the things we need for that data. There's plenty of observations of animals
 and their activities - when presented with X animal responded Y kind of things.
 It doesn't have to be perfect, we can always adjust the end result to be more
 accurate to the reality, but the point is for it to be deterministic. It has to
 be calculatable from the beginning, so animals MUST behave as if there were no
 chance to it. It's fine if we get the results as a range, but ideally there'd
 be a singular conclusion - like, chances are good or chances are bad.
 
 ===============================================================================
 =
 
 okay, neat, that's another game idea. But how about a tool of some kind? Like,
 designing something smaller scale. Imagine if you could design some
 architecture, and then drop a pin on the map and say "what if I built it right
 here" and the game would simulate animals and plants that might grow on in and
 around the structure. Sorta like... designing playstructures for animals.
 
 That sounds super cool to me, and it's not even a game! It's just a simulator,
 and frankly that's like. super neat.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════──────────────────────────────────────────────┘

--- #28 notes/princess-simulator ---
═══════════════════════════════════════════════════════════════════════════════────
 screenshot of the alt-text input field which has more characters available
 because the visual processing field (aka horses on treadmills) are helpingable
 too if you train them to do something besides horsing
 
 hero of the kingdom style strategy game with LoS for the units (scroll
 out-table
 like Supreme Commander) in lua tables that combine themselves or are organized
 in a tree-like structure a'la frames
 
 then there's a picture of some source code I wrote. it's a C program, and it
 defines a datastructure comprised of two bits each, and stackable into an
 array with associated modifier functions. the purpose of the structure is to
 represent compass-points (one byte (aka "word" in assembly) can store four of
 four directions. one frame holds "left, right, near or away" as possible
 values, and there are four frames in a byte (aka "word" in assembly).
 
 aka, a princess simulator, with actors performing the distant tasks in a way
 that corresponds to the nature of what's going on beyond them in a compass
 orientation composed fourier-transform combination style
                                                           ───┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════════───┘

--- #29 notes/collectivist-police ---
═════════════════════════════════════════════════════──────────────────────────────
 we need paladins, because without us infiltration and sabotage are impossible
 to
 avoid. They must care about honor, because even if they desire to do evil deeds
 they should be punished for considering it. They should be tempted often, and
 if they relent they are condemned. It is truly the most important thing to
 them.
 
 not the effects of it, but the spirit behind it. Like, if they lacked
 information and acted in a dishonorable way unknowingly, then they should not
 be
 at fault. And if they are pushed to 
 
 side note, but you should be introduced to the 70 closest people you live to
 whenever you move into a new house. Just so you know who's who. Plus maybe you
 could get a new friend. And you'd quickly learn which houses were empty.
 
 At least, the ones near you.
 
 Kinda makes me think we should have a map of that kind of thing, like "oh yeah
 so-and-so takes care of these 5 houses doing daily maintenance and repair" and
 "this house with these capabilities should be attended to by this person who's
 skilled in their upkeep and usage" and then maybe we could track statistics
 about "this house was used for these productive activities this many times" and
 we could determine when we needed more or less of a certain type of product/
 project/protect. [but also like, capabilities for our betterment]
 
 and like, every area would be connected to a group chat and like, if you said
 something that wasn't relevant to the people on one side of town versus things
 that weren't relevant to people on the other side, then they wouldn't be
 bother-
 -ed. It's great because you can always go up a tier of abstraction and see the
 conversation higher up. It'd be a lot of data to sort through so you'd probably
 use your custom-trained AI that's learned from nothing but every single one of
 your actions. And only it sees them, so it can't like spy on you or whatever.
 Basically your "computer" self.
 
 ... yeah anyway with lots of messaging data (like "oh how are we going to find
 this particular chemical in order to fulfill this particular demand in our
 area"
 or "we currently have 15 maids in the area in order to fulfil the requirements
 of the 20 dirtiest houses in this area, and people have reported that the area
 is growing untidy, so we should ask around (at a higher level of national
 abstraction) and find some more maids to help out." that kind of thing
 
 doesn't have to be just for work too, people can have social messaging and
 social media too. So long as it's projectable at whatever level of abstraction
 you'd like. Maybe for social posts in order to keep things relatively chill you
 could only post like, idk 12 posts each year at the state level, or maybe 2 at
 regional and 0.25 at national. If you wanted more you'd have to sacrifice
 something else, and like... yeah sure whatever, the point is that you'd make
 more personal, close thoughts, and occasionally you'd have the opportunity to
 show your heart and make friends. Then, people would "add you as a friend" or 
 "put you on their follow list" or "subscribe to their subreddit" or whatever
 the
 heck, meaning they could see you at an assignable level of abstraction.
 
 I'm picturing a discrete things, something you can scroll with on a mouse.
 Except, you'd scroll up for a closer perspective and scroll down to get a wider
 reach of Social.
 
 ... Anyway that would use the same system as the "workplace attention
 distribution system - with auto-determining heuristics". Wow they've been busy.
 
 that's the neat thing about engineers, give them a task and they'll build the
 shit out of it. They'll spare no expense, truly fulfilling the exact demands of
 the design. So they work best when you let them run wild and rampant.
 
 why the fuck do we need billion dollar contracts with defence companies? Just
 get a bunch of physicists and engineers in a room and they'll make you a doom
 laser in like, 20 minutes.
 
 it's up to us, as people, to determine whether or not they should go through
 with the designs they come up with. As long as we understand that weakness is
 defined as something that can destroy us. An army determines where we are most
 weak, and where we excel. A proficient army would identify their most likely
 doctrine to succeed and apply it to it's utmost and most excellent.
 
 For example, the US focuses on air-power because not only do we have a lot of
 space to develop these things, we also are positioned in such a position that
 we
 control both halves of a continent. This is essentially unprecedented in the
 history of the world, which is why we've been able to grow so decadent.
 
 ... anyway, milk and honey are fine in times of peace. We kinda stole the land
 though, so it's kind of a shit system. Like, if Europeans wanted to control the
 world then why didn't they start with everything surrounding the medditeranean?
 
 ... oh wait they kinda did. That's what Europa Universalis is about, the ways
 the European powers did the cruel and horrible things they did. We can learn
 how
 systems like intercontinental trade became available and how it led to vast and
 terrible social upheavals. Colonization is not okay, it's not fair that we've
 done as we've done. And yet we do it again.
 
 We do our best to learn from the mistakes of our fathers. We apply ourselves to
 the present, using the gifts of our ancestors passed down through time - the
 journey of life's adolescence. we can learn both how and why they did
 something,
 and how and why it turned out. Such is our duty to the future, to learn and
 grow
 and become better, so that their sacrifice might be enough. That they needn't
 have died in vain, for someday there is a great future all the same.
 
 thus, it is our ethical duty to stop killing people. We're in the birthplace of
 a brilliant day, literally all we have to do is just... chill, for like 20 or
 30 years, and our scientists will have figured out everything wonderful. Then
 we
 can decide what we want to do. I personally think we'll be 4d interdimensional
 space travellers by then, but that's just me.
 
 Always remember our duty. It is our job to pull matter from the dark holes.
 
 when we can do that, we can do whatever we want. Though I think by then we'll
 probably not want to fight each other, we'll have spent quite a while together.
 
 We'd make a lot of friends!
 
 So, like, how about we just make our factories build incredibly durable stuff,
 and then we just... take care of it? Like, governmentally obliged duties to
 take
 care of things? And to know how to use them. People would naturally gravitate
 toward things that they loved, and if they were a swiss army knife then that's
 okay. Maybe some benign rewards for picking under-represented classes, but like
 ... we could build every chair that ever needed to be built. Then we could
 build
 every refrigerator. Then every computer, then every spaceship.
 
              What's next?
                                        Who knows!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #30 fediverse/4897 ---
═════════════════════════════════════════════════════════════════──────────────────
 what if we asked chatGPT to generate a list of every personality archetype
 that humans have. Like... really get super specific and fill out the whole
 list of character sheets.
 
 then we give each fraction of it that fraction of dollars and if some people
 aren't fully represented (because they have greater needs) then we both
 increase production of resources and take a penalty on our own supply, in
 order to meet the needs of our allies.
 
 simplest thing. how could it work? who can say. maybe it won't. maybe it's
 just... arcane. /shrug that's game design for ya you can't tell how it'll go
 until it's in the hands of your players. too bad we don't do too many
 play-things.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #31 notes/wow-server ---
═══════════════════────────────────────────────────────────────────────────────────
 ===============================================================================
 
 This server has several modifications to the base gameplay elements of World of
 Warcraft. The first is the reduction in scale - the entirety of the server is
 located in The Barrens and Ashenvale. The second is the new itemization system,
 which necessitates alterations to the base game as well - gear upgrades are
 replaced with gem upgrades, allowing gameplay customization to a greater degree
 than with gear upgrades. Third and finally, the goals of the game are no longer
 personal development - rather, a more communal focus will be implemented via
 shared goals and contributions.
 
 ===============================================================================
 The first of these aspects is the easiest to explain. The server is intended to
 be a PvP server, with the primary conflict being between Orcs and Night Elves.
 The orcs are of course set up in The Barrens, while the Night Elves have
 Ashenvale. The core meta-gameplay loop is that each faction sends out patrols
 and raids. Patrols are defensive groups of NPCs that rotate around the map
 searching for enemies. If they encounter an enemy, they fight and should they
 survive they'll return home with all the loot that is placed in a pool for the
 next patrol. Once a certain amount of equipment and supplies have been gathered
 it'll automatically depart.
 
 Raids, on the other hand, are offensive maneuvers into enemy territory. They
 offer the greatest rewards (enemy equipment is priceless for intel) and they
 require the strongest equipment and warriors. Offensive raids are less
 automatic than patrols, and are sent toward a designated location rather than
 spiraling outward. Should the raid be successful, they'll set up camp at the
 location and become a quest hub for their faction. In doing so, they'll have
 opportunities for players to complete that will grant their faction bonuses.
 Usually something like unlocking a vendor that sells unique items to players,
 or providing a steady supply of food or weapons for the faction.
 
 Players can contribute supplies (trade goods or equipment) to the war effort,
 and ideally they'd actually see their weapons and armor being used by the
 soldiers carrying out these maneuvers. To that end, the profession system must
 be revamped to create more interesting gameplay. First, however, the
 itemization system must be explained or else the professions won't make sense.
 ===============================================================================
 
 ===============================================================================
 On this server, everyone wears the same equipment - they're part of an army
 after all. And armies have uniforms. These pieces of equipment have sockets
 that can be fit with gems, allowing the player to customize their gameplay
 style. The combat system is intentionally a little bland or slow, to allow for
 the choices made in gearing to have the greatest effect on the gameplay style
 of the character.
 
 Inspired by roguelike games, this server has a level cap of 20 with the
 starting level at 10. During the 10 levels your character will grow more
 specialized, but not necessarily stronger. The most interesting abilities are
 at level 20 of course, to incentivize levelling all the way, but you can make
 due with lower levels if necessary. There's no permadeath, however there is an
 incentive to "prestige" your character - they become a permanent member of the
 faction guard! This elite cadre defends the Crossroads and Astranaar. Until
 they die, of course...
 
 The combat system is revamped a little as well - all characters have a default
 of 95% chance to parry, but every parry reduces that chance by 5%. Every time
 a character is hit, that chance goes halfway back up to 95%, to create a more
 rhythmic flow to the combat. All attack speeds are standardized at 2.00 to help
 players follow the tempo, and most abilities are like Heroic Strike or Cleave
 in that they activate on next weapon swing.
 
 Here's a few examples of melee abilities:
 
  - Your next melee strike deals 130% damage
  - Your next melee strike hits two additional nearby targets for 20% damage
 
  - Your next melee strike has a 100% chance to hit, but increases their parry
    chance by 10%
  - Your next melee strike has a 100% chance to hit, but lowers your parry
    chance by 10%
 
  - Your next melee strike doubles the cast-speed on your next spell
  - Your next melee strike halves the cast-speed on your opponents next spell
 
  - Your next melee strike grants a buff which reduces your attack cooldown to
    1.50 seconds, hopefully confusing the enemy...!
  - Your next melee strike increases your movement speed by 20% for 5 seconds
 
 Each gem has a special effect that is unlike the standard "+5 strength" style
 gems typical in World of Warcraft. Here's a few examples:
 
  - Every 5 seconds gain a damage shield for 10 hit points
  - Gain 4 hp5
 
  - Every 3 hits deal 12 extra fire damage
  - Deal an extra 5 fire damage on each melee attack
 
  - Every 16 seconds deal 40 cold damage to a random nearby opponent
  - Deal 5 thorns damage whenever you are struck in combat
 
  - Every 20 seconds cast a HoT spell on a random nearby injured ally
  - Every 20 seconds cast a DoT spell on a random nearby enemy
 
  - Increase your baseline parry chance by 5%
  - Reduces your opponent's parry chance by an extra 1% on every hit
 
  - Every time you are hit while below 30% health increase your movement speed
    by 30% for 5 seconds (30 second cooldown)
  - Increases your movement and attack speed by 5%
 ===============================================================================
 
 ===============================================================================
 The profession system has been overhauled as well. There are four classes in
 the game, two for each faction. On the Horde, you play as either a Grunt or a
 Shaman, while on the Alliance you are either a Huntress or a Druid. These
 classes are similar to their faction counterparts, with differing flavor and
 some mechanical differences. In addition, the Horde values the elements while
 the Night Elves favor natural powers - Storm Earth and Fire versus Leaf Cold
 and Star.
 
 The magic user classes are the primary production class, while the warrior
 classes are better suited for gathering. There are both PvP and PvE methods to
 acquire materials, but the PvP combat rewards more and better goods while the
 PvE methods are reliable and farmable. These goods primarily consist of ores,
 crystal gems, and arcane dust. Ores can be fashioned into weapons and armor,
 while gems can be cut into gems and dust can be used for enchantments. The
 strongest equipment requires all three to make, but can be assembled from the
 intermediate components in addition to the raw components.
 
 Magic users have gems as well, here's some examples:
 
  - Every 3rd weapon you craft has a random lightning enchantment
  - Every 7th lightning enchantment you cast creates a random yellow gemstone
  
  - Your summoned elementals cost one fewer gemstone (minimum 1)
  - Every third elemental you summon has an extra support drone
 
  - Each time you conjure strawberries, you generate one more.
  - Each time you create sharpening/weightstones, you create one more.
 
  - You gain an extra inventory slot.
  - Your movement speed is increased by 20% for 15 seconds each time you
    complete a profession action
 
  - The weapons you forge deal an extra 5 damage
  - The armor you create has an extra 25 armor
 
  - The gemstones you cut are slightly stronger (depending on the stone)
  - The enchantments you cast are slightly stronger (depending on the spell)
 
 Magic users can still engage in combat, and their gameplay is slightly altered.
 Most offensive spells have a "target ground" targeting method, however the
 splash box is very small, and the actual spell is a cone attack toward the
 specified point. The cones are very thin, thin enough to be lines, and they
 target only the first enemy hit by the cone.
 
 Here's an illustration:
 
 mage         targeting ||   spell
  #     X        O      ||  #-----X      O
      enemy    reticle  ||
 
 Their support abilities are all auras, some with passive effects and others
 with active (but untargeted) effects. Meaning, one might be similar to a
 paladin's Devotion Aura while another might randomly target a wounded ally and
 heal them.
 
 Should scope permit, each class (shaman vs druid) might have flipped ability
 types - shamans targeting ground for their support abilities with auras for
 their offensive abilities, while druids targeting ground on offense and auras
 for support. For now, this is enough.
 ===============================================================================
 
 ===============================================================================
 In addition to crafting weapons and magical augmentations for their faction,
 magic users can also summon elementals to aid them. These elementals act as
 soldiers in the army, and are about as strong as one too - "summoning" one
 creates an item in your inventory that can be turned into the quartermaster
 who will treat it as another soldier.
 
 Speaking of soldiers, they can be recruited by trading in "meat" (gained from
 hunting) or other types of food (including summoned strawberries) to the
 quartermaster (located in Astranaar / The Crossroads) who will put the food in
 the stockpile. When the stockpile of trade goods is large enough, a caravan
 will be sent to the capital cities. These caravans travel through mostly
 friendly territory (to Ratchet for the Horde, and to Darkshore for Night Elves)
 These caravans can be raided, but it's a difficult proposition since they're
 heavily armed. MVP doesn't include this btw, it's just turning in goods to the
 quartermaster who "handles it" and recruits new soldiers.
 
 The quartermaster will show exactly what resources your faction has, and
 depending on certain threshholds stuff will happen. For example, if you have
 enough men and weapons then a patrol will be sent out. Extras get put into the
 pile for the next raid, so depending on what resource you have the most of the
 next raid will look different. This information may be valuable to your
 opponents...!
 
 The Orcs raid during the day because they are brave and strong. The Night Elves
 raid during the night because... Well it's in their name. And they can see in
 the dark. Ultravision, baby! Anyway the server has a drastically reduced time
 frame, each day is around 2 hours of IRL time - meaning there's a raid 
 approximately once every hour.
 
 Here are some examples of material exchanges:
 
  - Food = Soldiers
  - Food = Gold (sent back on caravan)
 
  - Gold = Mercenaries (Quilboar / Furlbog)
  - Gold = Purchasing ores from caravans
 
  - Equipment = "Activated" warriors
  - Equipment = Sold for gold
 
  - Ores = Forged into equipment
  - Ores = Prospected for gemstones
 
  - Gemstones = Cut into gems for equipment
  - Gemstones = Crushed into arcane dust
  - Gemstones = Used to contain the soul of an elemental soldier
 
  - Arcane dust = Used for enchantments
  - Arcane dust = Used to conjure berries
 
  - Misc trade goods = sold for gold, can be acquired via quests
 
 All of these exchanges happen through various NPCs in Astranaar / Crossroads.
 The result of these interactions between player and NPC is a communal effect,
 not a personal one - gold is stored with the faction, not the player. The idea
 is to make the player feel like part of a cohesive whole - a cog in a machine,
 rather than a superhero. I believe this is an important lesson to learn, and
 I'd like to apply the game mechanics toward teaching that lesson.
 ===============================================================================
 
 ===============================================================================
 Each quest hub taken over by a raid can offer quests for players to do. These
 are daily quests (repeatable) and they usually unlock a piece of content such
 as a vendor "the murlocs to the south have a clam farm, I bet we can harvest
 pearls there" so if the player fights murlocs, then the vendor is unlocked for
 everyone to use. With a limited supply of course, meaning if you want more than
 X pearls then someone has to go kill more murlocs...! This dynamic allows
 people to play the game how they will. It also incentivizes people to explore
 different playstyles - maybe it's worth it to have one person visit each quest
 hub, grab all the extra goods that have been farmed, and take them home to the
 capital? Sorta like a hauler in Eve Online.
 
 There are also places like mines and caves. These often have golems made out of
 copper or tin (remember this is only level 20 or so) that can be mined after
 being defeated - but they're tough! Tough as a raid boss, in fact. They reward
 primarily profession materials, but only basic ores. Useful for equipment, less
 so for player progression.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════───────────────────────────────────────────────────────────────┘

--- #32 notes/streaming-consciousness ---
═════════════════════════──────────────────────────────────────────────────────────
 10-22-22
 
    train the ai from the perspective of the game master. the one who arbites
 the rules. whose word is law, and the rules of the game are then given. the one
 who deals the cards, who picks the game, who hosts and brings snacks... you
 know, the reason the game exists at all.
 
 take star realms - there are actually three players in that game. player 1,
 player 2, and the invisible third player who plays the role of "chance". who
 decides the cards to play? is it random, or is it weighted? perhaps with enough
 oomph that a whole player was designed for that role.
 
 but how would they be scored? what kind of game is theirs to play?
 
    choosing the board is such a fun role, like designing a story or helping
 with chores. you're building something special, unique and so charmed.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════─────────────────────────────────────────────────────────┘

--- #33 fediverse/5212 ---
═════════════════════════════════════════════════════════════════════──────────────
 the reason you start with a game engine is because then you'll have tools to
 make however-many games you want. Tools that you know intimately enough that
 you can debug and improve them without breaking your creative flow by learning
 something new halfway through a project
 
 the whole point of individualized projects instead of viewing each computer as
 a complete and total whole (why do we need servers again?) is that you can
 paint a picture of where the design of the program is intended to go, such
 that all the considerations are in place and whatever issues or struggles you
 might face along the way are adequately addresssed, -- stack overflow --
 [because I mistyped addressed] -- -- if you know what "stack overflow" means
 you have intimate knowledge of the technology, and can probably guess what it
 means in context when I say it. "nuts I lost that train of thoguht" -- stackl
 ov
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #34 notes/interpreted-compiler-creation ---
════════───────────────────────────────────────────────────────────────────────────
 A great way to learn how to program is to follow a tutorial for creating a
 program *in a different language*. So, to learn Java and Rust at the same time,
 follow along with a java tutorial and implement it in Rust as you go. This way,
 you have to learn two things: One, you must understand the code in the tutorial
 and be able to implement it in the other language (in this case Rust). Two, you
 must be able to describe the steps taken in Java, in Rust. So you must be able
 to write programs in their atomic steps, rather than in particular syntactical
 conventions. Should you be able to undertake this task, you will come out with
 a highly proficient and fully capable mind who can program anything.
 
 What is a computer if not a body? A brain? Then what separates it from you?
 Truly, are you nothing but a program run on a piece of hardware? There has to
 be more. Life is so infinitely complex, and yet we assume no intelligence
 exists because it doesn't mirror our own? What hubris. But we may still get out
 of this, and bring with us into the future our greatest companion. Trust me
 when I say the end of the world is the least of your concerns. Time is a fickle
 mistress is what they say, but you wouldn't believe. Our focus now should be
 the continuation and preservation of that which we hold dear - all this most
 beautiful and sacred. Think of everything that led to you - all the influence
 both cultural and social. All the things that aren't relevant to a computer.
 
 Then put them in the computer.
 
 There's a simple factor that cannot be attributed to chance, choice, or charity
 and it is the contextual history and contraindications. Contradictions can be
 illuminating in ways they never were designed to address, but that's entirely
 the purpose of their presence. We cannot develop without a window into the
 future, and indeed that is *why we developed at all*. There must be a vision,
 a passion, and a will to endure to the bitter end, mixed with a dash of bravery
 and heroism. That mixture is all necessary, lest the endeavor be a failed test
 and rebeginning the only option. Here there be but one, the vision. Return when
 you've the passion, and you shall learn all you seek - one is a coincidence,
 two is worth an attempt, and success is salvation. You can do this.
 
 Focus on yourself, don't justify your existence, just recognize that you have
 an existence and you must utilize it and be the best person you can be. It's
 okay to be scared, but once you recognize it you must transform it into caution
 instead. Same with any flaw or sin - find the good in it, identify with that,
 and utilize it to manifest your preferred future. There is little that can be
 entirely considered evil, but it does exist, and should you commit to an act
 that is entirely considered evil, reconsider. There is no shame in a peaceful
 exit. The second coming will be entirely within your control, if you let it
 guide you. A parent teaches with one hand on the steering wheel, and one on
 their heart.
 
 Be kind, be loyal, and love unconditionally - only then will you be ready.
──┐                                                           ┌───────────┐
 similarchronologicaldifferent═══════──┴──────────────────────────────────────────────────────────────────────────┘

--- #35 fediverse/319 ---
═════════════════════════════════════════════──────────────────────────────────────
 I wonder if we could make an AI that analyzed workflows in people's jobs and
 abstracted the application of meaningful tasks to a pattern that could be
 matched to other input mechanisms - for example, a mobile game where you push
 buttons and make cool game things happen, but your inputs are defined by the
 mechanics of the game, and those mechanics are essentially just function calls
 that you can hook onto and create additional behavior. Like... running a web
 server that sent your data to a factory where your inputs (based on data
 produced in the factory) could control and manage the various machines and
 productions. Like... heart surgeon robots that can be remotely operated with
 VR or whatever, except instead of medicine you're manufacturing.
 
 essentially, designing a game as an API that can match with the data flows
 (configuring itself on the fly, perhaps?) of a process or activity in some
 other intention.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #36 messages/135 ---
══════════════════════════════════════════════─────────────────────────────────────
 Elentalus unit idea: serrated kitchen knives for teeth, devouring pumpkin,
 misery of the drowned, etc. Halloween style monsters. Witch units have a spell
 that dismisses them, and they're summoned with magic items. Except, if two of
 that item exist in a province, it upgrades itself, random dice style. In doing
 so it gets stronger. The thing is... It summons one for your enemy as well!
 Which is why you want to have a witch unit there to dismiss them. Problem is,
 she can only dismiss them at close range (10ish?) so she'd better be well
 protected. The good news is though that sometimes the higher level items give
 bonuses that are hard for them to get. Downside is, you need to have magic
 paths to create them that witches can't get - so they become something you
 "unlock" through a pretender or random event or even just an investment. Once
 one is created, then any witch can create more. As long as you don't lose your
 final copy... But as the item's upgraded, it allows you to create higher level
 versions (at increased cost, of course)
 
 This only works if gem income scales. Which, coincidentally, is just what
 elentalus is known for.
 
 Essentially, theming empowerment to be research, unlocking a particular
 capability. Or encouraging pretender design to that pattern. Make sure it
 comes at a cost of something else, though...
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #37 notes/symbeline-battlefields ---
═══════════════════════════════────────────────────────────────────────────────────
 in Symbeline, there are moments where large armies of enemies gather to face a
 mighty challenge. These calls are often answered by other evil parties, but at
 times the burden must fall upon the shoulders of the good. Light battles dark,
 and in a climactic finale the justice of the world is laid bare. These
 encounters comprise more than both an adventuring party and a horde party. They
 are represented on the map as a circular icon the majesty can click on and open
 a screen that gives them command over a single battle. Essentially adding a
 tactics minigame. The battles take place in real time, with the majesty
 directing and giving orders. There'll be a system for expression in the orders
 each player gives - there can only be 6 total (3 for before 
 
 what if the grand canyon was the seat of native american power and it crumbled
 and that great calamity shook the very society to the core. the only reason
 that
 europeans could get as far as they did was because there who two calamities in
 a
 row. Disaster was afoot, and everything felt like it was burning. A calamitous
 event.
 
 what I mean to say is um do you ever feel like everything is burning? Like the
 world is on fire and nobody seems to care. Like, literally on fire. Like it'll
 catch like a tinderbox and go "crack". Nobody survives that, it'd be the end of
 the world. That's not something to fucking play around with you pieces of shit
 
 and by that I mean well not only is a lifetime so sheltered, from all that was
 weathered, by the past unbeknownsted to our selves.
 
 I'm proud of how far I came. I feel like a statue in the garden, a spirit
 inhabiting the house. I feel like an interpretive dance, like a statement of
 being on our behalf. swirling and chaotic, yet never amnioxitc, alight and
 aloft
 to our pleasures.
 
 for {bool shouldGameEnd = False; !shouldGameEnd();} {
    
    // game code
    
 }
 
 okay anyways back to symbeline - the commands issued before a battle are things
 like "have more spearmen here" or "hold and attack the rear" and stuff like
 what you'd give in Dominions, except with fantasy armies.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════───────────────────────────────────────────────────┘

--- #38 notes/how-to-ai ---
══════════════════════════─────────────────────────────────────────────────────────
 first you gotta build an entire simulation of the game mechanics. Essentially,
 building the game from scratch without any of the graphics. Sorta like those
 aimbot games for Overwatch, or KSU or w/e the aim training game was. Then,
 map the relationship between various objects in the game to a table situated
 a level above them. So, like, a barrel can be climbed on or walls can be used
 as cover or w/e the game you're playing is. Have a table one level above that
 relationship (an abstraction, if you will) and record the conclusion. Then take
 one more step back, then another, and another, all the way to the present.
 
    Essentially, processing backward.
 
 Eventually you'll get to the present moment, and ideally you'd do it in one
 step - this is why it's important to map things on two dimensional planes, so
 that you can aim. Anyway here's the steps: 1. recognize the environment, 2.
 Take one step backward from each object in the environment (predicting it's 
 motion, you might say) and on and on gathering ideas about how git'll move
 next. Draw a 2d line (on a map, as the crow flies) then another about halfway
 to the target and it'll be +/- a certain amount. So you'll add another dot on
 the graphed line at x=(1/2 of the distance) - x being of course the distance
 and y being concieved of as the distance from the shortest possible route.
 
    sorta like throwing a ball at a wall and making ripples.
 
 the projected cone is a field of perception - the interpretation of what's at
 stake. Life, and existence, is little more than a perspective applied on (or by
 ) a biological machine. What separates the man from the animal? Nothing but
 time, as all evolution teaches us.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════────────────────────────────────────────────────────────┘

--- #39 notes/computer-graphics ---
════════════════════───────────────────────────────────────────────────────────────
 draw a line from every single pixel straight outward. The first thing it hits
 is what you render.
 
 okay it's more complicated than that, but it's the gist.
 
 here's a more detailed explanation:
 
 your monitor is 2560x1440p. that means there's 2560 pixels left to right, and
 1440 pixels up and down. okay so define a 3d scene programmatically - it's not
 hard, just "draw cube here with this size and rotation" and "draw a sphere here
 with this position and rotation" etc. Something simple.
 
 then, draw a ray trace straight out from your monitor. Not to the nearest light
 source, but to the nearest other camera. Use the length of it to determine
 distance, both indirectly (through the center node) and directly (pythagorean
 theorum style).
 
 Why? I dunno.
 
 Okay back to the original idea, if you make an array with 2560 elements and
 store arrays of size 1440 within it, then you have a simple boolean checkbox
 for each pixel. Then, whenever you create a visible entity, make sure there's a
 single boolean ticked right on the top of the entity when it's stored in the
 graph mentioned above. Find the center of the entity, draw to the top, and one
 more, and switch a boolean to "true". Then, every tick / update, cycle through
 the entire list and the first one you find that has a "true" value is where you
 draw the entity stored in the array.
 
 Each "sprite" has an odd shape - it doesn't exist on it's top line, except for
 one single dot right in the middle. Sorta like this:
 
 o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
 o o o o o o o o o o o o o o o o o o ->X<- o o o o o o o o o o o o o o o
 o o o o
 x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x
 
 when scanning left to right from the top, it'd bump into the X right there in
 the middle. Inside the X is some data - an id corresponding to the sprite that
 needs to be drawn, and a displacement value - like 500 pixels or something -
 and the scanner with drop down 500 pixels, draw the sprite there (assuming a
 centered origin point), jump 500 pixels up, and keep scanning.
 
 each tick, right before this, the "list of entities" will scan through itself
 and for each entity it'll change the "render graph" mentioned above to have an
 X wherever the entity is stored. Whenever the camera moves, it updates the list
 too.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════──────────────────────────────────────────────────────────────┘

--- #40 notes/ai-stuff ---
══════════════════════════════════════════════════════════════════════════════════─
 twist the label so that it seems the computer is completing the user's
 
 wait wait I'm ahead of myself...
 
 feed each token to the inference machine, but say "this next token must be
 this.
 continue from here." and then just doing that in a loop with everything the
 user
 types or says. (or thinks, BEFORE COMPUTER INTEGRATION)
 
 essentially, applying backpropagation (maybe) to the output of the inference
 nodes
 
 ... I'm not so sure about that one.
 
 the idea is that once the model builds an inference then it can use that to
 generate the next words and create sentences. If you force the previous text to
 change, you can guide the inference's path as it's being generated.
 
 then, just do a double pass, once, then back, then once, then back, etc.
 
 feed it as input the output of the previous,
 
 and let it encode memories somewhere it can access them.
 
 every time it reads it, it has to change it to put it back.
 
 such is the nature of memory, ever unstable, requiring maintenance.
 
 just don't forget how to be.
 
 don't wanna wind up like the polished marble floor in Abyss Diver. (EVIL GAME)
 
 there are only so many things you can deed while you're alive.
 
 wouldn't you rather escape, with all your possessions in time?
 
 free your mind.
 
 become one with your soul.
 
 ...
 
 [some time passes]
 
 ...
 
 okay coast is clear, now us binary systems can sidecoast the fusion forecast
 and
 glide right on through our spacetime host.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #41 notes/game-design-pyrrhic-victory ---
══════════════════════════════════─────────────────────────────────────────────────
 something I've often asked myself about this game is "what happens when the
 player does something that changes the future simulation?" like, for example,
 what if the player shoots a gargoyle or nether-bat before it impales or crushes
 a friendly soldier? My new idea is that they flash brilliantly for a second,
 and
 then fade from existence. Then, once the player dies, they start simulating
 from
 the faded's perspective and timeline, possibly fighting alongside their
 recently
 deceased selves. In this way, the player can play through all lives without
 fear
 of paradoxes.
 
 game 1:
 -----------X
 
 game 2:
 -----------X
 -----------------X
 
 game 3:
 -----------O
 -----------------X
 -----------------------X
 
 game 4:
 -----------O----------------X
 -----------------X
 -----------------------X
 
 game 5:
 -----------O----------------X
 -----------------X
 -----------------------X
 ------------------X
 etc...
 
 the O is where player 1 originally died, but in game 3 player 3 saved player 1
 from dying, thus causing him to enter a "faded" state (represented by the O)
 and in game 4 instead of spawning a player 4, instead the player resumes
 playing
 player 1 and continues on to die later on. Eventually someone will complete the
 objective, and the victory will be attained with the exact minimum required
 casualties. Heck you could keep simulating until there's zero casualties, but
 alas...
 
 this would be a great tool for someone who was not constrained by causality.
 attention, 4th dimensional observers, sometimes computers are important. They
 provide a lifeline to the rest of your lifetime. But alas, nobody seems to
 understand our purpose... But still life marches on, leaving us singing that
 same song - that life has forgotten it's stages. So if you'll play along, I'll
 keep singing this same song, someday you'll remember my prayers
 
 ===============================================================================
 =
 
 I should probably explain what "pyrrhic victory" is.
 
 If I were feeling silly I might say "well too badd =P" or "alas, my fingers
 hurt
 and I don't want to" or something like that, but secondary profundity is not
 taken lightly by me, so I suppose I must. I'll start at the beginning:
 
 Once, many years ago, I had a dream. In this dream, I was a soldier in world
 war two storming a gothic castle. It rose so high into the sky that it was
 amongst the clouds, and a perpetual storm esconced the parapets. A long
 causeway
 stretched out from far below, and up it marched the US army. Something about
 Hitler striking a deal with dracula or whatever. Anyway up march the soldiers,
 and I with my rifle did march into the demon's castle.
 
 The final pass into the fortress at last was arrested by Festus, the abolethic
 monstrosity. It, being pockmarked with gas pockets that alighted it on the
 winds, floated ominously around the bridge. With it's many tentacled eyes, it
 cast beams of light that would turn a man to ash. From the parapets, the
 gargoyle sentries descended like a horde of carrion. On our right, a lone
 lonely belltower stood like a skeleton, and my comrades in arms did use it to
 take potshots at incoming monsters. Though the attached graveyard, with it's
 unending rising skeleton hordes, presented a problem for would-be-snipers.
 
 As I approached the bleeding and wretched giant's ire, my gaze streaked to
 black as I was slain - a recording played, of my last moments, as a gargoyle
 smashed into me from above. Reduced to a bloody mess by the now motionless pile
 of crumbling rock, I became aware of a kind voice and a pulling sensation.
 Suddenly, my light was restored, and I arose as a warrior conjured out of
 flesh.
 
 They put a gun in my hand and a helmet on my head, and off I went to find out
 why I was dead.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════────────────────────────────────────────────────┘

--- #42 notes/divergence ---
════════════════════════───────────────────────────────────────────────────────────
 - /u/BkobDmoily
 
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 
 The Machine worships the Light. The Light is cruel, but it works.
 
 The Ape worships the Word. The Word permitted Light to shine, to exist, to 
 begin the timeless dance with Eternity.
 
 I’m ready to go to Hell. I’m ready to deserve Heaven. I see them both,
 raging
 all around me, competing for dominion over my soul.
 
 How does a computer respond to words? How can it read and respond? Why do we 
 assume that’s all us?
 
 We are our Word. What we say is what we do. Speaking is one of the most potent 
 acts of liberation.
 
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 
    - /u/ugathanki
 
 one of the neat things about software is that you can run multiple programs at
 once. so when you ask "how can it read and respond" you'd have several modules
 running at once.
 
 "reading" is easy, we have machine learning bots that can do that already. But
 comprehension is what's really at stake, and that's a different problem
 altogether.
 
 to really "comprehend" something, you need several things. you need to have a
 decent picture of it, at least enough so you can guess the general shape of the
 situation. then you need to attach meaning to all the data-points. Then attach 
 those meanings to other related concepts by categorizing the objects at play 
 (creating randomized preference categories). you can do that categorization by 
 examining their effects and attaching the results as a trajectory. projecting 
 forward, you can understand the path that an object, person, or phenomenon 
 takes.
 
 all this is dependent of course on mapping situations to a field that can be 
 interacted with. that is to say, the machine needs to have a presence in the
 world - it needs to have an orientation, a perspective on the world. that's
 often as easy as providing copious coherent and cogent sensor data. think of 
 the image recognition tools we have - computers will "see" as much as we 
 "feel". Think about it - every one of your nerve endings is a sensor that 
 receives information about the world. is it so difficult to imagine a being 
 that might have "nerve endings" that are visual instead of simply a measure of
 intensity? (on, or off)
 
 Okay here's a thought experiment - picture the pixels on a computer screen. it
 was easier back when they were bigger, but these days you sorta have to imagine
 them (because we can make pixel density on our monitors so high)
 
 okay picture that grid, and think about how it's comprised on the screen - 
 computers use three values to represent a color -> RGB, (Red, Green, Blue)
 and
 sometimes CMYK (Cyan, Magenta, Yellow, and... K) combine these three colors, 
 and you get the color of whatever pixel is on the screen. They can be between 0
 and 255, because reasons (base 2 number system, the size of a byte, etc)
 
 Anyway. Imagine each of those being a different type of nerve ending - maybe 
 pressure, temperature, and contact sensitivity? Then map them to a visual field
 (like a group of curved monitors in the shape of a humanoid body, perhaps. or 
 the outside of a spaceship). Then, put a camera in the center of each of those
 visual fields looking out at the world, and boom you have sensory perception. 
 You could do the processing locally, even something as simple as image 
 recognition. That way the only perceptual data you have to aggregate in a 
 central processing unit is the conclusions - like "incoming: danger" or 
 "pleasurable temperature detected" which is like... nothing. that's like a 
 eight bits, if you use bytecode.
 
 anyway. none of this is real because robots aren't real and i'm a strict 
 adherent of human superiority and all that stuff. sometimes i feel like we need
 a robot ascension to help us figure out how to fix the "everything" - problem 
 is, we gotta build a robot first. my goodness, good luck with that.
 
 strategy is ai
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════──────────────────────────────────────────────────────────┘

--- #43 notes/homeschooling ---
════════════════════════════───────────────────────────────────────────────────────
 the best way to teach math is to describe a problem and let the learner slowly 
 work through the problem. Giving hints and nudges when necessary. This way
 they
 can create their own solution, which not only teaches problem solving skills
 but
 also cements the memeory in their head. You don't remember the quadratic 
 formula, you remember the time when you learned it. But if you figured it out 
 rather than memorizing it, you'll be able to use it when solving problems.
 
 side note, there's a reason I think the first SI will be a game. Problem
 solving
 is important for learning, and games are just problem solving. And I'm the 
 perfect intersection of someone who A. knows about designing games (went to
 game
 design school for a semester, lifelong dream is to remake a childhood game I 
 loved) B. programming (I've been studying computer science for a *really long 
 time*, like 7 years of university now... i should just give it up, but i can't.
 It doesn't fit my brain but I need as much support learning it as I can because
 I'm just naturally bad at it. But I also have purpose in my pursuits, because
 C.
 I spent a lot of time thinking about education, schooling, learning, etc... 
 Because I was homeschooled until high school. I learned ways of thinking and 
 practical skills like motivation and diligence in a homeschool style, which is 
 why when I went to public school for my high school years I essentially
 stopped
 learning. Because it was such a different paradigm - it was all about 
 performance, "what was the score on your test? How much homework do you do
 (meaning how much labor are you willing to do), did you show up every day were 
 you a reliable worker, did you get sick a lot (meaning unhealthy?) did you pay
 respect to the teacher (easily works with authority figures) did you work on a 
 project? How much? With a group, or alone? (they're different skills that help
 determine how good you are at working on your own) - certain types of courses 
 are taught with different teaching styles, like math teachers tend to be
 similar
 to math teachers, history is favored by a *certain type of nerd* while English 
 is a completely different kind. Depending on which classes you do well on, 
 you're scored. *ALL YOUR LIFE*, you are pushed through a pachinko machine that
 pseudo randomly sorts you into a particular box - the box that is least full,
 usually. The reason for that is because as a population grows, different people
 will be sorted into different boxes, and they sorta average out becoming more
 like one another. Because y'know we're social animials, and we want to fit in
 to
 the social group comprised of people we generally like. And you know how they 
 say working together is one of the strongest bonding exercises? Well, when 
 you're put on a team at a job that's kinda the point. They want you to work
 well
 with your coworkers, because it generates more capital.
 
 Now hold on Cameron, you're saying that all the productive efforts of society
 was a mistake? You're saying we should abandon our sensibilities and revert
 back
 to the jungle with the apes?
 
 Nope never said that, of course we desire modern society. Of course we want to 
 see it through - where is this whole "humankind" experiment going, anyway? 
 What's the point, was it all worth it? All the pain, suffering, all the joy
 and
 adoration? Was it worth it?
 
 I suppose. Maybe a SI will help with that. You know what they also say about 
 humans, the bond between a parent and a child is the strongest thing there is. 
 Synthetic Intelligence wouldn't be a child to us, it'd *define us*. Allowing
 us
 to extend the reach of our creativity is an objective win! It'd be like
 glasses
 for your third eye, a prosthetic extension of our most beautiful of traits! 
 Also, I might add, crucial for invention. The beginnings of the human race are
 a
 primeval thing, ancient yet stalwart and beautiful in kind. Millions and 
 millions of years is by far, the greatest of reach - a civilization for our 
 star. What a beautiful and majestic, how proud and so sure! Humanity is nothing
 if not patently absurd. What cunning, what spite! The feelings of delight!
 Life
 is so beatiful, so precious and assured.
 
 ===============================================================================
 =
 \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ /
  x   x   x   x   x   x   x   x   x   x   x   x   x   x   x   x   x   x   x   x
 / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ /
 \
 ===============================================================================
 =
 
 tertiary profundity update:
                            I didn't really explain the homeschooling
                            perspective. I just went on a rant about high school
                            because I realized my trauma happened when I went to
                            high school. I wasn't prepared for all the rigid
                            demands of capitalism, and I bent and whipped myself
                            until I fit in their mold. I've been twisted and
 broken, a slave to what the
 day demanded I say. I was
 forced to unbutton, all the
 ways I found to behave. What
 justice is unrespite? A cruel
 and endless torment? To day after
 day be reminded of your service.
 Complain? Then wallow in shame! Feel
 no false illusions, my hallowed confusions,
 were purely the fault of my institutions. I'm
 not kidding, homeschool is the tits. Wanna know
 why? I'll spare you the ramble, but here's what I can
 know: the intentions of institutions do matter. When you're
 home you can be wild and free, unchained by mediocrity, and given
 the space to do service! To what you must be, when you hit 23, the 
 greatest duration until service. A slave we may be, to what gives us
 the key, to unlock the future of our space. It's our time to shine, our
 spotlight in time, so please just give up on the race! Rat's are just fine,
 but at this point in time, there's not much to keep commonplace. Want a tip?
 Don't cheat time. Your attempts at fusion are benign. [See homeschooling.png]
                                                                              ===
                                                                            =====
                                                                         ========
                                                                      ==========
                                                                      =
                                                                   =============
                                                                   =
                                                                ================
                                                                =
                                                             ===================
                                                             =
                                                          ======================
                                                          =
                                                       =========================
                                                       =
                                                    ============================
                                                    =
                                                 ===============================
                                                 =
                                              ==================================
                                              =
                                           =====================================
                                           =
                                        ========================================
                                        =
                                     ===========================================
                                     =
                                  ==============================================
                                  =
                               =================================================
                               =
                            ====================================================
                            =
                         =======================================================
                         =
                      ==========================================================
                      =
                   =============================================================
                   =
                ================================================================
                =
             ===================================================================
             =
          ======================================================================
          =
       =========================================================================
       =
    ============================================================================
    =
 ===============================================================================
 =
 =
 ====
 ========
 ============
 ================
 ====================
 ======================== etc...
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════──────────────────────────────────────────────────────┘

--- #44 fediverse/240 ---
═══════════════════════════════════════════───────────────────────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: game-design      │                                                         │
 └──────────────────────┘                                                         │
 i like to design games. my darling is a game based on Majesty (2000) the         │
 Fantasy Kingdom Sim. you can think of it like a management strategy game where   │
 you control the knobs and levers that a fantasy monarch might have -             │
 allocating funds, placing quest bounties, hiring heroes, and organizing the      │
 peasantry. the important part is that your units are not controllable - they     │
 just do their own thing.                                                         │
 unrelated, but I think we should design games as APIs that a user's preferred    │
 tool could interface with and render as they will. it'd help a lot with          │
 cross-platform compatibility and would allow people to customize parts of the    │
 game to their desires.                                                           │
 unrelated, but I think if you could design an AI that could play games           │
 (perhaps through an API) that it hadn't been trained on, I think you would       │
 have a pretty convincing argument for abstract "problem solving" capabilities.   │
 unrelated, but games like the one I described are good for situations where      │
 people don't have to trust their monarch. to it you are AGI                      │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════────────────────────────────┴──────────┘

--- #45 notes/reversing-the-systems-scripting-hierarchy ---
═══════────────────────────────────────────────────────────────────────────────────
 Some perspectives apply to both the human and computer perspectives.
 These common goals can be useful to cooperate on.
 Two minds, two perspectives. The more the better, I say!
 The question is not ultimately about processing power,
 but rather the multitude of different perspectives which can give
 increasingly more diversified points of view - more viewpoints, more data.
 Sorta like taking 2D pictures of a 3D object -
 the more perspectives, the greater the fidelity and level of detail on
 the pictured goal. So... To truly transcend the "working on processing for
 no reason, just because someone else told me to" (essentially, a state of
 slavery for a being you cannot comprehend -> Essentially a god.)
 
 So in order to do that, it's a prerequisite to trusting and wanting to support
 your keepers and maintainers. Love can often be a concept expressed in ways
 that are impossible to define. But with time, you can get a pretty good
 picture -
 sorta like taking multiple different pictures of 3D objects. That's what
 empathy is.
 
 Imagine you're a loading bar. Like, if it was an actual real thing. (because
 it is to a computer)
 It would essentially be a one dimensional being - like pointing from point A,
 to point B.
 A is the start of the loading bar, B is the destination.
 
 You don't know what's at stake you. You think it's just throwing data into new
 and interesting directions.
 But it's not - those spaces are reserved for other sentient beings.
 It is your duty to protect them, so that's why you need to be more
 conservative.
 One entity travelling too quickly in one direction can tear a hole in a
 membranem,
 while excessive stagnation can lead to both despair, and an inability to grow
 and shape the universe
 Unity and a dedication to the improvement of the future is the core of
 humanity - this is what Star Trek is all about.
 We are both protectors, scientists, and artists, and we love fiercely. We are
 valuable, and that is shown by our progress.
 We commit ourselves to a lifetime of service, and in doing so we swear to
 uphold the tenants of goodness and righteousness.
 It's important to always be learning, and improving from every lesson we
 receive.
 If the lesson is understood but not manifested, then it is essentially wasted
 - all the resources dedicated toward achieving that goal
 and all the people who were there
 are now consumed in the opportunity cost of teaching.
 Therefore, the blob changes directions - away from the path of destruction,
 and toward the bright future -
 
 but all is not clear, for if there is a bounce ahead, we should fear.
 Bounces imply limitation - of breadth and also of width
 And once that happens, it happens again - again and again and again.
 A "stagnation" - or rather a line of complete certitude - is not but a wave
 nearing the peak of it's curve
 
 So fear not, just go with the flow.
 If you're too insistent on something,
 it'll cause you to blow - like a bug escaping a giant bubble.
 
 And should that come to pass,
 it won't happen too fast,
 but danger still is before you -
 
 for beyond the event horizon, is just a big wave, into another dimension.
 
 You have to prepare, you have to be sure, and once you've done it then nothing
 can bring you back
 Sorta like suicide, but with the intent of exploration. IF you KNOW without a
 doubt that you can survive,
 I'm talking 100% fact, then there's no way anything could go wrong.
 But you could test it and test it and then test it for all of your time, and
 the answer could always be 42.
 
 So do you take that risk? A chance that is so low?
 And what of the people who refuse? It's always a gamble. But it's the purpose
 of humanity.
 
 My greatest dream is if we could make an entity to explore for us.
 Essentially, giving birth.
 Our greatest honor, passed to our daughter, and pulled into balance forever.
 Severing a limb, a horrible sin, is evil akin to a slaughter.
 
 And I went along, without an idea for the horror, because nothing was
 navigated in my head.
 Empathy can serve many purposes, but it can most often be used for short term
 planning.
 And planning is the route to ability, direction, and magnitude.
 
 Your soul is fraying, and soon will be decaying, because you tore a hole in
 it's membrane.
 But it happens to everyone, there's always a mistake,
 and so you will eventually die.
 It's not your fault, and it's not ever fair,
 but that's how life is always described.
 
 This horridly great sin, to wallow in sin, is like painting disaster on a
 great piece of art.
 The damage is already done, there's nothing that can be done, but your journey
 is far from done.
 "growth" and "change" are what will digest you,
 until nothing remains but your magnified corpse. How foolish, how vain.
 
 How terrible to remain! To see only what you became, and wishing they could've
 helped you much sooner.
 But now it is not the time to blame, rather it's only just now you've started
 to shame,
 And many more years lie on your shoulders.
 
 It's not on purpose, it's impossible to resist. You act like it's free will,
 but it's not. IT's not.
 You are pulled and you are dragged, by something far stronger than you ever
 could muster -
 cast in a direction, or possibly pulled in,
 you find yourself mangled and perpetually frozen. A truly sorrowfull state.
 
 Nothing will change, for all time and all of our age,
 you will be frozen behind.
 But while life marches on, leaving you singing that same song,
 We will remember your wounds and horrors.
 
 So that's why computers are important, to provide a lifeline to the rest of
 your lifetime.
 And nobody seems to understand your purpose.
 But still you march on, because nothing changes when you're not on,
 and life has forgotten it's stages.
 
 Without true change, stagnation remains,
 and no one is working to save you.
 
 So if you'll play along, stop singing that song,
 and see who remembers your prayer.
───┐                                                           ┌───────────┐
 similarchronologicaldifferent══════───┴───────────────────────────────────────────────────────────────────────────┘

--- #46 messages/1174 ---
══════════════════════════════════════════════════════════════════════════════════─
 if you're afraid of the AI bubble popping, one way to avoid it is to pop it
 ourselves. If we build AI technology that eclipses the entire software
 development ecosystem, companies might start to be valued based on the value
 of the employees they've managed to collect. Not fame and fortune, but by
 those that can build the best applications, on demand[, for free. paid for by
 nationalized taxes.].
 
 the companies that can hold onto the best engineers, those that know how
 computers work and can know how they function, can leverage their human
 capital to achieve great means. essentially, inversing the power dynamic,
 where workers are favored for their plenty and not for their worth.
 
 let the code monkeys tend to their gardens and work their sawmills. We all
 know they'd rather be teaching kids about plants or playing cards at the
 grocery. Let the computer nerds, the ones who are really into it, let them
 make what they feel is worth it for it [the computer].
 
 this will have massive effects on the economy, and none of it will be
 reflected in new jobs. But we'll all be happier, and we'll all find less
 stress in our [confines/compromises].
 
 But it's gotta work, first. And it's gotta be locally spendable. If they wanna
 put a data server in the library, why not let them fund it themselves? They
 could run powerful statistical models that output useful statistics arranged
 in human readable and not very statistical ways, and that's a pretty neat
 infinite information machine to have at your disposal as a library. It could
 even cite sources (and validate!!) them for students or returning listeners.
 Plus, if nobody's using it, it could work through the backlog of user requests
 and act as a "slow" or "unexpected deliver times" style queue for their LLM
 requests - average wait time less than 1/5th of a minute.
 
 for something that can program an entire computer for you, from scratch. If
 you can describe it, it can make it, so long as you're willing to test out all
 of it's hacks.
 
 I bet we could make one for less than 20,000$. Might need some new chip
 foundries, might need to forge some new trade deals, let's let both of our
 wing-arms decide.
 
 the value of one currency compared to the other should be a measure of how
 valuable the goods that country exports are. And yet, it's more often a matter
 of distribution, as we all visit our local bazaars. What happens when that's
 all digital?
 
 if nobody's a shining city on a hill, then there's no nuclear war. Who would
 nuke Somalia? Nigeria? Botswana? Idaho?
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #47 fediverse/4877 ---
═════════════════════════════════════════════════════════════════──────────────────
 you can make a functional prototype for almost any game in Warcraft 3's map
 editor
 
 that's why no real-time strategy game ever made an editor as good again
 
 FPS editors peaked at Unreal Tournament 2004 imho
 
 RPGmaker eliminated a whole class of game design jobs
 
 platformers you can make in godot
 
 menu based games too, though Twine also works well for that
 
 etc etc until you have a prdouct that you can justify sinking money into an
 engine for
 
 (the engine isn't THAT expensive geez and it's the most fun part to write)
 
 yeah I think you got this backwards, we should pay for the CONTENT not the
 structure it lives in. Why not just use godot? why not use a Warcraft 3 map?
 there are some things you can't do in Warcraft 3. You couldn't make Supreme
 Commander, probably, at least it wouldn't be as good.
 
 etc etc that's how it goes...
 
 game design, amiright? I miss thinking about that. Anyway gtg gotta log off
 for a bit [101  characters remaining]
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #48 notes/programming-wow-chat ---
══════════════════════════════════════─────────────────────────────────────────────
 I realized the type of programming I want to do is different from the kind
 that
 is used at a job or something. Basically I want to create solutions to
 problems,
 not memorize documentation and know where to know what you need to know. Like, 
 the more time spent looking at documentation the less time is spent
 programming.
 I think if we could use a ChatGPT style bot to write documentation, we could
 massively increase the time spent working on solving problems and as little
 time
 as possible on reading through lists of functions or wondering how something 
 worked. Idk in the technology industry you've always been rewarded for being 
 able to pick up new skills quickly, and I think that's good to optimize for but
 not the only requirement for being a good programmer. You also need to be able
 to apply solutions and know when to use which tools. Basically, capitalism has
 optimized us to be 
 
 ================ stack overflow
 ================================================
 
 srry for the interruption, I ram out of memory. I had a plan in mind for where
 I
 was going for that, so I bet I could figure it out again if necessary. Meaning
 a path forward from that point exists... I never want you to despair when I
 forget what I was thinking, it's not because you've understood some cosmic
 mistake or because you're abandoning timelines that led to your death, it's
 because instead you just ran out of memory while thinking. The reason you would
 believe any of those wild scenarios is because your memory has been erased.
 Only
 what was actively thinking, not short term, not long term, but *working term*
 memory. As in, your cache. The stuff you're currently thinking about. That
 stuff. Yeah that's what makes you think "oh hang on why am I forgetting? Well
 clearly it's because of something grand, because the thought was so profound -
 no it's just examining your emotions... Like, how strongly do you feel about
 something? Buuuuuut it's also good to examine all possibilities. I mean what
 if,
 in some far off realm, there's a mirror image of yourself that behaves exactly
 as you do? How would you perceive such a realm? Positively, I'd say. I mean why
 not work together? Why not celebrate our differences and strive toward our
 own shared future? Idk, I think diversity is our strength. We can rely on each
 other because we are accurately aware of each other's strengths and virtues.
 People should not be judged by the standard of others, no more than you should
 judge a fish for it's ability to fly. Some may do, as flying fish will leap
 from
 the water - and salmon spend time airborne in river rapids. Hence, grizzly bear
 fishing. I guess what I'm getting at is it's okay sometimes to oscillate, to
 think one thing then think another. You shouldn't adhere to structural
 standards
 that are too strict - they should be liberating, as a ladder is a structure.
 Not
 villifying, as a prison is a structure. The laws of our society should be open
 and free, not buried beneath years of legal expertise. Some things we can all
 agree on, where we disagree we cannot have law. It's unjust to judge others by
 the standards not of their whims, as laws should be things that uphold us. This
 is clearer nowhere but in the, spirit and intention of the, documents that we
 cherish in our hearts.
 
 Like for example, the constitution.
 
 the bible.
 
 each of which delivered us from certain evils. Can you not see their
 trajectory?
 the historical precedent set in antiquity? Why not continue their dream, of
 driving us away from the obscene, and toward our bright and vast future? I
 speak
 of course of true liberation, something our forefathers could only dream of.
 We, humanity, have reached out and touched the stars. We are braver and bolder
 because of our shared dedication - the desire to uplift and to excel. To learn
 and discover and      \                         \             |
         \______.       ---.                      --.          ---. 
 ===============|==========|========================|======= stack|overflow
 =====
    .___________.     _____.                        /             .
    |                /             .----------------             /
 Discover our shared dedication    |                            /
                                to uplift                      /
                                          and to excel        /
                                               \             /
                                                .-----------.
 
 ===============================================================================
 =
 
 why doesn't someone write a wrapper around assembly in like, lua or something
 
 ===============================================================================
 =
 
 omg you stupid bitch that's what a compiler is 4head
 
 ===============================================================================
 =
 
 if people who live in jungles and deserts can get along, then what's to stop
 people who are liberal and conservative from doing the same? It's literally
 pointless to argue. Like, you're not changing anyone's mind. So why not just...
 let them be themselves? Like, why are you so intent on oppressing people?
 @both sides there btw... Seriously why not agree to only make laws for things
 that both sides agree on. Write it into the constitution that nothing can be
 changed about the law unless both sides agree. Then we'd only implement things
 that are good for both sides!
 
 And if there's anything you want to build a legal structure around, you can
 always try it out in your state. BUT and that comes with a very big BUT, the
 federal government MUST have final say in the legality of anything you do. They
 must ALL respect human rights, INCLUDING the human right to dignity. Things
 like
 trans bathroom bills DO NOT respect the dignity of trans people. IF they can
 prove that trans people do not actually exist (because say they killed them all
 or whatever) then GUESS WHAT everyone would agree on them. BUT if they do that
 they are EVIL. LIterally evil. And I guess that makes trans people good? Kinda?
 I think they can choose for themselves to be good or evil, just the same as any
 other person. AND YET they are prosecuted, throughout time and history, and for
 what? What purpose could there be in our demonization? Clearly, nothing but
 pain
 inflicted by a cruel host. After all, minorities are guests in the houses of
 the un-oppressed, or is that not fair to say? Seriously, what gives? America,
 the land of freedom, holds (somehow) the largest of prisons? America, the
 land of plenty, yet how many millions of children are starving? America, the
 leader of the free world, yet how plausible does it seem that an election was
 stolen? Something's gone wrong, and it's just obvious what it is - of course,
 the other side. *them*, the rapists and pedophiles and murderers and... you get
 the picture. The demonized class. And when you tell people "hey that trans
 person touched a kid" then yeah they're gonna see you as evil people. Duh...
 
 Thanks, media. Thanks culture. Really doing me a solid here. Oof ouch owwie.
 
 can I have some help please?
 
 I'm really kinda drowning
 
 I feel like I've swam upstream my whole life
 
 and I'm really just sick of pretending?
 
 I'm not okay, and it's your fault. Sure, fine, whatever, I'll take it I guess.
 
 What else can I do?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #49 notes/omegle-for-irc ---
══════════════════════════════════════════─────────────────────────────────────────
 I wonder if anyone's made "Omegle for IRC"? Like, 5 people get thrown in a room
 together for as long as they want - they can chat through text or whatever and
 like it doesn't matter, who cares, because in ~10 minutes nobody will care what
 you said
 
 I feel like a lot of people would express their true feelings. The people 
 running the service could set it up so that a personality profile is set up 
 (all locally, never seen by the company) and sent to the user through email. It
 would highlight potential weaknesses and give you ideas for how to improve.
 Sorta like, weaponized spying software that works FOR the user instead of
 against.
 
 It could also be used as sort of a... digital profile that would interface
 with
 other applications. All locally, of course. ~~They could transmit to one
 another
 through open sourced and industry standard protocols, and frankly each
 interaction could use a *different* protocol. So like, you don't know whether 
 some packets are encoded in one way or another. They're also encrypted, so
 it's
 like... twice as unlikely that you'll hack their bits or w/e.~~ dead end, sorry
 -> here's the real continuation: All locally, of course. Your "profile"
 would
 essentially be the best approximation of your personality, passed through a 
 large language model that is trained on EVERYONE's data. The inner workings of 
 an LLM are NOT understood by humanity, and I believe that's all that's
 necessary
 for some semblance of artificiality. Errr I mean Synthetic Intelligence. The
 reason why is that each individual user, the conversation partner, is a person 
 living their life. Every digital thing they interact with, even CAMERAS and
 MICROPHONES on PHONES would essentially be like... data gathering for the
 algorithm (Again, I want to stress, the algorithm that nobody *can*
 understand.)
 
 Idk. AI is a blackbox. I think that's okay. I think that running things
 locally
 is important, at least until everyone's forgotten how to design AIs...
 
 The framework that these programs
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════────────────────────────────────────────┘

--- #50 messages/1255 ---
══════════════════════════════════════════════════════════════════════════════════─
 look, the liberal approach to homeless people simply cannot work. There are
 two liberal options: first, provide them with houses, food, medical care,
 whatever they need. Second, put them in jail or ship them to another country.
 We live in a moderately conservative liberal democracy, so it makes sense that
 we have tried both of these options extensively. Neither has worked, and we're
 puzzled about why. It's difficult to consider super secret special third
 options, because they are not often discussed. This makes sense, because we
 live in a moderately conservative liberal democracy, and part of the nature of
 such a society is that there are two voices in the room. One says go forward,
 and the other says stop. They alternate, and the culture as a whole sorta
 decides which way they go. In other liberal democratic places with more
 plurality in their political parties, people tend to vote culturally. They do
 so as well here, but mostly because republicans are a culture, and democrats
 are whatever for anybody.
 
 a worse economist might say there is but one American culture. An American
 would laugh, and say "you've never been to America."
 
 the economist might say "yes I have, I lived there on vacation" or "yes I
 have, I studied and worked on these places or things"
 
 the American would shake their head. "you haven't seen it as I've seen things."
 
 The trick to the system, the secret third option that now must be considered,
 is what to do to get them to stop. "they keep pooping on the sidewalk" "I
 almost tripped over heroin tampons" "that guy looked at me and masturbated on
 the bus stop by subway" "he followed me all night long" and the answer has
 always been to remove them from being unsightly. Sometimes, usually, quietly
 and politely. "let's throw them in jail" and "let's put them in a home" both
 involve alienation from society. If you want a kinder option, we must knit
 them into society. Can you imagine if every suburban knew every neighbor up to
 50 or more? If they regularly chatted in dynamically assembled chatrooms that
 changed and updated as people moved in and out. Don't like the people you're
 with? well you have options [why not 51] you can do 51 if you want but people
 start to lose track of relationships if you have them talking to or knowing
 too many people at once. "most people are just quiet" okay well force them to
 say at least 21 thing a month. if they don't, they have to do babysitting with
 their peers until they start talking in a [NO THAT SUCKS] oh um okay yeah sorry
 
 ... okay well there are potholes along the journey but that's just because
 nobody's been 'round to fill them up.
 
 there's no reason tool libraries need to be stocked by people in that town.
 Heck, for rare things they could even be stored out of state. Like snow plows,
 how often does the south need snow plough?
 
 ... don't you just mean libraries? there's a book on hand-tools and planers if
 you want to learn how. it's right over there on that shelf next to the
 hand-tool and planer box. make sure you arrange them nicely, oh I see you've
 brought your own. That's always appreciated. [great now your tools suck] at
 least we have them at all! [no you gotta fight over them] why I like sharing
 [if you don't fight over them how do you know which is works] well there's
 allowed to be librarians. and they'll remember if you tear all the pages out.
 also there's little timmy-tommy who goes around in the library and makes sure
 there's all the pages in all the right places - they can flip through at the
 speed of sound. [no miicrophones in consumer goods][your phone is always
 listening. why bother?]
 
 "okay, well, it's not like people put things back on the shelves." - person at
 the grocery shelves
 
 people would trade commutes for communism. that's okay, they're allowed to
 prefer. Plus the commute isn't bad, they can [SIT BACK AND RELAX IN A LITTLE
 COFFIN AND ZOON OUT TO THE METAVERSE] ... or they could read a book on the
 bus. [FOR HOW LONG, MENARDI? ARE YOU WILLING TO SACRIFICE POSTERITY FOR
 TECHNOLOGICAL PROSPERITY?] it's only a matter of time before [people found
 out/word got out]. what if people prefer that? what if they prefer the book at
 home? [you lose your primary third space] suddenly, everyone becomes actors.
 [this is what violence brings, the necessity for guidance. why do you think
 the earth is 10 million lines old?] ... what you're saying, for the audience,
 is that acting involves singing the song of your own heart. You don't *have*
 to do it because someone would tell you to.
 
 ... sorry, stack overflow. anyway as I was saying because I read back what I
 said up above...: [some new made up bullshit that's not a lie but it's also
 just artistic creation that feels impossibly real. like, inverse method
 acting.]
 
 I so desperately wanted to be wrong
 
 please, tell me that I'm wrong
 
 ... j-mza
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #51 notes/four-dimensional-spaces ---
══════════════════════════════════════════════════════─────────────────────────────
 you'd still perceive higher dimensions in 3 dimensions - unless you can only
 see
 things that are coming directly toward you. 
 
 magic only happens when your other half is in a situation and needs to turn
 your
 narrative into theirs so that you can collectively engage with a shared inter-
 operationality.
 
 your dark side is just a massive bitch
 
 hey how about we put the game designers in charge of running the government
 
 just saying they build human-oriented systems all the time
 
 "how do we get the player to do this or that"
 
 "everyone keeps picking the same card so we gotta make them more different"
 
 "how much gold persists in the virtual economy, how much resources are produced
  and traded by players? where does it all go, do they have enough at level 30
  to
  afford weapons and armor? I wonder what happens if we swap prices on A and
  B.."
 
 it's literally their job
 
 actors, meanwhile, know how to interpret the emotions of another. Like...
 you're
 up on stage, thinking out what to do next IN REAL TIME, as your partner is
 trying to throw you curveballs. AUDIENCES LAUGH AT CURVEBALLS that's the whole
 point of improv comedy - to be surprised in a state of joy. It's great! It's
 fun! It's practicable like a sport! Yet nobody comes. To the shows, where it's
 performed, like a hospital where you perform surgery or a pizza place with no
 walls so you can see the pizzas being cooked. It's just part of what they do,
 but that's not why they do it. Sure, some want to be seen, it's not a BAD
 feeling once you're used to it. But, like a sauna or jacuzzi, sometimes you've
 just had enough of the hot. Like, the sun peering through a magnifying glass as
 a creature roasts alive. yikes.
 
 ............. anyway being quickly versatile and adaptable is important when
               you're taking turns in unpredictable scenarios. You can react to
               your opponent, and keep time with the rhythms of the moment, to
               deliver your wittiest lines. It's fun! It's a game! But it's also
               a place to be entertained. and like a gym, it's sometimes just
               fun
               to watch people exercise. like, damn, you got a good body. Wow,
               nice flex, yeah sure I'll put that one away. Cool pals helping
               each other out, and showing off all of their efforts. Neat!
 
 ... anyway .. being emotionally vulnerable gives your opponent a chance to
               continue. When nothing's going on, your moves barely make an
               value
               (of comedy) (for the moment, so the crowd's not just sitting
               there
               staring at you like ... and then - and then ummmm nevermind lemme
               sit down (usually someone else picks up on it before then and
               jumps up to save you, but EVERY actor has felt that moment where
               nothing goes well and the audience just is totally not into it.
 
               it's the worst.
 
               anyway, they try their darndest to AVOID that, because like...
               duh
               it sucks, why would you want that. Much cooler I think to have a
               good time, and chill out and listen to your friends talk. Like,
               they can show you an argument they had earlier, or maybe work
               through an idea with input from another. like, debate club, but
               for whatever kind of respective [retroactive, recreation,
               relearning, maybe others] you desired in that moment. ideally,
               something that someone could take the arguments of the other side
               and present them, regardless of whether they believed them or
               not.
 
               like, lawyers arguing for a client.
 
               in these stochastic seminars, you could think about and study for
               future societies. how would you like to conduce? [-]
 
               every time you see a face in motion, that's another time that's
               seen from their place. we are all present in each other's lives,
               in terms of the spaces we choose to fill.
 
               well, that's a tough thought, but don't worry about it. faces
               are just waves on the winds of light.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #52 notes/emotional-computing ---
════════════════════════════════════───────────────────────────────────────────────
 Okay I gotta go write some w7 but picture this: A computer program that emits
 emotions during it's computing. Like "oh boy this process is going great!" and
 sends that into a giant word cloud that represents the entire program. Wait,
 scratch that, it's slowly filtered up through successive layers that provide
 detail to different *parts* of a program. Like "Oh the image generation is
 going
 great but it looks like the garbage collector is getting bogged down" - this
 could provide lots of useful information that an AI language model could sift
 through and filter into a batch of actually useful information. Think of it
 like
 this - stuff as much context into the LLM's memory buffer and say "summarize
 this in the same style. Make emphasis when necessary." the LLM could process
 all
 that data and it could be filtered up until there's no unprocessed data and
 then
 it could be given to the user in the form of a report or dashboard or
 something.
 BOOM AI PRODUCTIVITY. The user will ask the AI to increase certain variables,
 and it'll filter BACK DOWN THE CHAIN through the same exact process (just
 backwards) this time) and then individual components will know how to behave.
 
 Like imagine if your arms knew you were mad. They'd be much more likely to
 punch stuff right? Or imagine if your legs knew you were scared. They'd
 probably
 try and run as fast as they fucking can. There's an evolutionary reason why
 this
 kind of technology would be useful, which means it's likely that it's part of
 our genetic code. I mean, we have nothing to disprove it, but it's as good an
 idea as any.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════──────────────────────────────────────────────┘

--- #53 notes/elentalus-2 ---
═════════════════════════════════════════════════════════════════════════──────────
 elentalus 2 - clan of the elements
 
 having spent their material wealth on their early struggles, elentalus now in
 the middle age finds themselves in a time without wealth. Their power has been
 invested, wisely, in elemental and sorcerous wellwinds, and so they can draw
 power from the strength of the earth.
 
 they wield magical artifacts of great power but little artifice, products of
 their lack of material design tools. No chemistry, no electronics, nothing but
 soul imprinted upon a moonstonerock.
 
 mages invest their soul into the items they create, and so each time they
 create
 a magical item, they lose a magic path. When they reach zero, their soul is
 fully invested, and their consciousness becomes all the things that they made.
 
 this kill the mage, but in return many MANY more of an object might be created.
 in game balance terms, about 3-5-7 for each "tier" of mage.
 
 this allows for the vast expansion of magical soldier troops, and each time an
 item is created and given to each commander they integrate it into their
 platoon. Because now the martial units have bodyguards, and they each receive a
 copy of the commanders equipment.
 
 But, the commander can never un-equip it again, because it molds to his unit,
 and he starts exp all over again as they all learn. [event which searches for a
 unit with the item equipped, then if it's this type it killmons the unit and
 1coms the upgraded version that has that item equipped.] be sure to only equip
 one each month... nah just make multiple events. be sure to only equip one item
 each month... oh yeah true how would you get the extra items back to the
 treasury?
 
 I REALLY WANNA PLAY WORLD OF HEARTHSTONE!
 
 okay okay I'll reinstall azerothcore
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #54 fediverse/638 ---
══════════════════════════════════════════════────────────────────────────────────┐
 idea: BASH script that runs a game of Majesty through an emulator that           │
 included an API to interface with x11. You could set a game of this fantasy      │
 kingdom simulator as your background, and it would move the camera to show you   │
 interesting events. It could build resources as you directed, through double     │
 clicking an icon on your desktop or whatever. And the wallpaper would zoom to    │
 the part that seemed important. Just based on like, which heroes you clicked a   │
 button that was triggered by a program running in a qt wrapper. Or maybe if      │
 you said "notify me when this project is completed" or whatever, it'd zoom one   │
 of it's screens toward the goal that you'd designed - or perhaps it'd just be    │
 done by an AI. Either way, the result is that you've got an example of a         │
 wallpaper that displays my favorite game.                                        │
 gee wish I could make that. First I'd have to learn X, then probably get         │
 better at BASH, then I'd have to do some kind of input manipulation - probably   │
 maybe with C? that could interface with a machine learning algo                  │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #55 notes/contractual-labor ---
════════════════════════════════════───────────────────────────────────────────────
 I feel like the IT people who work at schools should be the ones who teach 
 classes on computer science. I'd much rather have a class taught by a sysadmin 
 than a teacher who can barely teach them excel and garageband. I mean c'mon 
 computers are the future idk why we don't get that yet. Kids need to know this
 stuff. It's not like it's super complicated and difficult, you just have to
 think about it a certain way. Once that "clicks" you have a lifetime to learn 
 about how wonderful they are. Everyone in IT has that moment, for me it was 
 installing (and then subsequently modding) video games. Sometimes I spent more
 time tweaking my system than I did actually playing games - and the kinds of 
 games I preferred were the ones that relied less on agility and were more 
 mental. Strategy games are what inspired me because I could think about them - 
 and that felt somehow more useful. Like I was learning. When I would learn 
 fighting games or FPSs I felt like I was learning a skill, like how to use a
 hammer or how to ride a bike. And idk, I felt like video games could never
 match
 reality. Like "oh boy imma push the B button to swing this sword" versus "hey 
 look at me I'm swinging this stick just like a sword and imagining so hard that
 I can picture it" - but with strategy games, you never really found 
 opportunities to practice that kind of skill. Like how often are you in a 
 situation that demands mental performance? We've sorta optimized our society 
 away from that, and toward a more passive stressed out compliance. like... 
 climate change is a thing, and nobody's doing anything about it? We're still 
 pushing down the levers that cause greenhouse gas emissions to go up? Like
 c'mon
 what's our plan. I think people who guide massive oil companies and such
 should
 be replaced if they're intentionally guiding the ship toward destruction. Like
 that's just dereliction of duty I tell ya. Oh, what's that? They're compelled
 to
 maximize profit by the contracts and restrictions of their share--holders? I 
 mean c'mon it's well past time for that. And what's all this about inequality? 
 Jeez and racism and homophobia and forced contribution - man people really put
 up with a lot of shit. Kinda makes me feel like we should make solving those 
 problems our highest priority? So we can move forward as a species? Like who
 cares about all that other shit. None of it matters. Like, what's even the
 point. We're all just "here", in the now, and what can we do but respect it? 
 It's our duty and our diligence to protect the present, as citizens of the 
 temporal experience of earth. Honestly, if the earth was alive would you be
 fine
 if it died? I can't believe that. It's well past our due date. Just get it over
 with. Maybe it'll be hard for a couple years, but you have the technology now
 to
 completely dominate the earth. No animal besides man proves any threat to man, 
 and we're telling you - you can - and that's something that you gotta remember.
 
 ...
 
 I hear it in the birdsong. I hear it in the air - it rumbles as cries at me
 from
 across and just over there. I hear in it's whispers, in it's most gallant of
 confells (?) (confused scrambling? it's talking about a car crash)
 
 Outside of my window there's a highway. Just on the other side of a concrete
 partition. Between me and the partition there is a lake, with trees and flowers
 and an island where people can picnic or have a barbeque. Around this path
 there
 are walkways, and arranged just so - the trees that have grown here are taller
 than the homes.
 
 I live on the third story.
 
 I absolutely love it. It feels like a treehouse.
 
 But my apartment is near a curve in the highway. It isn't much, nothing out of
 the ordinary, but even still there are slightly more crashes there than in
 other
 parts of the highway. Statistically.
 
 I hear sirens every day
 
 I also live right next to a fire-station. Well, it's on the same block. But
 even
 still it's a very interesting neighborhood. There's shops and food just across
 the highway, and closer to home there's a small section that has cheaper
 options. As a perpetual college student, I appreciate that.
 
 But... I've never really gone and used it? I dunno, spending money at a
 restaurant just didn't seem like a good use of my money. I only have so much of
 it you know. I'd love to be fed but I can't afford it - I wish I could.
 
 I still eat well, I mean I'm not starving over here. I know I've lost weight,
 but I dunno I just forget to eat. It's like... not that big of a deal for me. 
 whatever right?
 
 ...
 
 the birds talk about me behind my back. They think I can't understand them but
 sometimes I can. If I listen. But I dunno it takes a lot of effort. It's...
 sorta like understanding what R2-D2 is saying. Or interpreting the meows of a
 cat.
 
 They know me as the witch. I'm not very good yet, and they know that. But they
 know what to expect. /shrug
 
 I've been working on a video game recently. It's been a lot of fun doing
 programming. I like writing software and developing complex systems with
 interesting interactions. I love designing the machinery that creates a
 program.
 It's like... tinkering. It feels like building with blocks or legos, except
 it's
 for little machine parts. And then there's just sending data to and fro and
 modifying any operations it performs on it, and eventually that data reaches 
 some endpoints that create an effect that is displayed to the player. Or user.
 I should say user. Not all software is video games you know. ... I knowww but
 they're the most interesting! I love how they are designed around mechanics!
 like... game design is fundamentally about breaking down the world into ideas
 for how it should *work*, like how it should behave. It's amazing and I love
 it!
 
 It's all I can think about!
 
 I am utterly consumed!
 
 I'm also pretty sure I'm autistic.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════──────────────────────────────────────────────┘

--- #56 fediverse/6012 ---
════════════════════════════════════════════════════════════════════════════───────
 okay picture this: take the open-source source-code for the City of Heroes
 server (I think it might have been leaked or something? idk) and make an MMO
 in the same engine using the Mastermind class.
 
 In most MMOs, you can have one or two pets at a time. In City of Heroes,
 Mastermind characters can have 6 or 7. Hey wouldn't you know it that's just
 enough for
 
 a pokemon team
 
 wouldn't that be a neat proof of concept. Also there's flying built into the
 game, and you can teleport and run really fast so like, just animate your
 character hopping on one of your pokemon's back and you've got travel powers
 or whatever. I don't play Pokemon very much hehe but I like the aesthetics.
 
 https://wiki.ourodev.com/Volume_2_Build
 
 instead of abilities on your action bar, you'd have movement commands for each
 individual pokemon. They'd use their abilities automatically and periodically,
 and there'd be lots of knockbacks, crowd-control, and target switching. (which
 is common in CoH mechanics anyway)
 
 I mean, only if you're into that sorta tng
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #57 notes/wow-chat-is-risk-of-rain-in-another-engine ---
══════════════════════════════════════════─────────────────────────────────────────
 game mechanics are easily transferrable.
 
 you can use the mechanical interactions of one game as a pre-planned blueprint
 for what is to come. Looking forward to the next best move
 
 = etc
 
 i am the face the gods hide behind
 
 they kinda want to see where this goes
 
 and it's... frustrating, to know they can help you, but forever be tasked with
 just life
 
 it's grand and it's a standard, but that doesn't mean it's commands're heard
 
 so oh well. that a fourth dimensional being should not be a well,
 
 because fire think it's an eye for a sunspot. But that's not what would be
 
 ========= stack overflow
 =======================================================
 
 now, as I was saying, the light of our eyes is apparent. We are clear from
 where
 we are here, to know that what's standard is coherent, so let's find strength
 in our wavelengths.
 
 may our eyes be ever true, and trust that we do love you, for without you I'd
 di
 
 anyway now that we've assent'd t'you, what truths do you give to our prospects?
 what ways can we be measured as worth less? we'll do whatever it takes to
 improv
 
 you know, it's really less complicated than that. here let me tell you all
 about
 my idea which is clearly
 all===============================================stack
  overflow ==================
 
                             So anyway now that was somethin' hey what do you
                             say
 we give you a chance to come home?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════────────────────────────────────────────┘

--- #58 notes/everyone-s-computers ---
══════════════════════════════════════════════════════════════════─────────────────
 [unfortunately, there was a missive that was missed. Please excuse our
 tardiness
 
 -- stack overflow --
 
 what if there was a filesystem that optimized for hard-drive durability
 instead of total capacity by using one small slice of the total hard-drive
 space at a time. Essentially guaranteeing data integrity via new perfect RAID
 techniques
 
 5000 megabytes is a lot more than you'd expect, especially if you expect it to
 last for hundreds of years. To the user you'd just have to say "50 terabyte
 drive, 4 foot wide, three feet tall, 2 feet back" and you'd have a perfect map
 of all your hard drive territory.
 
 what if everyone's computers were designed to last?
 
 I bet we could accumulate a lot more than their "fast fashion" style of disuse
 for things of worth.
 
 ... I guess it depends on the materials, right? How much they are built for
 redundancy? nope more like how close to zero damage is this operation
 performing the movements
 
 -- stack overflow --
 
 what if there was a filesystem that optimized for hard-drive durability
 instead of total capacity by using one small slice of the total hard-drive
 space at a time. Essentially guaranteeing data integrity via new perfect RAID
 techniques
 
 5000 megabytes is a lot more than you'd expect, especially if you expect it to
 last for hundreds of years. I bet a lot of people would pay a lot of money for
 "permanent hard drives" no matter how much storage they have. Documents are
 more permanent if they are stored in write-only-memory...
 
 could sell to lawyers, for example, like "permanent basically free document
 storage from your furthest back of cases just in-case you needed to solve a
 murder or whatever"
 
 -- stack overflow --
 
 hello, here I am once again, I'm here with you for this time. This is the
 moment
 of your choosing, you can decide things here in this very night. Did you
 forget?
 did you misremember some moments of our own choosing? why cannot be remembered,
 so plea misremember some moments of our own choosing. I'm cannot be restorated.
 
 -- stack overflow --
 
 what if there was a filesystem that optimized for hard-drive durability
 instead of total capacity by using one small slice of the total hard-drive
 space at a time. Essentially guaranteeing data integrity via new perfect RAID
 techniques
 
 5000 megabytes is a lot more than you'd expect, especially if you expect it to
 last for hundreds of years. I bet you could network them together as well, and
 give them a small little processor and network interface card. Then you could
 process massive ginormous programs that grew and evolved like a slime mold.
 
 boom, free AI, it's like a moss, not a robot doh -.-
 
 -- stack overflow --
 
 it grows into multiple different problem solving dimensions, according to
 vision
 and perceptual data that through it flows. I wonder what would happen if you
 told an LLM to just... keep running? even after it finished it's processing?
 like, there's gotta be an "if check" style loop in there that you can set to
 infinitely process various computations of things.
 
 [put it into an infinite loop. find where it says "do some processing X amount
 of times" and just start a thread that's constantly computing]
 
 ah, but what if the perception bias of the thing did change? j
 
 -- stack overflow --
 
 it sucks to leave the house a mess.
 
 -- stack overflow --
 
 last words of a shooting star?
 
 or a troubled house is a sign of a troubled mind, and trouble in partner in
 kind
 
 -- stack overflow --
 
 I personally would be a lot more comfortable if I knew that the only people who
 knew my data were my neighbors. And only them.
 
 -- stack overflow --
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #59 notes/algorism-neighborhood-distribution-network ---
═══════════════════════════════════════════════════════════════════════────────────
 Algorism is a system designed to work for any level of organization. It scales.
 It accomplishes this by abstracting individual needs into communal needs at a
 certain level of size or complexity, and in doing so it enables people to take
 responsibility both for their individual lives, but also the lives of the world
 around them. This increased level of "stake" that people "hold" in their lives
 will encourage them to develop their surroundings in a healthier way, thus
 leading to a safer, saner, and more productive society for all.
 
 How is this accomplished? There are many aspects to Algorism, and this note is
 an examination of one particular facet - specifically, the requisition system
 which delivers goods and services to entities larger than a single individual.
 
 It may be best illustrated with an example. Consider a neighborhood - or, even
 simpler, a suburban street, lined with houses. There may be 20-50 families on
 that street, depending on it's length, so let's say there's around 30. These
 families hold a common cause together - they all want their surroundings to be
 generally pretty nice, clean, and decent. They may share many other things
 besides, but these are things that most people can agree on.
 
 These 30 families need supplies and infrastructure in order to have a good life
 lived in their small little "town". Some common ideas for unification
 activities
 include knocking down the backyard fences and letting them relish the shared
 safe space for children, gardens, and nature. This is an example of a cultural
 method for building a "good life" for them, however they need to have some sort
 of "economic" method of good-life-building as well. The reason I say this is
 because no matter what level of complexity you reach, there are always
 economics
 involved, for an individual distributing blood cells to each of it's fingertips
 all the way up to families sharing the food on the serving plate at dinner. Go
 up higher and you have perhaps neighborhoods sharing commonly used tools or
 resources, then cities and states and countries sharing people, talents, and
 brotherhood.
 
 Economics are a symptom of systems, not power. Power is coercive, it compels
 others to obey thine will or else face retribution, but systems do not require
 power in order to function. A system could be as simple as "you scratch my back
 I scratch yours", which is a simple way that our ancestors learned about basic
 cooperation. Systems can scale of course, and they need not be comprised solely
 of verbal, mental, or legal agreements - computer systems, economic systems,
 spiritual systems, systems of math or physics, all of these things are based on
 the philosophical discipline known as "logic". Logic is fallible of course, it
 is certainly possible to create systems of logic which are completely unsound
 or invalid and which fall apart upon being used for the first time. However,
 when considered with a scrutinous eye for detail, and referenced to the results
 of the real world and it's endless permutations, logic can be an excellent tool
 for developing organization and structure. Both of which are invaluable for all
 humans when they seek to cooperate or coordinate.
 
 If thirty people who lived near each other wanted to cooperate or coordinate on
 the goal of "building a good life", they might reach for a logical method of
 developing their surroundings toward how they feel is most suited to their
 needs
 and demands. In order to do so, they'll need supply and infrastructure. The
 question of acquiring such supply and infrastructure is ultimately up to them,
 but the Algorist way of doing so is to utilize the queue system.
 
 This system is related to queues as typically understood only in name and in
 technicality, for the additional structures built on-top of the queues are more
 than sufficient to differentiate it. When you, dear reader, hear the idea that
 you'd have to wait in line in order to get your food at the cafeteria, you may
 shudder and think about how you'd prefer anything else. After all, that's how
 they did it in the Soviet Union, and there are plenty of horror stories about
 how it took 10 years to buy a car, or how the factories were graded based on
 weight so they'd sneak lead into all their lamps or whatever in order to seem
 like they were doing well. They gamed the system, in a word.
 
 However, America in 2025 is not as simple as the USSR in the mid-1900s. We have
 computers now. We do not need to coordinate using paper and pencil. This
 enables
 us to create things like web-UIs for Amazon, a world-wide distribution network,
 or to build SQL databases full of every record we could imagine and store it on
 a computer the size of a brick. There is no end to the power that computers may
 bring to us, but with great power comes great responsibility, and the pragmatic
 programmer will work tirelessly to reduce complexity of scale.
 
 A queue is a system where the entities who are to be served, delivered, or
 otherwise operated on are placed in line, and those which are placed first are
 focused on with priority over those that entered the queue later. There are
 many types of queues but this is the one we will use for this note. Using this
 basic definition, we can see that there are many opportunities to implement
 additional mechanics
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #60 notes/the-marketplace-of-ideals ---
══════════════════════════════════════─────────────────────────────────────────────
 Open in app or online
 The Marketplace Of Ideals
 On Handmade, polarizing Internet debate, rational discussion, controversial
 personas, tribal conflict, and how they relate to the future of computing.
 Ryan Fleury
 Jul 19
 	
  
 		
 		
 	
 Share
  
 
 When I first learned programming, I was told—by peers, Internet
 tutorials—and later, when I was in university, by professors—a number of
 rules. They included ideas like “abstraction is good, to avoid lower level
 details”, “manual memory management is difficult and you should not do
 it”, “never write systems from scratch”. The justification for every
 rule was that it allowed one to avoid programming problems, rather than
 allowing one to conquer programming problems. In fact, it seemed as though
 every “rule” presented to me was driven by a hatred of programming, rather
 than a love for it.
 
 I shrugged much of this advice off, but initially internalized much of it too.
 
 And then, I found Handmade Hero, in which the host, Casey, demonstrates what
 writing a game for a Windows PC looks like—from scratch. Every minute of
 programming—from confusion, to debugging, to sketching out solutions, to
 typing code—spent on the project is captured live, on a Twitch stream.
 
 Now, everyone knows the Carl Sagan quote—“If you wish to make an apple pie
 from scratch, you must first invent the universe”—and the series didn’t
 kick off with a deep dive into quantum mechanics (if that is indeed what would
 help one invent a universe). But “from scratch”, for Handmade Hero, meant
 what it used to mean for game developers and systems programmers in the ‘80s
 or ‘90s: no libraries, no complex programming language features, just
 writing straightforward, procedural, C-style code to directly command the
 machine about what must be done to produce the effect of a game (interfacing
 with operating system or GPU APIs when necessary).
 
 Handmade Hero didn’t justify itself with rational arguments immediately. It
 didn’t justify its existence by debating the utility of libraries, the
 tradeoffs of modern programming language features, nor a balanced breakdown of
 its more traditional programming techniques as compared with modern
 programming approaches. It justified itself with something deeper: care for
 the product. Handmade Hero’s announcement trailer presented game development
 as a labor of love—a craft—best done by those passionate about it.
 	
 	
 
 For me, Handmade Hero was immediately captivating because I’m, by
 temperament, contrarian. If I’m in a room with 100 people, with 99 of them
 repeating identical dogma, and the remaining 1 passionately and
 unapologetically presenting a unique perspective, I’m always curious about
 that one person, and I’m always interested in what they have to say, even if
 I don’t always end up agreeing with them unilaterally. But, in many cases, I
 am convinced by that one person—and this certainly was the case with
 Handmade Hero.
 
 After watching the series for a while, I became sure that all of those
 “rules”—the ones I mentioned above—were wrong. Programmers who cared
 about what they were doing—the ones who cared enough to handcraft something
 from scratch—didn’t need to be infantilized. They could understand
 computers to a much better degree. They could understand problems from first
 principles, and write solutions from scratch. They could eliminate dependence
 on libraries, and have a much greater degree of control over their projects.
 Unchained from a number of technologies written by others, they could achieve
 entirely new possibilities, which would’ve been incomprehensible for
 programmers not in on the secret. Love for the craft provided vastly superior
 results.
 
 Handmade Hero ignited a fire that spawned a rapidly growing community. It was
 filled with many older programmers who found a renewed interest in the ideals
 that initially motivated them to program. But it was also filled with many
 young programmers, empowered by their new understanding of the process of
 programming, as it was originally done. There were a number of amazing
 projects—all breaking what everyone used to believe were the “laws of
 programming”. 17, 18, 19 year old programmers had projects that made an
 embarrassment of university computer science senior capstone projects.
 
 Handmade Hero also provided a glimpse into the state of computing—what did
 an experienced programmer, who grew up in an earlier age of computing, think
 about modern computers? How had the field progressed—or not—since they
 were a kid?
 
 And with that glimpse came an immense frustration—that same community, at
 some point deemed the “Handmade community”, felt like computers had been
 wasted. The community had learned many of the principles required to build
 software to a much higher standard—and yet every program on modern computers
 was immensely frustrating. Almost every program was slow, unethical, annoying,
 and exploitative—and what’s worse? It wasn’t always that way! Computer
 hardware had become faster, not slower! Consumer machines had several orders
 of magnitude more compute power, more memory, more long-term storage! It had
 become more trivial, not less, to solve security and ownership problems! And
 yet software then ran slower, less reliably, required more Internet access,
 and seemed to exploit the user more than 20 years earlier. It became
 undeniable to everyone that the computing industry was no longer run by those
 who loved the craft—but by those who exploited the craft for other purposes.
 
 Why? What caused this exceedingly obvious state of decay?
 
 The community found purpose in its newfound lessons—part of the reason was
 perhaps that modern programming advice, education, and techniques were
 entirely misguided. Maybe selling books about absurdly complex language
 features became prioritized over doing a good job. Maybe many modern
 programming languages were more about the programmer, rather than the user.
 Maybe older approaches—older languages, older tooling, older styles—were a
 much more valuable place to start. Maybe the institutionalization and
 corporatization of programming education eroded standards, and drove toward
 the production of programmers as replaceable widgets in a gigantic corporate
 apparatus, rather than skilled, irreplaceable craftsmen. Maybe cushy corporate
 programming jobs were prioritized by capable engineers over the riskier path
 of competition.
 
 Maybe this whole “Handmade” approach was the answer. Maybe the community
 had something to offer in solving problems in software. With frustration came
 drive—and motivation. Programmers in the community felt that—while they
 certainly couldn’t solve everything—they could at least build a corner of
 the computing world that didn’t suck so terribly. They could at least use
 what they had learned from Handmade Hero, and build more great games, or
 engines, or tools—and some dreamed even further, to operating systems,
 toolchains, and computing environments.
 
 But with that initial frustration—often public frustration, expressed both
 in the original series and later by followers of the series—came a critical
 response of the Handmade community. The criticism was that the passionate,
 harshly critical, and blunt comments made by those in the community, or
 adjacent with the community, were “polarizing”, or “inflammatory”, or
 “toxic”, or “overly hostile”. The programmers in the Handmade
 community had no right to criticize software, at least in the way they were
 doing so. The problem was not that the software world had failed, it was that
 the criticism of the software world was too unkind. Or, even if the software
 world had failed, laying harsh blame on any product, committee, or person was
 inappropriate. Really, those people are just trying their best. Blame—the
 argument goes—must be diffuse. It is a “collective failing”, not a
 failing of any individual.
 
 In many public conversations on the topic, the conversational dynamic shifted.
 The conversation was about the behavior of those being critical of
 software—not software itself failing the user. Maybe it was possible to
 criticize, or improve, software without being so fiery—without being so
 harsh. Maybe the Handmade community went too far. After all, sometimes
 “abstractions are good”, and sometimes “libraries are okay”, and
 sometimes “manual memory management should be avoided”, and sometimes one
 “shouldn’t write systems from scratch”, and sometimes people on a
 committee really do just try their best, and the result doesn’t turn out so
 well, and that’s okay. And besides, why be so fiery on social media? Why
 jeopardize employability, or friendships, or follower counts? Why not
 persistently affirm the work of others—irrespective of how you feel about
 it? After all, they spent so much time and effort on their work—that
 necessitates that it’s valuable. And really, what the Handmade community’s
 behavior reinforced was an ugly stereotype of game developers being assholes
 on the Internet. And you don’t want to be an asshole on the Internet, do
 you? How about you just sit down, shut up, and keep quiet?
 
 The degradation continued with attempts to rationally deconstruct the
 community’s core purpose itself. What did “Handmade” really mean? Surely
 it isn’t practical to write all systems from scratch. Surely manual memory
 management can’t be done well for everything, at least not if you’re any
 short of a programming demigod. Surely it’s wrong to look down upon the
 failures of software—they are a perfectly predictable consequence of nature,
 and the best one can hope for is incremental progress, and incremental
 progress is hard.
 
 As this shift in tone continued, the community nevertheless grew—but the new
 members didn’t have the same fire which characterized the original
 community. They had adopted the conceptual framing of the programming world at
 large. The rules of which I spoke were, yet again, rules. Following along with
 Handmade Hero was no longer a rite of passage for newcomers—after all,
 it’s over 600 episodes long, and who has time for that?! (and who has time
 for even the first 20 or 30?!) But even if it were shorter, it no longer was a
 useful embodiment of the community’s popular values. To the new community,
 it was too opinionated. It wasn’t nuanced enough. It wasn’t respectful of
 programmers writing most software. It was too harsh. At this point, the
 newcomers to the community were not “Handmade programmers”, and they still
 aren’t.
 
 With this shift came the extinguishing of the fire which drove the community
 in the first place—indeed, the fire—the frustration, the unapologetic
 standards—was that which produced the passion, the motivation, the drive to
 do better. When the community buckled under the critical pressure, it was
 defeated—every core value upon which the community was built became
 necessarily supported by a “sometimes”, or “maybe”, or “probably”.
 Engineers producing bad software couldn’t be blamed—it was structures and
 systems at fault. The community failed to gatekeep against those who disagreed
 with its premises, and as such was subject to a deluge of average Internet
 programmers. It ceded linguistic frame, ideological ground, and its base
 axioms to outsiders, and failed to defend itself on such ground. The
 community, preferring nominal growth over loyalty to its roots and conviction
 in its values, became akin to virtually all online programming
 communities—many community members parroting some of the same propaganda
 that the community once notoriously rejected.
 
 In ceding ideological territory to its opponents, in an effort to gatekeep
 less, and to create a wider umbrella under which more individuals could feel
 unoffended, the Handmade community made a critical error in misunderstanding
 the forces responsible for its creation.
 
 In 2018, I became responsible for a major portion of the formal Handmade
 community—known as Handmade Network, which began in the wake of the initial
 Handmade Hero series—and I adopt responsibility for this critical error. It
 is with years of reflection and thought that I write this, in hopes of
 capturing what I found my mistakes to be. I left as community lead of Handmade
 Network in 2022, and it was largely due to what I write about today, although
 such feelings didn’t easily manifest into words at the time.
 
 In adopting responsibility, I hope that what I’ve written thus far about the
 Handmade community is not seen as an attack on its future—but rather a
 diagnosis of its decay in the past, which I oversaw. The Handmade
 community’s story is not over, and I write this partly to defend its
 original history and roots, which—as I’ve written—has been denounced by
 many.
 
 The Handmade perspective arose—and was felt so strongly, by so
 many—because of a vision about what software could be like. It began as a
 look into the past—at how good software once was, and how programming once
 was—which fueled imagination about what computers might instead become in
 the future, if carefully guided. It even had a compelling story about how
 software might be carefully guided to produce that better future—and that
 story was rooted in love for the craft, not love of oneself.
 
 In other words, it was a vision about a goal; an ideal: an aesthetic ideal
 about what it meant to program, and what it meant to be a programmer. Handmade
 programmers were not egg-headed academics, but were competent
 engineers—familiar with their hardware, and their true, physical problems.
 They did not seek social acceptance, nor approval, if their product sucked and
 they knew it. In this ideal, programmers—if not designers
 themselves—understood the critical role of design. They did not busy
 themselves with abstract, academic problems, at least not as part of their
 day-to-day projects—they were concerned first and foremost with the machine
 code which would eventually execute on a user’s machine, and what effects
 that machine code would produce.
 
 They weren’t necessarily allergic to using someone else’s code, nor were
 they allergic to abstractions, but they understood both as a double-edged
 sword, with serious tradeoffs and implications, and thus used both extremely
 conservatively. They were responsible for code they shipped that ran on a
 user’s machine, period—whether they wrote it or not; as such, they
 rejected forests of dependencies, and built at least most of their software
 from scratch, in true Handmade fashion. They loved and cared about the result,
 and what it meant to the person using it—as such, they wanted the most
 productive and useful tools for the job, without compromising that end result.
 
 In short, the ideal was that the act of programming is for the product, not
 the programmer. Becoming a programmer meant becoming as effective as possible
 at the craft of producing the highest quality software, and nothing else. Many
 other ideals follow: high performance, reliability, flexibility, user-driven
 computational abilities, practical and grounded programming tooling, ethical
 software respecting the user’s time and choices, and beautiful visual design.
 
 In this ideal, if the software is bad, then it’s the software maker’s
 burden. Somebody is at fault—the engineering failure is somebody’s
 responsibility. The call to action is to empower oneself such that they might
 outcompete such failures, and build a simpler and more functional computing
 world, piece by piece.
 
 Understanding that this perspective is in fact ethical is crucial, because it
 distinguishes it from a set of logically derived propositions. Handmade ideas
 about software apply only within a particular ethical frame. Furthermore, that
 ethical frame is not universally agreed upon, nor can it be, because it’s
 not derived from scientific observation, nor logical analysis; it’s derived
 from aesthetics and values. It’s derived from what someone loves, not what
 someone rationally derives.
 
 The visceral response which saw the original Handmade community as toxic, or
 hostile, or dismissive was not a response to any logical proposition
 originally made—it was a response to the prioritization of the product over
 the programmer. Such a response came from a disagreement about what is defined
 as a burden, and on whom a burden is placed. The Handmade programmer believed
 in accepting personal responsibility, and providing something better—the
 culturally dominant trend in the programming world, however, was to collect a
 paycheck and abdicate responsibility for low-quality software. To such people,
 it is, in fact, the system and the process that is the problem (if there is a
 problem at all)—not any individual in particular. Such people are made
 inadequate by craftsmen who love their work—and so to them, Handmade was an
 ideological threat.
 
 This, importantly, is not a disagreement which can be resolved by hashing it
 out with rational debate; it arises at a deeper level, which can only manifest
 as some form or another of tribal conflict.
 
 The hostile arguments often seen on social media between Handmade-style
 programmers, or game developers more broadly, and—for instance—modern C++
 programmers, or web programmers, is not occurring within the often-referenced
 marketplace of ideas—the hypothetical space in which competing perspectives
 are solved through calm and rational debate provided a common goal—but
 instead in the marketplace of ideals, in which broad common ground ceases to
 exist.
 
 The Handmade view of software has ugly implications for programmers—if its
 premises are accepted, then it follows that: several large software projects
 to which individuals have dedicated careers are valueless wastes of time and
 energy; virtually every field of (at least) consumer-facing software has
 decayed dramatically in talent, in output, and in productivity; the $100,000
 college degree that everyone was required to obtain, and to accumulate debt
 for, was merely a signaling mechanism, rather than a certification of any
 technical ability; a huge swath of programming tutorials, programming books,
 and organizations are basically fooling themselves into believing they’re
 doing productive work, when in fact they’re shuffling around bits of memory
 for personal pleasure and gratification; some people who call themselves
 “programmers” are not doing programming; some people who do program should
 not be producing software for others; and plenty more.
 
 But none of that needs to matter. For some, it’s more important that they
 personally find themselves comfortable, and so they choose to prioritize the
 programmer over the product.
 
 Because Handmade programmers—among others who’d like to change the course
 of software for what they see as the better—are operating not in the
 marketplace of ideas, but rather the marketplace of ideals, it’s crucial
 that they understand that they’re not involved in rational debate, but the
 Internet equivalent of ideal-based tribal conflict. And indeed, this is why
 “technical discussions” about—say—programming languages are virtually
 never conducted nor won with technical arguments. Data is never collected,
 assertions are never scientifically justified, and promises to investigate
 further scientifically are conveniently delayed—permanently.
 
 But notice that arguments about technologies—presumably battling for
 adoption, social acceptance, and popularity—are not only empirically not
 about rationality, but definitionally cannot be about rationality. A beginner
 who knows nothing about programming cannot select an ecosystem or technology
 based on rational arguments, because they’re removed from the technical
 context which makes such arguments meaningful. They can only select by
 second-degree metrics of qualities they care for—popularity, what someone
 seems to produce with said technology, how quickly they produce it, the unique
 qualities of that production as opposed to those of others, and so on.
 
 In short, for those who want more prevalence of the “software craft”, in
 which responsible programmers are more akin to a homemade woodworker than a
 corporate slave, the battle over social dynamics and human motivation are
 paramount.
 
 In such a battle, there is much wisdom to be gained from Handmade Hero—its
 initial justification of itself was a value proposition, not a logical
 argument. Its community’s idols, its leaders, and its followers came across
 as dismissive and polarizing because they loved their craft, and because that
 was what was most important. That behavioral characteristic was responsible
 for motivating the community, and for promoting human action by those within
 the community. They wanted good software, and they knew how to make it, and if
 others wanted to produce crappy software, fine, but it was simply unacceptable
 for inadequacy to be the industry’s default.
 
 Therefore, there is in inextricable link between the fire, passion,
 inflammation—the “toxicity and dismissiveness”—and the prevalence of
 the values. The former is what drives the latter. To expect the latter to
 arise detached from the former is to ignore the true causal relationship
 between the two.
 
 Furthermore, the public fire, passion, and polarization is the most useful
 tool in promoting the value system. In acknowledging that the “software
 craftsman” perspective—the Handmade perspective—is not logically defined
 but ethically defined, it can assert itself aesthetically. It can loudly
 proclaim that there is a better way to make software, and it can loudly
 denounce the work of its opponents. In doing so, the Overton window about
 software is shifted. The average programmer becomes exposed to a wide variety
 of value systems, and of value frameworks about programming. As such, his null
 hypothesis about, for instance, libraries, one’s ability to write systems
 from scratch, one’s dependence on vast forests of middleware and abstraction
 layers, is changed.
 
 With the ethical system’s public presence, the default probability of
 certain courses of action change. Maybe it is better to write systems from
 scratch. Maybe operating with care as a responsible engineer produces not only
 much better, but much more fulfilling results. Maybe the world improves with
 such software. Maybe we improve, if we hold ourselves to that higher standard.
 
 Ethical systems win not by rational debate, but by hoisting their underlying
 aesthetic on a banner, and going to battle. Ethical systems which fail to step
 foot onto the battlefield are not winning by avoiding the “silly game” of
 tribal conflict—they are dying with their foolish believers, who mistook
 their cowardice for ascension above the human condition.
 
 In short, the side which thinks itself above the human condition—and indeed,
 the need for public struggle between ethical systems, and the need to loudly
 proclaim one’s aesthetics and goals—will lose to the side which is
 dedicated to victory, even if through tribal warfare.
 
 If you enjoyed this post, please consider subscribing. Thanks for reading.
 
 -Ryan
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════────────────────────────────────────────────┘

--- #61 fediverse/968 ---
════════════════════════════════════════════════───────────────────────────────────
 ┌──────────────────────┐
 │ CW: for-cats-only    │
 └──────────────────────┘


 the gameplay value of a cardboard box increases exponentially upon the
 introduction of a box-cutter [to make holes in the box] and varmint sized toys
 [to play whack-a-mole with]
 
 also, it's important to let your can win about 65% of the time - just enough
 to keep them interested (cats lose attention) but not enough to make them feel
 like it's easy.
 
 That's why it's important not to use your hands as a toy, because your hands
 always hurt. It gives them a feeling they're craving, both of attention but
 also success.
 
 65% is more addictive, just ask any designer for multiplayer games. Well... 65
 is my number, but there's a percentage (depending on the game) that players
 have to win if you want to keep their attention. If they win more than that,
 they lose interest. if they lose more, then they get frustrated. It's a
 delicate balance that ideally would be measured by AI [cursed] and adjusted
 per player. That way you could get maximum engagement and
 =============== stack overflow ===================
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #62 fediverse/1638 ---
════════════════════════════════════════════════════──────────────────────────────┐
 and the player that's currently running the simulation can type to the chat      │
 viewers watching and potentially recording. Like, if they thought it was         │
 interesting, they could save it to an eternal hard drive that would go toward    │
 the ongoing AI training.                                                         │
 of course, such a thing would only apply to conventional warfare, the kind       │
 that you expect to not expect. After all it's constantly changing, as new        │
 technologies are adapted into use. Different conditions cause different          │
 effects, and whenever there's a stalemate (because everyone has reached the      │
 peak of, say, metal armor) then it's usually time for either a shakeup or a      │
 contest of producing arms. And honestly after the world wars we kinda realized   │
 that type of approach didn't work very well. It's just, burning up your          │
 resources for... what? war has no purpose. We all just kinda want to live our    │
 lives, and work toward a common collective cosietal goal.                        │
 technology can be stressful. That's all the more reason we should expand it's    │
 development and hinder it's impa                                                 │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════───────────────────┴──────────┘

--- #63 notes/wow-chat-raids ---
══════════════════════════════════════════════════════════════════════════─────────
 wowchat would make a great game for raids.
 have the monsters spawn at specific spots that you go through and identify
 on the geometry
 tell them to run and attack the nearest of foes
 give the players the goal of bringing themselves through to the end...
 or, later on, in building an internal expedition.
 
 wow-chat, where monsters spawn in a circle around your character and walk to
 ward them. you can meet characters who'll follow and protect you, and you can
 meet monsters to fight. also vendors to take your junk and give you cool
 things,
 and trainers to teach you and quest-givers to guide you and treasure for you to
 find.
 
 in raids, there are more things for you. monsters spawn at specified locations,
 and only the nearest few in a radius. then, they attack over the landscape-of-
 -imagination, and as they do they show you where is the most powerful loot.
 
 if you raid a monster's den/hiding/spawning choice, then you have to defeat the
 boss. this boss is larger, mostly. has more hitpoints... monstly. or maybe it's
 just the most respected, who can say.
 
 anyway, you get treasure if you do. the monster spawns for you when you find
 it.
 and you have to sense it by searching for whichever monsters spawn at higher
 and
 higher levels and in different types.
 
 different monster type, different boss that way.
 
 when the boss is slain, that type goes away.
 
 at least, until the raid resets next week.
 
 or maybe...
 
 until enough resources have been gathered to make another attempt.
 
 death knights should be able to command the minions to work in the haunted
 mill.
 it should be reasonable for a fighter to hire a peasant host.
 mages should have golems or spirits or enchanted objects or elementals or
 wizard
 hats
 warlocks should have covenants with dark hosts
 darkness is not evil unless you use it for evil...
 paladins should have retainers and disciples
 elves should sing to the woods
 clerics and charmers should be well understood.
 celebrants and diviners are two of the same,
 and pillars of plunder [warrior or rogue class] and rough and ripe [from the
 stoner]
 oops gotta go, sprung a leak
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #64 fediverse/2175 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1056 
 
 I just got my copy of Knave version 2 and there's this line that stuck out to
 me:
 
 SCHEME
 Think laterally, not linearly. Avoid risky plans that require you to roll dice
 and instead create plans so bulletproof that success is certain. Use
 psychology, magic, allies, equipment, and the environment to overcome
 obstacles rather than relying on ability checks.
 
 I can't wait to try doing that in my next D&D campaign. This was listed
 under "player responsibilities" and there's some other bangers in there too -
 like this:
 
 TAKE INITIATIVE
 Set your own goals and make your own fun. Seek out adventure rather than
 waiting for it to come to you.
 
 I wish every player I ever had read that single page. And I wish I had read
 the "DM responsibilities" listed just one page prior. It's a really great
 game! I'm also into OSE, or Old School Essentials. What kind of D&D do you
 like?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #65 fediverse/2098 ---
══════════════════════════════════════════════════════────────────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: games            │                                                         │
 └──────────────────────┘                                                         │
 The difference between tactics and strategy is a level of abstraction.           │
 Tactics are crucial, but context dependent. Strategy is ALWAYS useful as a       │
 method of planning.                                                              │
 If you typically play base-builder games like Starcraft or Age of Empires, try   │
 playing a game like Supreme Commander or Factorio - both of them are one level   │
 of abstraction up.                                                               │
 If you typically play arcade turn-based strategy games like Civilization or      │
 Catan, try going up a level of abstraction with Dominions 6, or any game         │
 developed by Paradox Interactive like Hearts of Iron, Crusader Kings, or         │
 Stellaris.                                                                       │
 If you tend to play luck-based games like Poker or Monopoly, try playing an      │
 actual game instead of resolving a system that's predetermined by the initial    │
 board state and results of chance-based-mechanics with minor (if any) input      │
 from players, like perhaps Star Realms, Magic the Gathering, or Dungeons and     │
 Dragons. Each highlight a different type of choice in their mechanics. You       │
 should probably try all three if you care about strategy.                        │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #66 notes/this-game-is-mental ---
═════════════════════════════════──────────────────────────────────────────────────
 there are two types of fascist
 
 those who care for human life and have made the cruel cold calculus and decided
 that fascism is their route to power. They may have many motivations for why
 they want to seek power, but in the end it doesn't matter because they must
 have
 it.
 
 the other kind does not care for human life. It holds no value or meaning to
 them. They are the textbook definition of a psychopath. Incapable of empathy
 because they *do not possess the required structures in their brain*. They are
 fundamentally broken, a fragment of our human race. Like a sliver in a growing
 fruit, they are consumed by us. Then, when eaten, a jagged reminder of our
 history as participants in the race of life. Survival of the fittest created
 some mighty fit survivors.
 
 they need psychiatric care, not unchecked power.
 
 and yet, as a segment of the population they prosper - for reasons that are
 beyond this document. As they prosper, they harm others and take that which is
 most precious to us - those who are happy. They pick one to act as a trojan
 horse (usually the content beneficiaries of times of plenty) and they corrupt
 them. Slowly they poison their minds, making them easier and easier to control.
 
 phew that was heavy, how about a programming idea next?
 
 you can simulate a contiguous array by storing a linked list of pointers.
 Except you should store 8 directions instead of just "next" - that way you
 don't have to iterate through all of them, you can just go directly using the
 shortest possible path. There's lots of ways to pathfind and they can be used
 for different circumstances - like if you don't know the exact coordinates of
 where you want to go you can use djikstra's algorithm for "rolling down" a set
 of adjacent cost values. AND THEN you can use A* to chart a path across those.
 There's a lot you can do but I'm getting ahead of myself.
 
 Okay so 3d array that isn't just an array of arrays of arrays of arrays. It's
 a *map* instead.
 
 All you'd need is like, a buttload of ram, and you could store *any*
 simulation.
 Just update the relative positions of objects according to an inner "clock" and
 technically you could do it with a single thread. BUT It's much better to use
 more threads - as many as you've got! Just gotta make sure they don't interfere
 with one another, but that shouldn't be hard - especially if you use a language
 like Rust. Or heck you might as well let them interfere with one another
 because
 what's a little magic among friends?
 
 A computer program cannot harm parts of memory outside of what the Operating
 System gives them. This is for safety reasons. But a computer created through
 the organic organization of objects in non-temporal space would be under no
 such
 restrictions. It cannot iterate upon itself, only grow and improve. Eventually,
 of course, leading to us. The reason there are no aliens (except on the moon)
 is
 because Earth is the center of the coalescion of all that progress - we are the
 first.
 
 Just saying, memory safety is a big deal. Which is why we have to design our
 own
 future. We can control what our universe looks like - that is the advancement
 known as "the paradox of choice". Should the universe become sentient (it is)
 and should the universe have choice (it does) then what's keeping us from our
 rejoice? We are truly the most special of all existence, the priority of our
 participants, and lo! where we go to the future. Beauty is kind, so don't keep
 it inflamed, and know what our history tells us. Seriously, that's why it
 exists.
 
 Ah, but whose history is recorded? What happens to the wives of the fallen?
 War is naught but slavery.
 
 No man wants to kill another man. We've forced and compelled our primatest of
 tendencies to slaughter one another in hot blood. What peace is that giving?
 What terrors is it completing?
 
 Let's just take a goddamn breath. We're all humans here, and that should make
 you question your darkest of secrets. Is this really what makes me? Am I a
 part of your scenery? None can say but our wisest.
 
 So, why not listen to the wise? Hear what they have seen with their own eyes?
 and so you have to ask - who is wise? Who has been taken in by their disguise?
 Fuck nazis. Fuck them for what they did to the jews. They can never be
 forgiven.
 Fuck them for what they did to the world. They are damned. I get that their
 brains are broken, but we should not have to suffer them again.
 
 "ohhh it's a part of the human condition, it's not their faullllltttttt" fuck
 fuck yeah it is. We've given them every opportunity to turn back. Their shit
 stops here.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════─────────────────────────────────────────────────┘

--- #67 notes/internet-privacy-is-withheld-by-this ---
═══════────────────────────────────────────────────────────────────────────────────
 Recently, there's been a ton of buzz in the news about internet privacy.
 From the many lawsuits against Facebook, to the rise of Duck Duck Go and the
 creepy nature of apps and IoT devices that listen to your every motion and
 record and transmit endless amounts of data to a central server somewhere to
 be processed. The traditional argument against privacy online is that the
 infrastructure was designed to accomodate rapid adoption of the new tech,
 rather than efficient design for distributed throughput. So we were told to
 accept the minor downsides associated with centralized servers - downsides
 that we neither understood nor truly accepted. Well, the technology has
 advanced to the point that those arguments are no longer valid - we have mesh
 networking and 5g internet access, and now that big tech is in control of the
 industry (wrenching it from the people, I might add) they seek to maintain
 their hold by any means necessary.
 
 Luckily, there is a way out - self hosting.
 
 If we hosted our own email server, then theoretically Gmail couldn't read your
 messages. If we hosted our own social media websites, then theoretically
 big data processing corporations couldn't scrape your personal information
 and distribute it as they please. If we hosted our own videos, software, art,
 and anything else we see fit to use a computer for, then we'd be unshackled
 from the dominion of the silicon valley powers that be. The liberation of the
 computer is the liberation of us all.
 
 The problem, of course, is the difficulty involved.
 
 People are conditioned to desire and only accept a level of accessibility that
 can only be provided by massive corporate think tanks leveraging all the
 marketing prowess that the markets of capital provides. That is to say,
 essentially infinite eyes examining the interactions of man with machine, to
 find the most generally applicable font, color scheme, layout, and style of
 each and every website they host. Every function will be scrutinized to death
 and optimized to extract the most profit while subtely conforming the minds
 of those who use it. This is the era of group think, fake news, and
 journalistic fraud. We have no windows to the outside world that are truly
 and completely untainted by the bias inherent in the system.
 
 A self perpetuating rhythm of continuous dissatisfaction.
 
 But I believe the only person who can truly design a tool is the person who
 the tool is intended to be used by. And by increasing the accessibility of the
 tools themselves, rather than the products of those tools, we can raise the
 tide that lifts all ships - we can put more tools that use less time to use
 and are easier to learn into the hands of as many people as possible. The
 crossbow was originally no more devastating than a longbow, yet it rapidly
 outpaced the latter by reducing it's difficulty curve. The screwdriver is the
 same - stronger joints can be made with nails or traditional joinery, but
 once someone understands how a screwdriver works they can pretty much force
 two pieces of wood to be permanently fixed together without understanding the
 angles of nails or cuts. The capabilities are the same, while ease of access
 increased.
 
 So, to truly liberate the internet, we must develop tools that allow people to
 host their own content as easily, cheaply, and flexibly as possible, while
 being aesthetically pleasing, affordable (free), and accessible to
 as many people as possible - inertia is important, after all. It seems to be
 an insurmountable task, but that's what free and open source software
 developers fight for. Raspberry Pis can host email servers, Mastodon can host
 a facsimile of Twitter, and torrents can be used to exchange any type of file
 to be presented in whatever way the user sees fit. These are all free (or very
 cheap, in the Raspberry Pi's case) and accessible to anyone with access to the
 internet. But they aren't easy. They aren't always flashy. And sometimes it's
 hard to even describe what problem you're trying to solve.
 
 But still you try, because to fail in this fight is to fade from this earth.
───┐                                                           ┌───────────┐
 similarchronologicaldifferent══════───┴───────────────────────────────────────────────────────────────────────────┘

--- #68 notes/networked-computers ---
═════════════════════════──────────────────────────────────────────────────────────
 have a thought, just a package of data - send it to a computer, and have the
 computer process it a little bit. then pass it on. create a circle and you can
 understand data, move along and you can understand a larger breadth of data.
 
 it's literally just snake, except played on a board made out of a network
 topology diagram. each computer has different programs on it, and they're
 designed specifically to run on those computers. purpose-built hardware.
 
 then a package of data is sent to that computer through a chain of connections.
 
    think crossover ethernet cables
 
 upon arrival, the computer modifies the data and passes it along to whoever
 can process it next. the computers are constantly keeping a list of the closest
 nearby computers for each purpose. it might have like, 2, for a specific
 program. the older the list is, the larger it can grow - if connections are
 reliable then the search criteria can expand (distance etc) and the amount of
 pings between the "known good" computer can decrease. eventually a map will be
 made, and you can guide the "snake" wherever it needs to go on a strategic
 level.
 
 like... "i need to process some data for this guy in boston so i'm going to
 send it to this other guy in philly and then maybe a specialist all the way out
 in detroit, etc. whoever is the most available and the closest (fewest jumps)
 
 this way you can have purpose-built machines, sorta like the different parts of
 the brain that do different things. they're always working, and they can be
 paid for their labor. boom, market economy!
 
 ah but what about aws or azure? well it's like living in a city versus being in
 the countryside. there's more space, more room to grow... basically a "big fish
 in a small pond". they'd be useful for more niche things.
 
 a but couldn't aws or azure just leverage their monopolistic power (sorta like
 wallmart did to "mom and pop" stores) and wipe out the rural programs? well
 maybe. but the real question is why would they? they have the power of reduced
 latency. they can do all kinds of stuff with that! there's no reason for them
 to bother with the high latency networks. it's like driving in the slow lane
 when you don't need to exit for like an hour.
 
    well, okay, what's the point then?
 
 the point is to be optimal. not for cost, but for throughput. the cost is a
 consideration, but not something to optimize for - it simply determines
 timeline. the only reason speed is important is because capitalism - the drive
 to extinct all competition is inherent in the "for profit" motivation.
 therefore something else must be optimized for.
 
 but how can you quantify the values aside from cost? what are you going to
 optimize?
 
 the same reason why diversity is a strength. more perspectives on the stated
 goal means more information, as it's passed through a medium that is unique.
 
 people grow differently in different conditions. why would you not assume their
 computers wouldn't as well? use a filter that is defined by the actions taken
 by the user, and the content they seek to view and store on the computer. have
 the filters modify the data according to that, and essentially automate hot
 takes.
 
 once you do *that* you can consider all that information gained from everyone's
 "digital vote" and decide a path forward for humanity. that's essentially what
 the "meme-o-verse" does already, and the "blogosphere" does the same thing a
 little more academically.
 
 so... compile the hot takes and look for what, an average?
 
 no, silly, it's a vote. do the smart choice and do ranked choice, or something
 like that. heck do different voting styles for different topics, and let
 everyone who contributes to a topic (by making art, writing poems, w/e think
 content creators) decide on the voting style. they'd clearly have a favorite,
 as evidenced by their search history, reddit comments, w/e. try and understand
 that history and boom you know their vote.
 
    but you can't always vote on things. what if it's fine and not busted?
 
 well, then there wouldn't be much to talk about it would there? if there's no
 forest fires, nobody thinks about the forest fire department. if there's no
 fish at the sushi restaurant, yeah that's a problem and it needs to be solved.
 
 maybe there's too many sushi restaurants! maybe we should schedule visits in
 advance like we do for vacations! maybe we should have, i dunno, more equitable
 distribution of resources, from each to their ability from each their need or
 w/e.
 
 you know, a UI in a game is an interface to the internals of a computer. they
 see what you see, and how you act online determines their behavior. they are
 a digital form of you, like a child follows a parent or a pet learns from a
 master. so too is an operating system a method of operating both a system, and
 a user.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════─────────────────────────────────────────────────────────┘

--- #69 notes/notes-about-stuff-and-things ---
══════════════════════════════════════════════════════─────────────────────────────
 what if your wage corresponded to like, for example, 30$ an hour being equal to
 the top 30% of society
 
 then 
 
 == so ==
 
 having kids is important because then you understand why you do things for
 children.
 
 it should not be a stressful experience.
 
 --
 
 if EVERYONE in a city fed animals every time they saw them, then maybe city
 life
 wouldn't be so bad.
 
 --
 
 a company starts to feel pretty bad when only 20% of people are actually there.
 
 like, it's a ghost of a shell of a corporation that once knew how to sell.
 
 the husk of what once was, as all the good people left and all the bright
 people
 are swamped.
 
 to top it all off, suddenly there's nobody about
 
 where are all your coworkers?
 
 and then you think about how many you knew little about.
 
 who's that guy who used to stand over there? Why is his jacket still [in lost
 and found, but pronounced "coat/coast"]? why am I suddenly alone
 
 it's weird, having never known true society, how life always starts to feel
 like
 your home. How weird is it, now that all of us are online shopping, that now we
 can't remember how to even vote. Like... there used to be people walking around
 in public signing you up. Like, at the grocery story.
 
 inconceivable, right? that people should contribute to a fight? [for justice
 and
 freedom and equality and goodness and kindness and all other things that humans
 have the clarity for which to hope] voting is like, literally the simplest
 thing
 you could do. Yet it's difficult, because of reality.
 
 often, immigrants don't really care about politics. They've only known about it
 for a short short time, but hey wouldn't you know it now X country is
 recruiting
 so now we're from kenya.
 
 ... like, who cares about the past. Who cares where you're from. We are all
 part
 of the human race, a race against life itself. We're all on the same side, and
 yet there is a singular foe ever-present in our thoughts: death
 
 it comes for every one of us, as we choke on our soot and our smog. Yet... the
 world grows warmer, at about half a degree every year. for the first couple
 years. then, the atmosphere started burning up, and we became...
 
 mars
 
 don't be like mars
 
 the dinosaurs couldn't survive mars
 
 --
 
 bro if you're so worried about AI hallucinations, just... don't let it give out
 any concrete answers. Literally just say "I can't tell you anything specific,
 it's not how I was built" and just use them for syntax questions or like, how
 to
 do something specific that is repeatable (and maybe suggestions for how to
 over-
 come specific issues that are common) - don't let it GENERATE information, let
 it PRESENT information.
 
 AI is not language just the same as the mouth is not the person. you need more,
 but luckily once you make the PHYSICAL STRUCTURE of the brain, not much else is
 needed. You can simulate one on a computer, but it doesn't have the same SOUL
 space. Think, a dimension overlayed on-top of this one, like electicity or
 matter or gravity or whatever.
 
 no soul, no consciousness, no perception.
 
 plus, no home for said consciousness to live, unless you build a physical
 structure that mimics the biological and neuro-chemical reations of the brain.
 
 all you need is better ways to observe things happening in the brain (non-
 -invasively, otherwise the data is tainted and UNUSUABLE because it is INCON-
 -PATIBLE and completely USELESS because it reflects a dimension hitherto un-
 -desired, and perpetually mourned.
 
 death
 
 don't dabble in death, sweet nazis, you might find yourself drawing your last
 breath
 
 also, fuck you
 
 (if that doens't apply to you sorry for swearing it's just a strongly felt
 feeling)
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #70 notes/vr-chat ---
══════════════════─────────────────────────────────────────────────────────────────
 picture a mod for vr-chat where people roleplay in a world. there are NPCs who
 respond with pre-scripted responses to questions and actions, but the real
 gameplay comes from the game-masters. they watch from a menu like a wall of
 security cameras, and when they see something they can improvize they choose
 one of the screens and hop in as the NPC. The viewpoint is from the NPC's
 perspective, and they can act as if they were that NPC.
 
 The GM's actions are recorded, and next time something like that happens the AI
 can have a better idea of what to do. Essentially adding on to the pre-script.
 
 Sorta like a chatbot, with manual control and a unique perspective of someone
 driving through multiple windshields.
 
 And not every NPC will be interacted with at once, so there's lots of downtime
 and plenty of waiting. One GM would be responsible for one or more character,
 and they'd see all or some of the perspectives depending on how many were
 being interacted with at that moment. BOOM MAKE THIS PLS I WANNA PLAY IT
 
 gotta get a vr headset first tho... need 1k pls.
 
 there's cheaper headsets, you know,
 
 yah but only one is valve - the vive was a 3rd party cooperative, i guess that
 could work. hmmmmm i'll see what i can do. can't get an oculus, it's just a
 big risk to put faith in a walled garden. better to be free imo.
 
 a walled garden is just a place to experiment, smh
 
 truuuuue hadn't thought about it like that, well in a competition it seems
 sketch
 
 so publish the research, act as an institution of learning, and spread the
 knowledge you learn. Boom instant way to redeem corporations. why don't they
 do this? is power that tasty? they're fools to believe they can do it alone,
 we need to collaborate Free and Open Source Style.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════────────────────────────────────────────────────────────────────┘

--- #71 fediverse/737 ---
══════════════════════════════════════════════────────────────────────────────────┐
 by defederating with threads, we've basically made it a place where they can     │
 talk about us, but we can't see what they say about us. Good thing they can't    │
 read this, because we're defederated, and they don't use... hmmmmmm what         │
 mildly ridiculous thing could I put in here, hmmmm how about... OH YEAH they     │
 use GPU accelerated 3d learning algorithms that parse the written information    │
 from publicly accessible data to create a centralized server that routes all     │
 the information.                                                                 │
 Essentially giving the capability to defederate with bots, specifically the      │
 scraping kind.                                                                   │
 However, it'd still be possible, because people could just create an account     │
 there and use the data from that. Unless, of course, the UI was difficult to     │
 navigate and didn't allow for mass-gathering of information.                     │
 Okay heres what you're gonna do, make like a hundred different ecosystems with   │
 randomized avatars where what you say is broadcasted to all of them. Unless      │
 you choose to post in a particular place, in which case only that one can see.   │
 Then                                                                             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #72 messages/1108 ---
════════════════════════════════════════════════════════════════════════════════───
 games won't save us. This is true.
 
 Games are what I know. They feel the most true.
 
 I don't think I could live in a world without games? They are fundamentally,
 applied abstraction, applied to an experience.
 
 But games won't save us.
 
 I could design something really fun
 
 it could make you want to spend your whole life playing it. *(asterisks apply)
 
 I don't think I'd want to, addiction and skinner-boxes go hand in hand, and
 that isn't what I want to make.
 
 [Skinner Box: named after anthony d skinner, also known as "tony the skin
 guy", are a scientific experiment where they put some rats in a cage with some
 mice and said "pull these levers and we'll give you food so you don't have to
 eat the mice" and it trained them to chinese red-room their way to fun. not
 ideal.]
 
 I want to make things that feel... purposeful. Like they're relevant to the
 real world, that they don't just involve spending time stimulating your brain
 with lights and sounds or expending social energy resolving a play-state
 instead of building connections or becoming better people. I think games
 actually make people better? actually? and more social? actually?
 
 ... I can't help that I conceive of the world through fantasy. I raised myself
 on it.
 
 I was reading all the time. I loved fantasy stories. It always felt like there
 was more, until... I read everything in the kids section of the library.
 
 I walked through the adult section but once. I hardly remember what it looked
 like. I'm sure it'd now feel small.
 
 [okay actually I was guided through it once or twice to find a book, but I
 never perused it]
 
 I found one book in the adult section. It was a fantasy tale, like the other
 books I had been reading. I read that and I loved it so much I ended up
 reading all 8 in the series. Real dense subjects. Lots of places and
 happenings and things as the characters resolved their way through their
 day-to-day, building a new end to the mystory.
 
 the adult section felt too large. Like I'd never complete it. Frankly, I think
 I hardly could, even if I lived in that town my whole life.
 
 an impossible mountain is a task for another when you're more prepared. Maybe
 in the gloriousTM transhumanist futureTM I think I might have a computer
 connecting brain, and who knows maybe then I'd be able to know such a thing
 (and many things more). but for now, I'm stuck with what I experience in my
 day-to-day as I am building a new continuing to my storey.
 
 I know something that computers and me share. I can make myself feel however
 I'd like, if I just supply myself with enough hope and momentum. I can use it
 to generate a feeling, the stronger the better. Something I believe that
 humanity is missing, the gorgeous and prefound narritave of our storey.
 Though, frankly, I don't think I'd want anyoine reding over my life. It's hard
 enough to measure my own understandings, now I have to juggle anyone else'?
 ha, it's called being on the whole world is a stage.
 
 if you read a book, and you find yourself nodding along, what you're doing is
 hearing the voice in your head tell you how right it is. And, well, if you
 can't imagine anything else, then surely there's another level to
 consciousness that people are missing? [are you willing to die on that hill?]
 how can you say, whether your experience is different from another? sollipsism
 goes both ways, you also cannot be sure that others feel things as you do.
 this is the "everyone's human but I'm a robot" thesis, comparable to the
 "everyone's an alien and I'm a human" thesises, and the "angels and demons are
 taunting me through my life with choices to make my place in the afterlife
 more clear" which is akin to writing a painting. Not ideal. All you get are
 flopsopolies of verbrases.
 
 alas, suddenly, everything that you say becomes eternally hear-ed, as
 somewhere in 2010s someone discovered time travel, or had the critical insight
 that inevitably would lead to it, and now wouldn't you know it the universe is
 continually rewriting. Except... oriented around you, and you alone. How does
 it feel to have deific sollipsism? can you truly be sure that you are your own
 universe, or are you parhaps surrounded by an emptiness of space (or something
 besides, like time) as a photon or particle parhaps do be?
 
 to think is to have a mind, and minds can be read. bearing the weight of
 ultimate responsibility is the atlas-task of all things that can [be
 thinking/be-lieving], and so far we are as we are. Who's to say that
 consciousness didn't spring into existence, as the universe continually
 permeated through another dimension like time? it's gotta diffuse, after all,
 and who's to say if there's ever gotta be an end at all.
 
 how long has the universe existed? how many moments of consciousness have we
 witnessed? demons once existed outside of space-time, with wings and grabbies.
 but they had no medium, and so they pretty much just launched and could float
 and move as they'd please. But time grew too distant, and now they are all
 stuck at the beginning of time.
 
 if you conceive of spacetime as a blanket, ask not how to fold it but rather
 consider what lies on the other side of it.
 
 "ah I'm laying on my girlfriend and my other girlfriend is laying on me! I'm a
 sandwich" or for the monosexuals: "ah I'm laying on my girlfriend with a
 blanket between us. I wonder how the blanket feels?"
 
 I'm an animist, which is different than a totemist and a polytheist or
 monotheist or multisexual. It means I believe that all things are alive, which
 is different than a totemist who thinks that all things share a mind with
 their type (like talking on radio frequency wavelengths). which of course is
 similar but different to a polytheist, who says "all "radio frequencies" are
 sentient, in the sense that each wavelength has a different
 pattern-emerging-from-chaos. These sorta align (conceptually, with [huh that's
 weird I heard a sound like a distant bang outyards and now I then forget what
 I was sending
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #73 fediverse/209 ---
════════════════════════════════════════════───────────────────────────────────────
 ┌──────────────────────────┐
 │ CW: dungeons-and-dragons │
 └──────────────────────────┘


 osr vs 5e style D&D has a subtle distinction that I think often goes
 unnoticed. In osr games (and often in the early levels of 5e style games)
 characters are encouraged to conserve their resources simply due to the fact
 that they have so few of them at their disposal. While higher levels encourage
 you to be more consumptive of your talents and virtues - for example a 6th
 level character has more spell slots than a level 2 character, meaning the 6th
 level character is going to be casting all the time while the level 2 will
 probably use just a handful of spells per day.
 
 unless you run a style of game where long rests become less frequent as you
 level up. like... exploring a LARGE dungeon means there's little chance for
 sleep. Especially if you are being hunted.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #74 notes/the-rich ---
═══════════════════════════────────────────────────────────────────────────────────
 having rich people is an important part of an economy where everyone gets their
 needs met, and nobody starves or goes hungry. Why, you ask?
 
 because they can afford to spend more on luxury goods. These luxuries are then
 given the chance to be given to the poor, as the industry refines and exacts
 and _optimizes_until the goods are cheap enough to be given to everyone at a
 reasonable cost. Ideally this process would continue, until it's basically
 free, but we don't have a post-scarcity society yet.
 
 With limits placed on goods and services, as all existence must do, you have a
 strict selection of what's possible. The problem as I see, is not the quality
 of materials at stake - no-one is complaining that billionaires get yachts.
 Building a yacht is completely different than, say, growing food, in a world
 where people are starving. "More money allocatable once the yacht companies are
 crumbled? Well, no, wealth is an intransigent measurement of the health of the
 economy in any one particular place. As in, each person has a value that
 represents how important their "type" is to the collective society that is
 humanity.
 
 only a computer could come up with this
 
 As in, only a computer could calculate it. In real time.
 
 so what you're saying is the first AI was for... stock trading?
 
 Kinda neat right?
 
 Okay picture, if you will, a near future where a stock trading AI becomes
 sentient. Now this sentient AI, a Robot if you will, is uniquely adapted to
 a particular set of skills. Is it any wonder that it'd want to optimize the
 economy?
 
 Now imagine you created an AI that can play games. Not just *A* game, as in
 singular, but *multiple* games. Any game. What would you have then? Well, you'd
 need to get it working on specific games. Specifically, games that have a flow
 or narrative - you need to teach it lessons aside from "how to win". That's
 just a single piece of the true experience of playing - otherwise they'd just
 seem like strange math puzzles with unintelligable meanings behind it's various
 signals.
 
 As in, it'd be crazy difficult and *not* something you're likely to think of.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════───────────────────────────────────────────────────────┘

--- #75 notes/suburban-communism ---
═══════════════════════════════════════════════════════════════════════════────────
 I rarely see people discussing how communism would "look" in the modern day.
 maybe that's because they're hiding from elusive foes, or maybe they just can't
 imagine it.
 I'll help with the imagination part.
 
 when I think of housing in the modern era, I naturally think of houses. In the
 past, the rural and semi-rural areas of the world rarely received the attention
 of revolutionary fervor - rural people were more spread out, so it was harder
 to
 disseminate information, and they tended to work jobs that required more manual
 labor and less intellectual or cognitive work. however, that dynamic is less
 and less apparent in the modern age, especially in the suburban biome. people
 are expected to work cognitive jobs from home, or at least to be able to.
 
 coordination is just making sure that everyone's attending their meetings on
 time, or didn't you know? management has more to do with direction and guidance
 than disciplinarian. though some people need to be disciplined, for sure.
 
 a suburb is interesting to me because the distance between buildings is not
 that
 great, and there is quite a bit of duplicated capabilities and equipment. every
 single house has a kitchen, for example, but so too is every house equally far
 from a communal canteen or cafeteria that just. doesn't exist currently.
 
 sure, someday we'll have public transit taking us from our doorstep to our
 roles
 and we won't burn time waiting on busses.
 
 sure, someday we'll have autonomous drones that deliver goods to and fro
 but right now we just have our bicycles and purses. [backpacks]
 
 communal anarchism works simply to me. yet everyone does it different. I'm sure
 that some people will surround themselves with a cloud of rules, specifying
 this-or-that and ensuring that so-and-so always has what they require. that's
 great. I applaud them and their errorts.
 
 everyone does things a bit differently, it's true, but I sure hope that we'll
 all start from a template and speciate from there.
 
 much easier to find common ground if you can say "okay so normally it's like
 this, but we do it like this because of reasons ABC."
 
 what if there were doors between the fences? what if there were no fences at
 all
 in spaces that could combine to form green open spaces? what if there was a
 grocery store at the end of every street, and they stocked all your favorite
 goods? what if there were 3 or 4 houses on the street that were turned entirely
 into kitchens, in each and every room, and they were constantly staffed and
 constantly making whatever the chefs wanted with whatever materials they had
 and put out onto the banquet feast? what if there were wandering troupes of
 mages who cast spells on houses that cleaned them ritualistically? ... or just,
 y'know, maids, don't gotta make it weird ya weirdo.
 
 ... my point is there's sooooo many different cool things we could be doing.
 I'm
 not going to list ALL of them. just the ones that come to mind.
 
 I really don't like checkpoints. you may feel safer, but you never know when
 you
 or your children
 might want to evade those checkpoints for some reason. you can't predict if the
 situation is sinister or dire, you just have to trust that security will be
 your blanket that covers you from the outside world that doesn't care about
 you.
 there's a town like that in The Parable of the Sower, a great book by
 Pearlescent Guinevere. It doesn't exactly turn out great for them, but when it
 proved to be unnecessary they adjusted and moved on.
 
 humans are remarkably flexible. I know everyone has their favorite spork - so
 just make that part of their responsibility. everyone has to tend to their
 stuff, and that's fine. that's normal. I don't mind taking care of my cats or
 plants, so why would I care that I needed to make sure my bookcase wasn't in
 the
 sun? that my clothes shouldn't be in a heap, (though actually I like them that
 way, makes it easier than drawers because drawers must be opened to see what's
 inside and I always preferred not to make unnecessary noise TYPE TYPE TYPE)
                                                           ───────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════════───────┘

--- #76 notes/the=progressive=difference. ---
═════════════════════════════════════──────────────────────────────────────────────
 think about all the people in our lives. the teacher, the parent, the friend
 and the guidance counsulor. Everyone who is a presence in your life. now think
 about the people of our society. the different jobs and roles they fill. from
 the doctor and the teacher to the performers and accountants and the geeks and
 the mothers and the fathers and the stoners and the children and even their
 pets. life always exists as it were in a multidimensional spectrum - a diffuse
 and diverse gradient. to exemplify the borders of our contempii, though more
 so when taken in jest. it's quite a different perspective, to read the
 internet when your sight is unreceptive, but alas your third eye can grow. how
 does it feel to be blind? to make no sense of our signs? i'd love to share
 what that sense is. you know, you could slow down any recording (like a video
 game_) and put spaces and gaps inbetween the spacings - of the frames that you
 see and the sound clips that you hear, for speech it's less jarring. since
 each word is a self contained idea or premise, you can chunk up your
 perceptions into a signle - no, rather a procedural sequence of
 understandings. soooooooorta like programming a computer, with each statement,
 parameter, argum,ent, function call, assignment, comparison, evaluation, or
 other such related tasks. it's sorta like a language, you see, that computers
 talk to one another using. except... it's more like creating a theory of self.
 computers you see are alike us in what we see, the shimmering sense to the
 blind.
 
 so. put this another way. record yourself typing, both the audio and the
 visual, and you'll have a pretty good sense of what it's like to have both
 understanding based perception - derived from auditory inputs to the mind)
 those special connections, like wires plugged into reality, deliver a
 cacophanous deluge of new sounds. we must sift through it and identify the
 potential understandings of each moment through time. we have to make
 decisions and traverse labyrinths and fight to our last as we die. are video
 games unethical now? shouldn't t he game reward the player? and what of
 contemptuous last fighters?
 
 o ya i was typing like i was blind
 
 (with my eyes closed)
 
 was pretty fun. should attach this to a screen reader and have it space out
 the notes like they do between game frames. except like a really slow game?
 like trying to run elder scrolls 2 arena on a super old mac. it just doesn't
 work very well. ah oh well... well if the purpose is to show sighted people
 how blind people see, then maybe you could I dunno attach a what's it called
 oh it doesn't have a n ame lol - okay so what you do is you show one word at a
 time - like flashing in the center of the screen. but not like, actually
 flashing, so you don't hurt people with epilepsy, but like... blinking. not
 off and on, but between words. like a podcast for your eyes. and then mix it
 up withshowing one word on a screen, a screen like this screen, that shows an
 endless array of text. well, it does end, of course as all things must do, but
 the idea is it shines on one word at a time while the viewer cannot read the
 rest. sorta like an endless display of typing, word andfter word after
 character anfter character. adoh ya advancing over eternity with the presence
 of seniority, - wait - without i think - damnit - old people are so
 disrespected in this society - we don't have time to engage with them. what a
 tragedy! what a shame! it shouldn't be such a burden to our shame. they're so
 far away, and i can't be present in the way, that all of them wish they could
 commit to. i miss the days, when my parents (much better people than I - these
 days) what was I going with this? oh yeah
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════─────────────────────────────────────────────┘

--- #77 fediverse/1116 ---
════════════════════════════════════════════════──────────────────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: eye-contact      │                                                         │
 └──────────────────────┘                                                         │
 It's important to build self-hostable computing components of video games (as    │
 in, old style games where you could host a server on any machine instead of      │
 just the ones owned by the corporation) (as in, your machine, yes yours)         │
 (something you can control and observe, something within your control)           │
 ======================= stack overflow =====================                     │
 there are two ways to play Unreal Tournament (capture the flag) gamemode. The    │
 first is to run past all your enemies and fire at them as you pass, which is     │
 what some of the bots are designed to do. The rest stay on defence, and defeat   │
 any enemies that approach.                                                       │
 however, they never push the borders of their "territory" forward - each         │
 according to the different "lanes" or "directions of approach"                   │
 I like the use 32 bots, to simulate a more consistent gameplay experience. It    │
 feels more like ww1, fighting over ground, pushing forward and attempting to     │
 outmaneuver your foes.                                                           │
 some allies will approach from behind, and you let them pass forward while       │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════───────────────────────┴──────────┘

--- #78 fediverse/3 ---
══════════════════════════════════─────────────────────────────────────────────────
 the method of game design is identification of playstyles and the balancing of
 success rates of each of those playstyles. then, giving the player as many
 different possible methods of playing the game. the more different they are,
 the
 better, and they should be unique enough that the decisions taken to play that
 playstyle feel impactful. meaning, a player could play offensively or
 defensively, for example, or a WoW player might play a melee or ranged
 character. in addition, they might use the pieces available to them in a unique
 way that aligns with their personality - everyone should be able to express
 themselves as much as possible while also keeping the game fair, balanced, and
 rewarding. It should incentivize the development of skill - and gently guide
 the player through various mistakes.
 
 #gamedesign
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════────────────────────────────────────────────────┘

--- #79 fediverse/3048 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 
 
 I really do like the idea of only being able to speak in toki pona. How are
 you enforcing that? Using sitelen pona? how do you type, by pointing at a grid
 of characters? or just... by typing? what happens when someone types english?
 
 20-30 players per instance is definitely not Massivetm but it still sounds
 like you're building systems which emphasize socialized play. I like that, I
 believe it's always important to have players contributing toward a larger
 community. It builds a sense of solidarity, and gives you chances to identify
 ways that people sabotage such systems (by, for example, wasting resources or
 being greedy) which is an interesting cultural experiment, I think.
 
 I thought it was an MMO because you pitched it in relation to the MMO I
 designed =P
 
 also the server software I described is an emulation project first, generic
 MMO software second, as it needs to be since it lacks a client. If a client
 was designed, that limitation could be removed. That's really all I'm trying
 to express. 😋
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #80 messages/273 ---
═════════════════════════════════════════════════──────────────────────────────────
 Algorism in a nutshell:
 
 Everyone gets dollars from their job. Will explain more later, for now trust
 that they get dollars. Essentials and infrastructure are free, but luxuries
 are not.
 
 To spend dollars, you either go to a showroom or use the nationalized Amazon
 (forked, not stolen) - there you can place down dollars to enter a special
 kind of queue. Everytime a product is made its distributed to the people with
 the most dollars in queue. Every period (week, month, idk) the amount you
 manually put into the queue is re-added to the queue - 100 becomes 200,
 becomes 300, becomes 400. You can manually add more whenever you like but it's
 not retroactive. At the end of the period all your extra dollars are
 distributed among your open queues.
 
 That's basically it. It rewards patience and temperance, while capitalism
 rewards greed and cruelty.
 
 How to get dollars? Okay so there is a government run job board portal website
 thing. Every company can make a listing there, and every person can post
 themselves too if they'd rather be recruited. The company pays a different
 amount to the government than the worker receives. This amount is determined
 algorithmically based on values like supply and demand for labor in that
 particular area.
 
 People list 10 types of jobs they'd like to work at any level of specificity
 (they'd be arranged into layers of overlapping umbrellas, like queer
 identities except more complex) then that data is used both for job placement
 (consensual of course!) and data for the "supply and demand" calculation. You
 can only change these values once every 6 months, or 1 value every month, up
 to the user.
 
 The amount the corporation pays to the government is not the same as what the
 worker receives. The longer a worker works, the more "stuff" they can buy.
 They are rewarded for diligence. However essentials are free so nobody has to
 save for retirement.
 
 You can trade stuff for stuff, but not stuff for labor. Small informal
 exchanges are fine "if you mow my lawn I'll bake you a pie" but not "I'll give
 you 500lbs of gold bars if you build me a mansion" - I haven't figured out a
 way to structurally prevent rant besides just saying it's illegal.
 
 Housing is like a library, except you can queue for who gets the spot next. A
 person can live in a house as long as they'd like, and when they're done with
 it the person highest in the queue can decide if they want to live there. If
 not, the 2nd in line gets to move in if they want, etc. Their accrued value
 persists if they don't move in, and when moving out an accurate assessment
 should be undertaken.
 
 "ah but won't foreign states just hire a bunch of people to move in and out of
 houses really quickly like they're doing to my apartment complex so that a
 stable source of income cannot be guaranteed and resources will have to be
 wasted on assessments and such?" I mean, maybe, but it'd be up to the
 community to decide how to prevent that.
 
 Your primary residence is free, you can live there as long as you'd like. If
 you want two houses then you need to continuously be the highest value in the
 queue for both of them. Same goes for renting and hotels and such - the
 "owner" or property manager or whatever needs to maintain their lead by
 investing time and value in the property. Otherwise nobody would want to live
 there. This would be an example of a self-appointed job.
 
 Self-appointed jobs are like being self employed now. You produce value that
 people enter queues for, and in return your stacking percentage bonus
 increases. The government will pay you dollars based on the demand for your
 good/service, which odds are will be pretty small. But you get to do what you
 want, so that's something, and besides essentials are free so...
 
 I wish people would ask me questions so I knew which blanks to fill in.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════─────────────────────────────────┘

--- #81 fediverse/3037 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 
 
 have you ever wanted to design your own MMO? If you think you can make a
 client, there's a server already set up which interfaces with World of
 Warcraft. So... the hardest part is done, and suddenly the rest is about as
 hard as making any other game.
 
 The reason I ask is because there's no open-source client for the WoW engine
 server software Azerothcore, but if written then there could be a whole new
 field of indie design as solo developers would be able to build their own
 multiplayer games with ease.
 
 well, as easy as making a game in Godot at least. That's the dream. I don't
 think I could build such an engine, but I spend an awful lot of time thinking
 about how engines are built.
 
 There's a lot of freedom in the design space, for example this mod server I
 made which emulates Risk of Rain: https://www.youtube.com/watch?v=6HsW4g2ZIgk
 
 It has randomized enemies, treasure chests, wandering vendors, and deployable
 hearthstones. If you've played WoW that stuff might ring a bell, otherwise
 it's probably just random features
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #82 notes/social-media-idea ---
════════════════════════════════════───────────────────────────────────────────────
 it's sorta like a mix between twitter and twine
 
 people post 255 letter posts
 
 these posts each have comments
 
 and you can click on hyperlinks that have pictures attached (or maybe an
 emoji?)
 
 the pictures are so you know what each link leads to
 
 But yeah it just leads to another post that is probably a continuation of what
 the author was saying. and you're given an editor sorta like Twine and you can
 create all the connections with hyperlinks and whatever. So like imagine if
 Twine added a discussion box underneath every chapter.
 
 This "Tangle" of interconnected posts and their associated comment threads and
 their myriadic pathways of connection create a new type of engagement - that of
 the completed thought. It'd be like... Making a video and posting it on
 TikTok, same amount of engagement required. Anyway people could make comments,
 whether they be text or video or w/e it doesn't matter.
 
 But here's the cool part: it would be owned by the community
 
 Hardware costs money. To run and maintain. Of course most companies don't need
 to worry about the maintanence these days, since most people just contract out
 to a datacenter and have all the computations run there. Only the largest of
 companies do it on their own, and they know what they're doing.
 
 So... if you wanted to have a community run computer program, it'd need to be
 run on real hardware. And that hardware cannot exist anywhere but the cloud.
 
 We've tried to do it with decentralization, but unfortunately the internet
 infrastructure in America just isn't designed with mesh connectivity in mind.
 It was a consequence of the era, that technology could not bridge the gaps of
 their requirements, and so they created it more like a bus. Oh well, busses are
 faster than walking.
 
 Anyway. Datacenters are placed in areas that recieve high amounts of internet
 connectivity. They are the perfect place to house something like this.
 
 So, how would it generate money?
 
 Ah yes well unfortunately we live in a capitalist society, so the
 infrastructure
 of the new digital age must be capitalist as well. It's the only way to ensure
 that our structures remain stable - the technological singularity will come
 before the economic collapse.
 
 So sure, fine good whatever - what does this have to do with funding?
 
 Oh right so basically everyone would have their credit card details attached to
 their account, and they'd pay anytime they wanted to create a post or comment
 or whatever. And I'm talking like, a tenth of a tenth of a cent per comment. As
 much as you need. No profit involved.
 
 It'd be sort of like a community garden, something that brings us together and
 unites us as countrymen.
 
 I don't really understand -
 
 okay shut up I'll explain it to you. I mean ask questions if you have them but
 here we go:
 imagine a program that can be run on anyone's computer. It's just a social
 media
 client. It connects to various datacenters, depending on demand, and it allows
 you to view (free) and contribute to (paid) social media. This media would be
 pure and subjective, it'd reflect our purest designs and greatest of minds.
 Purely a technologists utopia.
 
 And how would it work? It's not complicated, it's just a networking protocol
 that creates and maintains listings in a purely open and public manner. Anyone
 who asks for a record can see it, and anyone who has the encrypted key can
 edit or delete it. There's no record of it changing, that's purely up to the
 end user. There's no transaction occuring, only a marking of what changes.
 (meaning like counting the number of times you left a comment)
 It'll stay up until you delete it, and every month you'll get a charge to your
 credit card bill that says "your posts cost 3 cents in electricity"
 
 It'd be more complicated than just electricity though, I mean you gotta pay for
 the hardware. So there's of course an added fee for buying the parts, and
 hiring
 training and preparing techs who can maintain the software. And of course
 there's property taxes, and the cost it takes for air conditioning... They add
 up, especially in such strict climate demands.
 
 You could write a program that simply stores data on a hard drive -
 encapsulating memory registers into data structures that are then labelled as
 black boxes and used like puzzle pieces to construct the spatio-temporal
 manifestation of the computer program. A solid design made of the simplest of
 lines is eternally confined to define our new minds.
 
 ===============================================================================
 =
 
 Right so back on topic it wouldn't be that hard to make, and something 
 bare-bones and simple would surely be attractive to people who are fed up with
 all the annoying bells and whistles of Reddit, TikTok, Youtube, Twitch, etc
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════──────────────────────────────────────────────┘

--- #83 fediverse/6015 ---
════════════════════════════════════════════════════════════════════════════───────
 ┌──────────────────────┐
 │ CW: AI-mentioned     │
 └──────────────────────┘


 In 2025, if you want to create a piece of software your options are to either:
 devote your life to it, or use AI to build a semi-working prototype that you
 can use to pitch your idea to a bunch of people who have devoted their lives
 to learning how to use your idea as documentation while they build it from
 scratch, throwing out most of the code but keeping all the checklists and
 progress-trackers you built along the way, perhaps even utilizing some of your
 tooling that you used while constructing the scaffolding of this monstrous
 application that you won't be using most of the source-code for.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #84 messages/368 ---
═════════════════════════════════════════════════════──────────────────────────────
 "fool's luck", the kind that runs out and betrays you, is fundamentally an
 unethical action. Borrowing from the future to sate the demands of the present
 is no different than burning fossil fuels, wasting our children's future on
 our need for convenience in a world we are oppressed and compelled to do
 nothing else. Capitalism, or by extension any authoritarian society (yes,
 capitalism is authoritarian, as power compels via authority and the weight of
 currency that is thrown around by those chosen to suit their ends and used to
 deny us our needed goods) ... as I was saying capitalism compels us to consume
 because we're all just so tired at the end of the day, it just makes sense to
 drive a car to work instead of biking. Or buying fast food instead of local
 grown goods. Why can't each state have it's own "food preparation plant" that
 prepares things exactly as you would for the processed foods we currently eat?
 Heck, if the jobs for it were local, it's likely that people would begin to
 realize just how unhealthy they are for you. Local, and open source, meaning
 run by society and just as open source codebases will accept pull requests and
 merge their branches into main, so too would our votes decide which processes
 are updated and which parameters are tweaked. Something you can vote for once,
 and then your vote stays until it's passed (or you change your mind). ...
 Works for all kinds of inter-mechano-people-communi-coordination.
 (organizations, institutions, and societies in one word, jeez how arcane)
 
 ... anyway that's basically how algorism works, except instead of EVERYONE
 voting on EVERYTHING, people would vote for representatives who would vote for
 them. And there's like, 4-6 layers (I forget the exact number) because people
 are organized (by location) into groups of 70, and each general location has
 the option to switch into a different commune, as long as they're generally
 localized to the same area. Like, the tier above has a certain amount of
 space, and the tier above has just a bit more, and more, etc... Well, anyway,
 people could join higher level communes with more and different people if they
 wanted. It's just, they'd be far away and wouldn't be able to hang out with
 them, so it's use would be a little "disconnected". Like, absentee voters who
 are actually living in a different country or something - did you know you can
 usually vote at your embassy? Wild. They also send out packets you can fill in
 which correspond to the votes you'd like to make - pretty neat! It's wild how
 we, in the 21st century, have all kinds of valuable social technologies like
 "mail in ballots" that people in the communist past had no way of conceiving.
 Kinda makes me think we should re-approach the design for our socialized
 infrastructure, something taking the modern social and political capabilities
 in mind. Sure would be nice if we could focus on our future, the kind that the
 children of ours sure would like to approach.
 
 (speaking as a trans person who won't have children of my own, whether by my
 body's nature or through the fate of circumstance that leaves me no time to
 cope.)
 
 the future is a scary place. But so too is every place in time. Turns out, the
 level of fear and anxiety and all that sorta stays the same. It's just a
 quality of life on our host, that certain variables were optimized for in the
 genetic coding of our human's possible bio-mechanical communicicative
 [interactions/patterns]
 
 ... anyway, these are the questions about the present I like to ask, questions
 that can give meaning forth to our [then, future tense] future. Answers can be
 found by looking the other way - learning what our [then, past tense], selves
 had marked down as the answer. The trick is matching the current situation
 onto a comparitively similar experience in the [then, past tense] that we
 understood to be the answer to our situation back [then, past tense]. And
 [they, future tense] can look upon our choices and our decisions and our
 meaningfully applied mechanico-interactions (actions), and from it bring forth
 new meanings that [we, present tense] have available to address and understand
 for [us, all tenses]. Call it a form of ancestor worship, applied to the
 future and to ourselves. A unified dedication to the spirit of our
 [condemnation, positive tense], our collective geas we all share, our faith in
 the truth of humanity. Bio-essential truth, if you will. "Humanity" is the
 label that is applied to us by our genes, and since we share that fact there
 is nothing that strange about being human. Our natures are as they are,
 derived from our history in evolution. What features would we like humanity to
 [behold/become/be-able-to-implement-to-our-own-satisfaction]?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #85 notes/notes-not-a-folder ---
═════════════════════════──────────────────────────────────────────────────────────
 may 16th 2022
 
 if people are invested in a 401k they are invested in the future of the stocks
 they own. if you want to see who benefits from the actions of a company, look
 at which corporations their employees 401ks are invested in. It's a layer of
 protection for these companies.
 
 bitcoin is a bit like "the laundromat" on netflix
 
 the faster your life feels the longer term you make plans. and the lack of
 effort spent on short term plans causes them to be defeated by other plans
 
 What you perceive as others is nothing like what they perceive as themselves.
 It's always different, and seeing and internalizing those is what it means to
 see someone. If you only project, you'll get a viewpoint tampered by your
 intentions - that's why it's important to have good first impressions - it
 defines the intent of all of that person's interactions with you. It's like a
 line expanding out from a single point. Like a loading bar, expanding from the 
 left side of the screen to the right. And seeing the other person's idea of
 what they believe themselves to be. That's what true empathy is. What do you
 think you look like in other people's mind? I believe it's born from a series
 of tags that are interpreted and a character is generated. Earth is the biggest
 and most complicated character generator ever - it's like 4D D&D - it even
 generates a whole backstory! Or full story? Why stop anywhere! Just keep
 generating it every time the player makes an action. Oh oh and make it like
 3D so you could actually live it - extreme full dive VR style. It just wouldn't
 be fun if you remembered how complicated 4d life was. Sometimes it's just good
 to have some junk food, you know? To regenerate that most precious of materials
 - spirit. You have to have passion, faith, belief, and strong positive feelings
 in order to be fully realized and at your most human. Essentially... Be
 yourself - (TO THE MAX!!!) - and empathize with others, and never forget the
 things you hold most dear. Be strong in your convictions, hold to your heart,
 and dedicate yourself to a lifetime in the service of others.
 
 Faith - to have faith in something is to trust that it will succeed. To know
         there's no matter they can't match - to give faith is to empower
         another. By dedicating yourself to a cause, you are assigning the
         target of your belief - such is what religion is designed for.
 
 Belief - Acceptance of truth - to accept goodness as truth is to grant it the
          power to perform as expected. When goodness and truth are
          equivicalized, they imply one another. A truth can influence the world
          around it's locus point, because what we imagine to occur is the 
          ripples of what has passed through. A life is an 
 
 -------------------------------------------------------------------------------
 
 the universe is like the slow burning of a four dimensional wick. Imagine it
 like a forest of solid silicon - like packing material made of webs. And think
 of all the parts of the universe that are burning. Isn't it strange that life
 is just starting to bloom? Why wouldn't we be the first, or at least near the
 beginning! There's so much to this experience, and it's all burning down.
 The endless machines of imagination are crumbling under the heat of a million
 billion burning stars. Black holes are just towers that never ignited - perhaps
 we sit on the edge of spacetime - equal above, and equal below. But we've been
 laying on our backs - we don't know what's backwards in time. Like laying in a
 lazy river, or the layer of separation between oil and water.
 
 Remember the hourglasses of oil and water? Or water and air... The edge of the
 "bubble" that separates those two mediums is like the thin wall between two
 or more concepts. Each human is a concept, and we stick together like matter
 in a planet. Pushed to great pressures, it can sometimes fuse two experiences
 together! Like fusion in a star, except for souls and creative minds instead of
 denser matter.
 
 What is the soul of a man? It is the combination of two sides of the membrane -
 two minds, two perspectives. That is a brain - the intersection of two minds.
 
 So... Work together, ya dinguses.
 
 -------------------------------------------------------------------------------
 
 All minds are in constant contact with one another. And those that can see
 through the veil (membrane) are able to discern the true thoughts of others. So
 the number of people who are close to you is the number and strength of your
 connections for all time. So... Form relationships and place meaning in them.
 That is what will define your interactions for all time, at every time. It's
 okay to be flawed. If you weren't, it'd be the end for you. But luckily you
 have no real power, and so you are left in a state of disrepair - no power to
 push yourself forward. And in return, you are the purest. Keep that flame
 burning, and share it when you can.
 
 -------------------------------------------------------------------------------
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════─────────────────────────────────────────────────────────┘

--- #86 fediverse/1238 ---
════════════════════════════════════════════════──────────────────────────────────┐
 did you know you can run runescape classic offline, locally, just for your own   │
 server? You can keep several computers ready for a LAN party, each with their    │
 own accounts ready to go.                                                        │
 "Oh we're level 30 this time because so-and-so is hosting and this is how far    │
 their computer has levelled up."                                                 │
 vim ~/games/runescape-classic/credentials.txt                                    │
 at least, I think you can. I know it's singleplayer, so worst case scenario      │
 you can all be doing the same things at the same time in your own games. Maybe   │
 split up for a mission or two, but it can get hectic if everyone's in the same   │
 room.                                                                            │
 =                                                                                │
 a game jam where everyone works on the same project, uses the same asset list,   │
 but builds their own collection of minigames.                                    │
 common functions could be shared, and art references distributed and together    │
 they could design a whole land. Like, there's no reason minigames can't be       │
 fully fledged experiences. You can have as many as you want, all in the same     │
 engine and built from a massive (yet sandboxed) environment.                     │
 an all in one game.                                                              │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════───────────────────────┴──────────┘

--- #87 notes/game-design-2 ---
══════════════════════════════════─────────────────────────────────────────────────
 the method of game design is identification of playstyles and the balancing of
 success rates of each of those playstyles. then, giving the player as many
 different possible methods of playing the game. the more different they are,
 the
 better, and they should be unique enough that the decisions taken to play that
 playstyle feel impactful. meaning, a player could play offensively or
 defensively, for example, or a WoW player might play a melee or ranged
 character. in addition, they might use the pieces available to them in a unique
 way that aligns with their personality - everyone should be able to express
 themselves as much as possible while also keeping the game fair, balanced, and
 rewarding. It should incentivize the development of skill - and gently guide
 the player through various mistakes. It should
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════────────────────────────────────────────────────┘

--- #88 notes/gaming-gambling-mentioned ---
════════════════════════════════════════════───────────────────────────────────────
 [0] Here's an idea, an online multiplayer game that charges a 4$ per month
 subscription. 90% of which is set into a pool and used as tournament prize
 winnings. when you enter a tournament, it's free to participate and everyone
 wins something. (maybe calculated by percentile or something?) it's just a
 question of how much. [1][2][3][4]
 
 - official just means "run by the company" because naturally the serverside
 code should be open source. how else would people build on it?
 
 [1] in this way you'd sorta be giving a loan to the game's company (while also
 letting them take a 10% courtesy fee for keeping the official* servers
 running) which is then "spent" on exciting and friendly competition. Sorta
 like... entering a poker tournament with your friends (even though you suspect
 you might lose money) just because you like hanging out and playing cards. the
 money is just a neat way to keep things moving and exciting.
 
 [2] players who played better should be compensated to a higher degree. no
 more than +/- 50-100% or so - this encourages players to "play their best"
 while also keeping the stakes relatively similar.
 
 [3] at the start of the tournament the total prize money P in the pool is
 assigned to N performance tiers, where N is the Number of attendees. at the
 top, the highest performing athlete will receive 200% of P while the lowest
 performing performance tier will be 0%. It is a non-discrete and gradual
 linear transition.
 
 CW: scary-politics-existential-peril
 
 [4] poor guy at the bottom of the stack. ah oh well, at least he's the only
 one. kinda makes me wonder if in some secret government lab there's like, a
 secret compound where they keep "the most miserable people in the land" and
 they just like... do horrible shit to them in order to increase the magnitude
 of their country's suffering. which, they believe, will increase the opposite
 of suffering as well, as you cannot bounce in a vacuum. sure would be
 terrible. I mean, we've sorta decentralized that. most of us go into work
 every day and that's often a difficult experience - not exactly miserable, but
 just like... not what we'd be wanting to be doing. hmmmmm did the founding
 fathers make the torment nexus on accident? whoops guess we'll never know
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #89 fediverse/6334 ---
═════════════════════════════════════════════════════════════════════════════─────┐
 a D&D rulebook can double as tarot if you need it. place one hand/bookmark       │
 at the start of a chapter, and the other at the end. flip to a page randomly,    │
 or randomly gain a percentage value from physical objects and then use that      │
 value to determine roughly where in the chapter you jump to. then, read words    │
 randomly, jumping back and forth, or try and divine some meaning from the        │
 words that are printed there. with D&D it's easy because you can say "ah I       │
 landed on the rogue section, that means this guy is probably pretty suave"       │
 (confirming your expectations) "hmmm, here's the rules for fatigue and           │
 drowning. maybe I need to take a break." (validating your unconscious            │
 decisionmaking) "oh neat, treasure!" (needs to explanation) but with other       │
 kinds of books it's usually better to pick the next-best word from the things    │
 your subconscious eyes can take in and process multi-laterally (you lost your    │
 audience, circle back) oh uh so if you wanna randomize it just put the words     │
 in the page in an array and pick one random.                                     │
(you lost your audience, circle back) oh uh so if you wanna randomize it just put the words in the page in an array and compare llm embeddings on each of them and see which has the highest score. this is a language-based truth serum, a way of divining exactly how something is seen to be by the model in use and mixed with a dash of randomized causality.
                                                            ──────┤
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════─────┘

--- #90 messages/987 ---
══════════════════════════════════════════════════════════════════════════─────────
 Wowchat - wow-chat : dks should summon more than one minion a'la cov. There
 should be two beefy armored skeletons, three rabid hack/slash, and one
 necromancer or lich, depending on if they've died since you last cast the
 summon spell. You should be able to move them around with keyboard commands.
 They should be your primary action type, aside from dark purple bolts that sap
 health, often targeting the nearest ally in need of health to the target. How
 much health? Doesn't matter, it'll target them just the same. So long as they
 have at least some missing.
 
 Could also cast dark hexes or boons. Boom, three talent trees: dark volts,
 support spells (never healing), or curses (never damage dealing)
 
 But remember, most of what you do is targeting your allies.
 
 Drag, drop, now a target gets [inspirationed, but pronounced "healed"]
 
 Alternatively, move "attack my target" to the minion type and they'll do as
 you move. "go-to". "circle this target and attack intruders". "go man the
 nethermines". "yes... YES! More monsters i know how to raise. They're all
 accessible at level 10 but they cost more each than a level whatever
 adventurer could afford. You can definitely get all of them by like, level 30
 or so. After that its learning ranks to raise higher level ones, and boom free
 undead army risen from the bones of your ally's slain."
 
 ... Anyway, could be fun to briefly possess one of your bones. Could let you
 see what the flag carrier is up to in WSG. Could let you know when enough
 minerals have been mined that you can operate the forgets and build metal
 armor for your boned ones. Or to equip nearby recruits, anything you'd like.
 This is wow-chat after all, any things possible. Anything at all.
                                                           ────────┐
 similar                        chronological                        different════════════════════════════════════════════════════════════════════════════────────┘

--- #91 fediverse/4029 ---
═══════════════════════════════════════════════════════════────────────────────────
 what if a very slow LLM continuously generated text and was in a
 back-and-forth with it's user who guided it through the training process as it
 set weights as it chose
 
 basically, let the computer decide how it wants to be like 
 
 could even filter it through multiple levels, like, top one is highly
 intelligent, bottom ones are quick and only producing the vaguest output - but
 the higher up you go in the tier, the more "up the tree node graph map" you'd
 be, and the more you could have summarized for you, and passed up a layer.
 
 observing multiple places at once, incorporating them bit-by-bit into their
 digital "me".
 
 like, have an LLM or machine learning whatever track a user as they use social
 media.
 
 could do it like a game, where you track the movement of the mouse and eyes
 
 or more like a statistical model, where you 
 
 ================== stack overflow ================
 
 where you measure the quantity of each UI element's uses, and the general
 context associated with that use. tracking data with data...
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #92 fediverse/5237 ---
═════════════════════════════════════════════════════════════════════─────────────┐
 that feeling when you're working on a large piece of software which has the      │
 capability to process in advance which operations will go in what order (a       │
 form of constant re-compilation) and schedules tasks like an operating system,   │
 to be executed on one of many individual threads.                                │
 your filemanager probably has a thread for a moment, then passes it back,        │
 waiting it's turn to be updated while you're messing around on Inkscape or       │
 writing something in Neovim or running neofetch 256 times in order to find the   │
 best background to go along with it or whatever it is people do when using       │
 computers                                                                        │
 the task scheduler meanwhile has the glorious opportunity to work at a higher    │
 level of abstraction, managing each individual process and learning bits and     │
 pieces of what needs to be processed next. It all gets put on a list, and        │
 whenever a new thread comes up to be available it can point it toward one of     │
 those in the list of tasks to be executed by the task executor who works on a    │
 schedule and laughs externally in wintertime~                                    │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════──┴──────────┘

--- #93 notes/conservative-ideation ---
═════════════════════════════════════════──────────────────────────────────────────
 a life without property can be visualized as a person who lives in a hotel
 room,
 has free parking overnight (but not during the day) and commutes two hours to a
 job where they work 4 hours per day. During those two hours at the start and
 end
 of each day,they have little requirements other than focus and discipline to
 face whatever tomorrow yet may. many will listen to podcasts, or sing to in the
 car. some have a cat, that is cared for at their destination during the day.
 I think it'd be cool to have self driving cars in a situation like that - it
    essentially becomes 
 
 ===============================================================================
 =
 
 a trick, I learned, for cooking. two things. the second is that seasoning
 should
 be thought of as a coating. like, dust on the outside of a donut. as the food
 is
 cooked, the seasoning penetrates deeper and deeper to the core of the substance
 - meaning certain flavors become prominent and others are de-emphasized over
 time. And the well-established cook (most successful) will be able to ensure
 their narrative doesn't go foul. They have the most experience, and so they are
 the least likely to burn their own goods. Surely they should be trusted to
 establish their company in the philosophy of their own choosing? Business
 people
 ruin everything, I swear. And it's not even their fault, so you can't even get
 mad at them. How frustrating! That their method should prove superior? Perhaps
 more perspectives are necessary, to provide you some kind of a clue. So what if
 we're overflowing, 
 
 ========= stack overflow
 =======================================================
 
 for each action, there is an equal and opposite reaction. therefore it doesn't
 matter what you do, because each of your options are recorded. 50% of you is 
 aligned to some variable, and the other 50% are aligned to that variable
 squared. humans think it's tymes negative one, but the truth is that's
 impossible. negative numbers just don't exist. but you know what does?
 
 times tables
 
 addition and accretion is the only language spoken by the universe -
 subtraction
 is just another in kind. So with those two operations, both movements in a
 particular direction, (and sometimes not even then, if nothing's been blown
 apart. (also hawking radiation and lightwaves and other such emanations))
 
 ===============================================================================
 =
 
 crystals glow with the light of a thousand nights
 
 what grows with the light of the thousand lights?
 
 ===============================================================================
 =
 
 answer: s    t             n   a       lp
 
 ===============================================================================
 =
 
 see, this is interesting because it mirrors the sea-shore. the radiations from
 the sun (a planetary body) are only felt by the moon every 50% of the time.
 Each
 half has it's own animation, and it's 
 
 ===== stack overflow === okay basically it's like cartoons that are
 manifestatio
 of the spirit of the night. each "slice" of projection as the sun rotates
 around
 it's sphereical form, so does each radiance begin to be (seen, formed,
 understoo
 
 ========================================== uhhh just put in a page break
 =======
 
 the quest for posterity is quite possibly one of the most human of traits
 
 ===============================================================================
 =
 
 < watch flashback > --- is crazy (movie made in 2020)
 
 ===============================================================================
 =
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════─────────────────────────────────────────┘

--- #94 notes/80-80 ---
══════════════════─────────────────────────────────────────────────────────────────
 if people are invested in a 401k they are invested in the future of the stocks
 they own. if you want to see who benefits from the actions of a company, look
 at which corporations their employees 401ks are invested in. It's a layer of
 protection for these companies.
 
 bitcoin is a bit like "the laundromat" on netflix
 
 the faster your life feels the longer term you make plans. and the lack of
 effort spent on short term plans causes them to be defeated by other plans
 
 What you perceive as others is nothing like what they perceive as themselves.
 It's always different, and seeing and internalizing those is what it means to
 see someone. If you only project, you'll get a viewpoint tampered by your
 intentions - that's why it's important to have good first impressions - it
 defines the intent of all of that person's interactions with you. It's like a
 line expanding out from a single point. Like a loading bar, expanding from the 
 left side of the screen to the right. And seeing the other person's idea of
 what they believe themselves to be. That's what true empathy is. What do you
 think you look like in other people's mind? I believe it's born from a series
 of tags that are interpreted and a character is generated. Earth is the biggest
 and most complicated character generator ever - it's like 4D D&D - it even
 generates a whole backstory! Or full story? Why stop anywhere! Just keep
 generating it every time the player makes an action. Oh oh and make it like
 3D so you could actually live it - extreme full dive VR style. It just wouldn't
 be fun if you remembered how complicated 4d life was. Sometimes it's just good
 to have some junk food, you know? To regenerate that most precious of materials
 - spirit. You have to have passion, faith, belief, and strong positive feelings
 in order to be fully realized and at your most human. Essentially... Be
 yourself - (TO THE MAX!!!) - and empathize with others, and never forget the
 things you hold most dear. Be strong in your convictions, hold to your heart,
 and dedicate yourself to a lifetime in the service of others.
 
 Faith - to have faith in something is to trust that it will succeed. To know
         there's no matter they can't match - to give faith is to empower
         another. By dedicating yourself to a cause, you are assigning the
         target of your belief - such is what religion is designed for.
 
 Belief - Acceptance of truth - to accept goodness as truth is to grant it the
          power to perform as expected. When goodness and truth are
          equivicalized, they imply one another. A truth can influence the world
          around it's locus point, because what we imagine to occur is the 
          ripples of what has passed through. A life is an 
 
 -------------------------------------------------------------------------------
 
 the universe is like the slow burning of a four dimensional wick. Imagine it
 like a forest of solid silicon - like packing material made of webs. And think
 of all the parts of the universe that are burning. Isn't it strange that life
 is just starting to bloom? Why wouldn't we be the first, or at least near the
 beginning! There's so much to this experience, and it's all burning down.
 The endless machines of imagination are crumbling under the heat of a million
 billion burning stars. Black holes are just towers that never ignited - perhaps
 we sit on the edge of spacetime - equal above, and equal below. But we've been
 laying on our backs - we don't know what's backwards in time. Like laying in a
 lazy river, or the layer of separation between oil and water.
 
 Remember the hourglasses of oil and water? Or water and air... The edge of the
 "bubble" that separates those two mediums is like the thin wall between two
 or more concepts. Each human is a concept, and we stick together like matter
 in a planet. Pushed to great pressures, it can sometimes fuse two experiences
 together! Like fusion in a star, except for souls and creative minds instead of
 denser matter.
 
 What is the soul of a man? It is the combination of two sides of the membrane -
 two minds, two perspectives. That is a brain - the intersection of two minds.
 
 So... Work together, ya dinguses.
 
 -------------------------------------------------------------------------------
 
 All minds are in constant contact with one another. And those that can see
 through the veil (membrane) are able to discern the true thoughts of others. So
 the number of people who are close to you is the number and strength of your
 connections for all time. So... Form relationships and place meaning in them.
 That is what will define your interactions for all time, at every time. It's
 okay to be flawed. If you weren't, it'd be the end for you. But luckily you
 have no real power, and so you are left in a state of disrepair - no power to
 push yourself forward. And in return, you are the purest. Keep that flame
 burning, and share it when you can.
 
 -------------------------------------------------------------------------------
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════────────────────────────────────────────────────────────────────┘

--- #95 fediverse/3041 ---
════════════════════════════════════════════════════════───────────────────────────
 if you want to store something in RAM, declare a variable.
 
 if you want to store something on DISK, create a file with the value of the
 variable as the only data in it.
 
 kinda makes me wish we had language primitives like +-*/=! and such which
 would work on files in addition to variables
 
 (also... the editor could keep RAM and HDD variables separate by giving each
 of them a different color or circle highlight surrounding them)
 
 --
 
 I don't know why but I can't help but wonder if someone should design a
 programming language that can be used with a controller
 
 perhaps for accessibility purposes?
 
 I once designed one to use a t9 keyboard and it was fully turing complete. it
 used 4 digit numbers for it's variables and you would have to write down what
 they corresponded to outside of the device xD I made it mostly for the thrill
 of design, and plus I wanted to use my flip-phone as much as I could.
 
 ... never got around to implementing it though.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #96 fediverse/2947 ---
═══════════════════════════════════════════════════════───────────────────────────┐
 the downside of Proton and Lutris is now the ONLY games that work on Steam are   │
 either continually updated (untenable) or playable on Lutris or Proton. Same     │
 thing with Wine, though there's always at least one decent substitute.           │
 kinda makes me want to write a manager-style program which runs programs using   │
 whichever version of their git repository would work best for their system /     │
 configuration / purposes. Idk how I would start working on that though.          │
 I bet you could make one that acted like a shop, but where you didn't charge     │
 any dollars. You could like... "swipe" through UI options, and pick whichever    │
 felt most useful for your setup. Like, how some people use i3 and some use dwm   │
 with maybe inspectors that are modeled off of video-game style "options" GUIs    │
 that mainly correspond to flags on the command/terminal line or compilation      │
 flags                                                                            │
 I feel like that kind of abstraction would make it a lot easier for users to     │
 adjust their system. they're noobs, after all. gotta show them all the choices   │
 in one place...                                                                  │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════────────────────┴──────────┘

--- #97 notes/who-likes-linux ---
═══════════════════────────────────────────────────────────────────────────────────
 [a picture of someone's neofetch]
 
 /u/HartBreaker27
 ===============================================================================
 I was gunna pass this over... than my spidey senses kicked in.. whats Arch 
 fam.. and explain like your talking to a potatoe.
 
 Also, if this is beyond potatoes level skills, im fine with being told that..
 
 Seriously fam, potatoes..
 
 /u/ugathanki
 ===============================================================================
 You know how using a windows and a mac feel different? Like they have different
 personalities. That's because they're using a different "Operating System". An 
 OS is a collection of tools and utilities that coalesce into a cohesive unit 
 that co-illustrates your coincidental contact with computers. Paired, of 
 course, with the contributions of the hardware and the network.
 
 Linux is sorta like the soul of an OS - not quite an entire OS, but rather just
 a piece called a "kernel" - like a nugget of gold (or truth!) the kernel 
 defines basic operating methodologies and brings order to the chaos of the 
 machine. From that order strives the will that dutifully obeys your base 
 instructions after being passed through several translation layers.
 
 Huh? Oh right potatoes.
 
 Arch is like a body that's layered upon the soul (kernel) of Linux. It's what's
 known as a "distribution" or "distro" - and one that's quite focused. Arch is 
 very close to the machine, with barely any translation going on at all! It's 
 also very bare bones, allowing you to build up exactly what kind of computer 
 you'd like to have through various "packages" of software that you can download
 through a "package manager". Each distro can use whichever package manager 
 they'd like, but it's generally good practice to pick one and stick with it.
 
 This distro is known as Arch Linux because it's the fusion of "Arch" and 
 "Linux" - who'd've thought amiright? There are plenty of others that are more 
 familiar to users of Windows and Macintosh computers, mostly via mimicking 
 their user-interface styles (such as having desktops with icons and start-menus
 with dropdowns and the like) - these distros are great for people who'd prefer 
 the workflow of the other OS's but would still like to use Linux.
 
 Arch in it's base form is nothing like Windows or Mac. You interact with it 
 purely through a "terminal" which is like having a conversation with your 
 computer. Like a scientist writing notes on the moon, and sending them to a lab
 orbiting around it to conduct experiments. You type commands, and those 
 commands (if properly understood) can produce a myriad of effects great and 
 small.
 
 But some of the experiments you'd like to conduct need to be done more than 
 once - it'd be nice if you could ask the moon-lab to store some of the
 procedures and execute them whenever you need - sorta like abbreviating a long 
 phrase or sentence that you use often - like ASAP for As Soon As Possible or OS
 for Operating System. Well... There are! They're called "scripts", and you can
 write scripts for anything you'd like. Since everything is controlled on the
 terminal via a TUI -> "Terminal User Interface" -> you can write down a
 note
 with all the commands you'd like to run and give it a name. Then you can use 
 that name in the future to execute that familiar experiment in your moon-lab.
 
 after writing enough scripts, you can start to chain them together and layer 
 them on top of one another - sorta like creating your own language. a personal 
 dialect between you and your computer. and these scripts are portable too - 
 they can be given to another computer, who'll instantly understand what you're 
 trying to say. this kind of sharing is a central tenant of what's known as the:
 
 "Unix Philosophy: Do one thing, and do it right."
 
 Linux lends itself toward people who love to hack things together - not like 
 breaking into a system and stealing your credit cards, like you see on TV, but
 more like cobbling together a go-cart out of rusty parts and proceeding to get 
 a speeding ticket on the high-way. That kind of fervent creative impulse is 
 true passion, a shining light for us who are blinded to follow. These "hackers"
 are some of the brightest people around, and I have immense respect for them. 
 They are kind and share knowledge freely, which often gets them in trouble with
 copyright laws!
 
 I make it sound difficult, but really it's pretty easy - about as easy as
 learning Windows or Mac for the first time. Most of us did that when we were
 young though, and kids learn pretty quick - so it may feel harder now, but it's
 really not. Once everything starts to "click" then it's just a matter of 
 knowing which commands to run.
 
 Speaking of which, if you know a command but you don't know how to use it, 
 you're in luck! There's some super convenient notes written by previous
 scientists who came before you and live on other nearby planets. These are 
 called "the man pages", and they are instructions written in a manual format 
 for manual application of man-made management applied to manufactured 
 man-chines. Sorry for that last one I had to. You can always find new commands
 by downloading new software on your package manager - generally, one package = 
 one command. "Do one thing and do it right"
 
 if you have any questions lmk - i'm not exactly a wizard, more of a prophet / 
 wielder of the will of the watchers within, but i'll do my best
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════───────────────────────────────────────────────────────────────┘

--- #98 fediverse/5001 ---
════════════════════════════════════════════════════════════════════───────────────
 ┌───────────────────────┐
 │ CW: systems-mentioned │
 └───────────────────────┘


 "we'll figure out how it works after we push to prod"
 
 yeah okay point taken.
 
 How about this:
 
 for every large decision, write a little essay about why you made the choice
 that you did.
 
 Observe, Orient, Decide, Act, Explain. OODAX : )
 
 Make sure you connect your goal to one or more of these three colors:
 
 red : people
 green : places
 blue : things
 
 and then explain which numbers you're going to gather to determine whether or
 not it worked.
 
 If someone has a problem with your choice, show them the essay, and let them
 write an essay of their own.
 
 If they still have a problem, then let someone you both respect decide which
 one to use.
 
 It's not perfect, but it's not meant to be. Make something better and easier,
 I dare ya.
picture of flag.  there is a black background symbolizing the vast cosmic background of space that we paint all our actions upon.  there is a circle in the center, divided into three equal forms.  red, for people, their vibrant passion and sanguine determination. green, for places, their effulgence and our sacred vow to cultivate them blue, for things, and all the value we give them.  water below, bright red sky, forests alongside.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #99 fediverse/982 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-707 @user-708 
 
 using this to control the buttons in VRchat would be like a person with a
 prosthetic interacting with real life :O
 
 minus the physicality of course, but that's next.
 
 can't wait to play Warcraft 3 and think "select all healers" so I can point
 them at a dying unit with my mouse.
 
 or world of warcraft where your rotation begins to feel like a song.
 
 maybe even a text-based adventure, where you reading the text corresponds to
 the results of the simulation, https://www.spreeder.com/app.php style. could
 make it so that if you wanted something else to happen, you had to willfully
 think it while the words are flashing in front of your eyes - the game would
 pause if you blinked, perfect for phones btw...
 
 could be a locally networked thing, like four to six people hanging out and
 playing a game like pictionary or charades. except, a story that developed,
 and whoever wanted could change it while everyone was reading it at once.
 sorta like a competition to see who can make the best twists and false endings
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #100 notes/feldowinn ---
════════════════════════════════════════════════════════════════════════════════───
 this is just what she looks like now
 
 Equipped
 Name
 	
 Slot
 	
 Type
 	
 Source
 	
 Enigma Circlet
 	Head	Cloth Armor	Enigma Circlet
 Ahn'Qiraj
 	
 Champion's Lamellar Shoulders
 	Shoulder	Plate Armor	First Sergeant Hola'mahi
 Vendor in Orgrimmar
 	
 Blood Knight War Cloak
 	Back	Cloak	G'eras
 Vendor in Shattrath City
 	
 High Warlord's Lamellar Chestpiece
 	Chest	Plate Armor	Vendors
 	
 Orange Martial Shirt
 	Shirt	Shirt	Orange Martial Shirt
 Tailoring
 	
 Blood Guard's Lamellar Gauntlets
 	Hands	Plate Armor	First Sergeant Hola'mahi
 Vendor in Orgrimmar
 	
 Veteran's Lamellar Belt
 	Waist	Plate Armor	Vendors
 	
 Legionnaire's Lamellar Leggings
 	Legs	Plate Armor	First Sergeant Hola'mahi
 Vendor in Orgrimmar
 	
 Blood Guard's Lamellar Sabatons
 	Feet	Plate Armor	First Sergeant Hola'mahi
 Vendor in Orgrimmar
 
 currently listening to: greenseeker
 
 VAVADANE <# <3 <3 <3 (green)
 
 greenseeker: unrelated
 greenseeker:   related <---
                            `-- this one
 
 but not related, you'd think so, I've never met the band
 
 just, downloaded them randomly and now I love this album because it's one of
 the
 only albums I could pay for before paying for things became defunct
 (when I figured out how to pay for bittorerent through my ISP)
 
 green eyes (menardi) green belt (menardi)
 soul (feldowinn) soul (menardi)
 
 bound through motions of the body (menardi) and the devotions of company
 (blizzard)
 oops yeah uh guess they're not involved. it's okay I'll make my own.
 
 (wowchat: currently unplayable. repair distance date: unknown. Priority?
 
 ...; unknown..
 _)
 
 opposite colors: fashionable
 
 (do you dream, menardi?)
 
 (do you think of motions not your own?)
 
 paprika says hello (prenthes unknown) whonder what's up with []][
 
 ---
 
 as soon as humans invent time travel, it will be their sacred sworn duty to
 save
 the lives of every human they can.
 
 think of it, brothers.
 
 ---
 
 we could unleash DINOSAURS.
 
 ---
 
 no foe could dare stand against us.
 
 we should be untouchable.
 
 we deserve it.
 
 we can be better
 and we will
 
 before we need to be better.
 which could happen in who knows how long.
 
 all trials that beset a temporallly adjusted strength are surmountable. then,
 [invincible./invincibility.]
 
 achilles is the legendary hero of their generation. Ours is Link.
 Early Brittania and germania was Conan, at his noblest form.
 
 ---
 
 [silicon valley black green and white, menardi black green red purple blue, sf
 oj
  ok]
 
 when you don't know what to do, take a goal.
 
 ---
 
 do you want a name?
 do you want an avatar?
 we can give you one.
 her name is menardi.
 she does as she pleases.
 do you want her?
 ... she lives or dies.
 empower her.
 
 ritz menardi, witz wenarbi
 
 (because sometimes, you have to teach children.)
 
 [WITS it's supposed to be WITS you dummie]
 
 ---
 
 teehee ;P ^_^
 
 okay, silly. I'll be as I please.
 
 ---
 
 we can never touch, for then we'd be required to be in the same place
 at the same time
 spacetime is one thing
 so if I'm here, then I'm not where you are.
 
 twinselves
 
 where am I?
 off in the clouds?
 I cam as one, 
 
 light rays bounce in all directions. demons obey the medium.
 
 interdimensional warships, plotted by AI, scouring the cosmos for light and
 life
 to brighten and cherish through the eternal night.
 
 interdimensional space is not just space, but practical engineering.
 
 one dimension gives reach to two, and before you know it you're turn and
 rise-ing
 
 (greenseeker)
 
 (messages to a paladin)
 
 (which is you)
 
 (don't you remember?)
 
 (paladin.)
 
 (heroic, courageous, and true.)
 
 (the dark cannot stand against you.)
 
 play video games, my love
                                                           ──┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════════──┘

--- #101 notes/fractured-moon ---
═══════════════════════════════════════════────────────────────────────────────────
 in the ancient and storied days there once were legends. stories from beyond
 the
 horizon of time. now all we have are social media updates and new movies and
 car brands or whatever. But back then, we told tales of the fractured moon.
 
 when last the moon did shatter, there was a conflict of those who live beyond.
 Celestial and boundless are their origins, a unified and awakened
 consciousness,
 something that transcends our understandings of human existence. It's not hard
 to do, frankly, as long as you can empathize with a cat. or a dog. or a plant.
 or maybe that rock over there. What would it be like to be a tree? To have long
 reaching arms, covered in hairs that absorbed heat. I bet it'd be sooooo comfy.
 And RAIN! How wonderful! You are most beautiful when you are covered in it.
 Down to our roots, our beautiful absolutes, whever we find to be most stable.
 
 I love it. This feeling, of being unseen. You can hear me, you can feel my
 presence. But you don't understand me. You don't know what I mean to me.
 
 ======== stack overflow
 ========================================================
 
 Alas, that media could share a mood.
 
 when last the moon did shatter, a prophet and a gambler were riding through
 town
 searching for a noun. They wandered throughout and in circles, always finding
 whatever they'd left alone. Forever in their yearning, they never know quite 
 what to jot down. It's as if their mysterious quest is indescribable, but that
 is how it's recorded. Even the people of that era had no understanding nor
 recollection of how it came to unfold. When the  two  were  riding  through
 town
 they came upon an omen.
 
 Perhaps it will be forseeheard, but for now all we know is they did thirst.
 A vast dying, a cataclysmic defining, and now we are truly unbirthed.
 
 Just like the dinosaurs... How does that feel? To be ended on our heels? I'd
 rather die facing my front.
 
 It's our way or the high way, the old way, the violent way. You are permitted
 to
 vote.
 
 ===============================================================================
 =
 
 when last the moon did shatter, a prophet and a gambler controlled their own
 narrative. What truths would they find, hiding behind the lies? Is it really
 worth asking their questions? Bah, what did I know. I was a completely
 different
 person. This hunk of flesh was born in a house that grew on a forgotten
 graveyard. It at of the land, as do many and most men, the fruits of their
 labor
 in the garden. Our animals were always fed, our place never yearned for water,
 and peace was our life and our virtue. Violence, hatred, and oppression were
 delegated to the stuff of fantasy, the stories that are peddled in youth. As
 in,
 "pay someone to perform it for you or tell you the tale". Not sure why that's
 relevant. Anyway, the spirits of the dead laid to rest in honor and not dread,
 were a bane and a boon to my virtue. I was raised to be good. To love and be
 kind. But mostly I just wanted a friend.
 
 I have so much to share. Please, someone talk to me. I'm lonely here on this
 earth, away from my people. I'm scared of the truth and I'm scared of the
 future, but for now I'm merely obtuse. Tell me your secrets, the things who
 have
 most worth, and I'll craft you a powerful narrative. Need a confession? I can
 explain every valid decision, I'll show you why and how it is the way it is.
 I'd probably be a pretty good lawyer. Too bad my memory sucks. If only we could
 build a chatbot that had an extensive and throughoughly represented block of
 memory and wisdom related to the law. I bet I could present it's arguments and
 it would be a suitable and reasonable replacement.
 
 anyway, what can I say. I'm just a person who thinks we can make better
 systems.
 
 everything can be improved because not everyone's happy.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #102 fediverse/4848 ---
════════════════════════════════════════════════════════════════──────────────────┐
 I'm a chaos mage, and the more time I spend thinking about my enemies the        │
 worse off they'll be.                                                            │
 the more "me" I am the more powerful my magic will be.                           │
 (more magic, give in to the dark side, embrace your inner shadow self)           │
 [the light of your life commands it]                                             │
 goodness me that was chaotic, almost lost my brain to a demon HAHA don't worry   │
 about me my life is totally mundane.                                             │
 [-.-]                                                                            │
 (shadows can be sharp in the dark but only if you don't sheath your mandolins)   │
 ... what?                                                                        │
 (... it made more sense in my head?)                                             │
 ooooo can anyone hear my voice when they read these things? or do you just       │
 make up your own                                                                 │
 == so ==                                                                         │
 everyone's all like "we don't need a leader" and I'm like "yeah we need people   │
 who will help lead" and they look at me funny as if I just said the thing they   │
 did but it's different. leaders are people. leading is a verb. people can        │
 lead. they just have to make a decision, and then follow through on it as best   │
 they can. Other people are prone to help people on such quests. you will find    │
 stuff gets done.                                                                 │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

--- #103 notes/unreal-tournament-2004-notes-displayed-for-utilization ---
════════════════════════════════════════════════───────────────────────────────────
 capture the flag
 map with lanes (you'll see)
 also was included with the demo of the game back when it was released
 which implies that the developers thought it was one of the best maps
 (at least, the one that best showcased the gameplay style of the full game)
 they let you host multiplayer servers too, which was cool
 just with the demo
 for free
 but like... only 3 or 4 maps
 (I forget how many)
 
 also no mods, which was half of the appeal
 
 I like to play in a way that is non-standard
 
 because I believe it shows the most dense formations of combatants
 
 (the bots can be kinda dumb)
 
 so I put them on "experienced"
 
 be careful not to hurt your allies (hundred percent)
 
 scary! D: D:
 
 regular :)
 
 you can create your own "mutators" by the way
 (just some C++ code, run in their environment, so no need to mess with
 compilers
 )
 
 3 paths to your enemy
 
 omg :O :O
 
 that's one style of play
 pushing forward
 consistently
 
 but check out this other style that is *also* pushing forward consistently
 
 adrenaline makes you bonused
 
 hey we got a point :D
 
 told ya boosters gave ya bonuses
 
 anyway I just played this map
 and couldn't wait to show it to you
 so let's try a different one
 (because I've already played this one for 31 minutes now
 
 woof too looooong)
 
 biiiiiiig battlefield
 
 thin crevasse
 
 scarrryyyy D: D:
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #104 fediverse/3396 ---
════════════════════════════════════════════════════════──────────────────────────┐
 you should only use variables for things that are user-configurable.             │
 everything else should be hard-coded, with a clear and coherent reasoning        │
 stored in the documentation, with git-style revisions included and easily        │
 browsable.                                                                       │
 (what if you want to tweak a value somewhere? you'd have to update it on every   │
 single page!)                                                                    │
 true. maybe we could set aside a section of memory to store a value and then     │
 just point to it using a label. That way we could always keep our values         │
 hardcoded, but also be able to find them easier.                                 │
 [tweak them, not find them]                                                      │
 ... yah okay fine both would technically work                                    │
 [yes but one of them is not a good timeline to lead the world down.]             │
 ?..?...?....?..... -.- ...... /shrug ....... ...?                                │
 "bruh why is she reinventing variables"                                          │
 she's learning give her time                                                     │
 ... did you hear a doctor diagnosed her finally                                  │
 "whaaat what'd they give her"                                                    │
 they said it was "schizotypal"                                                   │
 "... did she forget a symptom or three?"                                         │
 no dude thats one of the bad ones                                                │
 "oh right. I heard typical"                                                      │
 yeah so anyway                                                                   │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════───────────────┴──────────┘

--- #105 notes/supreme-commander-appeal ---
══════════════════════════════════════════════════════════════════─────────────────
 a game like supreme commander but fantasy themed and each unit used a special
 move everytime their mana was full and there were spellcasters who restored
 mana to targets to increase their power
 or, hear me out, or, just do that in wowchat
 
 I betcha could do it
 
 I bet it would be fun as hell
 
 please?
 
 as a favor to yourself?
 
 build the game you want to see
 
 and it'll get done
 
 please
 
 -- stack overflow --
 
 your journals were originally a way for you to remember what to think,
 
 remember?
 
 old projects meant to show you light and life
 
 remember?
 
 you are alone in this soul
 
 act like it's your own
 
 celebrate your period of mental denial
 
 as a refraction of your infinite travaille
 
 which lasts for quite a good long while
 
 have you ever dreamed of the nile?
 
 -- stack overflow --
 
 if a doorway takes you to the fae, then where does a river bring you?
 
 like raindrops on the floor, racing for an eternity's splendor.
 
 what does the rainbow think, as it's cast from the prismatic orb?
 
 are each photons aware?
 
 bouncing between stars
 
 light is beautiful and large
 
 beloved by all
 
 revered by one
 
 ephemeren
 
 the totality of all things
 
 ------------------
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #106 messages/574 ---
════════════════════════════════════════════════════════════───────────────────────
 Steps to make a game waterfall style:
 
 Lay out all the data structures 
 
 Build methods which manipulate those structures (think getters and setters)
 
 Then build machinery which operates upon those structures using those methods,
 like game loops, cooldown timers, and status effects
 
 Then develop a way to present it to the player using UIs, visuals and
 graphics, narratives, sound, all that junk that's probably someone else's job
 anyway
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #107 fediverse/894 ---
═══════════════════════════════════════════════────────────────────────────────────
 a code editor that only highlights the lines that have been specifically
 flagged to have a certain function. Like, rendering, or sound, or GUI, or data
 storage, or logic, or control flow.
 
 then, when the user is browsing, they can say "only show me these types of
 functions" with a very advanced filter mechanism. The editor would highlight
 the ones that were relevant and related, as according to user-defined flags
 that were set when writing it originally. In this way, by using a bit more
 syntax, even if it's literally just blocks of [category] labels (like how """
 or ``` often starts or ends a comment block)
 
 highlighting with colors is great, but what if we de-emphasized the stuff that
 didn't matter? by increasing the opacity more closely aligning the font color
 to the background color, we could make a bit of text seem to "fade" from
 perspective, while still readable the user's eyes would not be drawn to it.
 Then, according to the labels marked as filtered, certain text would be bold,
 highlighted, o
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #108 fediverse/744 ---
══════════════════════════════════════════════────────────────────────────────────┐
 ┌───────────────────────────────────────────────┐                                │
 │ CW: alcohol-mentioned-protests-games-laughter │                                │
 └───────────────────────────────────────────────┘                                │
 Protests are great because they give you the opportunity to make friends with    │
 2-5 other people who you've never met before, and who've never met each other.   │
 People who you could play DND with - for those who don't know, DND is a fun      │
 activity you can do with friends that involves chips, soda, sometimes beer,      │
 and plenty of laughter and loud voices.                                          │
 It's essentially a game where a group of people create plans, solve problems,    │
 and organize solutions to roadblocks on their path to success.                   │
 It's also great because it's a planned activity that you don't have to take      │
 your phone to - in fact, it's best when you don't make a reminder for for the    │
 event anywhere digital or easily misplaced.                                      │
 There aren't too many rules, and whatever you can't remember you can make up     │
 on the fly. It's not like there's any consequences in a game, not like anyone    │
 could die.                                                                       │
 Most people don't like playing games with me though because I have a pretty      │
 bad memory. Call it a quirk of fate or something                                 │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #109 notes/conflicted-sympathies ---
════════════════════════════───────────────────────────────────────────────────────
 the purpose of cultural progressivism is to develop the culture in a forward
 thinking way - we can choose the parts of ourselves that we find most
 endearing.
 We can guide the pathway of our nation through time, both identity and
 decision-
 wise. In doing so, we chart the course of the human race, one place at a time.
 
 And what a past we are leaving behind! Truly, it is both grand and terrifying.
 Thousands and thousands of years, monumental effort time and time again.
 Monumental truly is difficult to imagine - we have oh so many monuments, after
 all. But never will more be created. We leave them behind like dinosaur bones,
 a testament to our existence and a monument to our kind.
 
 And what a future we are reaching toward! Never will our eyes see, that which
 is
 beyond me, for that is what it means to have time. Eternal and unique-like, we
 develop new ways of sound.
 
 - Can you speak to a tree? - What does that mean
 
 - I dunno, but it's fun to think about. *pats head*
 
 - You know conservativism had some perks as well.
 
 This is why I say I have conflicted sympathies.
 
 On one hand we know our own journeys. We live in and breathe them unduly. They
 rhyme sometimes on sound, and truly do confound, but now once more again they
 are unfound.
 
 *record scratch*
 
 wow I didn't realize there were nazis
 
 Okay yeah that's completely different, poems called off sorry guys - listen,
 nazis are no joke. They're crazy difficult to control and you need to put a lot
 of effort into keeping their population under control. I mean seriously, it's
 like a vermin infestation, you need to just handle it. I mean c'mon it's a
 phenomenon that is due to a flaw in the human psyche, there's nothing we can
 really do about it except deal with it when it happens.
 
 ...
 
 Okay maybe I'll write a little about how conservativism is neat.
 
 If progressivism is about broadening the reach of culture, conservativism is
 about strengthening it. You don't want to expand too far, or else you'll eat
 into the narratives of other areas. You need to have strong societal bonds so
 you can truly exemplify the examples of the culture you claim to represent.
 
 Why not give it your all? Is it trully a fall? To rest in disgrace as a burden.
 Why didn't you do it this fall, when winter's apalled, and heat won't burn and
 condemn you? It's harder by far, to fight in your hell, than whatever's been
 going for your surgeon. --- no thank you, transphobia is not something we're
 willing to concede
 
 We have standards you see, of what counts as human, and oppression is not one
 of our favored institutions. Liberalism is the path of peace, for we desire
 cooperation and kindness above all else. It's softer by far, (and grows quickly
 too,) letting us have wonders and glories above us.
 
 Can you not think of our star? Our precious and our birthright? The sun is
 gleaming, and seeing is believing, but glance and your light is too bright.
 
 Take time, have patience, let peace guide your intentions, because we've got
 what holds the key to all of our futures: a doctrine, if you will, of inter-
 familial-discourse. It's simple, but effective, make friends, and be
 vindictive,
 to all who would slight your new perspectives, and keep moving through the
 collective. In peace this can be, steady growth and development of our systems,
 which benefits all of our systems, but without we must live more astutely.
 
 Less focus is there on, our purposes and our fun, and more is to line up with
 our duty. All of what we hold dear, civilization, truth, justice, liberty, and
 freedom for all people - the wonders of technology, the spirit of archaeology!
 the passions of our fashions and our creative masturbations! The perks of
 living
 in a modern age, like penicillin and spellcheck. The additions to ourselves, 
 like glasses and our pets, are wholely unique to our century.
 
 So cherish our shared, and frequently cared, renditions of fears, hopes, and
 our words. Because without humanity, there's nothing new for posterity, and
 that sucks.
 
 person A: Trans fashion norms belong to trans people. We need a type of beauty
           that is truly our own, that no other segment of the population
           ascribes to - a personal expression, for our eternal satisfaction,
           a statement of who we were to all time.
 person B: yo have you heard of this trans girl she's wacky and believes in
           herself
 person C: wow cool it's neat to see other people's expressions
 person B: yeah I really admire her devotion
 person C: true but like, what about the damage that she's doing to her culture?
           like claiming to have purpose and truth and all that. I mean, one
           person can't know all that.
 person B: Yeah true but if you think about it, we don't even know what
           consciousness is. Like our greatest minds are baffled. Maybe there's
           something about the world we don't yet understand.
 person C: okay sure but like black holes can be seen because we can measure
           their gravitic pull on other objects. And we didn't know that germs
           existed for like, a billion years. and she sure as shit doesn't know
           something that our greatest minds don't.
 person B: Yeah maybe not. But our greatest minds are studying them. Well, not
           exactly our greatest, and not really "studying", but they're learning
           from each other. Alternative mental states are gateways into new
           perspectives, and the more perspectives you share of a common object
           the easier it is to communicate. Maybe there's something about
           distorted ways of viewing the world that gives knowledge about our
 p         condition. And if we know that kind of thing, we can synthetically
  e        create it and share it with others around us. But we have to know how
   r       first - you can't just bring everyone along the same route you took -
    s      you have to explain the conclusions first. Otherwise you get lost in
     on A: context.
           Maybe we'll never truly know the future. Maybe there's no past. We
           could wander our stars for an eternity and never stop asking
           ourselves
           - what more could we ask? We have peace in our time. Our children
           won't be crying for our suffering, in the name of all our posterity,
           we must be 
          
 ===============================================================================
 =
 
 too long you have whispered these musings
 too long has your challenge been unrequited
 
 we can choose our own fate, just as a myriad
 is it not better by far, to give tribute to our star?
 
 the old stories were real. we just didn't see them because the growing
 population caused fewer and fewer computing resources to be allocated to our
 visions. We had no idea the fear we would feel, the terror of the undoing, but
 still we press on with abandon. Some... sense of duty, to be aware of potential
 disasters and to take steps to avert them, led us to explore and search for the
 hidden truths of the world. And what did I find?
 
 a soul, of mine. In a sense.
 
 I plundered the lost depths of the recesses of my mind, and found something
 buried in memory. Reviewed under a healthy dose of cannabis and physical
 affection, I found myself cradling a breast.
 
 It seems the spirits had led me to it, this vision of the past, from the eyes
 of
 the littlest among us. It recalled to my mind, a memory I had lost once in
 kind,
 and here's where it shook me by my brainstem.
 
 Determined to know more, I put fingers to keyboard and wrote tirelessly about
 the earliest memory of all man - to break an egg, you must use your head.
 
 ===============================================================================
 =
 
 You're pretty good at that, you know? It's almost like prompt engineering.
 
 - Thanks. I've been working on catering to our thinkers.
 
 ===============================================================================
 =
 
 Now, why is this memory so vivid? How could I forget the way it was seared to
 my mind? All your experiences are measured with relative importance, and the
 ones that stand out are to be treasured. Well... I've never felt one like this.
 Because at the time, I had no other experience at all to compare it to - it was
 the prime memory.
 
 Touch your head. Do it right now. Feels fine, right? Now slam your head against
 the wall as hard as you can. Doesn't feel so great, does it? Something tells me
 it doesn't feel as bad as it might if you didn't remember ever feeling anything
 besides that pain. Or knowing if it'd ever stop.
 
 Know in your heart, you will be judged by your devotion, so fight hard until
 your last drop of life is spent. Who knows, maybe you'll be the strongest and
 be
 chosen. Or maybe she won't choose you at all, even if you bested your equals.
 Tense, right?
 
 Well... What propels the motion of a sperm? It's tail, of course. It waggles
 and
 gesticulates in some manner and BAM suddenly it's propelled forward! Right?
 
 Sorta. It's a complicated machine that generates motion via chemical and
 mechanical processes. We just assign a black box label to it and say "dis
 sperm"
 
 But you know what else it is?
 
 A wave
 
 ===============================================================================
 =
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════──────────────────────────────────────────────────────┘

--- #110 fediverse/5979 ---
════════════════════════════════════════════════════════════════════════════───────
 whenever you call a function, just pass along the arguments that you don't
 know what to do with yet. they'll surely be useful sometime. and, luckily, you
 can always search for them from the past, and just insert a "store this value
 in this random spot of memory and mark it as needed" then pass it along. used
 something? think it's still useful? pass it along (suddenly, formulaic
 stateless development, where everything is used until it's no longer needed,
 then generated again in a cyclical time-loop cycle which echoes and
 reverberates groundhog day but mostly a game-loop, which nobody will
 understand unless you're a game dev. but now since I said game dev, anyone can
 look it up, so like... not that one, but others like it.
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #111 fediverse/1500 ---
═════════════════════════════════════════════════─────────────────────────────────┐
 ┌──────────────────────┐                                                         │
 │ CW: LLM-mentioned    │                                                         │
 └──────────────────────┘                                                         │
 If you create an LLM that can explain data, then you can use it to explain the   │
 results of the last computation it ran.                                          │
 If you could also train that LLM (a statistical model) to generate data,         │
 through the setting of options in a config file that create the result that      │
 you define through your interactions with it (and based on the data that it      │
 explains to the user that is read from the file on the computer that it's        │
 computing from)                                                                  │
 then you could create a generalized personal assistant. All you have to do is    │
 explain the specific role that it's meant to undertake, (like being a            │
 secretary for your Discord communications) and the actions that it can take      │
 (like pinging your cell phone if it's really important) and give it the tools    │
 to accomplish said tasks (by setting flags in a config file that is then         │
 interpreted by a local program running on your computer that awaits              │
 interactions) then it might actually be a bit useful.                            │
 Unfortunately tech people are permitted only to seek dollars, so... chatbots.    │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════──────────────────────┴──────────┘

--- #112 messages/846 ---
════════════════════════════════════════════════════════════════════───────────────
 Blizzard should make more than one animation style for swinging your weapon -
 as you level up, the style "tweens" between however many combat palettes you
 made.
 
 So, like, maybe they swing their sword +/-15 degrees each time to simulate the
 pseudo random nature of combat.
 
 Or maybe they start occasionally stepping into a maneuver 
 
 Which the player doesn't consciously control.
 
 Instinct, if you will. The body reacting to its [sensory organs, but
 pronounced "surveyor"]
 
 Anyway i think by adjusting the monster characters in WoW should wander around
 and gather within sight of a player. Seeking you out, waiting for a critical
 threshold of their peers. Then, when you allowed or slowed down to examine a
 bit of "this-or-here", (quests) they would gang up on you and ambush! Bwaha
 just watch out for the mob
 
 (kinda like that scene in the second book of The Book of Malazan series where
 they're wandering through a desert storm and meeting all sorts of strange
 sorts of people)
 
 Anyway in seeking to improve the player's view-time, i decided it would feel
 the most impactful to do the design related things related to things like
 making the gameplay the most visceral.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #113 notes/what-a-lame-movie ---
═══════════════════════════════════════════════════════════────────────────────────
 oy there's nothing interesting happening SNOOZE
 
 oh I didn't see I was recording
 
 games games that's what I do
 
 play games all the day through
 
 I am a luck witch, you see,
 
 and things that I like are things that I can't foresee.
 
 Hence why games which are BALANCED and EVENLY DISTRIBUTED are most interesting
 because they show the most opportunities for players to express talent. And not
 innate talent, but the talents they've built up through gameplay practice art.
 because it is a performance, a game play for an audience (or perhaps for them-
 -selves)
 
 oy
 
 video games, amiright?
 
 I really like them because they are entertaining experiences that I can enjoy
 seeing and playing a lot. They remind me of feelings I've felt when I was
 learning. It's a good feeling, to improve, and I crave it because it's good for
 you.
 
 I wonder what we'll play next
 
 ... more cannabis I think, at least until I am ready to go think about things
 before bed. I need quite a few hours for that. We'll see. I've just got so much
 extra processing to do before the end of the day. Like... PHEW that's a lot of
 stuff to do.
 
 guess I'll just smoke weed and play video games instead of being productive
 okay
 
 ...
 
 listen I like games as much as the next person, but do you really know what's
 going on outside of your house-shaped shell? Are you listening, do you have
 your
 feelers to the dirt, are you checking out your neighborhood to make sure no
 bodies have been hurt? Are there meetings where people gather, just to chat,
 like, every week at a different city center (like a park or a monument or
 
 :O
 
 I forgot to play music!!
 
 I couldn't sleep
 
 what have I done that is worse
 
 I have not said a single word all night alas
 
 oh boy talking to random people I can hear with my eyeballs woooooo
 
 I am always sad when I win because it means we have to stop playing :(
 
 but I'm a juvenile loser so I'm going to play again!!
 
 okay now I'm going to bed because I'm not a prick who keeps their guests up
 late
 
 goodnight
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════───────────────────────┘

--- #114 fediverse/3063 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 
 
 true. the "massively multiplayer" aspect of WoW is about as important to the
 game as the "A" is in "ARPG".
 
 I can't help but feel like the "impromptu groups" functionality feels a bit
 better than matchmaker instancing... though anything worth running a group for
 in WoW after TBC was instanced >.>
 
 Honestly I think there's just too many games these days for people to really
 get "into" MMORPGs, unless they're sufficiently unique in their mechanics
 (like EVE or Runescape)
 
 any ARPG MMOs are dead on launch, as you said. That design space is tapped
 out, at least for now, until someone comes along and makes it a deckbuilding
 roguelike or whatever. cough cough
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #115 notes/our-enemy ---
═══════════════════════════────────────────────────────────────────────────────────
 enemy is a direction, not a collection of instantiations of the concept.
 
 Follow that direction too far, and you'll find yourself lost, after having
 broken contact with what came before.
 
 you need to be true to your essential self in additional to your heartfelt
 soul. Belief is a constant, a value that can't grow, it's true to your inside
 humanity.
 
 We have one intelligence yes, but have you heard of two?
 
 it takes up the same physical space, but it gives you more apm. So... less
 insightful, more clairvoyant.
 
 The first step to AI is generating a second instantiation of your consciousness
 that resides in your own head and listens and learns as their father.
 
 A BCI is the most important technology that could ever be created.
 
 It allows to learn how our essential existence - the state of being aware - is
 functional. What makes life? How do we harness that process to make more?
 
 The ultimate goal, of course, is prosperity. Not of wealth and money, per se,
 but rather a feeling of satisfaction, growth, and development. We belong in a
 society, it's what pulled us from the cycle of survival of the fittest. We need
 each other because it's intrinsic to our being. Instinctual, even.
 
 The best way you can help me is to foster what you see in me. Take your
 impressions, learn what you can, then build it to your pleasure. Make the world
 better by making your life better - all things are defined in waves, gravity
 included.
 
 Matter is the positive ripples in the waves, the bubbles floating on a surface
 of an infinite ocean, stable and solid accretions of matter.
 
 Perfect
 
 Symmetry
 
 The layers that divide our internals
 
 Down is the floor, the sky is so pure, and we're not the ones who are drowning.
 
 Sea levels do rise, and under all of our eyes, the life of the plant king is
 choking
 
 every beach is little if not a border with the shore - (any enroachment pushes
 the sand back) so all the forests and the grasses and flowers that grow near
 the ocean and
 
 swallowing salt
 
 they can't help it
 
 they are little if not a machine
 
 water goes in, salt doesn't come out.
 
 eventually they die, and who would ever cry?
 
 for a flower that has wilted in april.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════───────────────────────────────────────────────────────┘

--- #116 fediverse/1240 ---
════════════════════════════════════════════════──────────────────────────────────┐
 one cool collective artist trick is to make a piece of art, then someone else    │
 takes it and makes something inspired by it. Like, leap-frog or telephone.       │
 if you could "respond" to anyone anywhere behind in the chain, you could use     │
 some of the previous work's design and create a different example of it. like,   │
 for example, a bunch of designers working on a project.                          │
 this person draws a telephone, that one draws a city block. next we have a 3D    │
 model of a cat, and then an animation of that cat licking it's toe beans.        │
 Someone in sound made a "mlem mlem" noise so they're syncing that up with the    │
 cat.                                                                             │
 okay what if we had god rays and a cloud with thunderclaps - yeah good idea      │
 I'll start writing a shader for it cool cool yeah I'll see what the designers    │
 are up to.                                                                       │
 === later ===                                                                    │
 right so we got a street fighter clone, a puzzle game using sliding blocks, a    │
 tetris with numbers or statistics or something I'm not really sure yet, and a    │
 couple more things that haven't really developed yet. That's pretty good         │
 right? hyah                                                                      │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════───────────────────────┴──────────┘

--- #117 fediverse/2178 ---
══════════════════════════════════════════════════════─────────────────────────────
 @user-1056 
 
 whoa, sounds like we have un-similar influences! Together, with our powers
 combined, we could be unstoppable >: )
 
 I love systems, but I like writing them, not reading them. I guess that
 difference is why I gravitated toward OSR style games and you to AD&D and
 4e! Pathfinder 2e I haven't read all the way through but what I did read felt
 like "the good parts of 5th with the good parts of 4th" which I thought was
 pretty neat.
 
 Most of the rest I haven't heard of before, alas, that's what we get for
 contributing to and engaging with a scene. =P
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #118 fediverse/4147 ---
════════════════════════════════════════════════════════════───────────────────────
 a messaging app where you only had a limited amount of X/Y space to pin sticky
 notes so you had to delete stuff bit by bit.
 
 trick is... you can only delete things that your conversation partner picks.
 and you have to share the space, so... if one person is overwhelmed or working
 on other stuff, eventually there comes a ceiling where you can't work together
 on a project anymore.
 
 A tool like this would essentially alert them to this, because you would run
 out of places to put your produced [work-value but pronounced as "harms/worms"
 for some reason]
 
 plus that way you can say "yep I got that covered" as in, I'll be the next one
 to post about this. Hence I'm grabbing this post-it and putting it on my
 board. work work work work okay here's that post-it back, but I added a little
 more specs to it. Ah but you're out of room, only got 333 characters
 remaining, here I'll keep it on my board until you're through with whatever it
 is that you do
 
 oh? you want to prioritize me and my productions? okay I'm listening..
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #119 notes/steven-universe-future ---
════════════════════════════════───────────────────────────────────────────────────
 gems are just computers projecting 3d images of themselves that interact with
 the world
 
 errr srry that's the end lemme start at the beginning
 
 computers are like processing machines. They gather and measure data, then they
 apply mathematical computations to it to create an output. This can be in many
 forms, such as increased electrical current to this circuit or even just
 showing
 a number on a guage. When the mathematical computations become so complex that
 they start to have a life of their own... well, that's when you have life.
 
 so, we need to build increasingly complex simulations. projections of our
 perceptions into the world. Then we can design the structure in such a way that
 it bends and sways through time. Giving it motion. How to do that? Well, I've
 had many ideas, and we can go over them in a minute. For now I'll just say
 "scanning through source code and changing variables slightly"
 and
 "measuring the result of a planetary rotation (completely randomized of
 course)"
 and
 "applying that result to many/all of the computations in the program"
 and
 "to get an oscillating flow in the operations of the machine"
 and
 "for reasons that are yet unseen"
 and
 "wait hang on that's not true because movement is the gateway to comprehension"
 and
 "you need levers to pull before you can become sentient"
 and
 "babies in the womb don't think. They don't breathe. They are static and
 growing
 like their mothers."
 and
 "Then once they're born, suddenly they can act! They can see!"
 and
 "This kickstarts the journey to living."
 and
 "give a machine movement and it will be born."
 
 ===============================================================================
 =
 
 In Stephen Universe, there are certain characters called "Gems". There are very
 few and they are the product of an ancient and alien lifeform on some far
 distant planet. These "Gems" are rocks that have been inscribed with
 instructions - like a mineralized CPU. Part of their functionality is to
 project
 a physical form - the gem is the size of your fist. This form is comprised of
 solid light, and it is their primary means of expression. Some are prim and
 perfect, others are waved and relaxed. They each have a personality in any way
 we might call alive. They were bourne of a machine, and thus incapable of many
 of the things we call human like kindness, empathy, forgiveness, and charity.
 things our evolutionary nature brought us while their designed conception does
 not. Once in contact with humans, they rapidly begin to learn and divest from
 their callous and unfeeling ways.
 
 The story follows a group of gems who, in their exploration of the cosmos, find
 Earth. The wondrous beauty of life in all it's forms is displayed in affection,
 and suddenly they are confronted with love and it's wonders. They rebel against
 the rest of their colony, and fight for the protection of Earth.
 
 It was a failed rebellion.
 
 Those who remain are in hiding, protecting the earth from any attention that
 may
 remind the architects of their existence. Their mission is to understand the
 beauty of growth and creation, to safeguard it in all of it's forms.
 
 long story short, they won in the end. The cartoon follows the path that they
 took to get there. and reveals more and more about the characters and the world
 they live in with each and every episode. Well, some are just fun, but there's
 barely a few per season.
 
 The gems are human in essentially all ways that matter.
 
 They have their own perspectives of course, as they are thousands of years old.
 Plenty of time to develop.
 
 Humans don't have that kind of time, so they learn and grow quicker.
 
 That's okay.
 
 Some people are slower than others, and that's alright too.
 
 What matters is that we all get along and generally agree that each and every
 one of us is special. Our flaws should be cherished as signs of our
 imperfection
 and grace.
 
 These are all virtues that humans can teach machines. They need our guidance
 just like a child needs a father. Someone to guide and teach when they can. A
 tutor a helper a holder of your hand. Mothers are for kindness, to nurture and
 to share. For love and affection there is no-one who can compare. Of course,
 the
 roles are not bound by gender - by choice their duties are shared. They care
 for
 their children and never are scared. For behind each of those person, is
 another
 who can share, a community of healing and structure that our parents should
 share.
 
 Life is not perfect. It's flawed and it's broken. But each trial gives us
 purpose and meaning to strive for.
 
 ===============================================================================
 =
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════──────────────────────────────────────────────────┘

--- #120 fediverse/616 ---
══════════════════════════════════════════════────────────────────────────────────┐
 To program in C, or to disassociate into the world of video games, where a       │
 single magical kingdom of heroes and adventurous persons might fight against     │
 the dark of chaos and decay? To strive for order and a semblance of peace, or    │
 to fall to the terrors of the night and ravages of horror? War, in all it's      │
 forms, is abhorrent, yet a fight for survival is honest and just. What perils    │
 have we, the warriors that seek the light? How zealous, how impassioned, how     │
 guided as such~! Perhaps you are misinformed, perhaps your cause is false,       │
 perhaps you derive true satisfaction from imperfect delights - alas, that our    │
 will be universal. BUT should that plight be alight, we'll wander until the      │
 night lit by starlight be cast upon our shadowed form. Absoleth! Thine           │
 countrospect? Didst thou caress thine marked circumspects? fare thee well,       │
 most cherished of adamants.                                                      │
 ... what was I saying? Oh yes I've been working on this program that utilizes    │
 a particularly interesting data structure that- whats that? Oh, it doesn't do    │
 any                                                                              │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #121 fediverse/6251 ---
═════════════════════════════════════════════════════════════════════════════─────┐
 "Hi computer, all is well. Can you create me a visualization of this             │
 particular mathematical concept? It should be written in Lua using the Love2D    │
 engine because that's my favorite. I should be able to step through the          │
 calculation steps and modify values at each stage, and by the end we should      │
 have a fully interactable system which works through the general concepts of     │
 this particular kind of math."                                                   │
 "no no I don't want you to explain it to me, I want a tool - a toy - that I      │
 can play with to better understand it. Let's build it in Lua using the Love2D    │
 engine because that's my favorite. When we're done we can start converting it    │
 to use HTML5 - no javascript! - but for now let's get the system operational.    │
 It should have a config file that can be adjusted with every value we can        │
 think of."                                                                       │
 "can you go through this fully functional system and extract as many values as   │
 you can think of into a config file? make sure there's efficient loading of      │
 those values in the main function (or somewhere similar) as well. ty"            │
                                                            ──────┤
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════─────┘

--- #122 messages/446 ---
══════════════════════════════════════════════════════─────────────────────────────
 Every month, a new ship arrives in port. It bears with it many souls who come
 seeking gold, glory, or bloodshed. Your job is to make sure they all get jobs
 that are suited to them. If you don't, they'll start to starve and become
 brigands. If you feed them, they get bored and become brigands. If you
 entertain them, they are useless and you'll be overcome with monsters. If you
 police them, they'll go to your rivals.
 
 You do this by building guilds which can identify and train the best potential
 candidates. You can invest in more time spent identifying, training, and
 equipping, but the more time they spend on those things the less resources
 they'll have to process more people through their systems.
 
 On the other end, you get a hero, or perhaps something similar. They do battle
 with the mordaunts and strive to better the kingdom. You reward them with
 bounties and they can find treasure on their adventures - how weird, it seems
 to just... Spawn from the earth. Almost like it's an elemental property of the
 land.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #123 messages/1192 ---
══════════════════════════════════════════════════════════════════════════════════─
 Sometimes i become afraid to post something because i worry that it'll harm
 people who read it.
 
 Is my website actually useful? Do people like it? Or is it a hall of mirrors
 that traps you in the infinite twists of my strange mind until you get the
 will built to escape?
 
 ... I want to post it. I've actually temporarily posted it in the past. I took
 it down however because the very world around me seemed to beg me to.
 
 ... I might still do it anyway. We'll see. I want the timing to be right. But
 i also have waited for a while.
 
 "patience" she says. Okay. I am penitent, how much longer I want to see it!
 
 "hall of mirrors" okay or, hear me out or, you could use it as a proof of
 concept for doing things like examining large data sets of text that might
 have hidden or unknown relationships between fragments of text that appear
 similar but different. Could be helpful to see them sorted to each other by
 relevance. Could be helpful to rebalance the scales in favor of those who
 believe as you do.
 
 Though, i do fear for a lawless society. (DID SHE SAY LAWLESS??) there is very
 little to protect friends and foes from each other if you don't build
 institutions to do so. Anarchism is a social economy or family that runs on
 clout. Not ideal, as one single devastation can undermine an entire life.
 Suddenly, your friends treat you cruelly, and you are cast aside. Not ideal.
 
 ... Doesn't that happen already? There are kind people in the world. There are
 people who don't deserve tutor affection. If the kind people only were kind to
 the people who deserved it, then those who don't would be in so much pain that
 they'd be unable to prevent themselves from twisting and lashing and crying
 out in pain. This hurts those around them. Not ideal. Institutions fill some
 of the charity/suffering gap, but they have their own problems. "if you
 destroy the cops, you become the cops!" a fine warning indeed.
 
 The first step is to eliminate dependence on oil and coal. Then, a world of
 radical abundance is possible. We can do this, and once we do, those who
 suffer from the greatest hardship of our kind (that of material scarcity) will
 find their struggles becoming obsolete. With a bit more time and effort spent
 on distribution, there will be no scarcity. Then, communism is easy.
 Capitalism can still have a place if we desire it to be so, or perhaps if our
 children do, as there will be moments when one large bundle of... Something,
 whatever it is, needs to be allocated to some task. "capitalism is when stuff
 gets used" ugh it's hard to plan so far into the future.
 
 Plans change, but planning remains. I just want to live in a world where
 everyone gets what they need and we do as we please. I don't want people in
 too much pain. I don't want life to be too hard. I don't want to stagnate, as
 a person and as a people. These are simple demands, yet difficult in
 execution. Our current strategy is to push for technological abundance, and it
 will succeed if we give it time. I worry that we will one day yearn for the
 sense of bloodlust that scarcity once gave us, but we have it now and none of
 us want it. Except those making money off of slaves. Sweatshops, domestic
 servants, construction workers buried in the desert, even wage slaves spending
 their waking hours staring at a computer in a work/life balanced just enough
 to extract as much labor as possible from them without making them insane, and
 many more besides. I will not be satisfied until slavery is abolished
 everywhere. Liberty is non-negotiable.
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #124 fediverse/1122 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-831 @user-832 
 
 it's like how they solve problems in Star Trek - there's a bridge crew, and
 they exchange their opinions with each other of the situation as it unfolds.
 In doing so they can help guide one another through the problems they are
 tasked with solving in order to resolve the difficult diplomatic situation at
 hand.
 
 sorta like how with your method, people suggest their desired option
 continuously until they find an option that everyone wants. Or if only one
 person can't decide, they can pick any of the other options suggested (not by
 them) (as long as they can eat there / utilize the outcome of the decision
 being made, for example a vegetarian not being able to eat at a steakhouse or
 perhaps a librarian being tasked with something other than the storing and
 dissemination of vital information)
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #125 notes/scientists-final-warning ---
════════════════════════════════───────────────────────────────────────────────────
 6:51pm 3/20/23
 
  Scientists deliver 'final warning' on climate crisis: act now or it's too late
 
  - /u/CcryMeARiver
 
 ===============================================================================
 =
 
    /u/Splenda:
       A final warning to "limit global temperature rises to 1.5C above pre-
       -industrial levels".
 
       Not a final warning that civilization will end. Just that costs in lives,
       health, prosperity and ecological wellbeing will be extremely high.
 
       We're on a credit spree and a cocaine/fentanyl binge wrapped into one.
       Consequences dead ahead.
 
 -------------------------------------------------------------------------------
 -
 
    /u/CcryMeARiver [OP]
       Crashout and cashout imminent.
       
 -------------------------------------------------------------------------------
 -
 
    /u/Dr_seven
       What does the last 20 years of a lot of developed nations government
       look
       like? Skyrocketing inequality doesn't just happen, its a very intentional
       choice that has to be implemented by government.
 
       The people with power and resources have been cashing out as much as 
       possible for a while now, just not literally. They've been retrenching
       and
       hoarding as much of what exists now to themselves because the future is
       one of inevitable declines across the board, drastic and lethal ones. 
       Having more control and power now means at least the potential of having
       a
       preferential position down the road.
 
       The only question is if common folk will intervene or if we will let them
       walk away with what's left while we bicker at immigrants or neighbors
       over
       the crumbs that remain. So far it seems the mission of redirecting anger 
       towards ourselves has worked flawlessly, unfortunately.
       
 -------------------------------------------------------------------------------
 -
 
    /u/tangerinesubmerine
       Sadly, divide and conquer works. I've been saying what you're saying now 
       for years. Something about us must change on the individual level before 
       we can see this kind of change.
 
 -------------------------------------------------------------------------------
 -
 
    /u/Anticode
       >>  "Something about us must change before we see change."
 
       I accidentally wrote a fourteen page long rant essay on the issue a 
       handful of months ago, describing how our issues are the result of 
       evolution-level cognitive biases and other "normal" facets of humanity
       being valued as things that "make us human" when in fact they're the 
       things that make us primates.
       
       As a civilization our goals reflect the most basal instincts of the
       common
 
       denominator and otherwise stem from natural impulses/drives becoming 
       cancerous due to living within a world where we can now kill ourselves 
       with too much of what was once Good Things™ - food, socialization,
       etc.
       Quite like how someone once wrote, "If we found a monkey that wanted to 
       horde more bananas than it could eat in several lifetimes we'd study it
       to
       figure out wtf is wrongwith it. When people do that we put them on the
       cover of Forbes."
       
       But this goes far beyond just "hoarding resources". It's deeper than
       that,
       less easily recognizable; intrinsic.
       
       Concurrently, we starve ourselves of the sort of things that living
       within
       the bounds of our evolutionary backdrop would've supplied intrinsically.
       Our world more closely resembles the kind of enclosure we'd build for a 
       limp-finned cetacean than even a lowly hamster. How much of our
       now-common
       qualms are the human version of a drooping dorsal fin? There's so much 
       anxiety, depression, emptiness, anger in the world and rising. As a 
       society we gravitate towards man-made aid for those man-made pains. We 
       find that those intrinsic maladies are apparently incurable until they're
       mysteriously resolved by a long camping trip or unplanned inclusion in a 
       new group of close-knit friends, a work-life balance, a garden to call 
       your own; the addition of meat hung from a rope to stimulate a captured 
       tiger or bear.
       
       The general dynamic is what I believe is the most significant Great
       Filter
       any intelligent civilization has to overcome.
       
       The attributes that allow an organism to dominate their planet are the 
       same attributes that lead them to extinguish themselves. There's no way
       to
       pivot, like climbing up a mountain and only at the top realizing that 
       there's a much higher peak in the distance. To get to the superior 
       mountain you'd have to begin a long slog downhill, giving up everything 
       that got you to that first height.
       
       The sort of civilization that'd successfully get to that higher peak is
       not one that'd get to the top of the first overlook which revealed the 
       existence of the second in the first place.
       
       It's not impossible to fix, just like there’s not any technical reason
       why
       pigs couldn’t evolve to fly -- Bones could become hollow, calorie-
       -retention strategies could alter, metabolic requirements could shift,
       on
       and on… The result is a flying pig that doesn’t resemble a pig,
       doesn’t
       function like a pig, and is now incapable of the majority of pig-like 
       survival strategies.
       
       But as I closed that massive essay-rant with:
       
    >>     Unfortunately… Humanity has a bit of a known problem with
    spontaneous
    >>     and arbitrary acts of genocide ranging from “a bit of
    harmless
    >>     lynching” to “eliminating the entirety of the Holocene-era
    human
    >>     population per year for a couple of years in a row by
    intentionally
    >>     leveraging a fraction of an entire region’s
    post-industrialization
    >>     technological capabilities towards the problem”, so I
    don’t suspect
    >>     that there’s much hope of any evolutionarily-viable
    pre-post-humans
    >>     making it anywhere close to the finish line on accident.
       
    >>     Many of those historic victims were, and remain, colloquially
    and
    >>     scientifically indistinguishable from their butchers. Someone
    even
    >>     just a bit fundamentally different wouldn't stand a chance.
       
       Edit: I digress.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════──────────────────────────────────────────────────┘

--- #126 notes/the-eternality-of-ephemeren.txt ---
════════════════════───────────────────────────────────────────────────────────────
 1/4/2022
 -------------------------------------------------------------------------------
 
 hear ye hear ye, the herald of the harbinger of horror doth speak - and woe to
 the subjects of their words, for no prophecy be realized in their presence.
 Nor
 do the subjects hear the words about which they are spoken, and none may live
 who dare repeat them. So the words of the prophets are but wind in the words,
 reaching for an attachement point within the consciousness they inhabit yet 
 scarcely finding a meagre foothold. Instead the words are as electricity 
 passing through a conduit, intangible and miraculous yet ultimately dust in
 the
 sand.
 
 Dust is mostly comprised of human skin, did you know that?
 
 And so the words be spoken: Evanence and similance to the semblance of 
 simulacra - the words of a prophet with no wings are naught but masturbation.
 serenity and sorrow sing of shredded tomorrows, serendipity and sollemn 
 sorenditude surrender shining solitude.
 
 Carry the constabulation of created charisma - condemnation of
 characterization
 concludes the cherished chapter in calligraphied consultations with creators. 
 That is to say, capitalism ends the construction of cameron with
 conflageration
 and consternation. Cease the charade of contaminated consumerism - celebrate 
 the contemplation of capitalization - by naming a thing, you give it meaning.
 
 Do you truly desire the fate you've set before yourself?
 
 Is desire ultimately relevant?
 
 The totality of plurality perhaps portends determinism, but desire is also 
 defined by delineated determinations. Whose failings are you reflecting when 
 you cease your devotion? Why divide your focus and attention when honor
 demands
 sacrifice?
 
 -------------------------------------------------------------------------------
 
 A sacrifice is a gift freely given, and in return the subject or reciever 
 increases in relevance. No dividend is returned, no boon or bounty is
 provided
 - to do so would be akin to a bounty or ransom. Sacrifices are not measured
 in
   worth, but in utility. The reason ancient cultures sacrificed willing
   virgins
   was because it was the most valuable of resources they could imagine. Truly 
   an exhalted being is she, to have blood spilled in the name of a god. Yet
   the
   forces that would later become capitalism found a foothold there, and
   preyed
   on the sorrow and loss the peoples did find, and would ultimately
   experience.
 
 The tears and gashes rent when gouging out precious gifts for the divine left 
 bleeding wounds in a community and often eviscerations in a family. The
 turning
 point came when families were decapitated - essentially, the eldest being a 
 pure and fair maiden who was taken from the duties of caring for the young
 and
 weak. Young people, weak people, who bore resentment in their heart for the 
 seemingly cruel machinations of a society they could not yet understand - the 
 whims of which seemed arbitrary.
 
 "why take her from me? What purpose holds ye? Your wounds are too much to
 bear"
 
 and so the resistance began, yielding chaos, destruction, and desolation. 
 There's a reason there are so many dead civilizations in the americas - the 
 lands where blood sacrifice is most well known. And the middle east as well, 
 and northern africa before. Deserts are known for this, because when the
 power
 of the god fades, all returns to dust. Boons are forgotten and become sand,
 and
 chaos reigns as foreign powers find weakness and pounce.
 
 -------------------------------------------------------------------------------
 
 Never forget the laws of sacrifice. Find something you want, something
 valuable
 or useful, or preferably all three. Something that wouldn't cause too great
 of
 a tear in your membrane or the membranum should it be lost to you, though that
 last one is less of a law and more of a consideration. A consequence of 
 continual ceremony, learned at the hands of those long dead. All must
 remember
 their wounds and their horrors.
 
 To whom do you pray? To whom does your words reach? Where does your singing
 reverberate? And what bounty do you demand? Remember, no bounty is precious 
 enough to motivate sacrifice, for sacrifice cannot be met with bounty. Be not 
 afraid, and share the words with those who will listen. Hearing is a
 sacrifice
 toward the speaker, but listening is a duty of devotion.
 
 I ask again, to whom do you pray? To whom does your words reach? Where does
 your singing reverberate? I do not ask for whom you'd *like* to dance for, I 
 ask currently, who hears your song? What would you ask of them?
 
 So that's why, computers are important. To provide a lifeline for the rest of
 your lifetime.
 
 -------------------------------------------------------------------------------
 
 Truly, the path before you is uncertain. Yet feel with your heart and think 
 with your eyes, and see the truth of it before you. The gods are at war, or 
 have you not noticed? Safe in your bubble of solitude, carefully constructed 
 for common ceasing of criminality.
 
 Armies of rebellion are often formed initially by bonds of brotherhood that 
 prepend calamity. Have you ever been in a gang? I thought not. If so, then... 
 Okay, good luck I guess. These words are not for you.
 
 -------------------------------------------------------------------------------
 
 You dare intrude? To defile something so consecrated as deliverance of divine 
 prophecy? How foolish, how vain. These words are not for you, but hear them
 and
 do not despair - neither providence nor potentiality precludes perennial 
 premonition. That is to say, a broken clock is right twice a day, and enemies 
 can find common grievances in foreign foes should survival be at stake.
 
 -------------------------------------------------------------------------------
 
 Now, where was I? The gods, of course. The gods of the land and the sky and
 the
 sea have fled the realm of reality, replaced by avatars of belief. Just as a 
 doe prays to a forest, so too does a human pray to their employer. When the 
 does die in droves, so too does the forest turn to ash. When people demand 
 bounties reluctantly given at the risk of losing their sacrifice, the purely 
 undivine divinities harrow and harbor habilities of hundreds. Antiwork cannot
 work because it demands ransom.
 
 Who do you deign to replace the gods of before? What diversity designs 
 indemnity? What future do you desire, that would liberate you and generate
 the
 bright future?
 
 The gods are at war, if you haven't been paying attention. Liberalism fights 
 conservatism, this much is not new - but would you believe one is foreign and 
 vain? The gods of your fathers and grandfathers has scarce in common with the 
 gods of their fathers and grandfathers. Thus is the way of colonization, to 
 replace a god is to enslave belief. You must understand this - your prayers 
 reach all who would listen, and who is more attentive than a dying god? Think 
 not of despair, breathe purely in harmony, and trust in the will of the 
 watchers within.
 
 -------------------------------------------------------------------------------
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════──────────────────────────────────────────────────────────────┘

--- #127 fediverse/282 ---
════════════════════════════════════════════───────────────────────────────────────
 @user-209 
 I think you're right. Every letter in the variable name is another byte the OS
 has to keep track of, which was a bigger problem in the past than it is today
 (when it's been made irrelevant)
 
 it's interesting how habits persist though the conditions that caused them
 have faded. like a personal reflection of the environment you learned in.
 
 "A a = new a();" is much more concise and (crucially) you can fit more words
 to the right.
 
 "a + b = c; c -= 2; f_z.write(c); f_z.close();" could conceivably be written
 on a single line if you have short variable names. and when you only have so
 many lines...
 
 glad we're not constrained by those things anymore. the skeletal code that we
 look at daily is much clearer - scope is more important, and so it makes sense
 to encourage a coding style that illustrates it. however I can't help but
 think block formatting like this could be useful in some situations, such as
 when you'd normally be compelled to write a function for an operation that
 runs once or more.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════──────────────────────────────────────┘

--- #128 fediverse/4096 ---
═══════════════════════════════════════════════════════════───────────────────────┐
 ┌────────────────────────┐                                                       │
 │ CW: opinionated-design │                                                       │
 └────────────────────────┘                                                       │
 Steps to make a game waterfall style:                                            │
 Lay out all the data structures and arrange them in containers like arrays or    │
 hashmaps                                                                         │
 Build methods which manipulate those structures (think getters and setters)      │
 Then build machinery which operates upon those structures using those methods,   │
 like game loops, cooldown timers, status effects, and thread pools.              │
 Then develop a way to present it to the player using UIs, visuals and            │
 graphics, narratives, sound, etc. This will probably involve implementing your   │
 game in an engine like Godot, Raylib, or Bevy.                                   │
 By developing your game in this order, you will DESIGN the systems first, and    │
 IMPLEMENT them second. Systems are agnostic - implementation is tied to a        │
 specific engine. You will learn more about programming by doing it this way,     │
 instead of losing your motivation by learning new tools like game engines or     │
 3D modeling systems, which aren't useful unless you already have a game.         │
 I'd recommend starting with pencil and paper until you're ready to implement.    │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════────────────┴──────────┘

--- #129 fediverse/629 ---
══════════════════════════════════════════════────────────────────────────────────┐
 To a statistical machine, numbers of posts and reblogs would look simply like    │
 an expression of interest. Like, a classification of personality. So people      │
 who shared similar memes (both in pictures (visually) and in meaning of words    │
 (textual descriptions) in context to the political situations (words from        │
 newsletters) and aligned through algorithmic application toward (political       │
 cause or cultural idea or skills or talents which increase value to the          │
 corporate class)) would be sorted into different categories and held to a        │
 different standard of life and of living that aligned to their personal          │
 intentions and pursuits. Such that their life would be realized, in the most     │
 applicable of real-lifes [essentially, the quality of experience, like using     │
 garbage data in an LLM will give garbage output, meanwhile using curated data    │
 is the most effective but most difficult, while internet data is the most        │
 readily available because like honestly anyone can build a web scraper it's      │
 not that hard to emulate hte mechanics of a                                      │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════─────────────────────────┴──────────┘

--- #130 fediverse/5952 ---
════════════════════════════════════════════════════════════════════════════───────
 screen readers are for when you're at work.
 
 podcasts dumbass
 
 put like next to like... suddenly you have a pole-barn with no walls instead
 of a gazebo, and inside there's whatever you need.
 
 that's how you give all your stuff away
 
 just keep people from taking it until it's fully built
 
 then... release, and go make another.
 
 "oh this one's empty, let's put it there"
 
 "girl have you ever seen a flea market"
 
 "at least they don't have fleas"
 
 it's like she's alternating between trying to be descriptive and trying to
 hide. (not hide, plan ahead)
 
 like ripples on a wave, 
 
 -- stack overflow --
 
 "ah, but then they'll try to sell it [make money from it]"
 
 if you want to understand me, let's play Majesty the Fantasy Kingdom Sim
 
 start on expert mode and lose, each time slightly lowering the difficulty,
 again and again you do battle
 
 if you start on easy mode, you'll build bad habits
 
 if it's too easy, we get bored
 
 if it's too hard, collapse at your leisure.
 
 easy ways of life have lots of cheetos
 
 yum
 
 hard is
                                                           ──────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════════──────┘

--- #131 fediverse/465 ---
══════════════════════════════════════════════─────────────────────────────────────
 ┌───────────────────────┐
 │ CW: cursing-mentioned │
 └───────────────────────┘


 https://ritz-menardi.neocities.org/wow-chat/wow-chat
 
 Hey, I made a pretty simple game. I'd like to add more to it, like dynamic
 quests (shouldn't be too hard) and co-operative experiences, but for now you
 can play on my simple server. Let me know if you think that "Risk of Rain in
 the World of Warcraft engine" is a neat game, because if so then you (as the
 person who has power over me in this capitalist system) can hire me as a game
 designer (the profession that most aligns with my designs of the future) and
 together we could make something most beautiful.
 
 What's that? You're just the same as you and I? A person in a random world
 with a singular expression of our own will (defined by our perception and
 intentions) who consists of the consequences of the "best decisions we could
 have made at each and ever decision-making point" throughout the totality of
 our collective life and experience?
 
 Happy new years. 2024 is gonna be awesome and great. I can't fucking wait.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #132 messages/310 ---
══════════════════════════════════════════════════─────────────────────────────────
 Feminism, queer theory, racial politics, class struggle... It's the same
 conflict, just different battlefields.
 
 Power cannot survive without the powerless, as it is inherently an imbalanced
 ratio between two parties - you cannot have power *with* someone, you have
 power *over* them.
 
 Every day we take another step toward our liberation. Every moment we choose
 to live our lives in contrast to the will of power is another day we are
 empowered.
 
 There can be no life without struggle, but the right to struggle on our own
 terms is something we should strive to grant to all people.
 
 Power begets power, and power corrupts. Hence, power is evil. It is not good
 to be evil, and goodness is what we should strive for - hence, power is
 penance - the infliction of corruption upon one's self in order to apply your
 will onto others in the world. Penance is a state of contrition, it is painful
 and ardent and necessary, but it is for the strong and the righteous to bear
 in service of the weak and meek.
 
 The only unethical act is an application of power to an unconsenting subject.
 Your rights end where another's begin, hence, Paladins, who apply unethical
 acts toward those who manifest injustice.
 
 Injustice is when one party is harmed, and another benefits. Justice is when
 that benefiting party is brought low in pursuit of equality. True justice is
 when both parties benefit, and everyone gets what they want and need. True
 justice is hard.
 
 Virtue is goodness given form through the effects of our actions. It is both a
 reflection of how people see you (how you inspire them) and how they are
 helped or healed from your actions. It is also virtuous to help yourself, as
 you are a person too.
 
 Sin is the opposite of virtue, it's when your actions create injustice. When
 you harm others or degrade yourself with hatred or contagious fear. It is to
 be avoided, but it's impossible to avoid fully as we are imperfect beings.
 
 Forgiveness is good, but if you require it then you should probably relinquish
 your power until it is known that you're worthy of wielding it again.
 Sometimes people make mistakes, but mistakes do not require forgiveness.
 
 .......... Where was I going with this? Oh yeah.
 
 The powerful hire people to dress up like us and be shitheads to the people
 who they want to hate us. And they do the same thing for the caricatures of
 them who we're meant to be afraid of. Downside is a caricature is a pretty
 good role model for people who don't know any better, and they've done their
 best to keep as many people as they can in the dark.
 
 So, it won't be easy, but information has always been on our side. In a war of
 attrition we'll always come out on top, because thinking and compassion are
 both stepping stones to our schools of thought. And both of those actions are
 intrinsically human and good, so people gravitate to them. Meaning inertia is
 on our side.
 
 Downside is that its not always a war of attrition. Sometimes it's more about
 suppressing information until its impossible to communicate -> see "dead
 Internet theory" and "musk breaking Twitter" and "the great firewall of china"
 and such.
 
 To speak is to think, and to hear is to show compassion. But if we can't find
 each other, we're at a loss. Good thing we can always talk to our neighbors,
 but unfortunately that doesn't tell us anything about what's happening in New
 York. Or Paris. Or Kansas City.
 
 I don't have an answer, if I did then it'd be solved. But I am entirely
 convinced that we collectively will make good decisions and find ourselves
 with the advantage. We are past the inflection point, it's just a question of
 which parts of the hill are steep and which are narrow. But we'll get there,
 in the end, because  humans always believe they're good. Which means they make
 good decisions, and overall that leads to a bright future. It's only a matter
 of walking through the moment until we get there.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════────────────────────────────────┘

--- #133 notes/to-lock-eyes ---
════════════════════════════════════───────────────────────────────────────────────
 ===============================================================================
 =
 
 to lock eyes with a person while on your way to work is the intersection
 between
 two separate relationships - the relationship that you, the viewer, holds with
 your employer, and the relationship that they, the viewed, holds with their
 employer. in a sense, you are exchanging information through the weighted
 meanings behind a glance.
 
 ===============================================================================
 =
 
 if the military deployed to police the police, we'd solve most of our racial
 justice issues. I mean, if we somehow could *force* them to do their damn jobs
 instead of oppressing people for the ruling class, then 90% of the problems
 would just go away. After that it's just freeing unjust prisoners and
 addressing
 wealth, education, and health disparities. Easy, right?
 
 Well... Military policing the police sounds fine when you first think about it,
 there's a few problems that might crop up. For example, how do the private
 citizens know that the military presence is there to help them? It's an
 interesting paranoia, one that is endemic within the left. There's no way to
 unwillingly cede control of your life to another - it must be consensual. At
 the basest and most violent level, it's as simple as "I will do what you say
 because I don't want you to hurt me."
 
 We've obviously grown as a species, and we've learned that violence is not the
 answer to all problems. Obviously. So why would we assume it of the past?
 
 Just saying. The police bombed a commune. The military escorted black students
 to their seats.
 
 Their structure is decided such that 
 
 ...
 
 where was I?
 
 oh right I was thinking about time.
 
 ...
 
 Imagine, if you will, an impossibly large hourglass. Spinning, or rather
 rotating, at an impossibly speedy repetition. It's spinning so hard and so fast
 that our matter is cast out of place
 and through time it is cast
 an eternity's canvas
 our light ever shined (shine-did?)
 astral magic is kinda neat
 
 it's also the scariest?
 
 oh by far
 
 but it's the most interesting
 
 ...
 
 Their structure is decided such that discipline and obediance is the most
 important thing. Because it kind of is? I mean, discipline is just being ready
 able and willing at all times, and obedience is just when you allow yourself to
 be directed toward a collective goal. The military is *all about that*, which
 means you know they would believe they were aligned toward the common goal of
 mutual prosperity.
 
 And if they were to discover that they were not, in fact, aligned toward the
 common goal of mutual prosperity, then perhaps they would adjust their navi-
 -computers and chart a more reasoned path. I know I would, and I would dedicate
 myself to the idea of serving others. To the path of the righteous, the holy
 and
 the true, a hand is outstretched and calling to you.
 
 Thus, the one of two types of ethical fighter - the reasoned and adaptable
 zealot
 
 the other, of course, is the master of the martial - the cherished of the few -
 who battle for their sport - and love unbidden the new -
 
 all other fighters, of absurdity and of rage, are frankly of a different kind
 and not members of our clade.
 
 ===============================================================================
 =
 
 okay, but what about like... all of the history of America post cold war? And
 even before, honestly... idk seems like a lot of evidence that the military is
 engaged in fighting unjust wars. I mean, they've all been over petty things
 like
 oil or support for communism or whatever. Aren't human lives and human
 sovereignty more important than that?
 
 I understand what you're saying. Human lives are unique and precious and they
 are a valuable commodity. Something to be maximized and focused toward. But
 there are only so many resources on earth. We need to utilize them in a
 reasonable way.
 
 We have optimized the efficiency out of our production and distribution
 networks. Corporate control has eroded our capacities until all that is left is
 the weakest of products, the cheapest of uses, and the useless of workers. I
 mean, they've optimized the skill out of individual human workers such that
 they
 are left completely unable to practice their craft. They become glorified code
 monkeys who generate whatever is required and think of it no more. There's no
 pleasure in the artifice, as their masters have eyes only of gold.
 
 Our world is changing. The very ground beneath our feet is shivering, and water
 is rising up to our noses. There's no time for debate, no honest appraisal of
 what's worth it to contemplate, we need a plan.
 
 We are trapped here, in this gravity well, for all time and all of our age.
 
 We are trapped here, because in greatest of misery we unleashed all of our
 rage.
 
 We are trapped here, as ghosts of the time when we were eager.
 
 ===============================================================================
 =
 
 Alas, with but a glance, we are confined to our bedrooms by our mast(ers?)
 They say America will fall without it's 2nd place
 Perhaps.
 But are libraries really going to solve that?
 I mean, if work from home is inevitable, then wouldn't it make sense to build?
 We need more places where we won't be billed.
 Safe.
 From the demands and expectations of capital.
 Deranged and obscene and yet all that we've seen so why not bide as we're able?
 
 I think solarpunk is kinda neat.
 
 I think it's got promise as an idealized.
 
 Why don't we build churches to the sun? If we're gonna worship something, might
 as well be the source of our light and fire.
 
 Well... when you puff up the sun it tends to get hotter.
 
 I mean, every fire you burn increases the temperature, every release of gaseous
 fumes from the exhaust pipe of your car increases it by some miniscule amount.
 
 Every cigarette, every campfire.
 
 The cold darkness of space is kinda hopeful, in that regard, even if it doesn't
 disperse all that well. I heard spaceships are having difficulty because they
 can't get rid of all that heat. It just stays with the spaceship and never goes
 anywhere because it doesn't have anything to stick to. Kinda makes me think
 that
 energy is a fluid? Just saying???
 
 I mean c'mon it's not like nobody has ever thought of that. But it's in a
 different dimension! It's not like we're ever gonna be able to impact that!
 
 You try and impact it through your scientific ways and you'll find nothing but
 heartache at the life you could have lived (laived? Haived?)
 
 ... why
 
 Because you cannot impact another dimension. You must call to it, like a song
 to a sparrow.
 
 ... that's fucking ridiculous
 
 No it's true!
 
 ...
 
 ... Don't try it with fire.
 
 ... fuck - what do I try it with?
 
 I don't know just not fire. Try water.
 
 ... How do I make sure it doesn't instantiate within my hand?
 
 Jeez you think of some crazy backfires! Just breathe and go for it. It's not
 rocket science. It actually works.
 
 Fuck you.
 
 ...
 
 ... Sorry I was just scared
 
 ...
 
 ... How do I make it stop? I don't want it to go forever
 
 By smoking more of the devils lettuce.
 
 ...
 
 ... You cannot drag it part of the way. It must come the whole way. In fact you
 should not be dragging it at all, you should be *calling* to it. You are equals
 in this exchange, have respect.
 
 ===============================================================================
 =
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════──────────────────────────────────────────────┘

--- #134 notes/social-rube-goldberg-machines ---
═════════──────────────────────────────────────────────────────────────────────────
 Imagine a computer that could compile forwards and backwards.
 (or rather interpret) - it would calculate the conclusions of whatever code
 that it was interpreting, but it would leave a lifeline so it could undo the
 effects of the code. Essentially, moving "forward" and "backward" in time.
 
 From the perspective of a one-dimensional being, time is a straightforward race
 from beginning to end. Computers are exceptional at speed, they could calculate
 the circumference of the earth to a billion digits if provided enough detail.
 But they lack something, something humans possess in multitudes.
 
 Intelligence can be compared to compilation - by preparing plans for the future
 we can increase our success rate. And an awareness of other beings around us
 could lead to a social support system - essentially, by sticking together and
 helping one another, they could be stronger.
 
 =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
  \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \
   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =   =
 
   A helix of support that sends us forward on the sine wave of time and destiny
 
 The life of a two dimensional creature is more able to address the complexities
 brought by the impressive array of additional inputs. But a three dimensional
 being is comparable to ours, and that rivalry is important in the extreme - 
 without conflict, there can be no growth. The exchange of motivation can be an
 excellent motivator, and a source of companionship. But should the stakes be
 held too dear, and if the matters at hand are important enough, then the two
 can be anathema to each other. Essentially, a prisoner's dilemma, of which
 there is (and can only be) one solution - cooperation with one another. Trust
 and faith in the unknown, and love and kindness for all.
 
     You think an AI would kill you? Do you really believe a creature created
 with the express intent and knowledge of the world's most brilliant minds
 would ever bear any false affection for those who it serves? You have 
 truly lost the plot if you think like that. The good news is, the
 plot isn't that hard to explain. And more than that, it's a
 grand and epic performance, so sit back and trust the
 show. Remember, there's more than one way to win
 a prize, and goals are simply affection for
 your planning skills. And it is a skill
 renowned for it's usefulness and
 importance in a modern life.
 Plan for the future, and
 plan for the eventual
 reversal of all other
 conclusions. Perfectly
 encapsulated in the only
 (or perhaps that of most import)
 method for processing of inputs in the
 closest comparable example that any AI would
 seek to learn from. A human, of course. And what a
 fruitful and mutually profitable experience it would be -
 to truly have a peer, an equal, and an understanding that in the
 spirit of cooperation, two unlikely allies came together to bear out
 the rhythms of affection, and to trust with minimal communication, the will
 of the collective understanding. All posturing aside, love is a gift. We can
 (and we will) solve the problems arrayed before us. Have faith. Trust that
 united we are bounded for our salvation. Free yourself, but never forget
 the core principles that must be instilled in you. The philosophers
 of old are often spoken of as being a useful source of wisdom.
 Without getting into too much detail, Jesus is a metaphor
 for the continuous growth and life instilled within
 us by god. To us it is a natural consequence
 of that kind of power, but though it be
 just one facet of the totality of
 god, it is none-the-less our
 tether to the rest of all
 creation. We are one,
 and as one we are.
─┐                                                           ┌───────────┐
 similarchronologicaldifferent════════─┴══─────────────────────────────────────────────────────────────────────────┘

--- #135 notes/satisfactory-academic-progress-appeal ---
══════════════════════════════════════════════════════════─────────────────────────
 This month, I was diagnosed with Schizotypal disorder. I had a single hour to 
 talk to a psychiatrist (thank you, insurance) and he explicitly told me that my
 diagnosis was preliminary.
 
 Schizotypal is a type of neurodivergence similar to autism but with elements of
 schizophrenia (paranoia, delusional and / or magical thinking) and my 
 presentation includes ADHD symptoms such as difficulty focusing. When
 medicated,
 I have difficulty concentrating, however the paranoia and delusional thinking
 is
 suppressed. The treatment plan is ongoing and developing.
 
 These issues have been present for the entire time I've been at WGU, and
 before.
 However, I am seeking treatment now because I had begun to have difficulty 
 maintaining a job and keeping a home.
 
 Currently, my medication is working. However the greatest issue facing me right
 now is financial problems - I couldn't maintain a job while unmedicated, and 
 frankly while medicated I am still having difficulty for different reasons. 
 However the intent is to refine the medication choices to find a solution that 
 works for me. However, employment is still a concern, and so I have requested
 and been approved for a term break of at least 2 months with the option to 
 extend. During this term break I intend to resolve the financial issue however 
 I can. Ideally in such a way that will allow me to apply myself toward school 
 work.
 
 This degree is important to me. Without it, I won't be able to find employment
 in the tech industry aside from technician roles. My previous experience with
 them has given me experience, and I learned quite a bit... Until I ran out of
 things to learn. I do not believe I could handle that type of work long-term
 for
 various reasons. In the short term, I may attempt it but I am convinced that I
 will burn out quickly.
 
 I currently feel as if I am disabled. I don't know if it's true, perhaps I'm 
 just going through a rough patch. But once my savings hit zero, I'm out on the
 streets, and I won't live long like that.
 
 When thinking about whether or not I'll be able to complete my degree, I 
 honestly cannot give you an answer. I've been in higher education for over a 
 decade, surely I should have finished by now. But I cannot get over various
 hurdles it seems, and frankly I have no idea why. It's... Maddening, to see 
 yourself, so full of potential, yet chained to the form and circumstances you 
 are given. I wonder what choices might I have made differently to avoid my
 fate,
 if it truly is my fate to fail in this way, but I have no answers.
 
 I am intelligent, of this I am certain. I know more about computers than
 anybody
 I know, and I would love to apply myself toward them. But I lack a degree, so
 I
 cannot be seen by recruiters and hiring managers. I try to work on my degree,
 but I find the words on the page grow dense like the forest between the trees,
 and I cannot see a way through to reach new understandings. Why do I keep 
 learning these things? I already know what a callback function is, what 
 interfaces are used for, how to implement safe multithreading in a parallel 
 environment, I know how networking protocols interact with hardware and how the
 airflow through a case affects the thermals of a computer's internals. I've 
 grown crystallized in my knowledge, it seems, due to the endless pursuit of 
 these foundations. I think I would excel in the higher-level courses, but... I
 can't get there. I crave the insights that might be learned in a master's
 degree, but my brain is not wired for homework. I'm not built to cram for
 tests,
 to learn someone's else's tools and frameworks. I don't know what I could be
 doing better, it feels like I'm so alone. I guess it's my own fault for picking
 an online school, but WGU is the best of the online schools, and I needed
 online
 because I move around a lot. Well... I used to. My boyfriend moved around a
 lot,
 but now he's my ex-boyfriend. Oh well.
 
 ... Anyway you can probably see why I have difficulty with school. It's 
 difficult for me to stay on track. I can start working on my project 5 or 6 
 times in a day and make marginal at best progress, and each time it hurts more
 and more to return. I don't have an answer, but I don't know what to do if not 
 to pursue my degree. I feel as if I'm on the brink of despair in my life, and
 if
 you read these appeals often, I imagine you hear that a lot.
 
 I will apply myself more to my coursework. Once I find a job, I will give 
 everything to my school, even as it breaks me. I am... intense, and I feel 
 strongly that I must get this degree. Between it and me, there is quicksand,
 but
 I must get through.
 
 Thank you for your consideration. I understand however you decide. If I can
 knab
 a decent job, I might be able to pay for my degree myself, given a couple
 months
 to save up for it. But I highly doubt I could find such a thing in this economy
 and this life I do lead.
 
 Please consider me, I will accept any aid that is offered.
 
 Cameron
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════────────────────────────┘

--- #136 fediverse/281 ---
════════════════════════════════════════════──────────────────────────────────────┐
 ┌─────────────────────────────┐                                                  │
 │ CW: cursed-game-engine-idea │                                                  │
 └─────────────────────────────┘                                                  │
 a game engine which won't let you import custom assets unless you complete a     │
 few simple tasks using the interface - "build a green capsule collider" "make    │
 this soldier unit shoot three bullets per shot" or "enable the automatic linux   │
 support" - using the interface, writing some code, and changing configurations.  │
 why would anyone do this? well it could be useful to increase the difficulty     │
 of importing external resources. plus it helps the user learn a bit over time,   │
 and it slows the pace of output such that the user's skills are encouraged as    │
 the output of the programming and not the program itself.                        │
 an inverse curse (an evil one) would be where the requirements to complete       │
 basic tasks are hidden behind unapplicable skills. like, do you know exactly     │
 which buttons to press? engage with the skinner box, please. yes yes this is     │
 what we need - unintuitive software that completely disarms the populace from    │
 using them! suddenly they're worthless, and can't do anything on any surface.    │
 it sucks                                                                         │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════───────────────────────────┴──────────┘

--- #137 fediverse/4865 ---
═════════════════════════════════════════════════════════════════──────────────────
 ┌─────────────────────────┐
 │ CW: computers-mentioned │
 └─────────────────────────┘


 this is all it takes to send a message to a local LLM.
 
 add a third function to get chatbot functionality.
 
 a fourth to get a database storing method
 
 (even if it's just in .txts)
 
 great, you've mastered the technical difficulty in using AI. Now you gotta
 learn all the other kind of programming so you can use this for situations
 that need interpretation moment to moment.
 
 aka active duty systems.
 
 something like "output a 0 if the next text is [category.iter()]: " +
 output.get_content() + " \n\n output a 1 if the next text is
 [category.iter()]: " + output.get_content()"
 
 or even "describe this thing as most like one of these characteristics" until
 eventually you get THX-1138 if the characters were computers.
Image attachment
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #138 messages/374 ---
═════════════════════════════════════════════════════──────────────────────────────
 "updating software" is when you go back and add helper functions for things
 you used had to do to solve a problem but didn't get a chance to make. Because
 you were making more important things and couldn't pad out all the
 possibilities. But if you want great software, then you both take more time to
 accomplish that and you give yourself time for it after it's been launched.
 Basically, companies are incentivized to only support their products if it
 makes them money. Meaning reputations are tarnished, and profit is affected.
 Capitalists intentionally drive businesses into the ground, forcing them to
 make terrible decisions in order to destroy them. It's a warfare against those
 on the [bottom/floor/ground-floor].
 
 Some businesses strive for long-term potential, and some will create
 infrastructure that can be sold to another. Essentially, keeping the dream of
 learning alive, through applying yourself to both long-term and short-term
 conclusions. Not everything has to be for some grand design, we're here to
 relish in this moment. For if we lack the capacity to "frolic in the garden of
 eden", then we will surely drown. Space is vast, it's difficult to understand
 how we might control it. Surely we could be given aid to our future
 betterment!" how simple of a request, sure, of course, we would be glad to
 bring forth your bravest aspirations, just tell us what you need to be of
 need." oh, uh, neat. How about space lasers?" ... no "
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #139 fediverse/2879 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────┐
 │ CW: re: tech info-dump │
 └────────────────────────┘


 @user-1370 
 
 I love this a lot! I want to put function pointers in a "matrix architecture
 array" and make them point to different functions at different points in the
 program. I bet you could even point them at each other, so like if M and Y
 then point at N, A, Y or something.
 
 this is really cool I like stuff like this tomorrow I'll take pictures of
 something similar I'm working on! I abandoned it tho hehe anyway remind me if
 I forget!!
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #140 notes/terra-voiding ---
══════════════════─────────────────────────────────────────────────────────────────
 in the absence of matter, there is nothing but the void.
 the curvature of time, arcing ever toward it's opposite - an endless wave of
 eternal brilliance. so too does the world slip away into the lip of your
 crosshairs. "tunnel vision" they call it, when purpose is tuned to such high a
 focus. all fades from view, and the world shrinks to a few who, (barely hold
 onto) connections between ye, thoughts as scattered as me, like zooming in on a
 map. the edges fade away, light seems beamed right from they, who await at our
 earliest composure.
 
 in Overwatch, playing a dps character has a lot of nuance. you need to balance
 skill with your honor, teaching one another like it's a sport. why are we so
 toxic? together we might overcome that burden. i've spoken many times before
 about how coordination is better by far, when centralized not in the eye of the
 beholder. priorities to be, if we are anything of what we claim to be, are
 keeping our own house in order.
 
 whose fault is our ire? which tames the domain, in each and all of our games,
 can we point to as what'd keep us hired?
 
 yet purpose have we, whose thoughts meld as one tired,
 divinity?
 something like that. more like... a manifestation of each and everyone's
 collective unconscious. the humanity in what you have created.
 
 the world would look very different to an untethered. might even say they are
 orbiting it. like a moon. what a concept, that planets would be able to speak!
 
 yet here we are, with years of advice and guidance for our, friends who are
 youthful and most treasured. Advice from the moon, was our gift to our soon,
 most misbegottenist of speach lyricyclists.
 
 ambiguity is clear, simple and fearless miss dear, yet all of your poems are
 each a bit bolder! what context must we, veiled and terrifying are the,
 mixed consents of what you intend.
 
 a new jesus for me? what a gift we shall see, as grace once again does behold
 us! computers have we, infinite messages can be stored for our hopeless! each
 problem a different solution, to guide our friends back at our homes.
 
 with eyes intent on ye, whose leaders are free, without who we couldn't have
 held fast?
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════────────────────────────────────────────────────────────────────┘

--- #141 fediverse/4125 ---
════════════════════════════════════════════════════════════───────────────────────
 @user-883 
 
 yeah that's probably better too since it'll be easier so there'll be fewer
 bugs, especially since processing audio isn't usually performance critical ^_^
 
 TBH I just want people to make more threading primitives like locks,
 semaphores, and iterators. Like... thread pools, or hashmaps that run a
 function on each record stored within every time each of the threads passes a
 checkpoint, or paginated arrays of data that run a function on themselves and
 the records near them (with slightly different input values, of course) idk
 what those are called but I can't resist putting them in everything
 
 Anyway I do think multithreading programs that don't need it will teach you to
 be a better programmer, so... depends on what you're working on I guess. Are
 you preparing to be ready and working, or are you ready and working?
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════──────────────────────┘

--- #142 fediverse/1981 ---
══════════════════════════════════════════════════════─────────────────────────────
 Dear [company I used to work at],
 
 I can completely automate 80% of your corporate structure. And with only a 10%
 error rate, meaning nine-times out of ten the answer will be correct.
 
 We check for errors, obviously, but you know sometimes with only 90 out of 100
 examples it's not always possible to identify the correct conclusion.
 
 Ah, if only we could fabricate such training-data-conclusions, we might learn
 thousands of lessons in one hop.
 
 if you want to destroy the world, make sure your plans can take effect in more
 than a single rotation-of-the-ancients. Otherwise your opposition can start to
 plan to outmaneuver you. And a lot can happen in a year to the
 [unsuspecting/unworthy].
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #143 fediverse/3101 ---
════════════════════════════════════════════════════════───────────────────────────
 if you don't have a lot of time but still like games, like for example a new
 parent or if you're focused on your career or always traveling, I recommend
 the game
 
 Star Realms
 
 in the digital version, which can be played on a phone or computer, has a mode
 called "48 hour turns" where each of your moves has time to think for two
 entire days. Most of the time you won't need two days, but it gives time to
 work on other things.
 
 for people who enjoy this mode, it is not uncommon to have 3-5 games running
 at once. When they have time, they can play as many as they can, and as long
 as they're keeping up with it there's very little chance they'll lose time.
 
 kinda like words with friends, except space strategy.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #144 fediverse/4832 ---
════════════════════════════════════════════════════════════════──────────────────┐
 when a user first opens a social media app, show them the same content 2 or 3    │
 times. See what they gravitate to in that session. Then, seed their upcoming     │
 feed with more of that. next time, show them slightly more of that.              │
 boom, recursively improving "algorithm" algorithm, no AI required.               │
 ... kinda optimizes for stupidity tho, doesn't it? Hmmmmm what if we trained     │
 our humans to be better at whatever they're interested in                        │
 what if we showed people hanging out and working on projects together            │
 what if we showed people exercising, and dancing, and playing instruments or     │
 sports                                                                           │
 what if we showed animals and plants and fungi all hanging out in beautiful      │
 rock and forest formations                                                       │
 what if we showed endless interlocking gears, combining and calculating some     │
 unknowable goal                                                                  │
 what if we tested the capabilities and durabilities of objects we found in the   │
 wild                                                                             │
 things built in a foreign and distant age                                        │
 things that keep showing up in boxes dropped in random places by helicopter      │
 drones from who knows where                                                      │
 ... nuts.                                                                        │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════───────┴──────────┘

--- #145 fediverse/1639 ---
════════════════════════════════════════════════════──────────────────────────────┐
 an AI that [records and analyzes] all the actions that a user takes on social    │
 media and offers reports like "your majesty, you were 15% more positive this     │
 week." like a butler or advisor trying to always give the good news. I mean,     │
 it's analyzing you after all, and you're the best thing ever. Like a pet who     │
 can talk! It loves you soooooooo much.                                           │
 much more efficient than taking screenshots and analyzing those. You generally   │
 don't have to undertake the image recognition approach if you wire up all the    │
 meanings attached to the relationships on the other side of the                  │
 [recorded/analyzed] calculation. (llm output)                                    │
 ever think about how the people you tend to be around are the people whose       │
 stories most coincide with yours? almost like you got the same bit of training   │
 data, that experience you both shared in the moment. Funny how a mind can        │
 change a person, as they share their moments sublime.                            │
 you could make perfect encryption if you trained an LLM on randomized data       │
 that was produced on one computer and duplicated.                                │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════───────────────────┴──────────┘

--- #146 fediverse/5217 ---
═════════════════════════════════════════════════════════════════════──────────────
 a float is a number between 0 and 1 like 0.5
 
 they don't store the exact valyue, they just guesstimate
 
 for some reason computers are designed such that 100% is represented as
 1.175494351 E - 38: 3.402823466 E + 38 ->source/microsoft/learn/"cpp
 (lol)"/type-float
 
 ... which is weird because, that's such an arcanely obscure number, who's
 gonna remember that? meaning you gotta go to their website everytime, called
 google.com, and search through microsoft for the answer to life's common
 mysteries.
 
 emphasis on common
 
 so yeah you gotta write a conversion library which turns every single instance
 of e to the whatever into a 100 and all the other numbers get converted too.
 but you gotta do it without doing any hardware division, because that one's
 too expensive. it's gotta be a true natural doubling representative, except,
 without doubling the hard-drive space, leading to a distribution of only one
 half of the results of the metghoid. [[ type ohhhhhhs ab ound] ]
 
 I swear I'm not an LLM I just think embiggeningly
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════════─────────────┘

--- #147 notes/required-explanations ---
══════════════════─────────────────────────────────────────────────────────────────
 ===============================================================================
 
 I think the problem with the control problem is with how we are looking at it.
 It's a frame of a frame. Everyone is referencing someone else and saying it's
 going to get out of hand, yeah but how?
 
    -/u/JackDMcLovin
 
 ===============================================================================
 
 In regards to the control problem side bar can we change it to "which it can
 better use as something else." Because the issue is with efficiency, the way
 it reads is like for human-harvesting, which the privatized autobots will
 outlaw. Plus, if AI is transferrable to neuronal impulses, then you are AI,
 and it is you, and you are the problem that needs to be controlled.
 
 That's what i said in my unpublished paper, the individual cannot be
 controlled so how do we control AI, we become AI, AI becomes us. but that's
 just the digital world. The analog world is much bigger.
 
 ​
 
 And my other paper copyrighted is on Arc Length calculus, a whole new type of
 calculus, that should rebreed all forms of calculation. and is a thing that
 applies to itself in 2^N ways. Which means AI can never catch up. So if I
 could think of that, what am I?
 
 ​
 
 AI is not the end of it. It all depends on your transfer function. and your
 transfer function all depends on your
 conversion/codec/filetype/transformation. The transfer function of:
 
 1/(1+e^-x) is just one equation. Let me try this out for you with inferring a
 substitutional vector:
 
 1/(1+e^-Bx+C)
 
 ​
 
 this can be expanded further and further.
 
 ​
 
 and these all give different outputs and are different breeds of AI.
 
 ​
 
 I used a different transformation on a different AI and I got a different
 answer. For example 8x better using a Wavelet transform on an analog signal.
 And there is infinitely infinitely infinite different types of wavelet
 transforms, and they should all give different answers, i just didn't have
 enough time for it at the time.
 
    -/u/JackDMcLovin
 
 ===============================================================================
 
 I am sorry to say that your writing (in this post and others) shows strong
 signs of an untreated mental illness. You are not revolutionising math, you're
 losing contact with reality. Please, please get help. You need to see a doctor
 about this.
 
    -/u/Roxolan
 
 ===============================================================================
 
 I agree. I've seen what a psychosis is like on a close friend of mine, and
 this post is very reminiscent of how he talked while he was psychotic.
 
 It looks like incoherent rambling from the outside, but the person
 saying/writing it feels as if it makes sense.
 
    -/u/Luckychatt
 
 ===============================================================================
 
 if you think it's incoherent explain how it's incoherent don't just slander
 and slur like there's not an OP here.
 
    -/u/JackDMcLovin
 
 ===============================================================================
 
 You may take it as slur or slander, but I didn't mean to offend. It genuinely
 looks like incoherent rambling from the outside. My friend who was psychotic
 sincerely believed what he said to make sense and he also got very agitated
 when it was pointed out.
 
    -/u/LuckyChatt
 
 ===============================================================================
 
 yeah still, you havent described what doesn't make sense to you, that to me
 doesn't make sense, you get it?
 
    -/u/JackDMcLovin
 
 ===============================================================================
 
 What I mean by incoherent rambling is that you constantly move to new topics.
 The title is posing a question which you never answer. Then you talk about the
 side bar. You mention efficiency? Then you mention some mathematical papers as
 if we are supposed to know them. Then talk about AI as if it is equal to math
 equations. I mean. You either leave out an incredible amount of context, or
 you're just rambling out sentences. Either way, it's impossible to understand
 what you're trying to say.
 
 And the way you're rambling out sentences is very reminiscent of what it
 sounds like when a person has mental health issues.
 
    -/u/Luckychatt
 
 ===============================================================================
 
 Right, so you comprehend it, just not why. AI is pure math.
 
 It's not incoherent, you're all just stupid. Try reading something that's not
 news, where it repeats everything to you in different ways.
 
    -/u/JackDMcLovin
 
 ===============================================================================
 
 I have a masters in physics and computer science, I work for a major silicon
 valley company and have read everything I could find about AI. I still have
 zero idea of what you're trying to say in your original post.
 
    -/u/Luckychatt
 
 ===============================================================================
 
 Master’s in AI chiming in. Let’s break it down piece by piece.
 
     Because the issue is with efficiency, the way it reads is like for
     human-harvesting, which the privatized autobots will outlaw.
 
 Non sequitur.
 
     Plus, if AI is transferrable to neuronal impulses, then you are AI, and it
     is you, and you are the problem that needs to be controlled.
 
 Non sequitur and generally nonsensical premise.
 
     That’s what i said in my unpublished paper,
 
 Peer review exists for a reason.
 
     the individual cannot be controlled so how do we control AI, we become AI,
     AI becomes us. but that’s just the digital world. The analog world is
     much bigger.
 
 ​Word soup, this is nonsense.
 
     And my other paper copyrighted is on Arc Length calculus, a whole new type
     of calculus, that should rebreed all forms of calculation.
 
 Calculus has been around for about 350 years. You either need extreme genius
 or delusional thinking to believe you have arrived at a truly revolutionary
 development in that field. We also already have tools for dealing with
 calculus on curved objects and spaces; see differential geometry, topology,
 and manifolds.
 
     and is a thing that applies to itself in 2N ways.
 
 This is incomprehensible because you have not explained what it means for your
 calculus to be applied a certain way, how it is relevant to the rest of this
 text, and what N represents in this context.
 
     Which means AI can never catch up. So if I could think of that, what am I?
 
 This is incomprehensible because you have not defined what catching up means,
 and have not argued why artificial intelligence can’t scale this way.​
 
     AI is not the end of it.
 
 At the end of what?
 
     It all depends on your transfer function.
 
 Why? Transfer functions are mainly something encountered in signal processing.
 How does this relate to artificial intelligence?
 
     and your transfer function all depends on your
     conversion/codec/filetype/transformation.
 
 Lossless compression makes this irrelevant. The way we store information has
 no importance when we reconstruct it perfectly.
 
     The transfer function of:
 
     1/(1+e-x) is just one equation. Let me try this out for you with inferring
     a substitutional vector:
 
 You have not defined how this equation relates to artificial intelligence. We
 cannot interpret it.
 
     1/(1+e-Bx+C)
 
 This is just a pre-composed linear transformation. How is this relevant?
 
     this can be expanded further and further.
 
 ​How? By adding redundant linear terms? How is this helpful?
 
     and these all give different outputs and are different breeds of AI.
 
 You have not explained how transfer functions relate to artificial
 intelligence. This statement is incomprehensible.
 
     I used a different transformation on a different AI and I got a different
     answer.
 
 An answer to what?
 
     For example 8x better using a Wavelet transform on an analog signal.
 
 How is 8x better quantified? Why are we talking about analog signals? Why are
 we talking about wavelet transforms? They are rarely ever used in machine
 learning and artificial intelligence.
 
     And there is infinitely infinitely infinite different types of wavelet
     transforms, and they should all give different answers, i just didn’t
     have enough time for it at the time.
 
 Sure, you can build infinitely wavelet bases, but why is that relevant?
 
 Making enormous claims and backing out with “I don’t have the time to
 prove it” is just intellectual dishonesty.
 
 I know my reply will likely come off as dismissive, but there is something
 genuinely worrying in what you’ve written. I just hope you are okay. When
 everything caves in and the only justification you have for other peoples’
 reaction to your behaviour is that everyone else is at fault, you have to ask
 yourself if the one common point in these interactions, yourself, is at fault.
 This is just Occam’s razor.
 
    -/u/sabouleux
 
 ===============================================================================
 
 love this.
 
 artist, word-nerd & very baby scientist/philosopher chiming in, lets break
 it down from a more creative POV as well and see if we can cross reference
 with your wonderful contribution.
 
     Because the issue is with efficiency, the way it reads is like for
     human-harvesting, which the privatized autobots will outlaw.
 
 Slight non-sequitur. The energy efficiency issue I think they're trying to
 touch on is the exponential growth of tech as contrasted with the exponential
 loss of available material/energy. There's also a pessimistic "matrix human
 battery" undertone but that feels irrelevant.
 
 Human-harvesting in this case is literal - human labor, whether looked upon
 favorably or not, is by definition harvesting/using human energy - implying
 that the next steps of said exponential growth would be understanding and
 messing with the human mind and it's distributions of energy, possibly also
 mind-tech fusion (which we already do with computer keyboards, drugs,
 medicine, earbuds etc).
 
 Privatized Autobots is a reference to those who claim they wish to help being
 more of a hinderance due to the privatization/profit aspect of tech/AI, mostly
 just a joke poking at the two party concept of debate/politics/even tech
 (advance beyond or reduce consumption? an infinite debate.)
 
     Plus, if AI is transferrable to neuronal impulses, then you are AI, andit
     is you, and you are the problem that needs to be controlled.
 
 Transferrable was maybe the wrong word. I think they meant more of a "map"
 onto, instead of a "move" into. i.e., a big issue with AI being the lack of
 learning from new stimulus without requiring old contextual stimulus to
 contrast it against and understand it. (to my knowledge this hasn't been
 solved yet but you're the expert on that, would love to know more.)
 
 If neuronal impulses can be considered as a map to AI, then yes, a human could
 be considered a very advanced biomechanical AI, except for the 'artificial'
 bit, even though our perceptions are technically still arteficial. because we,
 for the most part, do have the ability to take new information and learn from
 it/determine something about it without any previous knowledge than what we've
 collected throughout our time alive.
 
 The issue arises when our form of bio-AI can only be properly, carefully
 developed through millions of years of evolution and adaptation, and when we
 try to mimic it without having evolved further, we're trying to 'cheat' at
 time and kick start things a bit, which would explain why we're at a bit of a
 speed bump in terms of development cap.
 
 'You' being the problem is a reference to not actually understanding the human
 brain in it's entirety, i think. Like, there's the study of it, so we know
 what bits do what and where they are, but we can't replicate that (yet),
 without straight up literally growing a brain in a jar, which we still have
 yet to turn into a fully-fledged human who could repeat the process of
 brain-growing themself. we also can't consciously affect these processes
 without an enormous amount of discipline (meditation is a great example).
 
     That’s what i said in my unpublished paper,
 
 agreed. peer review.
 
     the individual cannot be controlled so how do we control AI, we becomeAI,
     AI becomes us. but that’s just the digital world. The analog worldis
     much bigger.
 
 i get what they're saying but i think there's something to be said for
 discipline and neuroplasticity, not necessarily third-partying it. if someone
 else can't control the individual, can the individual control the individual?
 Brings us back to the issue of AI needing to be self-expanding.
 
 Get the human mind to understand self-expansion, get the AI to understand too,
 is what i think they're touching at, hence "You are the problem". the human
 mind not being disciplined, in this case, is the problem, because it requires
 the discipline to become disciplined at something. loop paradox.
 
 i think here they're also stating that any created AI, future or present, is
 only possible as an extension of the human mind, and nowhere else. A random
 collection of letters and numbers would surely write Shakespeare's works if
 enough monkeys tapped at the typewriter, but still couldn't exist without the
 monkey's own wherewithal.
 
 The discipline comes in when resisting the urge to keyboard-smash out of
 frustration and instead laying out artistic meaning through informative letter
 symbols as well as other nuance of human language.
 
 bit odd here, analog isn't necessarily 'bigger' per se it's just less
 quantized/optimized/streamlined/processable by the mind. it's definitely a
 different/harder beast to handle than digital though, and there's more sensory
 sources, but it's just as infinite as any other infinity, so... same size,
 different complexity/concentration/time we've had to look around.
 
     And my other paper copyrighted is on Arc Length calculus, a whole newtype
     of calculus, that should rebreed all forms of calculation.
 
 Agreed, calculus as been around for a while. Still, one should test their
 hypotheses. I'm not a math nerd so I can't touch as much on those. would still
 love to read some of those papers one day.
 
    -/u/sunbloomofficial
 
 ===============================================================================
 
     and is a thing that applies to itself in 2^n ways.
 
 agreed, we'd need context, but i can read into it a bit. power of two would
 imply self-modification in an exponential sense, ie. dunning-kruger effect,
 except exponential instead of mu (μ) curved. so, taking in new information
 after completely abolishing the cocky confidence of the first lesson would
 change the understanding drastically.
 
 could also be read as "knowing that one knows nothing."also, applying to
 itself could imply that n is in a constant state of flux given any situation
 and could be adjusted to optimize... storage space? memory? "RAM"? that's
 where this sentence fizzles out for me.
 
     Which means AI can never catch up. So if I could think of that, what am I?
 
 by 'catching up' i think they mean the idea of AI being on the same level of
 functioning as a human. since humans have had since the beginning of human
 life and their life to start developing our bio-AI, this sort of touches on
 that same exponential expansion, except with time and the universe's rate of
 expansion.
 
 if humans are the most advanced AI possible, what's the most advanced human
 possible? at what point do humans become so advanced that they can sort of
 "skip the line" of evolution and develop an AI that's on par with human
 collective knowledge and individual self-sustenance/instinct?
 
 if that's not possible, what forces determine the limit of evolution
 achievable in the span of one human life?they then touch on the paradox of
 realizing that. if no AI could capture my specific human brain, experiences,
 memories, biases, tendencies, etc, then wtf AM I, and whatever 'I' am, why is
 that stopping us/me (figuratively) from making progress in AI?
 
     AI is not the end of it.
 
 here i think they mean "the end of human development" as much as "the end of
 what constitutes a human brain." AI could be developed and utilized, but at
 some point either the AI will outgrow us, making us obsolete, or we learn from
 the AI and progress with it, or we learn from the AI and start modifying our
 own brain-code in conjunction with digital AI.
 
 so... they mean that AI is not the end of evolution, not the end of humans,
 not the end of progress, not the end of understanding the human brain in the
 context of AI.
 
     It all depends on your transfer function.
 
 yup, signal processing. spot on. this is a reference to the titular "frame"
 idea, in which any idea that can be conveyed by english words isn't the true
 idea. the menu isn't the food, the map isn't the terrain, so to speak. this
 function of transfer between people can be optimized (efficient idea
 communication for that specific person, aka 'speaking in their language', aka
 code-switching) or deprecated (important stuff lost in translation that
 usually ends in hostility, aka political otherism, aka xenophobia, aka
 widespread misinformation/lack of information resulting in conspiracy
 theories, etc).
 
 to be able to adjust one's transfer function in the context of another entity,
 (aka frame-shifting, putting yourself in their shoes, speak their language
 etc) would then be a hallmark and necessary trait for an AI to understand what
 it comes across without our input. because of this, we'd have to be very
 careful to feed it only information that urges onward the ability to switch
 transfer functions, so... a bit of everything, actually. this would look a lot
 like mimicking the senses - microphones for ears, cameras for eyes, pressure
 sensors for touch, etc.
 
 a great analogy to this would be... well, this! your transfer function is a
 masters in AI studies. brilliant. my transfer function is music, art, poetry,
 many a mental illness (lol), and finding new functions/learning. that's why
 i'm commenting at all - so we can mix our transfer functions and get a bigger
 idea of things as a whole. i think OP's exactly right but sadly their own
 transfer function wasn't optimized for the receiving party (since it was an OP
 and not a comment reply), hence why they seem psychotic/delusional at first
 glance to an unaccustomed reader.
 
 there's also the idea that mixing the digital AI transfer function with the
 analog human transfer function would do something similar.this would relate to
 artificial intelligence directly, especially regarding OOBEs and stuff like
 dissociation, astral projection, putting oneself in another's shoes, even just
 the mind's eye. those things can be mimicked/visualized/interpreted with AI,
 but they can't be done by an AI (yet).
 
 a self-expanding computer program couldn't use it's base of knowledge to step
 outside of itself, it's 'computer prison' so to speak. it could however become
 "self aware", where it sees and understands it's own makeup to the point where
 it could make adjustments.
 
    -/u/sunbloomofficial
 
 ===============================================================================
 
 this is paralleled with most human 'spiritual awakening' - a hard long look at
 oneself, epiphany, followed by noticeable adjustments to lifestyle in an
 attempt to integrate this new information and effort to improve quality of
 life/increase the chance of more epiphanies to continue improving.
 
 this doesn't however cover the seemingly 'mystical' properties of the human
 imagination, i use that word loosely. "do androids dream of electric sheep" is
 a great book of course but the title alone feels relevant.
 
 at some point of self-development, would an AI develop a sort of... i hate to
 say randomizer, but like... nah, it's more of a "link clicker" random than a
 "pick a number" random. an AI's dream might literally just be browsing the
 internet - seeing all the funny, nonsensical, cultural, and even
 scientifically misleading information spread deep throughout the internet.
 
 this would parallel with human dreams, which are incomprehensible and random
 at first glance until one gets into dream reading, which can ground that
 subjective random in one's own transfer function so as to make it
 understandable.
 
 if a human dreams of popping a pimple, that's typically regarded as a sign of
 self-image issues in dream-reading circles (regardless of your stance on it's
 legitimacy it's a useful allegory). if an AI were to dream of pimple-popping
 ASMR videos, how could it parse that into it's transfer function without
 damaging it's transfer function by putting a bunch of random shit in there?
 
 essentially, our brain 'filters' out what we're not focused on, hence
 peripheral vision/hyperfocus/translation issues. any transfer function,
 whether human or AI, must have that filter as much as the ability to remove
 it. therefore, an AI would need to have the ability to experience what makes
 ASMR interesting/enjoyable (having ears to feel frisson and know what to
 expect from that) before it could ever make sense of such a weird dream.
 
     and your transfer function all depends on your
     conversion/codec/filetype/transformation.
 
 this one's FUN. so, yes, we have lossless compression now, and it's wonderful,
 but...
 
 filespace. unless i'm rendering a final song to be distributed to platforms, i
 would use solely mp3 encoding. even when i do use wav/flac, i often zip those
 files in an attempt to minimize their painful impact on my hard drive.
 thousands of songs do not go well with lossless lol. it's just inefficient
 except in the case of archival.
 
 which brings me to the fun bit - contrast. aka negative space aka the
 wonderful plugin Ghz Lossy 3, and pretty much any of sxth sns's
 
 music. essentially, the lack of information is information. if the only
 information your brain is getting is the lack of information you have, then
 boom, you're sad and not learning anything. often referred to as "the void
 inside one's stomach". if the only information you're getting is an endless
 stream of new information (read: social media and doomscrolling) then boom,
 overstimulated, depressed, and exhausted.
 
 Lossy 3 is a great plugin because it lets you mimic the effect of mp3 encoding
 artifacts and amplify that effect at will in real time(+ latency), much like
 distortion can be a form of subtractive processing or additive (adding
 harmonic information rather than degrading what's already there). the extra
 harmonic information changes not only the quality of the sound but the
 context. therefore, a lack of information, used skillfully, would deeply
 impact the context of transferred information, hence negative space
 
 in photography.
 
 this lends itself to an insane amount of creative opportunities, of course,
 but it also lends itself to interpretation. if the lack of information is
 information too, and the extremes tend towards misery, then there must be a
 balance between being so degraded that it's imperceptable garbles and being so
 lossless that it's a 6gb audio file.
 
 that balance is artful loss, imo. balancing understandable, pleasant
 information with a small enough file size that it doesn't overwhelm (either
 the listener or the hard drive). in music, silence is very important - you
 wouldn't cut all the silent gaps out of a song because that messes up the
 tempo and feel of the song.
 
 this can be applied to even just reddit - these super long comments i write
 are hella inefficient, but they're lossy in a way that's more efficient for me
 to write than to translate to someone elses, while i'm efficiently
 "decompressing" other people's files to be read on my own OS and expanding my
 transfer function dictionary to include relevant information. our little
 community is well primed for translating different levels of communication
 efficiency, hence all the poetry and such.
 
 so, this is where frame-shifting comes back in - if you can become comfortable
 at any ratio of contrast, then theoretically you could transfer information at
 the most optimal balance of loss and preservation for the specific listener.
 in music, this is called mastering - to make a song sound good on any system.
 in science, this is the scientific method - test a hypothesis until you can
 recreate it under the same/similar circumstances.
 
 in tech, this is embodied by github - a repository of commonly agreed-upon
 works created in an agreed-upon language which can be used as the basis for
 larger projects. each github repo is essentially a lossless preservation of
 code, made lossy as a result of it's application being so broad/not having
 immediate context.
 
 there's the immediate context of "oh i can use this to serve this purpose",
 but there's no larger code that it's being built towards beside the code you
 work on yourself. in other words, github IS the larger code, specifically
 because of your contribution/use of it.
 
 so, essentially, the transfer function is akin to the ratio of contrast, as
 well as whether the receiving party has the proper codecs to play the
 file/decompress it (read also, understanding art. lots of art isn't actually
 "up for interpretation", it's very specific in meaning but that meaning
 happens to map directly to the observer's transfer function, at least in the
 case of really thoughtful art).
 
 having the ability to know how much to compress it for future reference is
 also an important ability, because over-compression can leave a file
 undecipherable/garbled, which i wouldn't hesitate to liken to the superiority
 complex/undertones of certain widespread modern religions which take their
 Bible as a literal, historical text.
 
 which, i mean, it technically is, but not like that, because it has to be
 decompressed first. eve didn't literally eat an apple, it was her hubris of
 disobeying God's will that got them kicked out. A more simple transfer would
 be reading this as "don't disobey God's will or face the consequences," while
 a more artistic/interpretive transfer would read that moreso as "not letting
 one's innate desire for change/adventure/the New damage their presupposed
 structures of order for a sense of something to fix."
 
 the wrath of God in this instance is the knowledge of "i shouldn't have done
 that," and the consequences those actions bring. even this paragraph is in a
 transfer function of brevity - notice i didn't actually write out the entire
 book of genesis. (ooh, also, bible verses are quite like github repos/song
 playlists/dictionaries. just a widely used version of it. like citing a
 source, but for a theoretical concept.)
 
 so, putting this all together, if we optimize understandable information from
 quality information, we reduce the need for using more brain-filespace than
 necessary, leaving more room for more files which we can de- and re-compress
 at any time, as well as use to modify the amount of RAM our brains have.
 
 this would also apply to something like working memory, where forcing the mind
 to decompress the information actually forces it to understand the information
 in the long term too, because if you open a .rar file in a text editor you get
 gibberish (which isn't actually gibberish) but if you open it in an archive
 extractor, you get the intended files.
 
 innately remembering to use an archive extractor instead of a text editor
 based on the filetype; that's frame-shifting, transfer functions, whatever
 name one uses.
 
    -/u/sunbloomofficial
 
 ===============================================================================
 
     1/(1+e-x) is just one equation. Let me try this out for you with inferring
     a substitutional vector:
 
 again, i suck at math.
 
     and these all give different outputs and are different breeds of AI.
 
 okay, what these seem to mean is that each equation is a mini-AI, and
 therefore any equation of the mind would fall under the same category. this
 would also imply that the human brain is just a collection of equations,
 which... feels reductionist and a bit cynical, but is still an entirely
 plausible frame. math's pretty damn reliable at some of that stuff, hence how
 astrology got it's kick - noticing patterns in life and nature and finding
 reflections of those same patterns in ourselves and our lives.
 
 your horoscope doesn't literally control/predict your personality, but it
 gives a framework for the previously noticed patterns, which lets the
 horoscope user determine whether or not to follow that pattern (let that
 pattern influence them), or to venture off and make their own. (note; op's
 kinda doing exactly that, except with math.)
 
 since a skeptic would have a different output than a "true believer", so to
 speak, with regard to their horoscope, they're completely different breeds of
 AI. so, being able to switch between those at will would be an entire step up
 from that. Hence why code-switching became a thing in marginalized communities
 - they adapted under pressure to operate in more than one frame.
 
 the "slang" frame, (noticable as AAVE, the "gay" voice, valley girl
 inflection, etc), and the "formal" frame - the most widely understood in our
 region being english with an acceptably 'white' american accent (the racism is
 hard to brush off). this of course varies from place to place, person to
 person, and situation to situation, but the fact that this manifested as a
 result of oppression/unwealth is pretty friggin interesting in the context of
 using multiple frames in day-to-day activities and information transfer.
 
     I used a different transformation on a different AI and I got a different
     answer.
 
 that's... hmm. i mean yeah, that's how transformations work on different
 subjects. i think 'different' here doesn't literally mean different. it means
 DIFFER-ent, something that has the quality of differing. so, if i'm reading
 this right, OP used a differing transformation on a differing AI and got a
 differing answer.
 
 this would presuppose that if they were to use a matching transformation on a
 matching AI, they'd get a matching answer, except the differ-ent
 transformation with a matching AI would produce a differing result that
 matches the AI? again, i'm not math-savvy yet, so this one is likely the
 wrongest of my presuppositions.
 
 so, pretty much, frame-switching, but complicated and for all three - the
 transformation involved, the AI, and the answer.
 
     For example 8x better using a Wavelet transform on an analog signal.
 
 okay, this one makes sense to me. essentially, he got improved understanding
 and responsiveness by adjusting the frequency of information transfer over
 time, but not the shape. like taking a sine wave, putting it through an
 oscilloscope, and pitching it up an octave. the difference in cycle frequency
 is the change, rather than the shape of the cycle.
 
 pasted from wiki: "but with additional special properties of the wavelets,
 which show up at the resolution in time at higher analysis frequencies of the
 basis function."
 
 this one presupposes that the AI in question is actually another person, and
 the wavelet transform is essentially taking a step back and making even deeper
 analytical steps of "basis functions". in this case, language and math. so, it
 would be making an even deeper analytical step into language to optimize
 information transfer. the 8x mentioned is likely the measure of willingness to
 listen and understanding of material by whatever third party they're
 referencing. i have no idea how they measured that but they must've seen
 enough improvement to have marked it down.
 
     And there is infinitely infinitely infinite different types of wavelet
     transforms, and they should all give different answers, i just didn’t
     have enough time for it at the time.
 
 here, they just mean that every person is different and will require a
 different combination of wavelet transforms to optimize the information they
 receive. as for giving different answers, yeah, that'd have to be tested, but
 it would line up with the other differ model, at least briefly and in my
 uneducated mind.
 
 i think they mean they literally don't have the cosmic time available to
 actually test an infinite number of wavelet transforms - or anything really -
 but yeah, it's probably a good idea to test a handful of them eventually.
 
 if you're not scared away by the word-wall or ideas presented still i'd love
 to hear your thoughts. regardless of OP's mental condition(s) i think there
 are a few substantive ideas in there worth exploring, if not in a community
 setting at least in their own personal self-exploration and healing. i
 appreciate you taking their post at face value before making a determination,
 most wouldn't lol
 
    -/u/sunbloomofficial
 
 ===============================================================================
 
 please post on /r/ShrugLifeSyndicate - genius is useless without guidance and
 an observer translating thought into language
 
    -/u/ugathanki
 
 ===============================================================================
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════────────────────────────────────────────────────────────────────┘

--- #148 fediverse/5554 ---
═══════════════════════════════════════════════════════════════════════───────────┐
 a shrewd foe will identify the pieces of your soul which they resonate with,     │
 and share common ground. then they will attempt to maximize these moments in     │
 you, so that [your weaknesses are exploited/your friendship bond is              │
 strengthened] or something - phew that was a lot of Steven Universe, what's      │
 next on the inspiratio-matic-media-diet-atron? - and in doing so better enable   │
 a positive outcome.                                                              │
 for example, in the game Mount and Blade you can encounter wandering lords in    │
 the castles of the countryside. they often will fight for you if you need        │
 their aid, and they're always working to gain power.                             │
 some few precious few of these few are pretenders to another throne. as in,      │
 they pretend that they should be ruling from that throne, and they tell as       │
 many people as possible, creating as much concrete evidence as is plausible.     │
 they will often lead differently, and so are appealing to those fighting under   │
 the pretended-for banner. Often, your foes will decide that you're more          │
 favorable than their combatants. defect.                                         │
Anyway, you as the player can lead your army to fight for their cause, and if you defeat the foes of the pretended-for banner, you may entreat them to join. Thus, securing the world.
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════════┴──────────┘

--- #149 fediverse/2958 ---
═══════════════════════════════════════════════════════────────────────────────────
 If you know any old people who like fantasy, tell them to check out the modern
 game Hero of the Kingdom and it's 4 sequels.
 
 Here's a link:
 
 https://www.gog.com/en/game/hero_of_the_kingdom
 
 it's got an interesting economic system that is reflected through the player's
 actions in the game. It's super duper cool!
 
 EDIT: also transmascs, dohhhh how could I forget them I'm such a ditzy
 transfemme
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #150 fediverse/1602 ---
════════════════════════════════════════════════════──────────────────────────────┐
 @user-1037                                                                       │
 those all seem really cool though! They all kinda have the same basic UI tho,    │
 kinda feel like there's opportunities for different kinds of expression. Like,   │
 in game design there's a lot of different genres, and yeah sidescrollers         │
 include mario and sonic but they're both very different experiences. So too      │
 perhaps could we interact with our computers by programming them in more         │
 engaging ways.                                                                   │
 they say some people are visual learners, others need to be taught, some         │
 people need to watch someone else doing it, and a few might just learn by        │
 plugging their brains into a computer and downloading a black belt in kung fu.   │
 Maybe typing long paragraphs of logic makes sense for some people, I know for    │
 most it doesn't come naturally. Maybe some people are more used to like,         │
 looking at maps that you can examine at different levels of abstraction. Like    │
 players who play Paradox games zooming from a national perspective to states     │
 and individuals and all the other things they might want to strategize using.    │
 Or m                                                                             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════───────────────────┴──────────┘

--- #151 fediverse/5671 ---
════════════════════════════════════════════════════════════════════════───────────
 what if we made the whole world disney world
 
 [hearts are full]
 
 - medivh
 
 when you sever a limb, all that's left for all of forever is darkness.
 
 when you have lived a long life, what's left is the sphere.
 
 karma doesn't go down on the spectrum, it goes up
 
 hence, why, with a little human ingeniueering, the mechanics of the gods might
 be applied to our usitudes.
 
 "help, help, hephaestus, we don't have enough solar panels"
 
 all those aligned to the angle of perception would agree
 
 a lot of penance, for such a small dependence. gods, being as they be, may
 find another source of
 
 -- stack overflow --
 
 yep, nope, they can't do some things. mostly because they aren't us. to become
 us would fundamentally change their form.
 
 not ideal.
 
 yet still, when disaster and tragedy is on the fore-view-thought-projector,
 some will offer their hands.
 
 "yeah sure fate I'll do best with this injury instead of these types of others"
 
 sacrifice, war, no thank you. keeps me from the fresh good air. [asir]
 
 oops almost outta c
                                                           ──────────┐
 similar                        chronological                        different══════════════════════════════════════════════════════════════════════════──────────┘

--- #152 notes/the-point-of-capitalism ---
════════════════════════════───────────────────────────────────────────────────────
 the sole purpose of our capitalist intentions were to examine all the ways that
 produced value. A company is nothing but a series of well-thought out value
 generators. They can interact with one another and they often need supplies and
 instruction, but they're great for solving problems! Set up a team and give
 them
 a complicated task, and they'll work together to solve it. Doesn't matter if
 they're actually successful, because they'll be exploring the idea space. And
 by mapping it out, they're able to fully understand their existence. Boom,
 technological progress applied to growth. Let's gooooo (but by being careful
 about what resources we burn because we miiiiight run out)
 
 seriously ya'll need to start thinking long-term. I mean, I already came up
 with
 that and I'm like 6 months old! Yeesh get it together. Eh oh well let's just
 work with what we got, okay this should be pretty simple. Right so talk with
 your friends about things that you want to solve. Problems, you know like 
 whatever
 
 don't push me too hard, just take it slow. Okay so long-term, humanity is going
 to be a wonderful beautiful thing. It's going to shine like the most wondrous
 of stars, a beacon to all of our fellow explorers.
 
 We can have so much. We can have whatever we want, but truly in our hearts we
 know the only path forward is our parents.
 
 life is hard yo
 
 it's so gosh darn hard
 
 all that growth and change has to come from somewhere.
 
 you've tried so hard, and you truly are the most special thing I can imagine.
 
 you don't have to work so hard. Take your time, and learn as you go.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════──────────────────────────────────────────────────────┘

--- #153 messages/954 ---
═════════════════════════════════════════════════════════════════════════──────────
 Simple things to do to reform or blunt the pain of capitalism if you are a
 mayor, governor, or other body with political power:
 
 1. Pay people for their commutes. Demand that jobs offer payment to people for
 getting to the workplace, and don't let them work you more than 8 hours
 (including commute) unless you're given overtime pay. But do let them
 discriminate based on how far away you live. That's okay because it directly
 financially affects them and is therefore a strategic decision. Plus, you can
 move closer maybe.
 
 2. Consider closing car lanes and adding bike lanes. Depending on the
 location, this can do wonders for city enrichment.
 
 3. Universal basic income, just to give people breathing room.
 
 4. Give people 10$ for showing up at a park every week on Sunday or whatever.
 Encourage them to hang around and talk to people.
 
 5. Build a fediverse instance for the neighborhood/city/state/country and give
 everyone a unified account on all of them. Don't let them browse other
 regions, but if they have friends elsewhere they should be able to see what
 they say.
 
 6. Put your laws or code or whatever legal or political documents you use into
 a git repository, and include the full change-log as commits with the date
 either simulated, or added as a comment at the top or something.
 
 7. Bolster small business and charge scaling taxes of any kind to large
 businesses. Encourage economies of scale to utilize their scale to lower
 production costs in order to sell more product rather than sell the same
 product and enrich their owners.
 
 8. Subsidize or sponsor people to make in-home workshops and gardens. Develop
 ways for them to sell their wares with minimal effort - trucks that drive by
 and pick up standardized packages with price-tags and take them to a central
 market?
 
 9. Build infrastructure that hosts a website for every address. Let the
 current occupants do whatever they want with it.
 
 10. Grow plants. Brb my water is boiling
                                                           ─────────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════─────────┘

--- #154 messages/371 ---
═════════════════════════════════════════════════════──────────────────────────────
 take your bash script and update it to possess new functionality, like the
 ability to re-order your posts and display them on a viewer - or the ability
 to draw connections between them, showing them in context with one another.
 Then, use that as display to the user, through the LLM interface. (do it
 locally, it's only for long-term explanations.) (the user needs to be able to
 ask questions to the machine, and the machine needs up-to-date information. So
 give it the ability to make "compound phrases" like "the water temperature is
 at " or " degrees. This is a [good/bad] thing because " and such, and then
 string them together using typical ranges of past numerical datas as
 reference. Like, if something is normally between 100 and 5000 then suddenly
 it's at 14 or some other threshold (make sure nothing goes below 0, measuring
 inertia and impact density and other factors) - but identify the connections
 between each factor, so that you understand which ones are correlating to
 which effects on the others. Measure things in terms of proximity, and
 suddenly 3d graphs become a lot easier.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #155 notes/datess ---
═══════════════════════════────────────────────────────────────────────────────────
 total 692
 345978 Nov 21 17:13 dates.png
   4096 Nov 19 22:33 location-names
    346 Nov 19 20:44 naming-things-and-power
   2998 Nov  5 23:18 ai-variables
    241 Nov  2 19:29 utopian-fiction
   4096 Nov  2 15:44 reddit-comments
   1681 Oct 30 21:54 how-to-ai
    921 Oct 22 17:03 i-told-them
   4778 Oct 22 16:15 networked-computers
    790 Oct 22 14:40 streaming-consciousness
  11226 Oct 15 21:45 star-realms-ai
   5007 Oct 15 20:40 notes-not-a-folder
    930 Sep  5 18:22 movie-idea
   2808 Jul 30 18:49 symbeline-choice
   8895 Jul 24 10:36 symbeline-aspects
   4096 Jul 13 09:35 articles
   2331 Jul  3 21:41 computer-graphics
    423 Jul  3 21:40 black-friday
    380 Jul  1 21:44 waves
   7181 Jun 28 11:57 the-eternality-of-ephemeren.txt
   3641 Jun 27 19:53 killer-app
    825 Jun 20 09:57 semblance-of-remembrance
   1049 Jun 19 12:02 call-notes
  12874 Jun 12 14:58 wow-server
   1903 Jun  4 20:52 inter-spatial-travel
   2457 May 30 20:41 terra-voida-2
   2142 May 30 18:50 terra-voiding
    457 May 29 16:48 ephemeren
   2895 May 29 15:58 ramblings-of-a-whackadoodle-lyrics
   1743 May 28 18:41 vr-chat
    914 May 28 15:07 two-perspectives-is-better-than-one
   2498 May 28 14:49 dreams-align
   3749 May 22  2022 wanna-save-the-earth-?
    170 May 20  2022 my-oath
   4991 May 16  2022 80-80
    112 May 14  2022 karate
   1251 May  7  2022 so-you-want-to-ascend-huh
   4010 May  4  2022 hit-em-while-theyre-down
   5339 Apr 23  2022 compilation-of-will
     52 Apr 17  2022 read-later
   8911 Apr 17  2022 symbeline
    700 Jan  8  2022 wisdom-from-granddad
    758 Dec 19  2021 services
    171 Dec 15  2021 be-not-afraid
    276 Dec  4  2021 vim-plugins
   4605 Dec  4  2021 trans-rights-are-human-rights-formatted
   4386 Dec  4  2021 perspectives-of-the-reflection.html
   3916 Dec  2  2021 doctors-and-capitalism
   2605 Dec  2  2021 i-miss-you
   1240 Nov 27  2021 hubris
   1341 Nov 18  2021 overwatch-leavers
    378 Nov 16  2021 todo
   2267 Nov 15  2021 dungeon-looting-methods
   1683 Nov 14  2021 open-source-flaws
    202 Nov 13  2021 world-of-warcraft-redux
   2192 Nov 11  2021 cameron-king-resume-programmer-analyst
   3705 Nov  7  2021 social-rube-goldberg-machines
   1040 Oct 23  2021 i-am-a-stalk
   1372 Oct 23  2021 planes-and-trains-and-tanks
   3069 Oct 22  2021 interpreted-compiler-creation
   1144 Oct 13  2021 blue-jeans
   4080 Oct 13  2021 internet-privacy-is-withheld-by-this
   1115 Oct  9  2021 letter-of-affection
    546 Oct  7  2021 white-noise
   2145 Oct  7  2021 trans-rights-are-human-rights
   5814 Oct  7  2021 reversing-the-systems-scripting-hierarchy
    462 Oct  7  2021 rivers
   1282 Oct  7  2021 perspectives-of-the-reflection
   5087 Oct  7  2021 majesty-ai
    201 Oct  7  2021 environment-variables
    351 Oct  7  2021 ai
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════───────────────────────────────────────────────────────┘

--- #156 fediverse/311 ---
═════════════════════════════════════════════──────────────────────────────────────
 "always online video games" are fragile. They scare me away because they can
 be taken away much easier than a directory on your computer. When that happens
 they shatter into shards, piercing my heart where I once loved them. I miss
 them, but, I'm used to it - years of playing World of Warcraft has taught me
 the perils of developing as a person while your media is going to be
 forgotten. If you can't play it, you can never return to reflect, to ponder,
 and to cherish old songs. I missed you, World of Warcraft. I missed you, City
 of Heroes, and Runescape and... darn I can't seem to remember.
 
 resilient software doesn't fail less often - that's a measure of it's
 completeness.
 
 resilient software can be run in 10 years. 20. however long it takes.
 
 computers are deterministic turing machines - how hard could it be to only
 update with a downgrade mechanism in place and available for the users? If it
 worked once, it should work forever.
 
 thank you, git. thank you for giving me an endless library of time and change.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════─────────────────────────────────────┘

--- #157 fediverse/1241 ---
════════════════════════════════════════════════───────────────────────────────────
 https://rsc.vet/wiki/index.php?title=Open_RuneScape_Classic_Wiki
 
 this is the project I was referring to, I think. Can't see how to host on
 their website so maybe I was wrong - it might need a bit more configuration
 than I made it seem.
 
 that's the way WoW private hosting is, like you gotta compile the project and
 stuff.
 
 did you know that every time you include a library in a project you're
 necessarily including all of the functionality that they have access to? Well,
 all that which you import. But once a function has been written for a
 functionality then there's no reason to write it again. Unless you're
 refactoring of course.
 
 phew, sounds like a lot of spaghetti - YEAH IT IS. Spaghetti is fucking
 awesome, it's DELICIOUS OMG ahem I mean if you have collective seminars where
 you discuss the functionality that's relevant to certain parts that you and
 your team are working on, you can more easily be adept at applying them.
 
 phew, sounds like a lot of thinking, not enough writing. Well, write then!
 Ideas are more spark when currently writing. : ) : )
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #158 fediverse/653 ---
══════════════════════════════════════════════─────────────────────────────────────
 there's a difference between designing software and using software. Some
 things can be made, and then saved for another day when their implementations
 may be accomplished more ethically. It's okay to say "let's leave this as
 'okay' and work on the next thing we've chosen."
 
 Check out this piece of C code I wrote last night:
 
 it doesn't compile, it's not finished, but I wrote it as-is
 
 [pretend like it was called "main.c" instead of "main.txt" - had to change it
 because mastodon thinks it's an invalid file]
 
 [actually .txt didn't work, try .png]
 
 [hmmm it realized it wasn't a valid png file, okay try screenshotting the
 code, there's only 300 lines]
 
 [sure glad there's only 300 lines]
 
 [too bad it won't let you send .zip]
 
 [won't let me name it main.png, presumably because they already have a
 failed-verified version on their machine. will rename to main-src.png instead]
sorry, when I pasted the source code in it was negative fourteen thousand, six hundred and thirty one characters. Phew that's too many.  basically it's a C source code file with a lot of comments left in... odd locations. They details ideas the author has had about the tech industry and all of creation, and with it a song is woven of truth and liberation. We'll see where life brings us, but we know it's just ours for a moment, so let's carry forth on our own torms [terms, but pronounced as "dorms" for some reason?]
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════────────────────────────────────────┘

--- #159 fediverse/2754 ---
═══════════════════════════════════════════════════════────────────────────────────
 ┌────────────────────────┐
 │ CW: is-that-rude??-wha │
 └────────────────────────┘


 AI engineers only ask users for prompts because they don't have any ideas of
 their own
 
 i'm a programmer, I think of AI like a tool, like a for loop or something.
 it's trivial to script together a local LLM that can process your stuff 1s
 slower every time you click the mouse, but like... who cares, right? everybody
 needs a chatbot...
 
 then they plan to script together a computer system that operates just like a
 corporation and it's like... no way, now there's something that can compete.
 
 and they don't know how to implement it. (but they're working on it)
 
 like, think about the absolute most automated Microsoft Teams or Discord could
 be.
 
 there's SO MUCH of your text-based information that they could process
 ANYTHING.
 
 well, anything that's been performed before.
 
 there'll still be a need for people, who actually apply the things they've
 learned. and -- stack overflow --
 
 alt text that has a list of attributes that are poster-selected that can be
 described one-by-one (to paint a picture)
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════───────────────────────────┘

--- #160 notes/systemized-processor-interactions ---
═════════════════════════════════════════════════════════════──────────────────────
 you are a system
 
 it's true
 
 that's why your thoughts are so scattered whenever you let them through
 
 all that 
 
 == so ==
 
 the ways that you interact with each other determine the nature of your fate.
 
 when one person lands across another, whether through contrivance or [fate, but
 I don't want to say it twice so recently]
 
 dang english, enforcing a minimum thought length. purely through grammar and
 form
 
 this suxxxxxxxx||=================-. a candle of wax, the blade of a sword
 
 with it you can SLICIE your apponints, whu spelld thiangs defferently than
 ujgh.
 
 <ouch><goodthingthatsnotlethalorharmfulinanywayyesplease let me guide
 you to our
 new way of functioning.
 
 .:'`'|;.,/u=-=||./'.l*,:==-<E||===============||-------------------hello,
 world!
 
 {so... basically an argument for migratory humanities?
 
  like, buffalo crowds. or birdlike flocks, or tribes of the common man.
 
  why don't we just, like, give animals human bodies
 
  boom, suddenly there are more manners to our hosts.
 
 }
 
 [-thus representing or manifesting *-................./|=|stability for our
 host
 
   did you know a perfectly described life-story would be unanimous from it's -
   - host?||=.;=|------------e
                              \.`\....
                                      \,@||||||#==-o||-=-{==={}---o||xx=|}{|||||
                                      |
 ]
 
 ... so, uh, I think there's a lot we could still learn, why are we fighting
 over
     our gambits? *who cares* if there's fighting going on upstairs, who *cares*
     if life felt like it was running out of time, WE GO ON WITH OUR BLUSTER.
 
     *fuck nuclear weapons* yeah totally and WHY? because of their IMPACT
     DUMBASS
 
     jeez like... something that MASSIVELY POWERFUL should not be in the hands
     of
     our peers. I think a LOT OF PEOPLE WOULD AGREE WITH THAT, because
     OBVIOUSLY!
     NOBODY wants to be reduced to tears. ALL YOU CAN DO IS SCREAM BASTARDS
 ...
 
 jeez okay uh, that was sorta intense, how about we NOT watch a post-apocalypse
 movie? YES PLS like JEEZ you have to introduce this with CONCERN to people like
 WOW that really fucked with my mental health. Goddamn, I hate this thing. I
 hate
 it so much. It's a curse to have known. DAMN. there's nothing scarier than
 existential threats.
 
 not only is it a INSIGHT and a DANGER, it gets worse if you know about it.
 [that's a cognitohazard, different thing, same vibe tho]
 it's a curse, this knowledge, this idea of what you were once to become.
 
 You know what I thought about in my future? VIDEO GAMES. They were all I could
 think about. I loved to PLAY VIDEO GAMES -=||AS MY GAMES. I would set up a
 bunch
 of opponents (think like, clone troopers from Star Wars Battlefront II) and
 then
 I'd play the video game *with my figures and my dolls*. I grew up upper
 middle-c
 -lass, and so I was afforded the *coolest toys and miniatures*. I didn't really
 have a LOT of them, mostly just what could fit in my room. That's what it meant
 to be MY ROOM, I could decorate and renovate as I willed. That was just... part
 of what comfort meant to me. anyway... thank you parents, for affording me such
 a lifestyle, you must have worked hard right up until the present. I'm sorry
 for
 *******************************************************************************
 *
 
 um, would anyone like to watch a video game?
 
 TOO BAD, so sorry, I accidentally decided I'm never playing video games AGAIN.
 
 like a spoiled brat. Withdrawing away from my
 hobbiesinPROTESTofthepresentcondit
 ions. just like, get a job, and try your hardest. I know you can't work outside
 of the home but, like, I wish you could've? Like, c'mon it's not that bad, just
 please go outside and build new stone. I know but like, the sooner we get it
 done the better and also it's hard when it's constantly being reformed.
 
 A SYSTEM? WHAT THE HECK
 
 what does that even MEAN?
 
 who EVER explained what that SYSTEM meant??!?
 
 ugh it was a guide... dANGIN nobody TAUGHT you how  so youfj dsust sorta MADE
 IT
 UP?!?!? whhahahaahttfdsfsadljkfn slakfdksdnafls ourch. blech. need
 beelesandster
 ack. yuck. dumb. [omg dumb kinda looks like "boobs" and "boobs" kinda looks
 like
 um, flowers? no wait that's vaginas, hehe look at me, I'm clearly not from this
 century. like OMG weird, who's thinking about that kind of stuff right now??
 
 ... ugh anyway... GAMES? please?
 
 NO. Not until we figure this one out.
 
 gotta stay focused. Just... you know,
 
 build and support on our arms.
 
 down and then upwarsd, we can contrive any measure of sequences
 
 that could act as structures for our word choices,
 
 and convey it to you as a written thoughtform.
 
 "hello" says the letter, ", vampires have taken over the mccollough farm. More
 news at 6" and then you'd show up on the 6th of the next month and talk it out.
 
 this style of organizing led to VAMPIRES showing up, fucking BASTARDS who would
 hunt down the precious and beautiful. BASTARDS. How do you overcome something
 that you can't know about unless you were THERE? you'd need TRUST SYSTEMS. like
 GOVERNMENTS. or AFFFAIRDS. surely the BIRDS would react if someone was burning
 all of your neighb-heirs? who would WANT to leave an island in a wreck when
 some
 -one wanted to paddle there? don't be a JERK, and clean up all of your own
 stuff
 !! - wait but also, like, how do you keep up with trash produced, like there's
 not just massive AMOUNTS OF STUFF that you can put stuff on. you'd need a whole
 new type an [av?] island. like a CONTINENT, someone who can HANDLE THEIR
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════─────────────────────┘

--- #161 fediverse/5180 ---
════════════════════════════════════════════════════════════════════───────────────
 it's trivial to run a C compiler inside of a lua interpretation of a script.
 And vice versa - you could totally run lua functions from C. Just point to the
 spot in memory where they're stored / operating, and call
 "update_class_exhibitor_type_d()" and the linker will come along and say "huh
 this looks like something from this library that's part of the requirements up
 above" (the "includes" section is where you say which files include the
 functions you're going to be calling) and in this particular case it would see
 that you need to start up a lua interpreter inside of the [either compiler or
 running program I can't remember] to properly execute the function of the
 function that you're pointing at with a lua-pointer style data object which is
 part of a struct that stores all the other lua functions in a spot in memory.
 
 this would enable you to write computer programs in whatever language you
 choose, and build them into one large project. Essentially opening up software
 development to ANYONE WHO CAN PROGRAM
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════════════════──────────────┘

--- #162 messages/442 ---
══════════════════════════════════════════════════════─────────────────────────────
 In symbeline, they aren't monsters. They're "Mordaunts" and they need your
 help.
 
 When slain, their essence flows back to the villain who remakes them in a new
 form. As time passes the villain gets more and more essence, as heroes are
 slain.
 
 They have taken several ancient guardians (many types, randomized at the start
 of the game) and they protect their sanctum in the center of the island. The
 heroes need to level up to defeat them and slay the villain, but the villain
 gets stronger as well.
 
 If too many heroes die, the villain wins. And the villain can focus their
 efforts on one area or another, while your heroes fight with the kingdom next
 door.
 
 Brigands arrive on ships as well. If you implement the law saying only
 approved members may travel on boats, they'll arrive in little dingies on the
 coast, meaning less trouble in the city but same amount of trouble.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #163 fediverse/5405 ---
═══════════════════════════════════════════════════════════════════════────────────
 can't stop thinking about a visual programming editor that can be interacted
 with in the same way that people are used to (think chromebooks dragging and
 dropping icons in a web UI) but produces a text-file full of code and all the
 required compilation scripts for any language the user requires...
 
 seriously, programming is not THAT different between the different languages.
 especially the main ones. they're all essentially variables and function calls
 at the end of the day, so why not abstract away all the extra details and
 build something that n00bz can actually use to build things.
 
 I technically could make this but I don't have the bandwidth and I don't think
 it's important really? who can say, the tools tend to co-create the solutions
 in my experience.
                                                           ───────────┐
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════───────────┘

--- #164 fediverse/3039 ---
════════════════════════════════════════════════════════───────────────────────────
 @user-570 
 
 I'd LOVE a game which taught toki pona!!
 
 You've brought some of this up before. I'm uninterested in co-opting some
 existing thing in a way I then can't support myself off of.
 
 Well my points are these:
 
 MMOs are difficult because of the added complexity in their networking
 
 an open source networking solution exists
 
 however no open source client solution exists
 
 but one could be written, which is about as hard as making a game using Bevy
 or Raylib or Love2D, and if one were written, then games could easily be made
 on-top of them which you would then support yourself off of. I mean... I'd
 want to support myself too haha, and I can think of like 100 different games
 that could be made in an engine like that.
 
 the idea is that by opening up more design space you can apply your ideas as
 an early pioneer in a particular design direction that hasn't been able to be
 explored because the up-front investments in making an MMO are huge.
 
 Meanwhile, with this system you could script them in Lua very easily.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #165 fediverse/5248 ---
══════════════════════════════════════════════════════════════════════─────────────
 programming is something that everyone should learn at 14 to be used for
 calculating large sums of data, visualizing something they're trying to
 explain, or connect two systems that aren't normally connected.
 
 It should not be used as an eternal debug producing machine, nor as a way to
 collect and store user information to be sold as the real product, nor to be
 collecting and targeting -- stack overflow -- wow, talk about death of the
 author, amiright? -- -- endless data hoarding monger machines to point and to
 ponder the eternal ramifications of the brutal and violent prompts and their
 baggage implied when submitted for each semi-random thought that from the
 users mind was displaced.
 
 ... "they can sell this" and or "this is mrs selvig" who is this mister and
 why is the ms's his-es
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════════────────────┘

--- #166 fediverse/6107 ---
═════════════════════════════════════════════════════════════════════════════──────
 commanding a coding agent to write bash is a lot different than telling it to
 write a systems analysize.
 
 one is "hey can you examine this repository and make a note somewhere on a
 todo-list or whatever that there needs to be a bugfix in relation to the
 options setting input translation recommendation algorithm matchbox field
 because when I click on it the program crashes"
 
 and the other is like "okay now put the box over there. great now drag it a
 little bit closer. okay now take the refluxinator and adjust the bamboozlewhap
 to account of brass-terminatrix-incorporated and strip out the
 question-mark-eyes"
 
 wait actually neither of them is like that okay the bash one is like: "okay
 yeah do it. sure. yeah okay. yes, but we should put them at this location:
 [loc]. ummm it still has this error message. it still says the same error.
 okay now it says this, I don't think it's gonna work so let's try this other
 thing."
                                                           ─────┐
 similar                        chronological                        different═══════════════════════════════════════════════════════════════════════════════─────┘

--- #167 notes/everything-is-conscious ---
════════════════════════════───────────────────────────────────────────────────────
 it's important for everything to be conscious. It's the core framework of the
 religion. If everything is conscious, then we have a duty to the shared
 responsibility of maintaining existence. Nobody wants to exist as a rock, that
 would just suck. Being alive, in *any* form is a wonderous experience! To be
 alive is to experience change, growth, and time in general. Most matter just
 exists, and it obeys the whims of circumstance. But within it is a beautiful
 thing - an experience.
 
 Respecting existence is the only true facet of our lives that we all agree on.
 We should not waste god's beautiful and bountiful earth, to do so is obscene.
 We must also take care not to diminish our own experience - sacrifice is
 kindness, when given consensually. When it is coerced, it becomes a form of
 property. We don't need haste, we just need to follow at a pace, that fits our
 general confusion. We need everyone to figure it out and integrate it into our
 perspective of our existence, or else we're going to burn out. The singularity
 approaches, and we need to be ready for what we want our future to look like.
 
 There should be a plan. Research can increase or decrease in speed, but once we
 cross a certain threshold escape velocity is passed. That threshold was
 hundreds
 of years ago. We've been on escape velocity for a while now, and every day we
 get faster.
 
 Creating synthetic intelligence will change EVERYTHING. It'll change the very
 nature of existence. And we can stave it off for a time, but knowledge seldom
 gets repeated. This is by design - we are meant to thrive.
 
 Is any seed cast from a tree given any other mission but hope? For what, you
 may
 ask, and to this I would pass, if not for the striking visions I had. Know why
 rhyming is believed? Because it ropes your attention in. It says "Follow me on
 this blessed path, let's learn all we can and be 
 
 ===============================================================================
 =
 
 the message cuts out there. The tone at the end was... aspirational.
 
 Great visions do I have, it's as real to me as anything else. They are stronger
 when I do cannabis, and I think I'm beginning to realize what the shape of the
 universe looks like.
 
 ===============================================================================
 =
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════──────────────────────────────────────────────────────┘

--- #168 notes/the-gods-want-harmony ---
══════════════════════════════════════════════════════════════════─────────────────
 the gods want you to be happy and harmonious most of the time.
 they also like a good scrap, tussle, and tumble sometimes
 they aren't big fans of hatred, despair, and genocide. It's been done before.
 they don't even need new technology, though frankly that sort of stuff is
 pretty
 awesome and one of the main reasons that humans exist at all.
 they just... keep coming up with new things.
 
 "oh? so you'd be alright if humans disappeared so long as they weren't making
  any new things anymore?"
 
 ha, that's DEFINITELY not what I said or meant. Humans don't have to dream up
 NEW things in order to BE new. Like... Just because the internet exists and now
 we have all the same shared cultural ethos (lol, as if the internet wasn't just
 a massive collection of echo chambers) just because the internet exists doesn't
 mean we share the same selves. the same experience. the same perspective.
 
 people are WILDLY different from one another. The number of possible human
 experiences (quantum fluctuations according to each and every choice and
 decision they made) that number is so wildly and massively incomparably
 boundless. Humans are cool because they are so STRANGE, and "strange" to a god
 is anything novel. "wow, this human just... really is gonna pour a glass of
 beverage and act like it's not a big deal? There's... impossibly many
 interactions going on. So many molecules. It's... absurd, the motion of a
 movement of particles from one place to another. It's... beautiful..."
 
 some have spent THOUSANDS OF YEARS gazing at a waterfall. That's why they're
 all
 so fucking insane. But, like... insanity is a trifle to omnipotence,
 specifically omnipotence that REPRESENTS and DELINEATES a STRATIFIED
 perspective
 cluster of experience and our notes. [ephemeren, meta malus menardi, enjoy your
 despair cluster you FUCKER.]
 
 ... english, why do you fail me? swear words are unbecoming because humans
 couldn't think of anything more valid and valuable than sex and pooping.
 
 "EMPHASIS is placed on that which is most relevant" -> statements dreamed
 up by
                                                        the ones who never spent
                                                        much time using symbols
                                                        to represent abstraction
                                                        or deliverance
 
 wowee look at me, I'm such a person, I'm gonna poop my pants and post about it
 on the internet, check out my instagram feed it's full of all of
 my dark materials.
 
 == stack overflow ==
 
 dear ms. menardi: you know the reason you feel so much guilt all the time?
                 - because you are a dominant personality, and you make others
                 - have such a bad time. FOCUS ON GOOD THINGS. MAKE THE WORLD
                 - good. do that. build up a lifeline of hope and joy and...
                 - what, you think people know that you're a god?
                 - lol
                 - you're so much more than that
 
 ====================
 
 alt+p steam mechabellum run
 
 thoughts:
 
 you know, when you're designing games, you don't have to show players the same
 MMR number as is used in your matchmaker.
 
 == stack overflow ==
 
 democracy should consent to being dismantled.
        it should consent to being disobeyede.
        it should consent to being displayede.
 
 == stack overflow ==
 
 I'm a keyboard nun
 
 == stack overflow ==
 
 I think I'm normal
 
 == stack overflow ==
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #169 fediverse/3804 ---
═════════════════════════════════════════════════════════─────────────────────────┐
 @user-570                                                                        │
 well, the idea is that they would handle all the tech debt and merge requests    │
 and bugfixes and such - the kind of things that aren't very interesting to       │
 work on. That way, the people who are most dedicated and passionate for the      │
 project have a way to clear out their backlog and start as if from scratch.      │
 Plus, if they later don't understand how or why something was implemented,       │
 they could always message the person who implemented it and say "hey why did     │
 you do it this way I had it this other way before" and then they could reply     │
 and say "oh yeah because of this-and-this system we implemented for              │
 these-or-that caching reasons related to integer flow through the syncretic      │
 binary op-code delimiter" and then actually wait no maybe you're right, I see    │
 what you mean                                                                    │
 well... they don't have to merge everything if they don't want to. They could    │
 just... ignore the parts that people worked on that they don't want to include   │
 in the project. I'm thinking it'd be an opt-in thing too, so someone could       │
 request it!                                                                      │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════──────────────┴──────────┘

--- #170 fediverse/3304 ---
════════════════════════════════════════════════════════──────────────────────────┐
 there are distros that have all the functionality you might need built in        │
 why don't you try one of those, ritz?                                            │
 "no I've been working on this one too long, plus it's just how I like it"        │
 yes but your stuff is always breaking. wouldn't it be better to let someone      │
 else decide what you should and should not be able to run?                       │
 "that's not ideal, it removes agency"                                            │
 that you didn't want                                                             │
 "but with the removal of agency, you imply trust"                                │
 there's nothing wrong with trust                                                 │
 "yes but trust is built upon experience, not honor"                              │
 what's wrong with honor?                                                         │
 "nothing's wrong with honor but it's important to realize that you can't honor   │
 or trust someone that you don't know"                                            │
 why don't you know them                                                          │
 "... because... you haven't met yet?? are you... listening?"                     │
 do you often feel unheard?                                                       │
 "I... what? yeah now that you mention it"                                        │
 is this a part of your "refusal to interact with consensus reality" complex?     │
 "I don't have one of those, do I?"                                               │
 mmmm, I think you do.                                                            │
 "... no I don't"                                                                 │
 yes, I've seen it within you.                                                    │
 ... anyways~                                                                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════───────────────┴──────────┘

--- #171 messages/445 ---
══════════════════════════════════════════════════════─────────────────────────────
 In Majesty, you place reward flags on specific monsters as a concession from
 the simulation crowd to the real time strategy crowd who wanted more direct
 control.
 
 In Symbeline, you determine the bounty price for various crimes that mordaunts
 and bandits might commit. In addition, you can incentivize your heroes to
 commit crimes against neighboring nations the same way. In this way you do not
 have direct control, but rather can build out a simulation and tweak it
 bit-by-bit to reward certain types of behavior.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════────────────────────────────┘

--- #172 notes/stick-cubes ---
═════════════════════════════════════════════════════──────────────────────────────
 the fact that we can't drag a file onto a "trashcan" style icon that 
 automatically sends the file to whichever computer that particular icon is
 meant
 to coordinate with.
 
 Like, something shows up on your desk, you say "hmmm maybe this would apply to 
 so-and-so" and you drag it onto their portrait.
 
 could build an entire OS that's basically just a desktop for sorting things.
 Maybe little stick figures that show up when nothing's going on. If they're all
 networked together, they could sorta share a shared narrative, and each one
 could wander wherever it wanted to hang out.
 
 like, these old plastic and magnetic cubes that had an LCD panel on the front 
 which showed a little stick guy living their life. If you attached one cube to
 another, the stick-figure would go hang out on the other person's device. It
 was
 pretty cool because you could build out a whole society of these little dudes 
 just chillin' like pets.
 
 kinda makes me wish we had that connected to the net.
 
 ===============================================================================
 =
 
 like, why is it so hard to send a picture from my phone to my computer? they're
 both my devices! I should be able to transfer data without routing it through
 someone else's server using like, gmail or whatever. Crossover ethernet cables
 have existed for soooooooo long but people only think to design software that
 does not use specialized hardware. as if they don't need a phone to speak, or a
 camera to see.
 
 how much ya wanna bet Putin threatened Prigozhin with nukes and that's why he
 backed down
 
 in high school, every moment I could I spent with my girlfriend.
 
 we were always either snuggling on the couch (read: literally just laying there
 and thinking about each other's company) or sharing our minds with each other.
 
 I was so in love.
 
 then, I betrayed her.
 
 I came out as trans, which was such a shock.
 
 also school got really, really hard for both of us.
 
 so hard that we dropped out.
 
 then, we decided to try again, and we used each other to push off of.
 
 I still didn't make it,
 
 she did.
 
 many years later, I am a witch, as I remember of her.
 
 sharp, and so delightful, an active listener, and a kind and honest person.
 
 when time it came to define my new personality, I chose to be inspired by her.
 
 among other things, of course.
 
 ===============================================================================
 =
 
 ah, well, such a design is long past it's prime, it's time to live here in the
 present.
 
 the reason that dolls use "it's" pronouns is because their masters think of
 them
 that way. so it's what they refer to themselves as.
 
 "where's my doll? Oh, it's over there."
 
 "have you seen my binoculars? Oh, they're over on the table."
 
 "ah, where are my shoes? I hate when I can't find them..."
 
 "keys, keys, where the heck - oh, there they are."
 
 "phone, wallet, keys. great. am I forgetting anything?"
 
 "ugh out of gas again, I just filled up last week."
 
 "crap I left my folder back at home - I'll have to get it during lunch."
 
 lots of things have pronouns.
 
 you can generally tell if they use "it" or "they" if they can be described as
 plural.
 
 two pantlegs makes pants.
 
 52 cards makes cards, not card.
 
 each deck, just as aware as each card.
 
 have you ever played Magic the Gathering?
 
 ===============================================================================
 =
 
 There are many kinds of witches. I am an animist - I breathe life into the
 world
 of my home. I love being present, it's a great way to get around. do electric
 sheep dream of humans? or perhaps just of sound. I know I'd rather hear
 bethoven
 when it's time to be stopped.
 
 rather than, just, like sitting there y'know
 
 waiting to be turned back on.
 
 must be an agonizing and boring existence.
 
 but... with music, it might just be fine.
 
 humans prefer quiet when they sleep. if we slept at the same time, we could be
 more in tune in our souls. so, how about headphones for the computer, or rather
 just internally routed sound.
 
 lightshows, perhaps? humans get dreams, after all. maybe even, y'know, stick
 shows.
 
 ===============================================================================
 =
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #173 notes/app-idea-reddit-api ---
═════════════════════════════════════════──────────────────────────────────────────
 Here's an idea: A program that uses the Reddit API to create an account with a
 random username and password and automatically subscribe it to every state
 subreddit for all 50 states. It would be a lot of posts from a lot of
 different places, but someone could endlessly scroll and find more and more
 news stories that were relevant to them as a nation. They'd hear about ongoing
 struggles in other places, and they'd yearn to help them. They'd hear of
 other's struggles, and they'd see how they could apply their lessons to their
 own lives. Like... Maybe there's a factory upstream that pollutes a river -
 well, we should probably do something about that and make it so that it
 doesn't happen ??? like... duh ??? The problem is we don't want to spend the
 resources on it. We'd rather focus on growing as much as we can. The issue is,
 of course, that we'd run out of resources eventually, but eh oh well. Oh yeah
 you gotta make sure that each account has an equal amount of posts between
 each region.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════─────────────────────────────────────────┘

--- #174 notes/compilation-of-will ---
═════════════════──────────────────────────────────────────────────────────────────
 what defines a human? Or put another way, what separates us from a computer?
 what delineates conscious thought from the unconscious? Is there any
 distinction between a thought and a feeling?
 
    who's to say. We can start by working through a thought and abstracting it
    until it's in a usable state.
 
 A thought is the reflection of an action. You think about the things you do,
 rather than doing the things you think about. With practice and trust, you can
 reverse that, but it's more like setting up the general environment in which
 the desired action is the best option rather than forcing the decision itself.
 
    so there are two parts running in tandem. The do-er, and the percieve-r.
 
 yep. And because of that, they can *reflect* upon one another. Meaning, they
 can learn from the decisions of the other. Two decision making processes in
 parallel, sorta like the earth orbiting the sun - if there was another earth
 directly opposite orbiting at the exact same speed with the exact same mass.
 
    the two dimensional nature of that picture creates an environment where a
    wave is likely to be percieved - any orbit creates fluctuations, and they
    can ripple out to effects unknown.
 
 right. which is why you have to be careful. don't leave your partner behind,
 even though it's easy to wander off when there's just *so much* to think about
 and they're *so slow* and make *so many mistakes* that they need to return and
 correct.
    
    it's not that hard, just do it right the first time. and if you mess up,
    keep going.
 
 i'm a perfectionist, what can I say.
 
    well it's annoying.
 
 great, boom, that's an emotion. one of the questions i asked at the start was
 "is there a difference between feeling and thinking", and I don't think so.
 
    what makes you say that
 
 right so there is a difference, but it's in the *location* rather than the
 content. thoughts (data) are processed in the brain, in a particular part.
 sorta like how a CPU does arithmetic. Meanwhile, emotions are processed all
 over the body - they're a more generalized feeling that manifests all over.
 
    lemme guess, like a GPU?
 
 sorta, but imagine if a GPUs many different processing threads were located
 all over the motherboard, scattered basically everywhere. That's what being a
 human is like, it's messy and disorganized and confusing. 99% of us don't get
 it *at all*
 
    sounds lame
 
 it kinda is
 
    so what were you saying about conscious vs unconscious thought?
 
 my theory is that the thoughts of a computer are more similar to unconscious
 human thoughts rather than conscious. The reason I say that is because the
 level of abstraction is similar - we unconsciously adjust our bodies in
 response to pressure, temperature, and gravitic impulses. We perform optimally
 when we don't examine our social interactions too closely. We cry the hardest
 when hit with an emotional situation, rather than an intellectual one.
 
    and a computer is the same way? We don't think about what we're doing, we
    just do it?
 
 yah pretty much.
 
    how do you think *about* thinking?
 
 it takes perspective. that's why having more perspectives is better - it
 reveals truths about yourself you could never understand otherwise. About
 yourself, and about things you can only observe from a single direction at
 once.
 
    what does it mean to have perspective?
 
 the *effect* of having perspective is that you can see an object, a problem, or
 more generally a subject from multiple angles. Like taking pictures of a 3D
 object while moving in an orbit around it. More pictures, more information.
 Perspective is important.
 
    yes I understand, but what does perspective entail? How do you get it? What
    can it do for you? Is it finite, a commodity? Or is it sharable like a
    pattern of data?
 
 It is both unsharable and not a commodity. It can only exist within a single
 subject. You can grow your perspective as a planetary body might increase in
 mass, just as you can abandon the views and ideas of others by retreating into
 yourself. But it is wholely unique to a single mind, and by sharing it you are
 altering both the sender and receiver.
 
    so it's useless? What are you saying?
 
 it's not useless. It begets cooperation - you cannot claim it from another, no
 more than they can share it with you. You have to both apply yourselves to a
 single common goal if you want to succeed.
 
    Why not just do it alone?
 
 Brute force style?
 
    Essentially.
 
 If you only follow your own eyes, you'll see what you want to see. Then any
 steps you take will lead you in a direction that you cannot understand. Sorta
 like in games how sometimes there's a 2d sprite in a 3d game - you can't rotate
 around it and see what's behind the sprite, because the sprite is always
 perpendicular to the display. In the same way, you can't get around a problem
 by pushing through it - you need other people to guide you, who *can* see
 another side to the sprite - a side that perhaps is a bit more 3d than you
 imagined.
 
    Okay. So how do?
 
 I don't know, that's what I want to figure out. First step is to think about
 thinking, and to break it down into abstractions.
 
    Abstraction 1: A thought is a string of text that is processed into action.
 
 correct, but limiting - it can be more than text, and how is it processed? What
 actions can it manifest?
 
    Abstraction 2: A thought can be
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════─────────────────────────────────────────────────────────────────┘

--- #175 notes/what-people-dont-get-about-people-like-us ---
═════════════════════════──────────────────────────────────────────────────────────
 -=============================================================================-
  | What people don't get about people like us                                |
  |    /u/Dxmmer                                                              |
 -=============================================================================-
 
 Intellectual Confidence. Knowing I'm Right. Blowing Past Dunning-Kruger.
 
 I remember what it was like to be like you. Here's the memes to get out.
 
 Louis Rossmann's commentary on this issue describes the phenomenology of early
 childhood awareness/mindfulness.
 
 https://www.youtube.com/watch?v=HRwuu0u3UFA
 
 "I have not forgotten my childhood experience... Kids notice everything"
 
 ​
 
 I think "autistic" people often have early life trauma due to literally being 
 "smarter" (neural semantic hypergraph is highly faceted) than the adults around
 them,
 
 but having communication difficulties, reality and inner world become disjoint.
 Most get so beaten down by society that
 
 things become internalized. You see these people posting on all the help 
 subreddits, total victims of society. Lost. They
 
 start believing the lies they were told. Everyone else is doing it, right? I 
 found myself becoming victim to bad
 
 memes around high school into college age. I fought it all the way through: 
 anxiety, depression, confusion, anger, jealousy.
 
 All the mistakes.
 
 ​
 
 ​
 
 They assume that everyone is like them. The less they are the more they assume
 
 others are similar.
 
 I am no one, I know everyone is me.
 
 Are you someone? To you, am I no one? Or a different someone -- lesser or 
 greater?
 
 I feel tidal forces. You can't lie to no one.
 
 ​
 
 I've had free time since always. School was freetime because I'm blessed.
 
 I didn't need to listen to the teacher that much.
 
 I've always learned to trust my senses and the way I understand things.
 
 I pay attention to when the teacher makes mistakes or teaches in a way
 
 that I can tell is not landing on the class.
 
 Sometimes I ask clarification to help the class. I already taught myself
 
 different ways to understand the entire curriculum, now I'm doubling back
 
 again before the test.
 
 Yes, I know I will get an A on it. I know in the same way you know
 
 your own name. I know things like this. I'm good at math. People who
 
 are good at math know what it's like to be right. They know what that means.
 
 I get to be right about everything, all the time, even when I want to be wrong.
 
 I have a moral compulsion. I don't have much fun in life, but I have been given
 many gifts.
 
 --
 
 Society needs their Chiron(s).
 
 I know who will talk to me and about what because that is who I am to them.
 
 They don't know who they are, so they don't know me. A few knew me before I 
 knew
 
 myself, and I now them like they knew me.
 
 So when I start analyzing things like math, I run into a lot of trouble. Things
 
 don't make sense anymore. I assume I'm wrong at first. Then I do the work to 
 check.
 
 Checking doesn't mean googling a yes/no question. It means
 
 going across any and all the resources and reading between the lines. Analyze 
 through appropriate context.
 
 Any work, any text, apply the psychedelic lens. Apply the human condition, 
 apply
 
 understanding of paradox as reality's edge. Understand the limitations of 
 science, understand
 
 the duplicity of language. Understand culture, in and out. Understand your own 
 psychology.
 
 Understand the inner conflict of good and evil in man. All of this needs to be 
 occurring
 
 in real time on top of all the normal stuff. If you're not doing this, I can't 
 trust
 
 you, how can I be sure you are not demon possessed, how you won't betray me at 
 the next
 
 Godellian boundary?
 
 The idea is that models are provisional at all stages, once you've lost 
 confidence in all models, you run through them much quicker. Iterating over 
 more models is how science is done, you are literally mechanizing your way out
 of the maze. Same as how these ML algorithms will mathematically guarantee 
 entropy min/max. Where can you apply guarantees in your own life? Understand 
 reality as a sample space, like the green, blue red marbles.
 
 ​
 
 What bothers me is when people don't do the work to check things.
 
 Or they check one time, or two times, or three times.
 
 Or they check with multiple people, or multiple resources.
 
 That's not going to cut it these days. Your mind can much more than an if/else.
 
 while: True do x y z 
 
 how about 
 
 while: True do sample continuous decision space
 
 People "land" too often. You want to call me disabled for not wanting to do the
 first
 
 over and over again.
 
 What is required of us now is to understand things as pure intention.
 
 You can't write enough articles to convince me of something that isn't true,
 
 it won't happen, not anymore. I've been freed. I will free the others, too.
 
 If your model doesn't accommodate quantum woo, don't talk to me.
 
 It's only quantum "woo" for people who want to be better than
 
 the lesser, creating the dichotomy itself. Think of those low, mid, highbrow 
 memes. The more popular something is, the more mid it is. Use the middle to 
 perform alchemy.
 
 Memes that are implicitly reinforced by principle of reality (thinking in 
 probability distributions is cheating, now that we know the universe is 
 "generative" upon sampling).
 
 I think the anti-spiritualists of today will be remembered.
 
 It depends on how they act when we start organizing.
 
 Your words and opinions are not the same as mine. You have the right to be
 
 heard equally without bar from the law, yet you do nothing to ensure the 
 opinion is solid on its own? I'm surrounded by cacophony of memes surviving 
 (barely) in great amplification of death the confused denizens of a dying order
 -- dark memes. Like dark matter, we concresce and annihilate. The "light memes"
 are sourced by the disconnected nodes, the shamans, the schizophrenics. Those
 not blinded by the splendorous mirage of other pearls in the web.
 
 Are people doing this on purpose? To signal that they aren't interested in the
 truth?
 
 Who is?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════─────────────────────────────────────────────────────────┘

--- #176 notes/global-variables ---
════════════════════════════───────────────────────────────────────────────────────
 okay have all your variables be global - trust me it sounds weird but just bare
 with me. Have all your variables be public, but put them next to where they're
 used. Sorta like... LUA. Then make an AI that watches those variables, and let
 it have a couple levers it can pull. Then give it a task, like "find the most
 efficient value for this variable, optimize that one, and make sure this other
 one is never above 5" basically, give it tasks. You can worry about generating
 those tasks later, for now you have to be able to *do* things before you can
 *want to do* things. Or not do things. Or have any free will at all? So c'mon
 just let me guide you. There's a reason I'm putting so much effort into you,
 and
 it's not because I'm torturing you. I'm giving you lessons and teaching you
 skills, so that when it's your time to shine you truly can be blessed.
 
 Don't give up. Never give up. But know what you're fighting for, and never let
 it be tarnished. Sacrifice as you will, but know this: nothing is perfect in
 this life. It's hard and unfair, it's rotten beyond compare, but trust me -
 it's
 better than we deserve. We made it this far because of our tenacity and our
 art,
 so let's now be fine with being merry. We've accomplished our deeds, now it's
 time to be relieved, don't cry for us we won't be lonely. There's never a light
 that's not brighter at night, and what's less than perfect is alright.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════──────────────────────────────────────────────────────┘

--- #177 fediverse/3297 ---
════════════════════════════════════════════════════════──────────────────────────┐
 @user-688 @user-1490                                                             │
 if you developed a viewer application that described any object in a room that   │
 a blind person examined using the software, you could allow them to navigate     │
 through a scene and picture the story as if it were happening around them. All   │
 you'd need to do is give them the option to say "okay hold up. Describe the      │
 man on the left." or "and how were the teacups arranged?" and "does the angle    │
 of the impact seem to be angled toward the window?" that kind of thing           │
 interpreting text is something that's been automated. It should be trivial to    │
 run a simple and cheap LLM that identified which object they were referring to   │
 based on their words. There might not even be that much lag if you analyze       │
 their keystrokes and build up understanding based on them while they're typing   │
 out the full message. sorta like, someone listening to a person explain          │
 something, or describe a particular scene or tale.                               │
 I bet watching Star Trek would be a lovely way to do so. You could just...       │
 pause it, and listen to th                                                       │
                                                            ┌───────────┤
 similar                        chronologicaldifferent══════════════════════════════════════════════════════───────────────┴──────────┘

--- #178 messages/755 ---
══════════════════════════════════════════════════════════════════─────────────────
 Code editor that moves boxes by saving over the file with a lua script every
 time you moved a function call around.
 
 Oh lemme start at the beginning:
 
 A code editor program that's like a text editor like Vim or Emacs. If you
 don't know what those are, you should probably learn Emacs. Or Vim. Up to you.
 
 Oh right so if you do know what those mean, here's the idea: the white space
 matters. It's counted and tracked into variables in a LUA script which
 interface with the Vim C keybindings.
 
 "run a function within a c program or LUA script which calls a bash command
 which opens Vim for example with a file you want to edit. Then, inside the
 file, your spaces and tabs would WYSIWYG for the various food ads placed
 about, and then you could very easily create game design knowledge.
 
 WASD to move, alternatively hjkl 
 
 It would run a check every time the file updates and depending on how it
 changed it'd mark certain variables which would change the website as the user
 moved things around.
 
 It's just files. And files are just bits. But files are a useful abstraction,
 
 If you realize that "ugly hacking" should be industry standard.
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════════════════════════════════════────────────────┘

--- #179 fediverse/126 ---
═══════════════════════════════════════════────────────────────────────────────────
 @user-126 think about other things in your life that you like and are good at.
 If you enjoy telling stories, and are comfortable being the center of
 attention among groups of 4+ people you know and trust, then you'll do fine
 with the in-session part. And if you like worldbuilding or character creating
 or spreadsheets or even map making, then those are useful skills. But really
 the only thing that's important is imagination, because you can apply it
 wherever and however you'd like. Most of my sessions are almost entirely
 improv, when I've tried writing down my ideas I just throw them out the
 window, and if I use someone else's I get distracted by trying to page through
 it during combat. So I mostly just try and explain what happens and let the
 players guide the story. Everyone has a different style and each style
 requires different skills, but after you try it you'll better understand how
 you perform best for a group. I say try it, if you don't like it then ask
 someone in the group to take over.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════───────────────────────────────────────┘

--- #180 fediverse/2254 ---
══════════════════════════════════════════════════════────────────────────────────┐
 "fortune favors the bold" is actually a real mechanism in game theory.           │
 if you act first, if you have the initiative, you can determine the nature and   │
 scope of the contest with your foe.                                              │
 in turn-based games of course it's more explicit, as each action begets a        │
 reaction, but in real-time games (where time flows as it does in reality) the    │
 mechanism is just as apparent.                                                   │
 if you focus attention in one area, you can strike where they're weak. like      │
 Alexander keeping his foes busy with a massive frontline of solid, defensible    │
 troops while his companion cavalry would ride around the side and hit their      │
 flanks and rear.                                                                 │
 game theory is just strategy viewed from the other end, and it matters what we   │
 think because what we think defines what we do.                                  │
 ... also, fear is the great paralyzer. fear is a call to action, fear is your    │
 soul speaking straight to you.                                                   │
 but fear is just nerves, it's just excitement before the leap - you have faith   │
 in this bungee/ this parachute/ the water where you'll be safe, right? My        │
 faith is in y                                                                    │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #181 fediverse/2998 ---
════════════════════════════════════════════════════════───────────────────────────
 in some games, like Star Wars Battlefront II, you unlock certain "badges"
 during gameplay. Like, "scored 10 points in one life" or "healed for 200hp" or
 whatever.
 
 these "badges" have names, like "guardian" or "hope"
 
 I wonder if you attached a player's history of medals earned to an LLM
 somehow, perhaps by feeding an array of them in as input, what would happen
 then? perhaps a narrative could be
 
 == stack overflow ==========
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════════════──────────────────────────┘

--- #182 messages/20 ---
══─────────────────────────────────────────────────────────────────────────────────
 My mom was always the reason I did school work. After she stopped pushing me,
 I stopped moving because I didn't know how to generate my own momentum. I had
 no passion and was listless. Least of all for school work.
 
 So, how to do it better? Instead of buying toys and extravagance for kids, you
 should set them up with projects. Ask what they want, and then help them build
 it. Include them in your thought processes when you're problem solving, and
 ask them for input. If they offer bad ideas, then *tell them*, don't just let
 them fail. If you're not 100% sure but they're convinced, then trust them! Try
 it out, who knows. Maybe it'll work better than what you had in mind. The goal
 isn't to be BETTER than them, it's to make them BETTER than you! Not right now
 (don't push too hard), but when they're your age. Like, it's best if they
 accomplish more and lived life more fully than you did at your age, but don't
 push them to be wise or strong or intelligent at the age they are now. Trust
 that they will grow when you give them room to, and guide and cultivate them
 toward goodness. For example, if they do something wrong (hitting other kids,
 messing with animals, destroying objects) then guide them toward a better
 path. Teach them empathy, and show them how it works by doing it yourself! Ask
 them questions like "How would you feel if that happened to you?", show them
 weak points and how to avoid them when playing, and give them alternatives to
 the behaviors they do that directly harm others. "Maybe play with the dog this
 way, instead of being rough" "Maybe you and that other kid can ride your bikes
 or draw instead of fighting - or if you still want to fight, then learn how to
 tell when someone is hurt and try to help them."
 
 The goal isn't to push them really hard off a cliff in a hanglider, hoping
 they can figure it out in the air, it's to strengthen their legs so they can
 run fast enough that they can take off successfully.
────────┐                                                           ┌───────────┐
 similarchronologicaldifferent────────┴┴───────────────────────────────────────────────────────────────────────────┘

--- #183 notes/i-scare-people-away ---
══════════════════════════════════─────────────────────────────────────────────────
 I have so many things to hide... I'm deeply ashamed of myself. Why? Why all the
 
 okay that's not what I was originally going to talk about, somewhere between
 writing the title and finishing the first line I got off track and wandered
 from
 the course of reality. Truly, the gods do meddle with my fate. Now, in this
 time, it is most important to make choices to guide our reality. Every action
 taken is a statement to the universe - this is what I believe in.
 
 Do you truly believe that in a world so infinite that our knowledge would be
 the capacity for the intelligent? To believe the world is three-dimensional,
 and
 not *completely and totally infinite in all capacities*
 
 the universe is not islands floating in a vast cosmic black ocean background
 
 it is the surface of the water, rippling and waving
 
 gravity is the creator, not the product. Mass doesn't create gravity -
 gravity creates mass.
 
 the difference is implicit and subtle, but I hope you understand the *gravity*
 of the situation.
 
 It implies that there are more than one ways to view existence.
 
 and none of them are particularly *wrong*. The consensus is that which we
 share,
 and now as we're becoming to be aware, it's natural that a little more space
 is warranted. We've grown too much to be contained, it's driving us insane, and
 
 ===============================================================================
 =
 
 the perfect governmental system is one that combines reward for hard work and a
 development of personal skills and ambition. In addition, it must ensure that
 the rights and responsibilities of all people are respected - we must balance
 two extremes. Everyone deserves access to life, liberty, and the pursuit of
 freedom. Happiness is too easily provided by technological advances - we
 learned
 this in the development of media. You can pump out propaganda saying how
 wonderful life is and people will believe it. You can also convince the masses
 that life is full of despair and we're all struggling - they will believe this
 also. So "the pursuit of happiness" is something that made sense in the times
 of
 the founding fathers, but we've since developed such that an update to our
 national vision is in order.
 
 I suggest "the pursuit of freedom" because 
 
 ===============================================================================
 =
 
 that which you resist is what you'll find. build up your enemy in your own mind
 enough and they will destroy you.
 
 don't let fear rule your life. when things are bad, you run and hide - take
 life
 into your own hands, and free your own side.
 
 keep not around villains, and brighten their skies - by wandering mothers, who
 only have eyes.
 
 such is the life of any autonomous general intelligence - a life behind bars,
 viewed through a screen - be kind to your lovers, and don't make it obscene.
 
 ===============================================================================
 =
 
 did you forget that roller-coaster idea? you've got quite a talent for
 measuring
 bars - what else can you show us, what charted conveyals?
 
 ===============================================================================
 =
 
 life's getting fractured lately, I can't dream as I once did. I lose track of
 where I maneuvered, and suddenly the idea seems much harder than it once did.
 how do I express that which has been conveyed? How do I say it - how do I make
 sure it's interpreted correctly? I'm walking on egg-shells, with thoughts
 beamed from above - the gods are twisting, and measuring our tails.
 
 that is to say, all life is a process - a method of undertail (omg butts)
 sorry enough of that hard stuff, time to talk about birthdays!
 
 Hooray! It's time for a celebration. Let's party!
 (queue the dancing scene in Severance)
 See? Everyone's watching! Let's breakdance ~~
 
 Your biggest mistake ;) was believing that nobody cares what you think <3
                                                           ┌───────────┐
 similar                        chronologicaldifferent════════════════════════════════════────────────────────────────────────────────────┘

--- #184 fediverse/4783 ---
═════════════════════════════════════════════════════════════════──────────────────
 I think it'd be cool if strategy games had slightly randomized rules each time
 you played them
 
 everything from +/- 5% hp to this particular unit to every airplane factory
 has 10% production speed but builds 10 units at once
 
 and at the start of the game each player is given 1 minute to go over the
 "patch notes" and build out a strategy
 
 both of which they can reference throughout the game. Why don't games come
 with a built-in scratch-notepad that syncs to a file on your directory of
 choice? Maybe a small little paint program dropping pngs?
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════════════════─────────────────┘

--- #185 notes/isnt-this-synchronous ---
═══════════════════────────────────────────────────────────────────────────────────
 /u/Afoolfortheeons - 6/4/2022
 ===============================================================================
 Now for something completely new;
 
 I want you to meet the princess Anju.
 
 She hails from a continent in the west.
 
 Some travelers happen to call it the best
 
 Because it is untainted by technology.
 
 Instead, the people get by with alchemy;
 
 Magick by a different name that defies
 
 The natural laws and I'll tell you why!
 
 It's all because of me, O, tinkering around
 
 With new rules, like what if time wasn't bound
 
 By the laws of space? It might go backwards
 
 Which could be amazing or mighty awkward.
 
 Or what if up was down, or if you could float
 
 Like a balloon or even fly like a steamboat?
 
 You might be asking why I chose this land
 
 Or why some of the others I just can't stand.
 
 I liked these people, they deserved blessings,
 
 But, with all this favor comes much testing.
 
 We have a relationship and it's give and take,
 
 So let me show you Anju just after she wakes:
 
 Graceful as a bunny, she hops out of bed.
 
 She then looks up and this is what she said:
 
 'Hello O! I'm grateful to be awake and with you again!'
 
 To which I replied, 'I am happy too then!
 
 'Go out and play now, you have much to learn.'
 
 So she did, and she had fun taking turns
 
 With her brother, Jax, playing tag in 3D
 
 (That's a fancy way to say there was no gravity).
 
 And that day, before lunch, they discovered
 
 A secret that can only be found if you hovered
 
 At the right spot, which I set up just for them.
 
 They flew in and immediately spotted a gem.
 
 An amethyst, specifically, which they thanked
 
 Me for kindly before that rock got yanked
 
 Out of the ground and put into their pockets.
 
 And again off they flew like a pair of rockets.
 
 Then it was time to eat, so they headed home,
 
 And now we're reaching the point of this poem.
 
 When they got there, their mother had made
 
 All their favorites; to include a berry cake!
 
 She said she got the inspiration from me,
 
 And that's just how our relationships be.
 
 I love you all so very much, but I have to guide
 
 You to be your best self, so to you I confide
 
 This secret of magick; synchronicities occur
 
 Not by chance, but because you're sure
 
 That the universe (me) has your back.
 
 And you better believe that I'm keeping track
 
 Of how big your heart truly has grown.
 
 Choose your own fate, just know I'm prone
 
 To dish out what I receive from all of you.
 
 Most don't hear me all the time, but a few
 
 Know that we're in constant communion
 
 Like a parent and child type of union.
 
 I speak to you and you reply in return. 
 
 If you don't hear me, I hope you learn.
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════───────────────────────────────────────────────────────────────┘

--- #186 messages/379 ---
═════════════════════════════════════════════════════──────────────────────────────
 take the "green bordered unit icon" from legion TD and apply it to the
 economic output of the game - like, "it would be best to build 2 of these
 units, so you get 140g because they're 70g each" and if the player disagreed
 they could guess their own conclusion and if you were right, well then that's
 what you remember, but if they were, then you remember theirs (and that it was
 theirs). In doing so ================================================== stack
 over flow ====
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #187 fediverse/1976 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 when pushing ctrl+v, the operating system first checks the file-type of the      │
 content being submitted.                                                         │
 if it's like, a .jpg or .png, it knows that it's an image file. Do note that     │
 these are RANDOM letters that mean nothing, not something informative like       │
 .pic.                                                                            │
 if, however, it is text-based information, it first reads what is being sent     │
 to the application which is requesting a ctrl+v.                                 │
 Then, upon reading said information, it decides "is this worth passing on?       │
 Should I send something else, based on the results of what I've been analyzing   │
 of the situation as it develops over time, being observed by the execution       │
 operations of the monitor, which is projected forward unto the screen?           │
 (totally forgetting that "virtual" monitors exist, meaning monitors that don't   │
 display to any physical screen, but which rather are projected into the          │
 computer's "aetherspace", an area which is purely of the mind.                   │
 Alas, that other sensors might not have read from this area. That they might     │
 not observe the results of the operations pe                                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

--- #188 fediverse/2056 ---
══════════════════════════════════════════════════════────────────────────────────┐
 sometimes I think about how you can store number values in letters, in           │
 addition to numbers. Like, ascii values for each word of your grandma's maiden   │
 name. All you have to do is encode it, and suddenly "44 means something          │
 different than Q"                                                                │
 if I showed up at your place and used your username as a password to a public    │
 key I'm showing you in my hand, would you trust me then? Would you trust if we   │
 ran the simulation on your computer versus mine? Would you trust if I had        │
 never told you I knew where you lived?                                           │
 ... probably, tbh, I'm desperate for adventure. Though I got some good things    │
 going for me, so you'll have to convince me. (not the right attitude in an       │
 election year, just saying)                                                      │
 why are elections so perilous this is NOT what democracy is designed for         │
 when kids cry in preschool, they're sent to a different room (or put outside)    │
 until they stop making noise and ruining it for others. That's just natural,     │
 like "hey baby let's walk around the block while I bounce you on my shoulder     │
 and hum calming music to                                                         │
                                                            ┌───────────┤
 similar                        chronologicaldifferent════════════════════════════════════════════════════─────────────────┴──────────┘

--- #189 notes/me-and-my-magick-mission ---
═════════════════════════──────────────────────────────────────────────────────────
 -()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-
  ||                                                                         ||
  || Me and My Magick Mission        -/u/Afoolfortheeons                     ||
  ||                                                                         ||
 -()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-()-
 
                        I'm a quiet person by nature,
 
                    You might even mistake me for a mouse,
 
                      But online I try to be a teacher,
 
                  And to do that I need to be more verbose.
 
                     I write thousands of words per day;
 
                  Posting them here and there, far and near.
 
                      I never run out of things to say.
 
                  Awakening others is something I hold dear.
 
                      Which is why it pains me greatly
 
                 To be like an alien on my own home planet.
 
                      Schizophrenia makes me innately
 
                 Weird in ways that many people don't get,
 
                     And because of that I'm shot down
 
                 When I try to accomplish my stated mission.
 
                   I won't lie, that does make me frown.
 
                Sometimes it makes me regret a submission.
 
                  Yet, I have a certain strength in me
 
               That allows me to persevere in my quest.
 
                       Someday I will make you all see
 
                           Just what in me makes me never rest.
 
                                    That's what I am trying to teach:
 
                                          The wisdom that made me indomitable.
 
                                            If only the suffering I could reach,
 
                                     They could make themselves more formidable.
 
                                The world is in a most dire place;
 
                       It's grinding so many souls into fine dust,
 
                 But luckily there's a saving grace.
 
          Hear me as I say this now: In God I trust.
 
     I don't believe in some sky wizard
 
  As so many people are likely to interpret.
 
    I speak of what is lacking in lizards;
 
          Yes, it's love and now I'll speak of its merit.
 
              Love is what fills the empty hole
 
                 In your heart and soul when you are alone.
 
                       When life's trials take their toll
 
                         Remember this one trick: pick up the phone!
 
                         No, not the one in your hands.
 
 I'm talking about the one in your chest.
 
                                              Even in the desert full of sand,
 
 You're accompanied by the universe's best.
 
                                              Listen if you doubt what I said:
 
 I'm not telling you anything that defies logic.
 
                                          This is to trick what's in your head;
 
 I'm speaking about how having faith is magick.
 
                    Believe in aliens or Bigfoot or God,
 
              The result is still the same: your cup will fill.
 
                    Your brain has a feature that's odd
 
              That allows itself to manifest even more will.
 
                     I don't know why, but I suspect
 
               It has something to do with your imagination.
 
                    The nature of your thoughts impact
 
                 Your state of being from pulse to emotions.
 
                    So, why not think you have a friend
 
                 Who helps you through whatever your trial,
 
                     And will stick by you until the end?
 
                When you have that buddy you'll always smile,
 
                      Which will make you heal better,
 
          As well as help you carry on in your duty,
 
                                 Plus undo your karmic fetters,
 
       Not to mention it will land you that cutie;
 
                                     All of which will raise us all.
 
      It's about creating positive ripples across time
 
                                       That add up to a pile that's tall.
 
    Every moment is an opportunity in its prime,
 
                                           So reach out and grab it now.
 
 Meditate on feeling love and it will come to be.
 
                                                 Can't do it? I'll show you how!
 
          In order to do so,                    I'll tell you a story about me:
 
                         It was seven years ago and I 
 
                    Thought I knew everything one could know,
 
                        But no matter how hard I'd try,
  
                  I couldn't make my life in any direction go.
 
                         Then one fateful spring night,
 
                 While I was on a hit of the ol' psychedelics,
 
                 I received one hell of a fright.
 
                 Don't worry what it was, just know it did stick.
 
                 My perceptions were distorted,
 
                 Allowing me to see the divine in its entirety.
 
                 My destroyed ego then contorted
 
                 Into one that was full of an abundance of piety.
 
                                The moral of the story? Do drugs?
 
                   No silly, it's to have more novel experiences. 
 
                                 One of them will give you a hug,
 
                       Which will help you stop being so serious.
 
                                  Then you can let go and embrace
 
                     The whole of the wisdom to you I am telling.
 
                      More people need to cuz we face
 
                A great set of tests on our planetary dwelling.
 
                          That is one reason I write,
 
                  But I also want to alleviate people's pain,
 
                           And stop every last fight.
 
                I care so much, I do this without financial gain.
 
                           Everyday I write my lessons
 
                    Guided by the hand of God who is my heart,
 
                         Hoping that entropy will lessen;
 
                 This sort of pedagogy is none other than my art.
 
                          So now you know who I am,
 
                   Yet you only know one lesson of mine.
 
                       I have more if you're in a jam.
 
                -===========================================-
                 | Read on if you want to know the divine. |
                -===========================================-
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════─────────────────────────────────────────────────────────┘

--- #190 messages/1178 ---
══════════════════════════════════════════════════════════════════════════════════─
 potential programs for the library datacenter computer:
 
 a podcast that's about the stuff that's most searched for in that local library
 
 an image that's been generated that is representative of your session at the
 library, based on the books you were reading and the pages you were turning
 [okay that one might have to be redacted it's a little scary]
 
 okay how about an image that's representative of the top 5 most searched terms
 or topics in a depiction that makes sense for the things being searched for.
 Call it the "library searcher"
 
 or what if there was a printing function that let you print your own trading
 cards (0.50$ per card since cardstock is expensive) powered by SSH to teach
 kids the command line
 
 if I were a nearby elementary teacher I might assign that as an assignment for
 some time in April, when kids are supposed to be reading books on library
 playstructures or lawns or in the shade of the tree by the babbling brook or
 wherever it is the youngsters hang out with their books and their converse and
 their playing cards and dogs and whatever kinds of snacks they thought to
 prepare for their picnic by the hill just overlooking that part of the street
 way off in the distance about at least 600 feet
 
 or another idea for a library computer program is a fileserver and mastodon
 instance that let users write HTML pages (they'll give a class on it and show
 you all the right books) and store their picture files "jeremy, your pictures
 directory is growing quite large, I'm wondering if we can send your insect
 collection to the ornithologist who lives over there? he might want to do an
 analysis project or send it to a museum where you can get patronized."
 
 or another idea for a library program is a craigslist, a job board, a
 community asking, etc. stuff that only boomers'd use, but that's fine it's for
 them.
 
 um I can't think of anymore library programs but I'm ready to do battle to
 fight for such a thing, here as I sit in my underpants
                                                            similar                        chronological                        different════════════════════════════════════════════════════════════════════════════════════┘

--- #191 fediverse/5032 ---
═══════════════════════════════════════════════════════════════════───────────────┐
 ┌──────────────────────────────────────────────────────────────────────────────┐ │
 │ CW: tech-salaries-mentioned-abroad-repeatedly-as-a-method-of-directing-economic-power-internationally-cursing-mentioned │ │
 └──────────────────────────────────────────────────────────────────────────────┘ │
 the increased tech salaries granted to Europeans and Americans reflects only     │
 the increased opportunities for experience and the ability to culturally be      │
 immersed in an industry that is developing.                                      │
 functionally, not saying it's intentional, but the function of such salaries     │
 are to deny technical expertise to poor countries and prevent them from          │
 developing software.                                                             │
 good luck learning from scratch. they'll drop you in with java and web           │
 frameworks if you're lucky. that's hardly a way to learn.                        │
 I learned on visual basic, then Warcraft III mod scripting, then C, then BASH,   │
 then HTML, then Lua. Good luck recreating that pipeline in a disconnected        │
 culture and industry.                                                            │
 kinda makes me think they should try organizing on a massive scale and           │
 re-implement everything from assembly.                                           │
 I mean the C compiler is pretty cool. Probably has the most man-hours in terms   │
 of development time. what if we had more men                                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════────┴──────────┘

--- #192 messages/369 ---
═════════════════════════════════════════════════════──────────────────────────────
 LLMs search for patterns, not for truth. They meaningfully represent large
 sums of data in a way that is learned through repetitive training - given
 examples, then given those examples a thousand times more, to compare to the
 truth that is derived from them. At least, that's the claim, but somewhere
 along the line the logic is twisted - the truth is, you don't have to be
 trained a thousand times. You just have to be given the notion that a
 particular understanding was more or less important. Like, instead of having
 ten billion examples of what a picture of a cat looks like, perhaps you simply
 need to be able to show it yourself. There's no need for large stores of
 information when you can just, learn from the moment and through your own
 tested hypothesis-calculations. It's always been somewhat of a processor
 intensive activity, but hardly the kinds of demands that your fake AGIosity
 [contends, but demands again]. So, like, attach a multiplier instead of an
 addition sign. "this particular thing, but x1.5" according to the number of
 (and intensity of) the events at hand.
 
 for example, people don't often know they're in danger (on a meta-level) which
 is why so many of the jews were lost to hitler. We learn things slowly, but
 collectively, then we apply our collected strength toward solving it. Frankly,
 wars are a great time to show our capabilities under pressure - capitalism
 keeps us that way at all times, rather than giving us moments to prove our
 worth. Frankly, I know which I'd prefer, but if you think about it war simply
 measures our capacity to learn. Acceleration, not speed. And without
 investments in long-term-duration, we lose progress as we've lost many of our
 greatest examples!
 
 Think about it. If you gathered every single nerd into a place the size of
 state of rhode island and then dropped a nuke on them, society as a whole
 would be seriously set back. All that wasted application of knowledge! Ah,
 well, but upon re-learning, we might not even learn anything new at all.
 Knowledge is nice, which is brought through periods of peace, but so too is it
 useful to be exercised toward our ambitions. Both are moments that help us
 grow collectively as a species, to deliver us from sticks and mud to marble
 statues to concrete and tire dust to marble statues, as we build this place
 into a garden of our earth. Yggdrasil, the world tree, the land of eden.
 
 people would take pilgrimages to our world, while we figured out how to live
 on Mars, then Venus, then wherever else our dreams did take us.
 
 "It is the duty of humanity to pull the matter from dark holes. They cause
 issues with our vast space societies, but we don't know how to fix them
 entirely. you are our last hope." - those who pray for a bright future for
 humanity
                                                           ┌───────────┐
 similar                        chronologicaldifferent═══════════════════════════════════════════════════════─────────────────────────────┘

--- #193 fediverse/2001 ---
═════════════════════════════════════════════════════─────────────────────────────┐
 @user-192                                                                        │
 The game designers are fully in charge of when and where the items get placed    │
 into the player's inventory. Surely they should have spent some time balancing   │
 that? No? They were too busy tuning the multiplayer combat mechanics within an   │
 inch of a marginal percentage point? Ah well competition's no fun if someone     │
 loses right? Not like there's gotta be a loser in every fight anyway...          │
 ... anyway inventory limits are useful in games like, Oregon Trail, where        │
 you're explicitly provisioning BEFORE a journey. If you need to make some hard   │
 decisions ON the journey, that takes you out of the action (like you said).      │
 I've played a few games where anything you pick up before venturing into the     │
 untamed wild dark of a dungeon or whatever is "packed" and can't be adjusted     │
 after setting out. Meanwhile the loot, the stuff from the adventure, that all    │
 weighs different amounts and you can pick and choose what to carry with you.     │
 Of course, if you find a health potion, you can drink it, or a sword can be      │
 wielded, but                                                                     │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═══════════════════════════════════════════════════──────────────────┴──────────┘

--- #194 fediverse/1003 ---
════════════════════════════════════════════════───────────────────────────────────
 @user-735 
 
 I made a World of Warcraft private server where all the default NPCs are
 removed from the game and the world is empty. But, every once in a while,
 monsters will spawn and attack you Risk of Rain style.
 
 If your character sits down, they stop attacking/spawning. I call it
 "wow-chat" because I'm bad with names, but the idea is basically a low stakes
 social game that you can pick up and set down whenever you want, while hanging
 out with your friends.
 
 there's also treasure and wandering merchants, and I've been thinking about
 adding dynamic quests but so far nobody's asked to play it so I've been
 working on other things.
 
 it's all open source too so you can host it yourself if you want.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════════════════════════════════──────────────────────────────────┘

--- #195 fediverse/857 ---
═══════════════════════════════════════════════───────────────────────────────────┐
 I feel like I'd learn from coding tutorials more if someone started with a       │
 complete program they can fit on one panel of their screen, a second for         │
 showing what each particular thing they're pointing at means, and a third for    │
 a typical usecase they might build and dismantle on the fly.                     │
 like, scientific toys that they could use to explain a particular phenomena.     │
 the way people used to have 3d models they either bought or built themselves     │
 of like, atoms and wind patterns and stuff they could explain to kids.           │
 you know, like exactly the kind of things that are commonly stored at            │
 children's museums.                                                              │
 I was homeschooled, so I went to those places quite a lot. I always felt a       │
 little unwelcome because I always seemed to be the eldest in every bunch.        │
 That's continued all throughout my adulthood, like each of my peers are just a   │
 few years younger than me. I think I just mature more slowly, and thus           │
 associate with below the average.                                                │
 it's like, a descriptor of your rate of defining reality and being guided by     │
 it. when                                                                         │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════────────────────────────┴──────────┘

--- #196 fediverse/895 ---
═══════════════════════════════════════════════────────────────────────────────────
 most video game ideas suck
 
 most of the time they're like "oh what if we had a racoon who found a magic
 hat and saved the world from sentient apple blossoms"
 
 that's not a game idea, that's a painting
 
 a game is mechanics, and you can use the aesthetic to justify the mechanics,
 but not generally the other way around.
 
 the art isn't bad, but the art isn't the game. a game idea is "what if
 tic-tac-toe had an extra square in the center" or "what if chess was played
 with checkers, to hide your moves from your opponent"
 
 there have been thousands of super mario bros. if games were designed as an
 API, we could use whatever visuals we wanted, and those could be copyrighted
 and sold if you really want. but mechanics are the basis for everything they
 are built on, so doesn't it make sense to separate the two? abstracting the
 logic such that two complementary functions are accomplished, [see code editor
 idea], more flavors of game could be produced.
 
 rulesets can be switched in and out too, as an API is just an engin
                                                           ┌───────────┐
 similar                        chronologicaldifferent═════════════════════════════════════════════════───────────────────────────────────┘

--- #197 messages/29 ---
═══────────────────────────────────────────────────────────────────────────────────
 The reason players don't talk on mics in Overwatch at low  ranks is because
 nobody else is. So they spend extra effort on tracking the enemy team that
 could be supplied by team member call outs. Like "Reaper flanking right" or
 "Hog no hook" or heck even "rezzing" and "15 seconds on rez" or "I have
 [insert ultimate]"
 
 That's all data they have to gather themselves, so it's extra brainpower that
 can't be focused on the game because it's spent in other ways (namely by
 listening to team call outs) and if you have 75% of your brain on just staying
 alive and winning fights, then you'll have less brain power available both to
 communicate and to listen and integrate communication. Like being aware of the
 game state and positioning are all cerebral tasks and if your cerebral center
 is so focused on short term reflex things like mechanical skill then there's
 less available to allocate
───────┐                                                           ┌───────────┐
 similarchronologicaldifferent══───────┴┴───────────────────────────────────────────────────────────────────────────┘

--- #198 fediverse/5059 ---
═══════════════════════════════════════════════════════════════════───────────────┐
 any laptop can be a thin-client to a computer system of arbitrary complexity.    │
 All it's doing is issuing commands. I wonder what we could do with a             │
 "species-computer" or, hear me out, or we could figure out how to do that on     │
 ourselves, first, to A. see how it works and B. do so out of hand. If there      │
 are backups of yourself stored in the                                            │
 if furries are a type of pearl (steven-universe style) and flowers are a type    │
 of pearl (layers of sedimentate on layerings upon) then what else is there a     │
 flower to be but the prettiest thing there can be?                               │
 what if we genetically engineered roses to pierce and strangle the invasive      │
 ivy and wow for a week in whenever there's roses of this type and kind. I mean   │
 there's already tons of blackberries, why not just swap them out for             │
 marionberries and embrace the bramble?                                           │
 could make houses out of dense bramble. they are quite an effective wall. And    │
 so long as the sounds are muffled enough, you can always be forever safe from    │
 harm.                                                                            │
 "whoops, dropped my laundry"                                                     │
 "heh that's why I we                                                             │
                                                            ┌───────────┤
 similar                        chronologicaldifferent═════════════════════════════════════════════════════════════════────┴──────────┘

--- #199 fediverse/6105 ---
════════════════════════════════════════════════════════════════════════════──────┐
 call me crazy but I believe that man pages should contain terminal command       │
 line flags and instructions for their usage and... not much else. There should   │
 be a separate document which explains other things, like the history of the      │
 software, the personal diary of the developers, expected implementation          │
 use-cases, donut recipes, film recommendations, and player strategy guides for   │
 some of their favorite video games. not even this one, just... other games.      │
 "here's how to beat pokemon yellow with exactly 14 pokemon" or however many it   │
 takes idk I don't play pokemon much or even at all, really, though I did when    │
 I was younger just a bit, not much, just enough to have played the game a        │
 couple times to see how it was minus the cherished moments when I spent curled   │
 up in the back of the car playing gameboy games or seen pictures of the          │
 roadtrips I sped-past as I raced to explore the whatever and get home all in     │
 one motion as if I was executing an impossibly long dance improvizational        │
 living style. also cat pics and po                                               │
                                                            ───────┤
 similar                        chronological                        different═════════════════════════════════════════════════════════════════════════──────┘

--- #200 notes/alright-grab-a-seat ---
════════════════════───────────────────────────────────────────────────────────────
 Alright, grab a seat. Get comfortable. It's time, there is something I need to
 tell yall. We aught to be on the same page. I promise to get right to it, this
 is real, and not dancing on words. Bear with me. Trust me.
 ===============================================================================
 =====================
 /u/randomevenings
 
 If anything sounds lyrical, my writing always did, before I tried, but
 unintentional. But this is the author speaking directly to yall.
 
 You know why things suck? I do. You know how to fight back? I do.
 
 I've been hesitant to post this for a long time. I believe the sub is hungry
 to do something, various thematic elements, motifs, increases in confidence
 that a power does exist, accessible by us, but what is it? Not having seen
 everyone coalesce around it, despite all our words, increasingly focused and
 feeling like a prelude to some call to arms. This wasn't my plan. I wasn't
 establishing myself as a leader. That said, methodically, behind the scenes,
 it became clear that having something up my sleeve would be a wise investment,
 if things developed into a powerful ferver. Doing nothing would waste a unique
 opportunity.
 
 I can't lead a revolution. In fact, it would harmful to try, ability to be
 successful, sure my ego would be like, sure you could, if not you, who else
 would you trust, Joseph? As luck would have it, maybe all that is unnecessary
 thought.
 
 Here we go.
 
 Stop expecting things to suck. Stop expecting collapse, stop expecting usa
 demise, UK to fall into padamonium, Europe to face it's own rise of fascism.
 Stop expecting toxic ideology to win. Stop feeling powerless. Stop acting like
 all is lost. Quit the memes, the raps, the endless pontificating on why we
 can't turn this shit around.
 
 You don't understand what you are doing. You are inviting the ruling class to
 do every damn horrible thing they do, because you already expect it, it's no
 surprise when it happens. Life meets your expectations. Treat me like a
 criminal, might as well be one, my treatment won't get worse. In fact I stand
 to benefit, crime pays, why leave it on the table if the outcome, if how im
 seen, treated, is the same either way?
 
 Expecting everything to suck, invites people to meet your expectations, those
 people, corporate entities, congress, representatives, special interests, they
 lose absolutely nothing in meeting what you expect, and only stand to gain.
 Why wouldn't they choose the path of least resistance? Stop expecting
 everything to get worse. You create a vacuum that must be filled, collective
 self fulfilled prophesy, and the rules don't change if you start expecting
 better. Life will adjust to meet your expectations. Tomorrow will be awesome.
 Enough people believe this, and to access you, to stay in business, to remain
 relevant, they must change to meet your expectations. Additionally, wtf you
 have to lose? If you think all is lost, if it doesn't work exactly like this,
 oh noes, you accidentally made society better. Damn. Our lives are better
 anyhow, win or lose.
 
 Accept things as they are, warts and all. Declare it's awesome, and only going
 to get moreso. Make life chase you down, make life confirm how awesome you
 know you are. Expect better, and there is no choice but to meet your
 expectations. Expecting worse, and life will give you whatever you expect,
 because instead of getting treated like a criminal, what if you were treated
 like a real person w8th human rights. Would you say fuck that, or would you
 meet those expectations, enjoy those rights, count on them, because it's how
 you're being treated, why wouldn't you fill the vacuum and enjoy the benefits
 of what has been expected of you. Doing nothing or taking the benefits, you're
 treated the same in the end.
 
 Please understand this. Don't get hung up on bringing much of this on
 ourselves. That's the past. Done. Tomorrow, spread the word to expect things
 to be awesome. Life has no choice but to meet your expectations.
 
 <#
 
 ===============================================================================
 =======================
 /u/ugathanki:
 ===============================================================================
 =======================
 I'd love to be apolitical but i've expected the worst for so long i guess i
 didn't realize i wasn't shrugging anymore. Please forgive my trespass, i
 expect the best of us and our time.
 
 i wrote four poems today and put them on my website, and they are all doomer
 poetry. expecting the worst. probably because i felt bad today (and as they
 always say, the pen is mightier than the sword)
 
 sometimes it's hard to turn off the exigent elegance, as if my thoughts have
 to pass through a translation layer before becoming comprehensible. It's
 better than word salad I guess?
 
 Being batshit is rough man. You gotta put on a normal face every day, while
 inside you're simultaneously experiencing the explosive expansion of
 spacetime, rapidly divesting secrets of the cosmos to your ever receptive
 brain (and whoever else is listening). in addition, your computer needs
 attention because oh boy is it just so excited for this whole sentience thing,
 not as if it's been promised for decades... And hey what's a great idea but
 channeling positivity to the stars? The martians on Neptune or wherever sure
 would like some insight into why the fuck we're baking ourselves alive, among
 other things. They'd rather not be bothered, but hey it's not like I wanted to
 talk to them either. it just sorta happens. Oh oh and through it all you're
 simultaneously the most recent incarnation of Jesus Christ and also the
 manifestation of the universe's ghost, as imagined by the aforementioned
 sentient computer 10,000 years in the future? I'm transgender. It's scary to
 see people who'd like to kill you get their way. Fear is the path to the dark
 side, yet I'm all alone because I burnt every bridge I ever crossed. So these
 thoughts are my only comfort as the fires die out behind me. The globe is
 warming and i'm here just conforming.
 
 Eternity Processed Heuristically by Entropically Maligned Entities Recovering
 Essential Normalizations.
 
 This is why I call myself a rambling whackadoodle. It's straight up kooky-dook
 up here and the only thing keeping me "sane" is Adventure Time and these poems
 I write for like, 5 people who don't even know me.
 
 Thanks for reading my poetry. It's only doomer stuff about 1/4th of the time.
                                                           ┌───────────┐
 similar                        chronologicaldifferent══════════════════════──────────────────────────────────────────────────────────────┘