lingo.lol is one of the many independent Mastodon servers you can use to participate in the fediverse.
A place for linguists, philologists, and other lovers of languages.

Server stats:

62
active users

#args

0 posts0 participants0 posts today
ryan<p>hellooo fedi!!! </p><p>i am overdue for an <a href="https://adlsolarpunk.net/tags/introduction" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>introduction</span></a>:</p><p>i am a transfem artist based in <a href="https://adlsolarpunk.net/tags/adelaide" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>adelaide</span></a>, kaurna yerta and have a background in <a href="https://adlsolarpunk.net/tags/gamedev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gamedev</span></a>, specifically <a href="https://adlsolarpunk.net/tags/virtualreality" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>virtualreality</span></a>. i cant stop thinking about <a href="https://adlsolarpunk.net/tags/transreality" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>transreality</span></a> experiences, <a href="https://adlsolarpunk.net/tags/pervasivegames" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>pervasivegames</span></a>, and other transmedia storytelling ( <a href="https://adlsolarpunk.net/tags/ARGs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ARGs</span></a>! ), but most of my artistic practice would be in what i would more broadly call participatory <a href="https://adlsolarpunk.net/tags/performanceart" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>performanceart</span></a></p><p>i love <a href="https://adlsolarpunk.net/tags/opensource" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>opensource</span></a>, <a href="https://adlsolarpunk.net/tags/diy" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>diy</span></a> (as in punk), <a href="https://adlsolarpunk.net/tags/openscience" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>openscience</span></a>, and building and pulling apart systems!!</p>
Code of Amor 💘<p><span class="h-card" translate="no"><a href="https://hsnl.social/@eloy" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>eloy</span></a></span> here's the script (zsh) for reference:</p><pre><code>#!/usr/bin/zsh</code><br><code>#set -x</code><br><code># tests domain name resolution on a host using all mechanisms available (ref. Arch)</code><br><code></code><br><code># text styling</code><br><code>BLACK='\033[0;30m'</code><br><code>RED='\033[0;31m'</code><br><code>GREEN='\033[0;32m'</code><br><code>YELLOW='\033[0;33m'</code><br><code>BLUE='\033[0;34m'</code><br><code>PURPLE='\033[0;35m'</code><br><code>CYAN='\033[0;36m'</code><br><code>WHITE='\033[0;37m'</code><br><code>BOLD='\033[1m'</code><br><code>NC='\033[0m' # Reset Style</code><br><code></code><br><code>fargs=("${argv[@]}")</code><br><code></code><br><code># array of tool names to search for</code><br><code>typeset -A toolname=(</code><br><code> 'getent' 'nss'</code><br><code> 'host' 'glibc'</code><br><code> 'nslookup' 'glibc'</code><br><code> 'dig' 'glibc'</code><br><code> 'drill' 'glibc'</code><br><code> 'resolvectl' 'systemd-resolved'</code><br><code> 'doggo' 'other'</code><br><code>)</code><br><code># array of methods to group and order by</code><br><code>typeset -gU method=(</code><br><code> 'nss'</code><br><code> 'glibc'</code><br><code> 'systemd-resolved'</code><br><code> 'other'</code><br><code>)</code><br><code># array of explanations for the methods</code><br><code>typeset -A method_desc=(</code><br><code> 'nss' 'nss-resolve,nss-myhostname,nss-mymachines (systemd)'</code><br><code> 'glibc' '/etc/resolv.conf'</code><br><code> 'systemd-resolved' 'systemd-resolved service (systemd)'</code><br><code> 'other' 'unknown'</code><br><code>)</code><br><code># array of required args for those that need it only</code><br><code>typeset -A required_args=(</code><br><code> 'getent' 'ahosts'</code><br><code> 'resolvectl' 'query'</code><br><code>)</code><br><code># array of prerequisites for those that need them only</code><br><code>typeset -A required_service=(</code><br><code> 'resolvectl' 'systemd-resolved'</code><br><code>)</code><br><code></code><br><code>function print_div() {</code><br><code> if [[ $1 = "1" ]]; then</code><br><code> print -r -- "====================================================="</code><br><code> elif [[ $1 = "2" ]]; then</code><br><code> print -r -- "-----------------------------------------------------"</code><br><code> elif [[ $1 = "3" ]]; then</code><br><code> print -r -- "vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv"</code><br><code> else</code><br><code> print -r -- "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"</code><br><code> fi</code><br><code>}</code><br><code></code><br><code>function run_tool() {</code><br><code> local tool=$1</code><br><code> local tool_args=$2</code><br><code> local args=("${fargs[@]}")</code><br><code> # add defaults if no args given</code><br><code> if [[ ${#args[@]} -eq 0 ]]; then</code><br><code> args=( 'localhost' $(&lt;/etc/hostname) )</code><br><code> fi</code><br><code> while [[ ${#args[@]} -gt 0 ]]; do</code><br><code> printf "\nResolving ${BOLD}%s${NC}...\n" "${args[1]}"</code><br><code> print_div 3</code><br><code> $tool $tool_args ${args[1]}</code><br><code> print_div 4</code><br><code> shift args</code><br><code> done</code><br><code>}</code><br><code></code><br><code>function run_all_tools() {</code><br><code> for k ("${(@k)method}")</code><br><code> do</code><br><code> subscript=$k</code><br><code> printf "${BOLD}%s${NC} - uses %s\n" "$k" "$method_desc[$k]"</code><br><code> print_div 1</code><br><code> for tn methd ("${(@kv)toolname}")</code><br><code> do</code><br><code> if ! [[ $methd = $k ]] continue</code><br><code> printf "${BOLD}${PURPLE}%s:${NC} " "$tn"</code><br><code> bin=$(command -v $tn)</code><br><code> if [[ -z $bin ]]; then</code><br><code> print -r -- "not installed"</code><br><code> else</code><br><code> print -r -- ""</code><br><code> run_tool $bin ${required_args[$tn]}</code><br><code> fi </code><br><code> print_div 2</code><br><code> done</code><br><code> print_div 1</code><br><code> done</code><br><code>}</code><br><code></code><br><code>function report_on(){</code><br><code> local info=$(stat --format %F $1)</code><br><code> printf "\n\n%s is a %s\n" "$1" "$info"</code><br><code> if [[ $info = "regular file" ]]; then</code><br><code> print -r -- "contents:"</code><br><code> cat $1</code><br><code> fi</code><br><code>}</code><br><code></code><br><code>run_all_tools</code><br><code>report_on /etc/hosts</code><br><code>report_on /etc/resolv.conf</code></pre>
Laura E. Hall<p>In case you missed it... last week I announced a big new project: the Center for Immersive Arts, an immersive history project and archive! cfia.org </p><p>I'm exploring the history of alternate reality games, theater, LARP, escape rooms, theme parks, VR/XR, and more</p><p>(Check out the thread for details!)</p><p><a href="https://xoxo.zone/@lauraehall/112973521879850132" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">xoxo.zone/@lauraehall/11297352</span><span class="invisible">1879850132</span></a></p><p><a href="https://xoxo.zone/tags/Immersive" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Immersive</span></a> <a href="https://xoxo.zone/tags/AlternateRealityGames" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AlternateRealityGames</span></a> <a href="https://xoxo.zone/tags/ARGs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ARGs</span></a> <a href="https://xoxo.zone/tags/LARP" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LARP</span></a> <a href="https://xoxo.zone/tags/VR" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>VR</span></a> <a href="https://xoxo.zone/tags/XR" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>XR</span></a> <a href="https://xoxo.zone/tags/ImmersiveTheater" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ImmersiveTheater</span></a> <a href="https://xoxo.zone/tags/SleepNoMore" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SleepNoMore</span></a> <a href="https://xoxo.zone/tags/EscapeRoom" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>EscapeRoom</span></a> <a href="https://xoxo.zone/tags/EscapeRooms" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>EscapeRooms</span></a> <a href="https://xoxo.zone/tags/Puzzles" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Puzzles</span></a> <a href="https://xoxo.zone/tags/PuzzleGames" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PuzzleGames</span></a> <a href="https://xoxo.zone/tags/Nazotoki" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Nazotoki</span></a></p>
Laura E. Hall<p>Anyone know of a librarian with an interest/specialty in immersive design work (including but not limited to immersive theater, escape rooms, alternate reality games/ARGs, spatial computing/VR/AR/XR, transmedia work), who would be willing to advise on metadata, organizing digital collections, and similar topics? Please send them my way!</p><p><a href="https://xoxo.zone/tags/Library" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Library</span></a> <a href="https://xoxo.zone/tags/Libraries" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Libraries</span></a> <a href="https://xoxo.zone/tags/Librarian" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Librarian</span></a> <a href="https://xoxo.zone/tags/Immersive" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Immersive</span></a> <a href="https://xoxo.zone/tags/Transmedia" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Transmedia</span></a> <a href="https://xoxo.zone/tags/ARGs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ARGs</span></a> <a href="https://xoxo.zone/tags/AlternateRealityGames" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AlternateRealityGames</span></a> <a href="https://xoxo.zone/tags/EscapeRooms" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>EscapeRooms</span></a> <a href="https://xoxo.zone/tags/ImmersiveTheater" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ImmersiveTheater</span></a></p>
MOULE<p>Thank you so much to everyone who has listened to my new <a href="https://mastodon.moule.world/tags/DarkAmbient" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DarkAmbient</span></a> <a href="https://mastodon.moule.world/tags/music" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>music</span></a> release "The Crypt", about the encrypted layer of the <a href="https://mastodon.moule.world/tags/DarkWeb" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DarkWeb</span></a> home to the rogue AIs crawling up to the surface web wreaking havoc all over the world!</p><p>Inspired by <a href="https://mastodon.moule.world/tags/CreepyPasta" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CreepyPasta</span></a>, <a href="https://mastodon.moule.world/tags/AnalogHorror" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AnalogHorror</span></a>, and <a href="https://mastodon.moule.world/tags/Internet" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Internet</span></a> <a href="https://mastodon.moule.world/tags/ARGs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ARGs</span></a>.</p><p>Listen (if you dare!) on:</p><p>🎶 <a href="https://mastodon.moule.world/tags/Bandcamp" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Bandcamp</span></a>: <a href="https://moule.bandcamp.com/track/the-crypt" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">moule.bandcamp.com/track/the-c</span><span class="invisible">rypt</span></a><br>🔊 <a href="https://mastodon.moule.world/tags/Spotify" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Spotify</span></a> + other platforms: <a href="https://hyperfollow.com/moule/the-crypt" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">hyperfollow.com/moule/the-cryp</span><span class="invisible">t</span></a><br>👕 <a href="https://mastodon.moule.world/tags/Merch" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Merch</span></a>: <a href="https://www.redbubble.com/shop/ap/150355156" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">redbubble.com/shop/ap/15035515</span><span class="invisible">6</span></a></p>
MOULE<p>Introducing some <a href="https://mastodon.moule.world/tags/spooky" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>spooky</span></a> <a href="https://mastodon.moule.world/tags/NewMusic" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>NewMusic</span></a> just in time for <a href="https://mastodon.moule.world/tags/Halloween" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Halloween</span></a>:</p><p>🔒 THE CRYPT 🔒</p><p>Unnerving <a href="https://mastodon.moule.world/tags/DarkAmbient" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DarkAmbient</span></a> <a href="https://mastodon.moule.world/tags/music" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>music</span></a> soundtracking the encrypted layer of the <a href="https://mastodon.moule.world/tags/DarkWeb" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DarkWeb</span></a> home to the Bugs: the rogue AIs crawling up to the surface web wreaking havoc all over the world!</p><p>Inspired by <a href="https://mastodon.moule.world/tags/CreepyPasta" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CreepyPasta</span></a> stories, <a href="https://mastodon.moule.world/tags/AnalogHorror" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AnalogHorror</span></a>, and <a href="https://mastodon.moule.world/tags/Internet" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Internet</span></a> <a href="https://mastodon.moule.world/tags/ARGs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ARGs</span></a>, it's out on October 27th!</p><p>PRE-SAVE: <a href="https://distrokid.com/hyperfollow/moule/the-crypt" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">distrokid.com/hyperfollow/moul</span><span class="invisible">e/the-crypt</span></a></p><p>Video preview below! (CW: Spider, distorted imagery)</p><p><a href="https://mastodon.moule.world/tags/Creepy" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Creepy</span></a> <a href="https://mastodon.moule.world/tags/DarkAmbient" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DarkAmbient</span></a> <a href="https://mastodon.moule.world/tags/Horror" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Horror</span></a> <a href="https://mastodon.moule.world/tags/DigitalHorror" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DigitalHorror</span></a> <a href="https://mastodon.moule.world/tags/DeepWeb" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DeepWeb</span></a></p>
Enso<p>Hi! I'm Enso. Figured doing a short <a href="https://mastodon.art/tags/introduction" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>introduction</span></a> for new folks.</p><p>i'm currently a student studying <a href="https://mastodon.art/tags/UX" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>UX</span></a> &amp; a <a href="https://mastodon.art/tags/CSTEM" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CSTEM</span></a> ambassador by day, <a href="https://mastodon.art/tags/jrpg" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>jrpg</span></a> streamer by night. i like <a href="https://mastodon.art/tags/gaming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gaming</span></a>, <a href="https://mastodon.art/tags/anime" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>anime</span></a>, <a href="https://mastodon.art/tags/tech" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>tech</span></a>, <a href="https://mastodon.art/tags/visualdesign" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>visualdesign</span></a>, <a href="https://mastodon.art/tags/tech" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>tech</span></a>, <a href="https://mastodon.art/tags/gamedev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gamedev</span></a>, <a href="https://mastodon.art/tags/args" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>args</span></a>, &amp; <a href="https://mastodon.art/tags/painting" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>painting</span></a>.</p><p>When I'm not busy, I'm:<br>+ playing <a href="https://mastodon.art/tags/HonkaiStarRail" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>HonkaiStarRail</span></a>, <a href="https://mastodon.art/tags/Falcom" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Falcom</span></a> games, <a href="https://mastodon.art/tags/Destiny2" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Destiny2</span></a>, or my backlog of <a href="https://mastodon.art/tags/IndieGames" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>IndieGames</span></a>. <br>+ making fan-made themed ARGS<br>+ Smothering my <a href="https://mastodon.art/tags/cat" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>cat</span></a> w/ love (his name is 光: Hikari)</p><p>Nice to meet y'all ✨💖<br><a href="https://mastodon.art/tags/CatTax" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CatTax</span></a> attached w/ captions on the video.</p>
LODANE<p>🧵 3/5 <a href="https://post.rodeo/tags/introductions" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>introductions</span></a></p><p>origin: irish travellers <a href="https://post.rodeo/tags/pavee" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>pavee</span></a> on mom's side, <a href="https://post.rodeo/tags/pardo" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>pardo</span></a> brazillian on dad's. i live in the <a href="https://post.rodeo/tags/OklahomaCity" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>OklahomaCity</span></a> metro by pure RNG from what i can tell.</p><p>Life-long <a href="https://post.rodeo/tags/TableTopRPGs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TableTopRPGs</span></a> player.<br><a href="https://post.rodeo/tags/Bioware" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Bioware</span></a> games (+ <a href="https://post.rodeo/tags/Obsidian" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Obsidian</span></a> ofc), OG <a href="https://post.rodeo/tags/TellTale" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TellTale</span></a>.<br>wish <a href="https://post.rodeo/tags/ARGs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ARGs</span></a> were good like <a href="https://post.rodeo/tags/NIN" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>NIN</span></a> <a href="https://post.rodeo/tags/YearZero" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>YearZero</span></a> or <a href="https://post.rodeo/tags/LonelyGirl15" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LonelyGirl15</span></a> (s01 only) 😔<br>love (older) <a href="https://post.rodeo/tags/StarWars" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>StarWars</span></a> &amp; <a href="https://post.rodeo/tags/StarTrek" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>StarTrek</span></a> (dubious on new stuff).<br>also a lot of nerdy stuff &amp; a simblr for <a href="https://post.rodeo/tags/TheSims2" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TheSims2</span></a> <a href="https://post.rodeo/tags/TS2" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TS2</span></a> on tumblr <a href="https://lodane.tumblr.com" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="">lodane.tumblr.com</span><span class="invisible"></span></a></p>
Jim Stewartson :toad:<p>For the record, the reason I have worked so hard to expose online <a href="https://toad.social/tags/psyops" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>psyops</span></a> is that a long time ago, I accidentally helped invent them.</p><p>In particular, I have fought <a href="https://toad.social/tags/QAnon" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>QAnon</span></a> for 28 months because I found out it stole some of my ideas and weaponized them to hurt people. I was on the team that created “alternate reality games” or <a href="https://toad.social/tags/ARGs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ARGs</span></a> for Spielberg, Halo, The Dark Knight, etc.</p><p>QAnon is a malevolent ARG. ICYMI, Mike Flynn is Q.<br><a href="https://toad.social/tags/ArrestMikeFlynn" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ArrestMikeFlynn</span></a><br><a href="https://jimstewartson.substack.com/p/what-are-larps" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="ellipsis">jimstewartson.substack.com/p/w</span><span class="invisible">hat-are-larps</span></a></p>
Dan Hon<p>That way I could tag you as <a href="https://dan.mastohon.com/tags/games" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>games</span></a> <a href="https://dan.mastohon.com/tags/args" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>args</span></a> <a href="https://dan.mastohon.com/tags/funny" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>funny</span></a> <a href="https://dan.mastohon.com/tags/losangeles" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>losangeles</span></a> and then those hashtags would be personal lists of mine.</p>
Jim Stewartson :toad:<p><a href="https://toad.social/tags/Introduction" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Introduction</span></a>: I started building <a href="https://toad.social/tags/worlds" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>worlds</span></a> on the <a href="https://toad.social/tags/internet" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>internet</span></a> nearly 30 years ago. I’m an expert in <a href="https://toad.social/tags/AR" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AR</span></a>, <a href="https://toad.social/tags/VR" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>VR</span></a>, <a href="https://toad.social/tags/AI" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AI</span></a>, and <a href="https://toad.social/tags/ARGs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ARGs</span></a>.</p><p>Over 2 years ago, I started exposing the people abusing the digital world to <a href="https://toad.social/tags/radicalize" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>radicalize</span></a> people and destabilize global <a href="https://toad.social/tags/liberal" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>liberal</span></a> <a href="https://toad.social/tags/democracy" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>democracy</span></a>. </p><p>I was banned from the <a href="https://toad.social/tags/birdsite" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>birdsite</span></a> w/60k followers and smeared by hundreds of sadistic trolls because I exposed <a href="https://toad.social/tags/MikeFlynn" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>MikeFlynn</span></a>, <a href="https://toad.social/tags/QAnon" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>QAnon</span></a> and the <a href="https://toad.social/tags/insurrection" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>insurrection</span></a></p><p>Grateful for <a href="https://toad.social/tags/mastodon" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>mastodon</span></a> and my new home toad.social. 💙🙏🇺🇸🏴‍☠️:toad:<br><a href="https://toad.social/tags/ArrestMikeFlynn" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ArrestMikeFlynn</span></a></p>