first commit, working demo of Svelte displaying posts from a JSON file exported from Calckey

This commit is contained in:
jacob 2023-12-17 13:44:24 -05:00
commit 8beb03b32f
15 changed files with 1872 additions and 0 deletions

47
README.md Normal file
View File

@ -0,0 +1,47 @@
# Svelte + Vite
This template should help get you started developing with Svelte in Vite.
## Recommended IDE Setup
[VS Code](https://code.visualstudio.com/) + [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode).
## Need an official Svelte framework?
Check out [SvelteKit](https://github.com/sveltejs/kit#readme), which is also powered by Vite. Deploy anywhere with its serverless-first approach and adapt to various platforms, with out of the box support for TypeScript, SCSS, and Less, and easily-added support for mdsvex, GraphQL, PostCSS, Tailwind CSS, and more.
## Technical considerations
**Why use this over SvelteKit?**
- It brings its own routing solution which might not be preferable for some users.
- It is first and foremost a framework that just happens to use Vite under the hood, not a Vite app.
This template contains as little as possible to get started with Vite + Svelte, while taking into account the developer experience with regards to HMR and intellisense. It demonstrates capabilities on par with the other `create-vite` templates and is a good starting point for beginners dipping their toes into a Vite + Svelte project.
Should you later need the extended capabilities and extensibility provided by SvelteKit, the template has been structured similarly to SvelteKit so that it is easy to migrate.
**Why `global.d.ts` instead of `compilerOptions.types` inside `jsconfig.json` or `tsconfig.json`?**
Setting `compilerOptions.types` shuts out all other types not explicitly listed in the configuration. Using triple-slash references keeps the default TypeScript setting of accepting type information from the entire workspace, while also adding `svelte` and `vite/client` type information.
**Why include `.vscode/extensions.json`?**
Other templates indirectly recommend extensions via the README, but this file allows VS Code to prompt the user to install the recommended extension upon opening the project.
**Why enable `checkJs` in the JS template?**
It is likely that most cases of changing variable types in runtime are likely to be accidental, rather than deliberate. This provides advanced typechecking out of the box. Should you like to take advantage of the dynamically-typed nature of JavaScript, it is trivial to change the configuration.
**Why is HMR not preserving my local component state?**
HMR state preservation comes with a number of gotchas! It has been disabled by default in both `svelte-hmr` and `@sveltejs/vite-plugin-svelte` due to its often surprising behavior. You can read the details [here](https://github.com/sveltejs/svelte-hmr/tree/master/packages/svelte-hmr#preservation-of-local-state).
If you have state that's important to retain within a component, consider creating an external store which would not be replaced by HMR.
```js
// store.js
// An extremely simple external store
import { writable } from 'svelte/store'
export default writable(0)
```

13
index.html Normal file
View File

@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Post Archive for @jake@jacobhaddon.com</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>

32
jsconfig.json Normal file
View File

@ -0,0 +1,32 @@
{
"compilerOptions": {
"moduleResolution": "bundler",
"target": "ESNext",
"module": "ESNext",
/**
* svelte-preprocess cannot figure out whether you have
* a value or a type, so tell TypeScript to enforce using
* `import type` instead of `import` for Types.
*/
"verbatimModuleSyntax": true,
"isolatedModules": true,
"resolveJsonModule": true,
/**
* To have warnings / errors of the Svelte compiler at the
* correct position, enable source maps by default.
*/
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
/**
* Typecheck JS in `.svelte` and `.js` files by default.
* Disable this if you'd like to use dynamic types.
*/
"checkJs": true
},
/**
* Use global.d.ts instead of compilerOptions.types
* to avoid limiting type declarations.
*/
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"]
}

1049
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

16
package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "fedidisplay",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"svelte": "^4.2.8",
"vite": "^5.0.8"
}
}

1
public/vite.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

22
src/App.svelte Normal file
View File

@ -0,0 +1,22 @@
<script>
import notes from './notes.json'
import Post from './lib/Post.svelte'
console.log(notes[0]);
</script>
<main>
Posts from @jake@social.jacobhaddon.com
{#each notes as note}
{#if note.text != null}
<Post {note} />
{/if}
{/each}
</main>
<style>
main {
}
</style>

14
src/app.css Normal file
View File

@ -0,0 +1,14 @@
html {
font-family:Jost;
}
.hashtag {
color: red;
style: bold;
}
.username {
color: blue;
}

1
src/assets/svelte.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="26.6" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 308"><path fill="#FF3E00" d="M239.682 40.707C211.113-.182 154.69-12.301 113.895 13.69L42.247 59.356a82.198 82.198 0 0 0-37.135 55.056a86.566 86.566 0 0 0 8.536 55.576a82.425 82.425 0 0 0-12.296 30.719a87.596 87.596 0 0 0 14.964 66.244c28.574 40.893 84.997 53.007 125.787 27.016l71.648-45.664a82.182 82.182 0 0 0 37.135-55.057a86.601 86.601 0 0 0-8.53-55.577a82.409 82.409 0 0 0 12.29-30.718a87.573 87.573 0 0 0-14.963-66.244"></path><path fill="#FFF" d="M106.889 270.841c-23.102 6.007-47.497-3.036-61.103-22.648a52.685 52.685 0 0 1-9.003-39.85a49.978 49.978 0 0 1 1.713-6.693l1.35-4.115l3.671 2.697a92.447 92.447 0 0 0 28.036 14.007l2.663.808l-.245 2.659a16.067 16.067 0 0 0 2.89 10.656a17.143 17.143 0 0 0 18.397 6.828a15.786 15.786 0 0 0 4.403-1.935l71.67-45.672a14.922 14.922 0 0 0 6.734-9.977a15.923 15.923 0 0 0-2.713-12.011a17.156 17.156 0 0 0-18.404-6.832a15.78 15.78 0 0 0-4.396 1.933l-27.35 17.434a52.298 52.298 0 0 1-14.553 6.391c-23.101 6.007-47.497-3.036-61.101-22.649a52.681 52.681 0 0 1-9.004-39.849a49.428 49.428 0 0 1 22.34-33.114l71.664-45.677a52.218 52.218 0 0 1 14.563-6.398c23.101-6.007 47.497 3.036 61.101 22.648a52.685 52.685 0 0 1 9.004 39.85a50.559 50.559 0 0 1-1.713 6.692l-1.35 4.116l-3.67-2.693a92.373 92.373 0 0 0-28.037-14.013l-2.664-.809l.246-2.658a16.099 16.099 0 0 0-2.89-10.656a17.143 17.143 0 0 0-18.398-6.828a15.786 15.786 0 0 0-4.402 1.935l-71.67 45.674a14.898 14.898 0 0 0-6.73 9.975a15.9 15.9 0 0 0 2.709 12.012a17.156 17.156 0 0 0 18.404 6.832a15.841 15.841 0 0 0 4.402-1.935l27.345-17.427a52.147 52.147 0 0 1 14.552-6.397c23.101-6.006 47.497 3.037 61.102 22.65a52.681 52.681 0 0 1 9.003 39.848a49.453 49.453 0 0 1-22.34 33.12l-71.664 45.673a52.218 52.218 0 0 1-14.563 6.398"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

54
src/lib/Post.svelte Normal file
View File

@ -0,0 +1,54 @@
<script>
// the format for the individual post
// input is an object of the post with the following:
// .id - id of the post
// .text - text of the post
// .createdAt - time created
export let note;
// style some of the parts. Styles for these live in app.css
// make line brakes into html br tags
note.text = note.text.replace("\n", '<br>');
// color the hashtags
//note.text = note.text.replace(/#(\w+)/g, '<a href="tag/$1">#$1</a>')
note.text = note.text.replace(/#(\w+)/g, '<span class=hashtag>#$1</span>')
// color the usernames
note.text = note.text.replace(/(@(\w+)@(\w+)(\.\w+)?(\.\w+)?)/g, '<span class=username>$1</span>')
// make the URLs real links
note.text = note.text.replace(/(\b(https?|ftp):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/gim, '<a href="$1" target="_blank">$1</a>');
</script>
<div class=post id={note.id}>
<div class=text>{@html note.text}</div>
<div class=createdAt>{note.createdAt}</div>
</div>
<style>
.post {
margin: 24px;
padding: 12px;
width: 450px;
border: 2px solid #1C6EA4;
margin-left: auto;
margin-right: auto;
}
.createdAt {
margin-top: 12px;
font-size: 10pt;
font-style: italic;
}
.hashtag {
color: red;
style: bold;
}
</style>

8
src/main.js Normal file
View File

@ -0,0 +1,8 @@
import './app.css'
import App from './App.svelte'
const app = new App({
target: document.getElementById('app'),
})
export default app

599
src/notes.json Normal file
View File

@ -0,0 +1,599 @@
[{"id":"9gqm60vinw","text":"Hello world! New account, new home on the fediverse!","createdAt":"2023-07-03T16:02:27.438Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gqnweoeai","text":"Hi everyone! This is a new account, so time for an introduction post! \n\nI am a writer (#poetry and #horror, sometimes horrible poetry), an editor (formally LampLight Magazine), publisher (Apokrupha Books) and a huge nerd. \n\nI like books, #horror, #fantasy, #scifi, photography, computers, gadgets. \n\nI make books, bracelets, little computer applications, take photos.\n\nI am probably wearing a kilt right now.\n\n\n#intro #introduction","createdAt":"2023-07-03T16:50:57.998Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gqoryyfr4","text":"@ollie_francis@mastodonapp.uk it is! thanks! it is #Calckey instance, which I set up with YUNOHost, which made it pretty straight forward!","createdAt":"2023-07-03T17:15:30.615Z","fileIds":[],"replyId":"9gqopg7cpd","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gqosj45rd","text":null,"createdAt":"2023-07-03T17:15:56.741Z","fileIds":[],"replyId":null,"renoteId":"9gqokhyon3","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gs8brmaab","text":"@WordyCurator@mastodon.art thank you! looking forward to the new adventures!","createdAt":"2023-07-04T19:10:33.106Z","fileIds":[],"replyId":"9gqwf0hkln","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9gs8e5a4c7","text":"@wildflower@giantheart.social thank you! i will! i will admit i am at the edge of my current sysadmin, but will give this a try!","createdAt":"2023-07-04T19:12:24.124Z","fileIds":[],"replyId":"9gqw66l4jg","renoteId":null,"poll":null,"cw":null,"visibility":"specified","visibleUserIds":["9gqvupviho"],"localOnly":false},
{"id":"9gs8ikracu","text":null,"createdAt":"2023-07-04T19:15:50.806Z","fileIds":[],"replyId":null,"renoteId":"9gs86a0891","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gs9f3snxs","text":"@wildflower@giantheart.social =\\ i may have to do some digging, I'm not running Mastodon, but Calckey. Tho I _think_ I saw something similar for this set up as well? Definitely going to look more into it. Thank you!!","createdAt":"2023-07-04T19:41:08.471Z","fileIds":[],"replyId":"9gs9c9kwxa","renoteId":null,"poll":null,"cw":null,"visibility":"specified","visibleUserIds":["9gqvupviho"],"localOnly":false},
{"id":"9gslyrbhth","text":null,"createdAt":"2023-07-05T01:32:20.813Z","fileIds":[],"replyId":null,"renoteId":"9gsl1a7seu","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gsm513ftr","text":null,"createdAt":"2023-07-05T01:37:13.419Z","fileIds":[],"replyId":null,"renoteId":"7o0o10mwqh","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gsmaih6vi","text":"@ellane@pkm.social Ive had to rip computers apart to extract hard drives for recovery. Encrypted drives for back up always make me nervous.","createdAt":"2023-07-05T01:41:29.226Z","fileIds":[],"replyId":"9gsgef9sth","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gt5ot7rmz","text":null,"createdAt":"2023-07-05T10:44:29.031Z","fileIds":[],"replyId":null,"renoteId":"9gt4lv6olv","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9gt7lo6lvj","text":"STRANGE HORIZONS has a #submission call for #Caribbean writers! Short fiction and #poetry! \n\nAlso Susan is a fantastic person, so I have no doubt this will be a great issue, cant wait to read it! \n\nhttp://strangehorizons.com/non-fiction/azimuth/submission-guidelines-caribbean-special-issue-edited-by-marika-bailey-and-suzan-palumbo/","createdAt":"2023-07-05T11:38:01.773Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gtb2e6x5v","text":null,"createdAt":"2023-07-05T13:15:00.825Z","fileIds":[],"replyId":null,"renoteId":"9gtar6s05l","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gu0i96b7d","text":null,"createdAt":"2023-07-06T01:07:11.219Z","fileIds":[],"replyId":null,"renoteId":"9gu0hclk79","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9guk4psbxx","text":null,"createdAt":"2023-07-06T10:16:31.883Z","fileIds":[],"replyId":null,"renoteId":"9gujenlsu8","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9guk6zc0yk","text":"One for the #horrorfam, he was a part of the Conte Cruel style of story. Check out the Horla if youve not read any! #horror #classichorror #shadowsintheattic","createdAt":"2023-07-06T10:18:17.568Z","fileIds":[],"replyId":null,"renoteId":"9gujenlsu8","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gut07hmej","text":null,"createdAt":"2023-07-06T14:24:58.090Z","fileIds":[],"replyId":null,"renoteId":"9guq2lq0ot","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9guvnsh2ja","text":"@liminalfiction@mastodon.otherworldsink.com @Bookstodon@mastodon.otherworldsink.com something i found interesting: Moon dust. \n\nsee, there isn't wind / water on the moon, so moon dust isn't smooth like beach sand. it is sharp and rough and sticks to things like velcro. Which means that there is going to be an issue for things coming inside a ship / station, especially since moon dust and lungs are not a good pair. \n\nlots of cleaning to do if you are on the moon.","createdAt":"2023-07-06T15:39:17.606Z","fileIds":[],"replyId":"9guulmjsdj","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gv45qa7yz","text":"@liminalfiction@mastodon.otherworldsink.com @PaxAsteriae@writing.exchange pretty sure it is just threads.net. At least for now.","createdAt":"2023-07-06T19:37:11.503Z","fileIds":[],"replyId":"9gv404i8xl","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9gv4j4l929","text":"I may have to draw a new avatar to match the theme Im using on calckey… \n\nThese are the trials they dont tell you about when you join the fediverse.","createdAt":"2023-07-06T19:47:36.573Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gv59cir5f","text":"A glam shot of a recent horror book purchase over on my Pixelfed \n https://photos.apokrupha.com/p/jake/582660350797008901\n\n#horror #horrorfam","createdAt":"2023-07-06T20:07:59.907Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gv64c7vah","text":null,"createdAt":"2023-07-06T20:32:05.851Z","fileIds":[],"replyId":null,"renoteId":"9gv5wo3k94","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gv6ba72cu","text":null,"createdAt":"2023-07-06T20:37:29.822Z","fileIds":[],"replyId":null,"renoteId":"97fowzs09m","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gva8o2f92","text":null,"createdAt":"2023-07-06T22:27:26.295Z","fileIds":[],"replyId":null,"renoteId":"9gv7ccfsyg","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gvyppx9h8","text":null,"createdAt":"2023-07-07T09:52:32.637Z","fileIds":[],"replyId":null,"renoteId":"9gvssak8g2","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gw0cbpoo7","text":"The puppy does not know it is 530 in the morning. Only that the sun is up, and we are not.","createdAt":"2023-07-07T10:38:06.924Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gw2n23by8","text":"pup does not know it is 5:30, only the sun is up, we are not\n\n#senryu","createdAt":"2023-07-07T11:42:26.903Z","fileIds":[],"replyId":"9gw0cbpoo7","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gwxqnz7qt","text":null,"createdAt":"2023-07-08T02:13:03.331Z","fileIds":[],"replyId":null,"renoteId":"9gv9zbf40s","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gxi926r9x","text":null,"createdAt":"2023-07-08T11:47:13.875Z","fileIds":[],"replyId":null,"renoteId":"9gxf0ju8ph","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gximhgqbf","text":"Updated my avatar to better match my theme, hope it works well out there.","createdAt":"2023-07-08T11:57:40.202Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gxip63cbp","text":"Maybe Ill read today\n\n(Looks at to do list)\n\nMaybe Ill read tomorrow. \n\n#sigh","createdAt":"2023-07-08T11:59:45.432Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gxp7qgfn1","text":null,"createdAt":"2023-07-08T15:02:09.327Z","fileIds":[],"replyId":null,"renoteId":"9gx79t48iz","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gycu027lk","text":null,"createdAt":"2023-07-09T02:03:19.375Z","fileIds":[],"replyId":null,"renoteId":"9gyat6mobb","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gyd3t8umu","text":"I in fact did get to read, abet only 20 or so pages.","createdAt":"2023-07-09T02:10:57.102Z","fileIds":[],"replyId":null,"renoteId":"9gxip63cbp","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gytsb1z4w","text":null,"createdAt":"2023-07-09T09:57:53.783Z","fileIds":[],"replyId":null,"renoteId":"9gymom799i","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gz0uq3lwb","text":"@autistgames@mastodon.social this post from fedi.tips is probably a good start. Your posts don't move, so make sure to do an export of those so you have them.\n\n(caveat: i have not tried this yet)\n\nhttps://fedi.tips/transferring-your-mastodon-account-to-another-server/","createdAt":"2023-07-09T13:15:43.905Z","fileIds":[],"replyId":"9gz0fic0u1","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gz4bqa3r0","text":"today is a day of #horror books; making them, reporting on them, reading them.","createdAt":"2023-07-09T14:52:56.139Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9gzim6j1zr","text":null,"createdAt":"2023-07-09T21:32:58.381Z","fileIds":[],"replyId":null,"renoteId":"9gzhx8uwyo","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h0doas6wi","text":"If you buy #Kindle books, make sure you check your rewards balance! They expire every few months. (May have just bought some #books…)","createdAt":"2023-07-10T12:02:25.302Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h0kf7igwa","text":"@wiredfire@mas.to going second FinAmp. Been using it for a bit now and it works great.","createdAt":"2023-07-10T15:11:18.472Z","fileIds":[],"replyId":"9h0jgdagv6","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h0nurtsmt","text":"I think the thing that frustrates me most about my reading glasses is how well they work.","createdAt":"2023-07-10T16:47:23.488Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h0qxxc16i","text":null,"createdAt":"2023-07-10T18:13:49.441Z","fileIds":[],"replyId":null,"renoteId":"9h0k1mq03f","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h1tiw9ye9","text":"Im at the “I want to do a thing so I bought stuff to do it but havent done it yet” stage, and fam, it is exhausting sometimes to be in my head. Cant I just do the things I want to do?","createdAt":"2023-07-11T12:13:53.254Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h2b7ov65p","text":null,"createdAt":"2023-07-11T20:29:03.522Z","fileIds":[],"replyId":null,"renoteId":"9h1t2d68to","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h2bmalm7r","text":"Alright Fediverse, Im looking for good #interviews. Examples to read of just great interviews for a future project. \n\nHit me with a link of you have any. Especially long form interviews","createdAt":"2023-07-11T20:40:24.874Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h2bt78h95","text":"Alright Fediverse, Im looking for good #interviews. Examples to read of just great interviews for a future project. \n\nHit me with a link of you have any. Especially long form interviews","createdAt":"2023-07-11T20:45:47.105Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h3p7az1l8","text":"@Amitha@booktoot.social I find myself coordinating my outfits rather than choosing by bonus more in this one than the first …","createdAt":"2023-07-12T19:48:26.317Z","fileIds":[],"replyId":"9h3ou6i841","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h4o63kkhg","text":null,"createdAt":"2023-07-13T12:07:16.628Z","fileIds":[],"replyId":null,"renoteId":"9h4hwfmo0k","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h4o7vlzhs","text":"One of my favorite stories and an influential piece in my early writing. Occurrence was the the first Classic in LampLight Magazine, and is one for the #horrorfam \n\n#horror #horrorbooks","createdAt":"2023-07-13T12:08:39.623Z","fileIds":[],"replyId":null,"renoteId":"9h4hwfmo0k","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h4o8ibxhx","text":null,"createdAt":"2023-07-13T12:09:09.069Z","fileIds":[],"replyId":null,"renoteId":"9h4dge20n1","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h6l0m42jx","text":null,"createdAt":"2023-07-14T20:14:34.226Z","fileIds":[],"replyId":null,"renoteId":"9h5181ao27","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h7h85s3ep","text":"i have been intrigued by this #Wordpress in a box implementation. Not sure what to do with it yet, but going to try an electron wrapper and see what comes to mind...\n\nhttps://playground.wordpress.net/","createdAt":"2023-07-15T11:16:14.019Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9h7hjvvwf4","text":"@ollie_francis@mastodonapp.uk i got this for the switch when it came out and put in quite a lot of hours... (on a Zelda induced break)\n\nI enjoyed how your sessions could be exploration or construction, or even combat based on what you wanted to do, rather than where you were in the game.","createdAt":"2023-07-15T11:25:21.068Z","fileIds":[],"replyId":"9h7avp88wk","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9halctc5tx","text":"Working on the new #horror #poetry collection I am publishing. Its going to be so good. Its also a bit of work between now and then….","createdAt":"2023-07-17T15:35:08.165Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9haxn5uxif","text":"One emoji feature that should exist is I should be able to swap the heart eyes out for other things. Pumpkins specifically but I suspect other objects will work.","createdAt":"2023-07-17T21:19:06.345Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hb6uyar4q","text":null,"createdAt":"2023-07-18T01:37:06.339Z","fileIds":[],"replyId":null,"renoteId":"9hb5tgi0zk","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9hbv0povog","text":"Im at a strange place on Tears Of The Kingdom (the new Legend of Zelda)\n\nYou see, I rushed through so much of the first one that I wanted to slow down for this. I only just finished the map, and have been avoiding the south regions. \n\nBut this hesitation only grows. I dont want this to end, but cant really enjoy more of the game unless I move forward. \n\nI know ending is one of the things that gives art its power. I know this. Still I resist. \n\n #Zelda #legendofzelda #tearsofthekingdom","createdAt":"2023-07-18T12:53:25.903Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hbz8h2mla","text":"AHHH FRAMEWORK 16 AHHH #framework","createdAt":"2023-07-18T14:51:26.446Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hc23zkrzo","text":"while i do not need a new computer, going to start saving for the #Framework 16. it looks to be a fantastic machine. \n\nWhile I suspect I will always have a Mac in the house, I love my Framework 13 and am glad they exist. \n\n(also, #Fedora + #KDE is pretty smooth)","createdAt":"2023-07-18T16:11:55.995Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hc2bjq41h","text":"Writers! while the #Framework 13 computer is on my mind, I wanted to point out how great the keyboard is on this thing. It's MacBook Pro circa 2011 great, with the right amount of both resistance and movement for typing. \n\nand, if you wear out the keyboard, you can just get another without replacing the whole computer.","createdAt":"2023-07-18T16:17:48.700Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hc34rjm6v","text":"the tomatoes we planted didn't do much this year. so I cheated and got larger ones yesterday (one with fruit) from the shops. Yes, I liked the homemade ketchup from last year that much, why do you ask? #gardening","createdAt":"2023-07-18T16:40:31.858Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hcdp0ab5c","text":null,"createdAt":"2023-07-18T21:36:12.467Z","fileIds":[],"replyId":null,"renoteId":"9hbw4y2g2r","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hd7r77ypo","text":null,"createdAt":"2023-07-19T11:37:43.246Z","fileIds":[],"replyId":null,"renoteId":"9hcuquvqui","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hd7t08gqf","text":"looking forward to see what today brings for #Calckey (which is what I'm using for my #fediverse microblog)","createdAt":"2023-07-19T11:39:07.504Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hd8emw7v0","text":"#horrorfam here is one to look for! \n\n@horror@a.gup.pe @horrorbooks@a.gup.pe","createdAt":"2023-07-19T11:55:56.647Z","fileIds":[],"replyId":null,"renoteId":"9hd826v4r5","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hdby2gmd2","text":null,"createdAt":"2023-07-19T13:35:02.134Z","fileIds":[],"replyId":null,"renoteId":"9hdb2yrc9m","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hdnkmhh50","text":"firefish, eh? i dig it.","createdAt":"2023-07-19T19:00:30.293Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hdot0a4dd","text":null,"createdAt":"2023-07-19T19:35:01.036Z","fileIds":[],"replyId":null,"renoteId":"9hdlt3nu15","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hdoxnx2es","text":"Tomorrow this becomes a World Cup account. Apologies for both of you who see my posts. \n\n #Worldcup #womensworldcup","createdAt":"2023-07-19T19:38:38.294Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hdrif79ly","text":"my home nextcloudpi is down, which is complicating my evening because I had other plans... \n\n#nextcloud #nextcloudpi #selfhost","createdAt":"2023-07-19T20:50:46.005Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hekdkdj39","text":"Because of the time difference, most of this World Cup will be in retrospect. Watching the opening game name!! Futbol is life! #Worldcup #womensworlscup","createdAt":"2023-07-20T10:18:48.295Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hekj9yt3u","text":"For anyone interested in the US, Peacock streams the games in Spanish #Worldcup #womensworlscup","createdAt":"2023-07-20T10:23:14.741Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hekk08w3x","text":"Lets gooooooo!! New Zealand v Norway #Worldcup #womensworlscup","createdAt":"2023-07-20T10:23:48.800Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hel8fyk5q","text":"I will say, being able to pause the game is both strange and enticing. #Worldcup #womensworlscup","createdAt":"2023-07-20T10:42:48.908Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hephwkljr","text":"what a great first game! looking forward to many more! #worldcup #womensworldcup","createdAt":"2023-07-20T12:42:08.805Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9heqe4gmoi","text":"I _may_ have just purchased some expensive Japanese poetry books to add to the collection…","createdAt":"2023-07-20T13:07:12.022Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9heucar5ae","text":"@azakasekai@vt.social 😮 nice.","createdAt":"2023-07-20T14:57:45.329Z","fileIds":[],"replyId":"9heu6m0w9y","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9heuxrr4e6","text":null,"createdAt":"2023-07-20T15:14:27.136Z","fileIds":[],"replyId":null,"renoteId":"9heulgqwdc","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hevf70ehx","text":"hmm. i wonder what it would cost to make a translation of some of the lesser known Imperial anthologies of #JapanesePoetry ?","createdAt":"2023-07-20T15:28:00.062Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hfd2mjf74","text":"catching up on replays. LET'S GO IRELAND! #worldcup #womensworldcup","createdAt":"2023-07-20T23:42:06.747Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hfeezk2di","text":"A letter to the woman on the back of the motorcycle that road along the double yellow line to pass people during rush hour traffic —\n\nHe doesnt love you. \n\nNot even a little bit.","createdAt":"2023-07-21T00:19:43.106Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hfexoqped","text":null,"createdAt":"2023-07-21T00:34:15.553Z","fileIds":[],"replyId":null,"renoteId":"9h7zbe7kca","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hff6ej4g0","text":"if this Megan Rapino commercial was actually a cartoon, I'd be up early every Saturday just to watch it.","createdAt":"2023-07-21T00:41:02.224Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hg1ak6ed2","text":"@malte@graeber.social Linux and Mac house here too. Not found my solution but Darktable and Digikam offer most of this and are cross platform. \n\nThere is not much available for Linux for sale :-/ (except Corel, but I have not yet tried it)","createdAt":"2023-07-21T11:00:07.718Z","fileIds":[],"replyId":"9hfuc81syj","renoteId":null,"poll":null,"cw":"Looking for advice: Digital organization of photos and images","visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hg1d9d4d6","text":null,"createdAt":"2023-07-21T11:02:13.672Z","fileIds":[],"replyId":null,"renoteId":"9hft0k00sr","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hgsxmum3t","text":"watching a replay of the Costa Rica v Spain game (GO COSTA RICA!!) and it isn't just the rain making this game rough... #womensworldcup #worldcup","createdAt":"2023-07-21T23:53:53.902Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hgxdnyulk","text":"@gwync@mastodon.coffee its been so good so far!","createdAt":"2023-07-22T01:58:20.310Z","fileIds":[],"replyId":"9hgwq94wj5","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hhswb4162","text":null,"createdAt":"2023-07-22T16:40:38.209Z","fileIds":[],"replyId":null,"renoteId":"9hhqjqyw5z","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hj5v9ks1x","text":"Went out for errands and left my phone at home by accident. 2 hours later it turns out I didnt miss anything. \n\nI suspect there is a lesson there.","createdAt":"2023-07-23T15:31:30.748Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hkc7xj6dv","text":null,"createdAt":"2023-07-24T11:17:05.538Z","fileIds":[],"replyId":null,"renoteId":"9hg7xp6wyf","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hkckoikfb","text":"good morning, Fediverse. \n\nlet's go get some things done. \nlet's be kind to each other\nlet's be kind to ourselves. \n\nfuck terfs. \n\ntime for coffee.","createdAt":"2023-07-24T11:27:00.380Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hkgjnn6u6","text":"@stina_marie@social.horrorhub.club @horror@a.gup.pe the joy in my heart when Michaels started putting up Halloween stuff made the year bearable.","createdAt":"2023-07-24T13:18:11.058Z","fileIds":[],"replyId":"9hj1zqmgi7","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hlrhtoj49","text":"puppies really are the answer to \"what if ADHD was cute and furry?\"","createdAt":"2023-07-25T11:12:27.523Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hlrjgmi4j","text":"@thekitmalone@hoosier.social @maxwellbaum@mastodon.social second for NCP. I have a pi 3 running it for nearly 4 years at this point. Local only, i don't let it go outside the network, but it works great.","createdAt":"2023-07-25T11:13:43.914Z","fileIds":[],"replyId":"9hl5w21s40","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hmddfq8ht","text":"@Shanmonster@c.im good luck on the contest!","createdAt":"2023-07-25T21:24:54.368Z","fileIds":[],"replyId":"9hmd9baohd","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hnjiob5yv","text":"@Amitha@booktoot.social but you do! You cant just run around with half an outfit…","createdAt":"2023-07-26T17:04:42.641Z","fileIds":[],"replyId":"9hnivnvsua","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ho0ys2i00","text":null,"createdAt":"2023-07-27T01:13:07.482Z","fileIds":[],"replyId":null,"renoteId":"9ho0ttggzm","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ho11r9205","text":null,"createdAt":"2023-07-27T01:15:26.390Z","fileIds":[],"replyId":null,"renoteId":"9ho0ie6wy3","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ho14h1h0h","text":"So, its gonna be that kind of party, is it? #worldcup","createdAt":"2023-07-27T01:17:33.125Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ho32tieek","text":"And of course we get the first yellow of the match. #worldcup","createdAt":"2023-07-27T02:12:15.206Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ho3hjvxh2","text":"Revenge is a dish best served GOOOOOOOOOOOOOOOOOOOOOOOOOL #worldcup","createdAt":"2023-07-27T02:23:42.573Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ho4rz7koh","text":"And game! And what a game that was! #worldcup","createdAt":"2023-07-27T02:59:48.608Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hop4nhr99","text":"As a user of Apple Photostream I find myself at a junction now that it is shut down. I have no interest in iCloud photos. I have too many pictures and no desire for them all to be online. \n\nAnd now I debate. Debate Nextcloud, Dropbox or just plugging my phone into my computer.","createdAt":"2023-07-27T12:29:32.271Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hq0eza1ra","text":null,"createdAt":"2023-07-28T10:33:16.057Z","fileIds":[],"replyId":null,"renoteId":"9hpt4syof0","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hqhma4ptv","text":"Ive had too much coffee to be this worn out. Happy Friday.","createdAt":"2023-07-28T18:34:50.185Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hrj6rwyvy","text":null,"createdAt":"2023-07-29T12:06:32.146Z","fileIds":[],"replyId":null,"renoteId":"9hqotwfs29","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hrj8ymuw5","text":"This is a fantastic piece and covers, quite thoroughly, a lot of the shattered concerns Ive seen on the fediverse all over.","createdAt":"2023-07-29T12:08:14.166Z","fileIds":[],"replyId":null,"renoteId":"9hqotwfs29","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hrjapz0w8","text":"Alright #horrorfam I Know it is July, but lets not miss on the Haunted Mansion.","createdAt":"2023-07-29T12:09:36.252Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hrn23d699","text":null,"createdAt":"2023-07-29T13:54:52.170Z","fileIds":[],"replyId":null,"renoteId":"9hrkof4o78","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hrn2wlb9g","text":"a #Caturday post for the #horrorfam @horror@a.gup.pe","createdAt":"2023-07-29T13:55:30.047Z","fileIds":[],"replyId":null,"renoteId":"9hrkof4o78","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hrndk9lca","text":"the problem with \"chronological\" feeds is that they are really \"reverse-chronologicial\" feeds, and feed you replies before comments, effects before causes. \n\nI suspect starting my feed from where I left off is hard to do, but let's not pretend seeing it in reverse is somehow the best way to view things. \n\n\"algorithms\" get a bad wrap, rightly so, from the companies that ran Social sites, but it doesn't mean that there are better ways to organize and present the content i've signed up to see. \n\n#fediverse","createdAt":"2023-07-29T14:03:47.289Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hrne1zpck","text":null,"createdAt":"2023-07-29T14:04:10.261Z","fileIds":[],"replyId":null,"renoteId":"9hrndll4cc","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hs0jgo26m","text":"I just saw The Haunted Mansion and it was a fantastic movie! \n\n#horrorfam","createdAt":"2023-07-29T20:12:17.570Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hs9onzxcn","text":"My bookworm posts dont show up on my calckey account and I cant figure out if that is expected or if Ive got something miscomfigured #fediverse #fedihelp","createdAt":"2023-07-30T00:28:16.893Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hsul6b965","text":"@cordillera@social.horrorhub.club Im on Calckey, self hosted. It has quote posts and a few other features I like. My choice was mainly made by the server install, rather than the features, but Ive come to like it. \n\nNegatives are lack of app, I use the SPA on my phone and Im constantly closing or refreshing it to get it to reload.","createdAt":"2023-07-30T10:13:25.941Z","fileIds":[],"replyId":"9hsr7hyg56","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hswo6z4e5","text":"Facebook memories just informed me it is the ten year anniversary of my last major publication and I may be done with the internet for the day.","createdAt":"2023-07-30T11:11:46.000Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hsyie5pk7","text":"@cordillera@social.horrorhub.club sorry! Single page app, means that its just through the browser but acts like a saved app in your phone.","createdAt":"2023-07-30T12:03:14.605Z","fileIds":[],"replyId":"9hsy8wn4jk","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9htnuxdzmd","text":null,"createdAt":"2023-07-30T23:52:49.799Z","fileIds":[],"replyId":null,"renoteId":"9ht17aw0m9","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9hvpa16laf","text":null,"createdAt":"2023-08-01T10:08:06.525Z","fileIds":[],"replyId":null,"renoteId":"9hvoi8s09e","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hvu34ocsp","text":"Successfully avoided spoilers. Watching the US v Portugal replay. LETS GO! FUTBOL IS LIFE #worldcup","createdAt":"2023-08-01T12:22:42.540Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hvubbrctv","text":"LAVELLE!!","createdAt":"2023-08-01T12:29:04.968Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hx8x32us8","text":null,"createdAt":"2023-08-02T12:05:40.950Z","fileIds":[],"replyId":null,"renoteId":"9hvyfe14o2","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hymexsi6w","text":null,"createdAt":"2023-08-03T11:11:15.090Z","fileIds":[],"replyId":null,"renoteId":"9hxue0qgiy","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9hymnlb57v","text":null,"createdAt":"2023-08-03T11:17:58.817Z","fileIds":[],"replyId":null,"renoteId":"9hydt3egul","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9i081zsuva","text":null,"createdAt":"2023-08-04T14:04:48.894Z","fileIds":[],"replyId":null,"renoteId":"9hzwsmiotw","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i20db02mo","text":null,"createdAt":"2023-08-05T20:05:12.050Z","fileIds":[],"replyId":null,"renoteId":"9i183a1klc","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i2y4yijfd","text":null,"createdAt":"2023-08-06T11:50:29.563Z","fileIds":[],"replyId":null,"renoteId":"9i09s7uoe5","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i31vahpox","text":null,"createdAt":"2023-08-06T13:34:56.989Z","fileIds":[],"replyId":null,"renoteId":"9i24k1nsit","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i3rm5n3wq","text":null,"createdAt":"2023-08-07T01:35:40.815Z","fileIds":[],"replyId":null,"renoteId":"9i3l8128s8","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i3rp6mix7","text":null,"createdAt":"2023-08-07T01:38:02.058Z","fileIds":[],"replyId":null,"renoteId":"9i3qn4zcqm","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i3rr30txf","text":null,"createdAt":"2023-08-07T01:39:30.701Z","fileIds":[],"replyId":null,"renoteId":"9i3qq15cr1","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9i4doefzho","text":"This whole twitter thing has caused me to use Facebook more…","createdAt":"2023-08-07T11:53:17.087Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i4dpmlahq","text":"Spent most of yesterday book making. Got the final cover and about half of the interior done. This is going to be such a good collection. \n\n#horror #indiehorror","createdAt":"2023-08-07T11:54:14.302Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i4dqpshhx","text":"@Undertow@mastodon.online … fuck.","createdAt":"2023-08-07T11:55:05.105Z","fileIds":[],"replyId":"9i4cggl4et","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i4obfgbnw","text":null,"createdAt":"2023-08-07T16:51:07.643Z","fileIds":[],"replyId":null,"renoteId":"9i2gcx6obs","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i56h3i7ms","text":null,"createdAt":"2023-08-08T01:19:25.183Z","fileIds":[],"replyId":null,"renoteId":"9i5662rcmg","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i5s6vv1u4","text":null,"createdAt":"2023-08-08T11:27:20.269Z","fileIds":[],"replyId":null,"renoteId":"9i5j1274j2","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i5t204hv8","text":null,"createdAt":"2023-08-08T11:51:32.129Z","fileIds":[],"replyId":null,"renoteId":"9i5csz2g6f","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i78oho1n4","text":null,"createdAt":"2023-08-09T11:56:41.713Z","fileIds":[],"replyId":null,"renoteId":"9i76uw08jm","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i78y2k0qy","text":"test is a test post to see if I am understanding alt text in Calckey. this is only a test.","createdAt":"2023-08-09T12:04:08.688Z","fileIds":["9gqm127lns"],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i7961bws2","text":"one thing that has broken on #Reddit is the + part of the URL. Used to be you could just add +<subreddit>, like r/apple+nintendo and get all the posts from both. \n\nnow, you get an error. (it does still work on old dot reddit... for now)","createdAt":"2023-08-09T12:10:20.348Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i7a7jxztw","text":"@darnell@one.darnell.one funny enough* this is the reason I write blog posts in iA Writer and then copy paste to Wordpress, had something similar happen. \n\n* fun it was not","createdAt":"2023-08-09T12:39:30.743Z","fileIds":[],"replyId":"9i79aoi0sf","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i7aas0ou3","text":"On a side note, Im not sure what headspace I was in when I made this, but I quite like the sketchy chaos it has","createdAt":"2023-08-09T12:42:01.176Z","fileIds":[],"replyId":"9i78y2k0qy","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i7bx8way5","text":"@darnell@one.darnell.one after Wordpress included AI in jetpack I uninstalled it... losing the stats sucked, but I don't trust it anymore. sigh.","createdAt":"2023-08-09T13:27:29.098Z","fileIds":[],"replyId":"9i7awp8gvy","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i7c6b9hyd","text":"Cover reveal for The Quiet Ways I Destroy You, the new cosmic horror blackout poetry collection by Jessica McHugh based on Little Women! coming soon from Apokrupha!\n\nCover art by the amazing Lynne Hansen! \n\n@horror@a.gup.pe @horrorbooks@a.gup.pe \n\n#poetry #blackoutpoetry #horror #indiehorror","createdAt":"2023-08-09T13:34:32.069Z","fileIds":["9i4utk5vo7"],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i7d5bh81k","text":"@darnell@one.darnell.one that actually makes a lot of sense, keep the core just that, and let things like AI be the optional expansions. \n\nHope so, at least. I've been using Wordpress too long, I really don't want to move lol.","createdAt":"2023-08-09T14:01:45.308Z","fileIds":[],"replyId":"9i7c9ebkyp","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i7e4jjf3w","text":"My brain is in a thousand places at once this morning. If I only had more hands.","createdAt":"2023-08-09T14:29:08.715Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i7lan85vn","text":null,"createdAt":"2023-08-09T17:49:50.741Z","fileIds":[],"replyId":null,"renoteId":"9i7hha7kjp","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i7tncdrtu","text":"I am definitely going through #Twitter withdraw. I deleted the app off my phone on 31 July and still reach for it now and then.","createdAt":"2023-08-09T21:43:40.143Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i8k17yrbb","text":null,"createdAt":"2023-08-10T10:02:17.619Z","fileIds":[],"replyId":null,"renoteId":"9i8dx8i82l","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9i8pvmcpqy","text":null,"createdAt":"2023-08-10T12:45:54.025Z","fileIds":[],"replyId":null,"renoteId":"9i7quvrcqj","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ia377xsy5","text":"@mayaisloading@beige.party horror is all about empathy.","createdAt":"2023-08-11T11:46:36.400Z","fileIds":[],"replyId":"9ia2snpkx9","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ia4yb8a2x","text":null,"createdAt":"2023-08-11T12:35:39.994Z","fileIds":[],"replyId":null,"renoteId":"9ia4fskg0o","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ia7gdutes","text":null,"createdAt":"2023-08-11T13:45:42.437Z","fileIds":[],"replyId":null,"renoteId":"9ia703vcdi","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iaf11uubg","text":null,"createdAt":"2023-08-11T17:17:43.974Z","fileIds":[],"replyId":null,"renoteId":"9iaeszr4al","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ibf1hg52a","text":null,"createdAt":"2023-08-12T10:05:50.357Z","fileIds":[],"replyId":null,"renoteId":"9ibecygg21","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ibf9q7h2g","text":"@dansup@mastodon.social any thoughts on when the app will go live? (Apologies if you posted this elsewhere…)","createdAt":"2023-08-12T10:12:14.957Z","fileIds":[],"replyId":"9ibaqwcwwh","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ibfju4z2j","text":null,"createdAt":"2023-08-12T10:20:06.611Z","fileIds":[],"replyId":null,"renoteId":"9ib8te1ksl","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ibpc1m04l","text":null,"createdAt":"2023-08-12T14:53:59.208Z","fileIds":[],"replyId":null,"renoteId":"9ibbqjjcru","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ibpghn95o","text":null,"createdAt":"2023-08-12T14:57:26.613Z","fileIds":[],"replyId":null,"renoteId":"9gggro7k6v","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9idi4op42e","text":"i just read a book that isn't published yet... wonder if i should add it to my #Bookwyrm anyways\n\n#books #bookstodon #poetry","createdAt":"2023-08-13T21:07:50.920Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ieaoszkvj","text":null,"createdAt":"2023-08-14T10:27:18.848Z","fileIds":[],"replyId":null,"renoteId":"9ie3p808hs","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ieoj485oe","text":null,"createdAt":"2023-08-14T16:54:48.101Z","fileIds":[],"replyId":null,"renoteId":"9iejza008m","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9if1klr2z7","text":"I saved a Pumking beer from last year to have when I wanted a pumpkin spice but none were around. \n\nSeems I waited too long.","createdAt":"2023-08-14T22:59:52.478Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9if1u6pg0w","text":"@Yuki@im-in.space Ive been thinking about self host as well, but cant decide what to use (well. Other than gitlab is probably too much for me)","createdAt":"2023-08-14T23:07:19.540Z","fileIds":[],"replyId":"9if0egeoy1","renoteId":null,"poll":null,"cw":"unpopular opinion","visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9if6me0njf","text":"@Yuki@im-in.space those two are my primary choices.","createdAt":"2023-08-15T01:21:13.847Z","fileIds":[],"replyId":"9if20ayw20","renoteId":null,"poll":null,"cw":"unpopular opinion","visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9if8pqhkqz","text":null,"createdAt":"2023-08-15T02:19:49.208Z","fileIds":[],"replyId":null,"renoteId":"9if17cj4qs","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ifu191xym","text":"@Yuki@im-in.space I did a gitlab install on a raspberry pi hat lived in my house for a bit. Used a tutorial I found somewhere. It worked but was slow at times. \n\nSo instead I just put git on a pi zero and ssh into that for the house.","createdAt":"2023-08-15T12:16:38.421Z","fileIds":[],"replyId":"9if8v7uwrb","renoteId":null,"poll":null,"cw":"re: unpopular opinion","visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ig1ml0jyh","text":"@ajroach42@retro.social @jos@freeradical.zone @abracanabra@wandering.shop your guidelines can be fluid, I used to change mine all the time. If the pay rate is a test, its ok to say that: \n\nRate is X for issues Y and Z; rates for future issues will be based on how well those sell (or some other explanation) \n\nI always found it was better to be specific in the short term, rather than post guidelines that were meant for always. And usually updated them each reading period / volume. \n\nGood luck on the submission pile! (It can be daunting…)","createdAt":"2023-08-15T15:49:11.011Z","fileIds":[],"replyId":"9if5ciwgwh","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ig449ex3k","text":"@ajroach42@retro.social apologies for one more while I have your ear: \n\nWe also strongly prefer submissions to be licensed CC-BY-SA\n\nI would rephrase this to \n\nWe also strongly prefer to publish your work licensed CC-BY-SA\n\nWhile I don't think you are meaning to do so, if i license a submission as CC-BY-SA, there is literally nothing wrong with just publishing it as is, which is not the intention of either the submitter or the market. \n\nsubmissions should be closed, licenses are for works being published. \n\nAlso, your mag looks a great idea, and I'm looking forward to seeing its first issue! (now if i could just get my account to follow yours....)","createdAt":"2023-08-15T16:58:55.017Z","fileIds":[],"replyId":"9ig1ml0jyh","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ig765aqfw","text":"i broke and opened Twitter yesterday to see how things were going. In the middle of the mess was one of the writers I know talking about their cancer diagnosis. Something they had posted about several days before and I had missed. \n\nyou see, it isn't \"Twitter\" that we lost. it never was. And those that flail and draw lines about that site have lost perspective on what a _social_ network means for most of us. \n\nand it is that, that social connection, those people who will never come to the fediverse, those that I will lose, that I will mourn.","createdAt":"2023-08-15T18:24:21.842Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9igefuszmx","text":null,"createdAt":"2023-08-15T21:47:52.115Z","fileIds":[],"replyId":null,"renoteId":"9ig9c628r7","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ih5sn51it","text":null,"createdAt":"2023-08-16T10:33:38.341Z","fileIds":[],"replyId":null,"renoteId":"9ih3fbw0fs","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ih5vgi1j0","text":null,"createdAt":"2023-08-16T10:35:49.705Z","fileIds":[],"replyId":null,"renoteId":"9igyl8548s","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9ih6ex8jjx","text":"despite blocking someone, #Calckey shows me their posts all the time, because it shows the replies, and back fills the original commenter. \n\nfor me, it is annoying. For someone who is blocking for safety, this is an issue.","createdAt":"2023-08-16T10:50:57.859Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ihnd56xx8","text":"@tournesol@peculiar.florist its a good point. Ill see about doing so later today.","createdAt":"2023-08-16T18:45:28.329Z","fileIds":[],"replyId":"9ihlppmume","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9ihon8v11z","text":"@tournesol@peculiar.florist done. There was already an issue so I contributed to the thread.","createdAt":"2023-08-16T19:21:19.261Z","fileIds":[],"replyId":"9ihlppmume","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9ihshki5lm","text":"@sylvia@writing.exchange YES to the Blue Sword! \n\n(going to keep the rest of this list, for science.)","createdAt":"2023-08-16T21:08:52.877Z","fileIds":[],"replyId":"9ihimod4gg","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iip8t4o94","text":"I just read a click bait article about Disney park attendance (youll never guess the reason attendance is low!) \n\nThe heat! Disney world is _miserable_ in the heat. There is so little shade and actual ground that the parks are hot.","createdAt":"2023-08-17T12:25:51.480Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iisy0tkp3","text":"dye my eyes and call me prettyyyyyYYYYYYYyyyyyyy\n\nyyyyyyyyYYYYYYYYYYYYyyyyyyyyyyyYYYyyyyyyyyyYYY","createdAt":"2023-08-17T14:09:26.696Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ij6ug7a2h","text":null,"createdAt":"2023-08-17T20:38:34.630Z","fileIds":[],"replyId":null,"renoteId":"9ij2scggro","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ij7eolh3u","text":"@bitterkarella@sfba.social this lead is so perfect the rest is just bonus. Brava.","createdAt":"2023-08-17T20:54:18.629Z","fileIds":[],"replyId":"9ij2scggro","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ij7h3iw3w","text":"As a poet I have thoughts about words. \n\nFor example “bravado” the o sound and the end brings in down. Feel it in your face when you say it. \n\n“Bravada” now theres a word! The a at the end hits you, sounds more like what it means.","createdAt":"2023-08-17T20:56:11.288Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iklclp6q6","text":"i made mistakes and now i have too many spider plants. 0_0\n\n#gardening #spiderplant","createdAt":"2023-08-18T20:12:22.362Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iklfinfqm","text":"@LunaSee@mas.to i hope not... because there is going to be like 30 in this house if all the spiderlings root...","createdAt":"2023-08-18T20:14:38.379Z","fileIds":[],"replyId":"9iklep1cqh","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iklnu8nsl","text":"@LunaSee@mas.to this is the start of my indoor plant journey. I've had one spider plant alive for 18 months, and one coleus for a year. So naturally I decided to expand... \n\n(I may also have a coleus issue, but how was I to expect all the seeds to actually grow? that never happens!)\n\ni blame Gardener's World for this. (thank you Monty!)","createdAt":"2023-08-18T20:21:06.647Z","fileIds":[],"replyId":"9iklkv9crv","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ikw3jdvyb","text":"Just saw Barbie. It was just as amazing as everyone said it would be. Loved it.","createdAt":"2023-08-19T01:13:15.235Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9inek3bkeg","text":"Its half me.","createdAt":"2023-08-20T19:25:33.008Z","fileIds":[],"replyId":null,"renoteId":"9ine3cowdn","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9inek684eh","text":null,"createdAt":"2023-08-20T19:25:36.772Z","fileIds":[],"replyId":null,"renoteId":"9ine3cowdn","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iouoae2x8","text":null,"createdAt":"2023-08-21T19:44:28.826Z","fileIds":[],"replyId":null,"renoteId":"9iohtxgout","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iplnahb9w","text":null,"createdAt":"2023-08-22T08:19:31.919Z","fileIds":[],"replyId":null,"renoteId":"9ipj9h1c5u","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iplv3w7a7","text":null,"createdAt":"2023-08-22T08:25:36.631Z","fileIds":[],"replyId":null,"renoteId":"9ipdeqm8tj","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ipqje0sj3","text":"Good morning #horrorfam it is my first post Twitter book launch and I could use your help to spread the word. \n\nTHE QUIET WAYS I DESTROY YOU by Jessica McHugh\n\nThis massive collection of cosmic horror blackout poetry contains 155 pieces of poetry and art. \n\nThe book is amazing. But you dont have to believe me. See what Stephanie Wytovich, Lee Murray, Hailey Piper and the grandmaster herself, Linda Addison has to say about it. \n\nOut now in print and ebook \n\nhttps://apokrupha.com/product/the-quiet-ways-i-destroy-you/\n\n@horror@a.gup.pe @horrorbooks@a.gup.pe #indiehorror #horror #poetry","createdAt":"2023-08-22T10:36:27.964Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iqd984n67","text":"@mayaisloading@beige.party Jaws. Jurassic Park.","createdAt":"2023-08-22T21:12:24.935Z","fileIds":[],"replyId":"9iqcjnnk2g","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ith9rjpse","text":null,"createdAt":"2023-08-25T01:28:07.093Z","fileIds":[],"replyId":null,"renoteId":"9itgqg9cou","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9iu452cj0n","text":"because when you are Mary J Blige, U2 is there to play backup \n\nhttps://www.youtube.com/watch?v=ZpDQJnI4OhU","createdAt":"2023-08-25T12:08:18.979Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ivo0cm2ub","text":null,"createdAt":"2023-08-26T14:12:17.498Z","fileIds":[],"replyId":null,"renoteId":"9ivlwiaglw","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iwzu7m1e5","text":null,"createdAt":"2023-08-27T12:31:12.649Z","fileIds":[],"replyId":null,"renoteId":"9it68014v5","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ixmw19giz","text":"hell doesn't hurt. it itches.","createdAt":"2023-08-27T23:16:28.900Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ixne59vpa","text":"@ellane@pkm.social i'm in this boat. I did get the chance to try a remarkable for a few minutes. I did start using the pencil on my ipad again, and this time thinking what it was I wanted to do---as, I am not going to stop the paper notes---but being more interactive, esp with drawing on notes. \n\ni do still want that remarkable.","createdAt":"2023-08-27T23:30:33.907Z","fileIds":[],"replyId":"9ixn57l4li","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iydk6uwm1","text":"Happy Carmilla day to all in the #horrorfam who celebrate \n\n@horror@a.gup.pe","createdAt":"2023-08-28T11:43:05.912Z","fileIds":[],"replyId":null,"renoteId":"9iybg7l4gy","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iydti1xmd","text":"@mzauk@mstdn.social @ellane@pkm.social Ive been playing with focus modes a bit especially now that you can change which home pages to display. I think its really one or two features away from being a seriously useful tool for different aspects of your time / day / etc. \n\nLike I made a photographer one on my phone that has all the photo apps on the front page, not what Id normally want, but it is useful in those moments","createdAt":"2023-08-28T11:50:20.325Z","fileIds":[],"replyId":"9iy7s81ke1","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iydzq21mn","text":"@Shanmonster@c.im for SF, If youve not seen the submission grinder, I suggest looking there! They do such a great job of collecting and organizing market listing.","createdAt":"2023-08-28T11:55:10.633Z","fileIds":[],"replyId":"9iyditjklx","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iyeq48coa","text":"@mzauk@mstdn.social @ellane@pkm.social this. And an opt out / opt in for notifications. Sometimes I just want one or two apps to be quiet not all of them.","createdAt":"2023-08-28T12:15:42.060Z","fileIds":[],"replyId":"9iye3v9cmr","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iyh8p9mt1","text":null,"createdAt":"2023-08-28T13:26:08.362Z","fileIds":[],"replyId":null,"renoteId":"9iygsjyws6","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9iys00bfuq","text":"Seems low…","createdAt":"2023-08-28T18:27:18.555Z","fileIds":[],"replyId":null,"renoteId":"9iy100dkt0","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9iyzwod0ve","text":"@atomicpoet@firefish.social I disagree. Search is a tech problem and was always going to be fixed. \n\nOpt in v opt out will show what values the fediverse will take.","createdAt":"2023-08-28T22:08:40.020Z","fileIds":[],"replyId":"9iyzbs6str","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j0m94jxgh","text":null,"createdAt":"2023-08-30T01:21:58.605Z","fileIds":[],"replyId":null,"renoteId":"9j0lyl88fb","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9j157a3upi","text":null,"createdAt":"2023-08-30T10:12:25.194Z","fileIds":[],"replyId":null,"renoteId":"9j10j69cp9","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j18bxy8yw","text":"@DelilahTech@tech.lgbt i spend half the time looking through emojis going \"why don't they have an emoji for this?\" and the other half, \"why do they have an emoji for that??\"","createdAt":"2023-08-30T11:40:01.568Z","fileIds":[],"replyId":"9j16jezcul","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j1nph3hg2","text":null,"createdAt":"2023-08-30T18:50:27.149Z","fileIds":[],"replyId":null,"renoteId":"9j1gq888pv","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j2nqfo1y2","text":"i have these small bits of code i've written, a txt based journal, a Wordpress plugin, things like that. \n\nAnd I keep hesitating to post them. I'm not sure any are in a turn-key state (the journal is nearly there), but that's not quite it. It is more that I worry there is something buried in the code / git history that shouldn't be there. \n\nwhich is, perhaps, silly. \n\n#oss","createdAt":"2023-08-31T11:38:58.129Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j2o2u0nyy","text":"we've hit the 2/3rds mark of the year (thank you #Calckey calendar). not a mark i'd usually think about (and one I honestly would have thought is later in the year...)\n\nso, since I know it, going to spend some time thinking about goals, reassessing for the year.","createdAt":"2023-08-31T11:48:36.599Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j2p1u1k1z","text":"@tournesol@peculiar.florist gah, speaking of I have to update my vaultwarden certs. *cries*","createdAt":"2023-08-31T12:15:49.592Z","fileIds":[],"replyId":"9j2oq42v0p","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j2roaydjq","text":"vaultwarden updated. i may have remembered how to do most of that! still, i documented it for future me. trying to be nicer to that person.","createdAt":"2023-08-31T13:29:17.173Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j2t38n5q9","text":null,"createdAt":"2023-08-31T14:08:53.633Z","fileIds":[],"replyId":null,"renoteId":"9j2s4hdsnc","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j2tqtsyrt","text":"i've been listening to James Laid a lot lately, and I blame @dynamicsymmetry@wandering.shop\n\nbut it such a good album","createdAt":"2023-08-31T14:27:14.146Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j2ynfa2aq","text":null,"createdAt":"2023-08-31T16:44:33.434Z","fileIds":[],"replyId":null,"renoteId":"9j2xjctc8z","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j38acer1y","text":null,"createdAt":"2023-08-31T21:14:19.347Z","fileIds":[],"replyId":null,"renoteId":"9j31ucagk1","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j45n7uueq","text":null,"createdAt":"2023-09-01T12:48:07.302Z","fileIds":[],"replyId":null,"renoteId":"9j3e5s0w4q","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j47d7fcie","text":null,"createdAt":"2023-09-01T13:36:19.416Z","fileIds":[],"replyId":null,"renoteId":"9j46o4bsgm","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j49oag3r3","text":"Fuuuuuuuuck. #amreading","createdAt":"2023-09-01T14:40:55.779Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j4bc07bxk","text":"@wordsmith@writing.exchange what did you get?!","createdAt":"2023-09-01T15:27:21.863Z","fileIds":[],"replyId":"9j4aizk0uz","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j4rqgwon5","text":null,"createdAt":"2023-09-01T23:06:30.552Z","fileIds":[],"replyId":null,"renoteId":"9j4l7jowmt","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j4sa6fbp6","text":null,"createdAt":"2023-09-01T23:21:50.087Z","fileIds":[],"replyId":null,"renoteId":"9j4qutlco3","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9j4sbbssp8","text":"Today involved driving from one mechanic to another. But there was lunch with an old friend and some PSL.","createdAt":"2023-09-01T23:22:43.708Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j5hgg6emb","text":null,"createdAt":"2023-09-02T11:06:33.062Z","fileIds":[],"replyId":null,"renoteId":"9j4l7sy8j9","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j5mjjqldd","text":"@Clundoff@wandering.shop oh geez. that's no good.","createdAt":"2023-09-02T13:28:55.725Z","fileIds":[],"replyId":"9j5jjogoww","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j5ssh9o4v","text":"I ate the last mango in Paris\nTook the last plane out of Saigon\nTook the first passport to China\nAnd, Jimmy, theres still so much to be done.","createdAt":"2023-09-02T16:23:50.124Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j5va1rnl1","text":"@Clundoff@wandering.shop same! I hope it gets fixed soon. I may uh go screen shot some things for the future.","createdAt":"2023-09-02T17:33:29.075Z","fileIds":[],"replyId":"9j5uonnch3","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j653j78ld","text":"@nantucketebooks@fosstodon.org nice! Ill have to look at this more when Im not on my phone. \n\nIve made a Perl wrapper for pandoc to make my ebooks. Markdown inputs. EPub and docx outputs. Still have to do some print formatting but usually not as much. \n\nIts not quite as nicely packaged as yours tho :-)","createdAt":"2023-09-02T22:08:21.236Z","fileIds":[],"replyId":"9j5tfch4j5","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j774vevsm","text":null,"createdAt":"2023-09-03T15:53:09.127Z","fileIds":[],"replyId":null,"renoteId":"9j76tvhcrv","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j8lwfm1p8","text":"Well. That docker compose file didnt work. \n\nNow to convince myself I didnt actually want that so I dont spend all day trying to fix it.","createdAt":"2023-09-04T15:34:15.817Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9j8u27islz","text":null,"createdAt":"2023-09-04T19:22:42.196Z","fileIds":[],"replyId":null,"renoteId":"9j8trtwwul","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9jbawpjga7","text":"My mind is a distracted mess this morning and the fact I dont have time for that is only making things worse.","createdAt":"2023-09-06T12:49:51.436Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jblp38691","text":null,"createdAt":"2023-09-06T17:51:51.702Z","fileIds":[],"replyId":null,"renoteId":"9jblaxfc5n","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jbouxxpm3","text":null,"createdAt":"2023-09-06T19:20:23.629Z","fileIds":[],"replyId":null,"renoteId":"9jbonta0lg","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9jbovfitm6","text":null,"createdAt":"2023-09-06T19:20:46.421Z","fileIds":[],"replyId":null,"renoteId":"9jbo8m7kkq","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jbz7qfjnt","text":"All that work and you cant upgrade the armor? \n\n*cries in Hyrulian*\n\n#totk #botw #zelda","createdAt":"2023-09-07T00:10:16.591Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jczbkmg2t","text":null,"createdAt":"2023-09-07T17:01:01.864Z","fileIds":[],"replyId":null,"renoteId":"9jbjc5l4xw","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9je83ueeyc","text":"Just read some speculative poetry (fantasy / sci fi / horror) and I will say, i still have no idea what makes them speculative. Unlike the fiction side, there arent the structures of genre to fall on. \n\nMost of them could have easily been lit poetry (oh that word), it isnt like poets are normally adverse to the dark, the fantastic or the what-may-be. \n\n#poetry #specpoetry #horrorpoetry","createdAt":"2023-09-08T13:54:44.006Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9je8nri924","text":"@Shanmonster@c.im Im suspecting it is more “this poem fits the vibe of the magazine” than anything else …","createdAt":"2023-09-08T14:10:13.377Z","fileIds":[],"replyId":"9je85kw8yp","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9je90djj3x","text":"related: the poem I am trying to finish may be the death of me, which is ironic in that it is about being in the underworld. \n\n#poetry #amwritingpoetry","createdAt":"2023-09-08T14:20:01.807Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jfqcqpexm","text":"New notebook day! Always a good feeling, of moving from one to the next. A passage of time marked by ink filled pages. \n\nAnd now a blank canvas to fill.","createdAt":"2023-09-09T15:13:18.386Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jg3rqybgz","text":"@nichorra@mastodon.ie @bookstodon@a.gup.pe anything by Lucille Clifton or Tracy K. Smith.","createdAt":"2023-09-09T21:28:53.555Z","fileIds":[],"replyId":"9jfzhmoo3k","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jjuez9ri9","text":"I have three or so poems that are written in a style askew to my normal style. They are still my voice, but have this different feel. I love them. And have no idea what headspace I was in to create them. \n\n#poetry #amwriting","createdAt":"2023-09-12T12:18:05.967Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jjusvg0jg","text":"I run a personal instance of BookWyrm and quite like it! It has a lot of the useful features of GoodReads without the burden of GoodReads. \n\nIve not had the best luck in getting it to federate, but I suspect that is me. \n\nhttps://Books.jacobhaddon.com","createdAt":"2023-09-12T12:28:54.192Z","fileIds":[],"replyId":null,"renoteId":"9jjt6xncdx","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jnjhtbg1j","text":null,"createdAt":"2023-09-15T02:23:27.148Z","fileIds":[],"replyId":null,"renoteId":"9jlqgf2w1c","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jo1pl9034","text":"Fables is now in the Public Domain. https://billwillingham.substack.com/p/willingham-sends-fables-into-the\n\n#publicdomain","createdAt":"2023-09-15T10:53:23.028Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jo65ryldq","text":null,"createdAt":"2023-09-15T12:57:56.685Z","fileIds":[],"replyId":null,"renoteId":"9jjstpkg0f","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jolnrthou","text":"I saw a Harley rider give the biker wave to someone on a elective bike \n\nAnd. Like. \n\nMaybe we will be ok","createdAt":"2023-09-15T20:11:50.549Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jsrizwzva","text":null,"createdAt":"2023-09-18T18:07:10.163Z","fileIds":[],"replyId":null,"renoteId":"9js12j7krx","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jsrmztzw2","text":"@liminalfiction@mastodon.otherworldsink.com for the longest time I waited until it was finished. The reason for that was Wizards and Glass. \n\nMore recently Ive been open to buying a series that isnt finished. I think the market and expectations are different for series now.","createdAt":"2023-09-18T18:10:16.679Z","fileIds":[],"replyId":"9jsp6v8ooz","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jtu54y8js","text":"my current dilemma with Tears of the Kingdom is figuring out what to wear with the Champion Tunic... Like, why isn't there a whole outfit??\n\n#zelda #totk #breathofthewild","createdAt":"2023-09-19T12:08:08.528Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jv7n7qfgl","text":"We wants it precious. We wants it so much. \n\nhttps://nikonrumors.com/2023/09/20/nikon-zf-camera-officially-announced.aspx/\n\n#nikon #nikonzf #photography","createdAt":"2023-09-20T11:13:53.127Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jwmrcu1vr","text":null,"createdAt":"2023-09-21T11:04:46.777Z","fileIds":[],"replyId":null,"renoteId":"9jwjb0xcmp","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jwmyl2jw1","text":null,"createdAt":"2023-09-21T11:10:24.043Z","fileIds":[],"replyId":null,"renoteId":"9jwem8jce1","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9jwn1fdgw3","text":"It me.","createdAt":"2023-09-21T11:12:36.628Z","fileIds":[],"replyId":null,"renoteId":"9jwem8jce1","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9jwoxlhd3h","text":"Some of the poetry books Ive been reading lately suggest the poet does read poetry. \n\nThey lack—lack in a way that experience with other poets would help with. And yet. \n\nIt makes me wonder why someone would choose to create art that they themselves do not like to consume. \n\n#poetry #poets #amreadingpoetry","createdAt":"2023-09-21T12:05:37.153Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jwp5ao83v","text":"Also. “It reads like a first draft” should really be received as a neutral statement rather than an insult.","createdAt":"2023-09-21T12:11:36.392Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jwp710x3w","text":"I sometimes feel snobbish when I have poetry opinions. Yes I had schooling for poetry comp, but the primary experience of that schooling was an immersion into poetry. It was about learning how to criticize and be criticized so that we could improve ourselves as poets. \n\nAnd those who did not have that experience can often see that sort of comment as abrasive. Damaging perhaps. \n\nBut it is one thing to think something youve made is good and another to have to defend that stance against criticism by people you trust. And that is where you find your voice.\n\n#poetry #poets","createdAt":"2023-09-21T12:12:57.201Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jwr3mlha5","text":"@BryantBilling@mastodon.art Im still in the DSLR side of things so (when I can afford it) this will be my mirrorless intro. Will be fun to take it and the FM out to shoot.","createdAt":"2023-09-21T13:06:17.765Z","fileIds":[],"replyId":"9jviuz4oej","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jwr5jeqaa","text":"Related. I cannot settle on a pen this morning. #amwritingpoetry (sorta)","createdAt":"2023-09-21T13:07:46.946Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9jzrmbrftp","text":null,"createdAt":"2023-09-23T15:44:08.715Z","fileIds":[],"replyId":null,"renoteId":"9jzq5wmwt9","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k0xv9u7ud","text":"@anderlandbooks@bookstodon.com i use both KDP and IngramSpark. IS can be frustrating, but i think worth it with the distribution. \n\nnow, who has more frustrating reports, KDP or IS? that is the question.","createdAt":"2023-09-24T11:26:49.999Z","fileIds":[],"replyId":"9k0pnq6ggx","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k0xyfhyum","text":"the longer I use #calckey the less I am ok with its quirks, the constant reloading, the awkward thread presentations. it feels like software that went for fancy before it was usable. \n\nadd in the user blocking issues... #sigh \n\n#fediverse","createdAt":"2023-09-24T11:29:17.302Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k0yregyvx","text":"#Horrorfam, here's where it all started. The Castle of Otranto is marked as the first horror novel in English, paving the way for Ann Radcliffe, Mary Shelly and the rest of the gothic movement.","createdAt":"2023-09-24T11:51:48.994Z","fileIds":[],"replyId":null,"renoteId":"9k0u62bcni","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k10m8w110","text":null,"createdAt":"2023-09-24T12:43:47.713Z","fileIds":[],"replyId":null,"renoteId":"9k0v0s0w0h","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k1bpgmq5z","text":"@anderlandbooks@bookstodon.com if it helps I find the two of equal frustrations just in different ways. Your black and white interior PDF can be the same but your cover will be different. While KDP can be unpredictable in their review, IS is much more strict in requirements. \n\nI use both for a bunch of books. I am both grateful for POD and seriously looked into what kind of space and capital Id need to print my own. Lol","createdAt":"2023-09-24T17:54:13.490Z","fileIds":[],"replyId":"9k14e188b9","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k1c3itg71","text":"Ive written about this before but it is a problem with no easy answer. People have more options with TV and such, and life got more expensive. \n\nShould books cost more to make up for fewer sales? Im not sure $30 paperbacks will go over very well (I, myself, refuse to pay over $10 for ebooks) \n\nBut a life once available to writers, not all, but enough, has been stripped away and that too takes with it the promise of future art.","createdAt":"2023-09-24T18:05:09.508Z","fileIds":[],"replyId":null,"renoteId":"9k0xdagow5","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k2crodorx","text":"history of poetry on Wikipedia + Amazon / Google Books was a hole I fell into for most of last evening...","createdAt":"2023-09-25T11:11:42.636Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k2glkfg1o","text":"I've been reading Enheduana, The Complete Poems of the World's First Author by Sophus Helle, and it is fantastic. The poetry is fantastic, the commentary is fantastic and there are bonus essays about the history and translation. \n\nhttps://books.jacobhaddon.com/book/130/s/enheduana\n\n#books #bookstodon #poetry #classicpoetry","createdAt":"2023-09-25T12:58:56.044Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k2h8gws3s","text":"Ok #horrorfam, Apex Magazine is doing a subscription drive, the number of subs they get will determine the future of the magazine. \n\nApex is one of the best we have, and deserve our support. \n\nand to prove that, they also have a great list of other mags that ALSO should be subscribed to. \n\nShort fiction needs our support, so if you can, now is the time. \n\nhttps://apex-magazine.com/apex-blog/its-not-a-sub-drive-but-its-a-sub-drive/\n\n@horror@a.gup.pe @horrorbooks@a.gup.pe @bookstodon@a.gup.pe #horror #horrorlit #horrorbooks #bookstodon","createdAt":"2023-09-25T13:16:44.572Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k3q9z6em3","text":null,"createdAt":"2023-09-26T10:17:37.622Z","fileIds":[],"replyId":null,"renoteId":"9k3p3kgojz","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k3qqr02nj","text":null,"createdAt":"2023-09-26T10:30:40.178Z","fileIds":[],"replyId":null,"renoteId":"9k3a279kg2","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k3v79laxy","text":"@tootbrute@fedi.arkadi.one @DelilahTech@tech.lgbt Ive been using bookwyrm to track my reading. I was never much into goodreads but like BW for the most part. \n\nIm not connected with anyone so I dont know how the social media part is. Most of the books I had were in the system tho I had to add some small press stuff by hand.","createdAt":"2023-09-26T12:35:29.230Z","fileIds":[],"replyId":"9k3nopg0x0","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9k3wwdl543","text":null,"createdAt":"2023-09-26T13:23:00.425Z","fileIds":[],"replyId":null,"renoteId":"9k3wrs4w3x","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k4cvxwqz1","text":"I just wrote a poem? And it didnt suck? Thats been a half minute.","createdAt":"2023-09-26T20:50:33.962Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k56enyc9y","text":"@anderlandbooks@bookstodon.com I have a book called A Field Guide of Demons (and another about Angels) for similar reasons. Great resources!","createdAt":"2023-09-27T10:36:56.388Z","fileIds":[],"replyId":"9k4xkuaotg","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k5dadofto","text":"@ruud@mastodon.world Ive been enjoying my instance (single user) for the bookkeeping. Not had too much luck with the social parts but I suspect that will come","createdAt":"2023-09-27T13:49:33.759Z","fileIds":[],"replyId":"9k5ai1zcr1","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k7jtvngau","text":"@anikeaten@kind.social some are easy for me. Like when the poem needs something like context, I can use the title for that. \n\nThe harder ones are the poems that just need identification. Ive even resorted to “the first line is also the title”","createdAt":"2023-09-29T02:28:13.564Z","fileIds":[],"replyId":"9k7i1bww5n","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k83c0j1fo","text":"@haley_exe@mstdn.social I read somewhere about being away from writing too long makes it feel like starting over at times. \n\nThis is where I am too in my poetry. Parts will come easily to me and others feel like Im back in school.","createdAt":"2023-09-29T11:34:12.397Z","fileIds":[],"replyId":"9k7gqzpc2u","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k874dz4mz","text":null,"createdAt":"2023-09-29T13:20:15.040Z","fileIds":[],"replyId":null,"renoteId":"9k871q9kmk","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9k88hb7wqm","text":"@pseudonymsupreme@pnw.zone the zelda games are absolutely amazing. if you like pixelart and dungeon crawlers, Children of Morta is recommended!","createdAt":"2023-09-29T13:58:17.612Z","fileIds":[],"replyId":"9k8816i0pq","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kadhw1efx","text":null,"createdAt":"2023-10-01T01:54:15.026Z","fileIds":[],"replyId":null,"renoteId":"9k9imne0ci","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kcdp6wpcb","text":"Intimacy Does Not Scale\n\na fantastic piece on some of the issues with social media interaction. \n\nhttps://archive.ph/AUpYp#selection-265.0-265.23\n\n#fediverse #socialmedia","createdAt":"2023-10-02T11:35:28.057Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kce2xw4ee","text":null,"createdAt":"2023-10-02T11:46:09.556Z","fileIds":[],"replyId":null,"renoteId":"9kca8q5k74","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kcp7sqc80","text":null,"createdAt":"2023-10-02T16:57:51.924Z","fileIds":[],"replyId":null,"renoteId":"9kcj8de0t1","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kcqxmfmbh","text":null,"createdAt":"2023-10-02T17:45:56.434Z","fileIds":[],"replyId":null,"renoteId":"9kcpn59c95","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kcr1nlpbk","text":"the daily writing habit can be at times controversial in the writing community but as habits go, it is a good one to at least give a go to. writing practice, such as the timed writing suggestion, are good for the mind and figures the same.","createdAt":"2023-10-02T17:49:04.573Z","fileIds":[],"replyId":null,"renoteId":"9kcj8de0t1","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kcrq85ndm","text":null,"createdAt":"2023-10-02T18:08:10.955Z","fileIds":[],"replyId":null,"renoteId":"9kcrpwm8dk","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kcrvcohdz","text":"every once in a while i'll go see what is out there for #markdown editors, and re-learn the frustration that so many will only work with .md files.","createdAt":"2023-10-02T18:12:10.097Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kdsarkk16","text":"@anderlandbooks@bookstodon.com What I loved about writing a time travel story was playing with cause and effect--having things happen well before the events were set in motion.","createdAt":"2023-10-03T11:11:55.412Z","fileIds":[],"replyId":"9kdrcedczv","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kdse3xv1c","text":"was going through old notebooks last night, and while I was looking for specific things, found myself typing up a bunch of #haiku and #tanka that I'd forgotten. \n\ni'd been writing haiku as a monostich for a while, something I still recommend for poets to try.","createdAt":"2023-10-03T11:14:31.411Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kdw55lf8d","text":"@chrisisgr8@tech.lgbt you can. Depending on how you set it up. I had a normal install and reinstalled (with formatting) over it but had to do the partitions manually the second time so it did not touch the home directory. \n\nIts been a half minute since I did it tho so id have to look it up.","createdAt":"2023-10-03T12:59:32.115Z","fileIds":[],"replyId":"9kbrboeorj","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kdw8muw8k","text":"@chrisisgr8@tech.lgbt here is the note I left mysefl, let me see if i can find the page I got it from: \n\nWhen reinstalling, to not lose data, use the custom view to recreate the following, but make sure 'reformat\" is NOT clicked for HOME","createdAt":"2023-10-03T13:02:14.456Z","fileIds":[],"replyId":"9kdw55lf8d","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kdwgnwq8u","text":"@chrisisgr8@tech.lgbt more: https://discussion.fedoraproject.org/t/how-to-reinstall-clean-install-fedora-34-without-losing-data-home/72779/9","createdAt":"2023-10-03T13:08:29.066Z","fileIds":[],"replyId":"9kdw8muw8k","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ke1bugps6","text":null,"createdAt":"2023-10-03T15:24:42.361Z","fileIds":[],"replyId":null,"renoteId":"9ke0ie00oe","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ke4n8tz69","text":null,"createdAt":"2023-10-03T16:57:33.047Z","fileIds":[],"replyId":null,"renoteId":"9ke3majs3l","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kfg2ra8v8","text":"@NullNoMore@mastodon.social I keep hoping for an X port to switch … May have to dig the Wii U out of retirement for a bit","createdAt":"2023-10-04T15:05:18.752Z","fileIds":[],"replyId":"9kfdpo7cik","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kfga9m0w9","text":"@NullNoMore@mastodon.social Ive got the other three (four? Torna is stand alone and a DLC?) and adore the series. Had X on Wii Y since launch but got distracted by Splatoon…","createdAt":"2023-10-04T15:11:09.096Z","fileIds":[],"replyId":"9kfg8gq0w4","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kfv1uipin","text":null,"createdAt":"2023-10-04T22:04:30.529Z","fileIds":[],"replyId":null,"renoteId":"9kfozn68vn","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kgxazcn95","text":"@liminalfiction@mastodon.otherworldsink.com lists are how I ran LampLight. From the interaction with the authors to the formatting of the issue I had a list for each step so I didnt have to remember what to do. Make things consistent and straightforward","createdAt":"2023-10-05T15:55:22.103Z","fileIds":[],"replyId":"9kgvniu85n","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ki86u7u4k","text":"@mattblaze@federate.social i love B&W pictures, they can be moody, sure, but they are no more devoid of joy than color ones a are full; it is always about context and framing.","createdAt":"2023-10-06T13:47:50.778Z","fileIds":[],"replyId":"9kh0c3ig1p","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kia2mpzbz","text":null,"createdAt":"2023-10-06T14:40:33.671Z","fileIds":[],"replyId":null,"renoteId":"9kia08k0bv","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kl5vcpwem","text":null,"createdAt":"2023-10-08T15:06:14.180Z","fileIds":[],"replyId":null,"renoteId":"9kl5bz1sb4","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kl5yt73ep","text":"@NullNoMore@mastodon.social horror stories can be good too!","createdAt":"2023-10-08T15:08:55.503Z","fileIds":[],"replyId":"9kl5a7s0ap","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kmnbqgdya","text":"some bead craft on this day off. it is chilly, and feels like fall, which is nice","createdAt":"2023-10-09T16:02:38.125Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9knwmnq6zo","text":"My community (Indie Horror) has predominantly moved to Bluesky. Like 95%. And this leaves me with a feeling of isolation that is both real and not real.","createdAt":"2023-10-10T13:10:50.526Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ko16wlunu","text":"@tournesol@peculiar.florist not of the group I was attached to. A lot made accounts in the November exodus but then didnt stay for a plethora of reasons.","createdAt":"2023-10-10T15:18:33.618Z","fileIds":[],"replyId":"9knwq5wazv","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ko18kj2o3","text":"@Shanmonster@c.im and Im glad I found you! And I know there are writers and publishers here, it is more of a lament to what is gone.","createdAt":"2023-10-10T15:19:51.278Z","fileIds":[],"replyId":"9knwti8g0j","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ko19como9","text":"I changed my iPhone to monochrome which is supposed to make it boring and it fits the mood of October pretty well.","createdAt":"2023-10-10T15:20:27.766Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ko1cut0p3","text":"@rooster@chaosfem.tw I would say the M1 Air is the model to look out for. It does go on sale at other sellers than Apple and is a great machine.","createdAt":"2023-10-10T15:23:11.220Z","fileIds":[],"replyId":"9ko19908of","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9kod5m555v","text":"@rooster@chaosfem.tw and this popped up in my RSS feed, if anything may give a place to start https://arstechnica.com/shopping/2023/10/the-best-laptop-deals-arent-on-amazon-heres-where-to-shop-during-prime-big-deal-days/","createdAt":"2023-10-10T20:53:28.793Z","fileIds":[],"replyId":"9ko1cut0p3","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9kod94zs66","text":"made my computer black and white as well... Doubt I'll keep that long, as I need color for work, BUT it is fun.","createdAt":"2023-10-10T20:56:13.192Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9koddood6z","text":"grey and gray are two different colors.","createdAt":"2023-10-10T20:59:45.325Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kpbmy7zjn","text":"i've been listening to this album so much lately that Siri actually recommends playing it as a common action...","createdAt":"2023-10-11T12:58:44.543Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kpboswbjw","text":"@WyrdKnitting@mastodon.art that's fantastic.","createdAt":"2023-10-11T13:00:10.955Z","fileIds":[],"replyId":"9kp3wrww9e","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kpjowarxi","text":null,"createdAt":"2023-10-11T16:44:12.291Z","fileIds":[],"replyId":null,"renoteId":"9kpir394ud","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kplc9b0a8","text":null,"createdAt":"2023-10-11T17:30:21.852Z","fileIds":[],"replyId":null,"renoteId":"9kpl3eqw8s","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kpohl5eup","text":null,"createdAt":"2023-10-11T18:58:29.330Z","fileIds":[],"replyId":null,"renoteId":"9kpmrqtcjp","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kpoiq20uw","text":"@susankayequinn@wandering.shop ah! those titles / covers are fantastic!","createdAt":"2023-10-11T18:59:22.344Z","fileIds":[],"replyId":"9kpmrqtcjp","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kporg12vz","text":null,"createdAt":"2023-10-11T19:06:09.254Z","fileIds":[],"replyId":null,"renoteId":"9koxyrfslh","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kpow4qfwe","text":"@nillyrobot@mastodon.art oh! how so? wine?","createdAt":"2023-10-11T19:09:47.895Z","fileIds":[],"replyId":"9kpol3fsv5","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kpwpxaxgu","text":"This album definitely has a taste of what is to come but is lacking. I really, really wish there was a version of the psychedelic breakfast, without the eating sounds. I liked the music but cannot listen to it.","createdAt":"2023-10-11T22:48:55.257Z","fileIds":[],"replyId":null,"renoteId":"9kpvkw94b2","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kqzojotx1","text":null,"createdAt":"2023-10-12T16:59:35.981Z","fileIds":[],"replyId":null,"renoteId":"9kqrtrx4q9","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9kqztpvryh","text":"@matt@isfeeling.social Futura Now is such a great looking font. the license scared me off, however. Jost, while not as complete, filled the role for me.","createdAt":"2023-10-12T17:03:37.287Z","fileIds":[],"replyId":"9kqvytnsri","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kr542nizf","text":null,"createdAt":"2023-10-12T19:31:38.478Z","fileIds":[],"replyId":null,"renoteId":"9kr4oxj4x4","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ktthlxlwd","text":"it is raining, and so I am laying on the couch with my camera in my lap wondering too much about what I am doing.","createdAt":"2023-10-14T16:29:33.129Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ku6pff10m","text":"Me: *orders things from Amazon* \n\nAmazon: have this stuff delivered on Tuesday instead of tomorrow, fewer packages and saves time and stuff! \n\nMe: Uh. Sure. I dont need it tomorrow anyways. \n\n*ten minutes later* \n\nAmazon: you package is ready and will be delivered tomorrow!","createdAt":"2023-10-14T22:39:32.941Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kv7lil4i6","text":"...no YOU started crying at the end of Godzilla v Destroyah.","createdAt":"2023-10-15T15:52:16.216Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kv9femjqf","text":"I installed write freely to see how it was because obviously what I needed was another blogging platform that wouldnt be read.","createdAt":"2023-10-15T16:43:30.379Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kvav4k3yk","text":"@DelilahTech@tech.lgbt :-/ I can imagine how difficult this is. Im lucky that I love my name but Ive had other friends go through this for a bunch of reasons. Whats most important is when someone says the name aloud you think “thats me”","createdAt":"2023-10-15T17:23:43.443Z","fileIds":[],"replyId":"9kv95snkp6","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kvawxuayq","text":"@RickiTarr@beige.party Ive been binging on Godzilla. Tubi has a bunch","createdAt":"2023-10-15T17:25:08.050Z","fileIds":[],"replyId":"9kv8lrz4xv","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kvcvagy7w","text":"@kitirving@romancelandia.club Tiffany Aching!","createdAt":"2023-10-15T18:19:50.338Z","fileIds":[],"replyId":"9kvc2qfk3e","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kwba5wnq5","text":null,"createdAt":"2023-10-16T10:23:11.207Z","fileIds":[],"replyId":null,"renoteId":"9kw7abi8dq","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kx4by45cx","text":"@blogdiva@mastodon.social its been my thought that Twitter will eventually buy Bluesky, for \"code modernization\" or some non-sense, and allow federation with them both (for a price, I suspect), and thus re-acquiring all the users that fled in the first place.","createdAt":"2023-10-16T23:56:23.285Z","fileIds":[],"replyId":"9kx2ipwg5g","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kx4qcglfs","text":"Godzilla 2000 is really what is best in #Godzllla","createdAt":"2023-10-17T00:07:35.061Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kyr41fqkx","text":"@rooster@chaosfem.tw my 3.0 + 1 came today. Gotta carve out some time for a rewatch.","createdAt":"2023-10-18T03:21:51.686Z","fileIds":[],"replyId":"9kynrtqwcp","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzcd53siv","text":"With the refreshes, the slow loading, the poor performance of the infinite scroll, Im starting to re-think my choice of #Calckey as my #fediverse server. \n\n#YUNOhost doesnt currently have a Firefish upgrade path, and so I also worry Im going to have to lose the few interactions I do have here with a manual upgrade. \n\nBut, if I have to start over, it wont be to upgrade to Firefish at this point. I wish Mastodon had installed. \n\n#sigh","createdAt":"2023-10-18T13:16:48.280Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzcexgcj2","text":"@fallenhitokiri@social.screamingatmyscreen.com all i had to do to set up the Brother printer for the whole house was put in the Wi-Fi password. So much better. \n\nAnd it is a shame, my first HP printer was back in the Pentium days, and Im pretty sure if i could get ink for it, it would still work.","createdAt":"2023-10-18T13:18:11.676Z","fileIds":[],"replyId":"9kz9w7i0b5","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzck5tsjm","text":"Ill add that as a single user instance, something like GoToSocial is probably the right choice. It, unfortunately, does not federate well with all the things (Im not savvy enough on federation to know why it lets me follow accounts, but not see their posts, for example)\n\nI do think the future of the fediverse is in small to single user instances. The network becomes more resilient the more servers there are, and less likely major disruption occurs if huge servers start to block each other.","createdAt":"2023-10-18T13:22:15.808Z","fileIds":[],"replyId":"9kzcd53siv","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzieax717","text":"@rooster@chaosfem.tw 0_0","createdAt":"2023-10-18T16:05:40.171Z","fileIds":[],"replyId":"9kzhpsugzd","renoteId":null,"poll":null,"cw":"watching evangelion","visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzm5nhaiv","text":null,"createdAt":"2023-10-18T17:50:55.006Z","fileIds":[],"replyId":null,"renoteId":"9kzl1mw0is","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzu64xydv","text":"@Shanmonster@c.im I found that sometimes I can find the ending when I am editing.","createdAt":"2023-10-18T21:35:14.566Z","fileIds":[],"replyId":"9kzt6s4o81","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzwp0f689","text":"updated my #Framework laptop to #Fedora 38 and so far, these three minutes, it seems good! \n\n#linux","createdAt":"2023-10-18T22:45:54.402Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzxa7l2ah","text":"@Tibor@mastodon.social while i appreciate (and agree) with the intent of this post, I don't know anyone who is on Bluesky for the features. \n\nThey are there because that's the site that stuck after several of the Twitter exits.","createdAt":"2023-10-18T23:02:23.462Z","fileIds":[],"replyId":"9kzq3owgdw","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzyg64zfp","text":null,"createdAt":"2023-10-18T23:35:01.139Z","fileIds":[],"replyId":null,"renoteId":"9kzrpu9ke8","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9kzykj7eg8","text":"i am always sad to see actors I liked shilling for sports betting/gambling","createdAt":"2023-10-18T23:38:24.698Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l0nzeptwd","text":"#Flickr used to have a feature where you could share a photo to #Wordpress. It made for an easy way to write little blog posts based on a picture I had in my library. I miss it, it was one of the nice interoperability features that faded away. \n\n#photography","createdAt":"2023-10-19T11:29:49.121Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l0pl5il01","text":"I've been rethinking my #photography DAM and editing lately. I'd been using Apple Photos for DAM, as I was using Photostream to import phone pics, and I just wanted everything in one place. Now that's gone, and so I'm reconsidering, well, everything. \n\nbeen looking at #darktable, #digiKam, Nikon NX... and even considering Lightroom. \n\nit's just, I only sorta know what I am doing with Affinity Photo / Pixelmator, i'm not sure how best to re-learn and evaluate a new plan. \n\n#sigh #photography","createdAt":"2023-10-19T12:14:43.245Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l0r3jgm2p","text":null,"createdAt":"2023-10-19T12:57:00.742Z","fileIds":[],"replyId":null,"renoteId":"9kml387k1n","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9l15xdh7hb","text":"@Rhube@wandering.shop I swear a whole generation of goths were born at the 2 minute mark of this song. \n\n(And Ive always thought the fae thing myself, such a great song)","createdAt":"2023-10-19T19:52:07.291Z","fileIds":[],"replyId":"9kzjv1pk6v","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l17fyibme","text":null,"createdAt":"2023-10-19T20:34:33.971Z","fileIds":[],"replyId":null,"renoteId":"9l1133c0mb","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l2cwtzngo","text":"@me@chrichri.ween.de i do. it's on my list to check out. i'd been hoping for more of a self hosted option, but i'm not doing so hot there. lol.","createdAt":"2023-10-20T15:55:25.523Z","fileIds":[],"replyId":"9l1v0ups3l","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l2g14ggqw","text":"@abosio@fosstodon.org in that respect, i've been lucky, Photos has been rock solid with my library. It just won't run off a SMB drive...\n\nAffinity Photo's develop module is pretty powerful and straighforward. I was using \"edit in\" from Photos for my RAW files with it. \n\nI spent time yesterday working some darktable tutorials to see what I thought about it. I also have RAW Power which i probably haven't given the time it needs. (Some of the old Aperture team makes it)","createdAt":"2023-10-20T17:22:44.560Z","fileIds":[],"replyId":"9l2ftfsgq5","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l2gyhlkv5","text":"For your #halloween reading, THE QUIET WAYS I DESTROY YOU, Blackout Poetry inspired by Little Women by Jessica McHugh. \n\nCosmic horror poetry! Paper dolls! Each poem has an accompanying full page artwork. \n\nIn print and ebook just about everywhere. \n\n#horror #poetry #blackoutpoetry @horrorbooks@a.gup.pe @horror@a.gup.pe","createdAt":"2023-10-20T17:48:41.240Z","fileIds":["9i4utk5vo7"],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l2i9mez2w","text":null,"createdAt":"2023-10-20T18:25:20.315Z","fileIds":[],"replyId":null,"renoteId":"9l2i0js81l","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l2ie2hr3c","text":"all my recent music purchase have been LoFi Girl anthologies.","createdAt":"2023-10-20T18:28:47.775Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l2je5ip7u","text":"@abosio@fosstodon.org i was playing with Therapee on my Fedora machine a bit, and its... ok? I dunno. Doesn't seem to be the right choice as DAM, but works as a plugin to darktable pretty well. I'm just used to Affinity at this point...","createdAt":"2023-10-20T18:56:51.313Z","fileIds":[],"replyId":"9l2jbhlk7i","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l2jg9377y","text":"@abosio@fosstodon.org this is sorta what I'm thinking, though I may try it with the Nikon NX Studio as well to see which takes. \n\nUsually I'm excited about trying out new software and such, but this? This feels more like a mountain.","createdAt":"2023-10-20T18:58:29.251Z","fileIds":[],"replyId":"9l2jani87c","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l2tfva563","text":"@me@chrichri.ween.de it looks like the YUNOhost integration is not official and not currently maintained =\\","createdAt":"2023-10-20T23:38:07.517Z","fileIds":[],"replyId":"9l2l3tyggu","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9l2tiatq64","text":"watching a #Godzilla movie and Mechagodzilla just walked through a building. Like straight through the middle, making a hole through the center, and I kept thinking how much fun that must have been to film.","createdAt":"2023-10-20T23:40:00.974Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l3ikcme9u","text":null,"createdAt":"2023-10-21T11:21:27.014Z","fileIds":[],"replyId":null,"renoteId":"9l3h7qm06w","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l47knkeus","text":"I clicked on a link on my phone which doesnt have an ad blocker and if there was content on that page I didnt see it. \n\nNone of the people paying for those ads are getting their moneys worth. Those networks are scamming both sides of the fence. \n\nI used to joke and say “you cant afford it” when people asked about advertising on my web pages. But. I was also serious. Ads should be expensive because they should also be like one a site, not 50 a page.","createdAt":"2023-10-21T23:01:31.598Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l47wj7jxg","text":"@hikingdude@mastodon.social congrats! i actually tried this a bit ago... ended up picking it back up a few months later out of guilt and finished it. \n\nthe worst part? i ended up liking it in the end...","createdAt":"2023-10-21T23:10:45.823Z","fileIds":[],"replyId":"9l3qotxkuj","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l8lo8xt5z","text":null,"createdAt":"2023-10-25T00:47:18.593Z","fileIds":[],"replyId":null,"renoteId":"9l0ngwq82d","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9l9cqbvus9","text":"@olliefrancis@mastodon.world i always said that if the presence (or lack) of an Oxford comma changes the meaning of your sentence, then it was poorly constructed, and should be re-worded. \n\nmy only real opinion on the Oxford is use it or don't, just be good to your editors and be consistent.","createdAt":"2023-10-25T13:24:45.354Z","fileIds":[],"replyId":"9l954t5sh7","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lb4kcv9mg","text":"@stina_marie@social.horrorhub.club\n\nthats fantastic!","createdAt":"2023-10-26T19:11:42.117Z","fileIds":[],"replyId":"9lb1gtcgah","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lb7n3we19","text":"since Alucard and D are basically the same person, does that mean Castlevania is the prequel to Vampire Hunter D?","createdAt":"2023-10-26T20:37:49.310Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lf2c9sbjd","text":"well, my #calckey instance was cacheing everything it iseemed, and filled the server until it stopped working. Calckey seems to have to settings, turn this on, or off. And that's it. \n\nso it is currently off, and no images work anymore. i mention the Calckey/#Firefish documentation is not great? it is not great. \n\n#sigh","createdAt":"2023-10-29T13:20:30.347Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lf2jjfjk2","text":"Halloween is nearly here and I wanted to share my favorite zombie poem. written by Burlee Vang for Poets .org\n\n\nhttps://poets.org/poem/live-zombie-apocalypse\n\n@horror@a.gup.pe #horrorfam #horrorpoetry","createdAt":"2023-10-29T13:26:09.439Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lf4xvozrj","text":"#Calckey stopped showing avatars and now I don't know who anyone is anymore, a one-act play by Jacob Haddon","createdAt":"2023-10-29T14:33:17.747Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lffb4bqb9","text":"@mattblaze@federate.social isnt that literally what these accounts are for?","createdAt":"2023-10-29T19:23:31.622Z","fileIds":[],"replyId":"9lff7ctcan","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lfjg2433p","text":"@AntoineD@kwak.cab I will take a look!","createdAt":"2023-10-29T21:19:20.499Z","fileIds":[],"replyId":"9lf8ugxf6y","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9lgrkw85h7","text":"@skinnylatte@hachyderm.io this is amazing and I am jealous. Ive shot two rolls. Tho one was the new Cinestill 400D which was fun. \n\nNow I need to go grab my camera.","createdAt":"2023-10-30T17:54:49.253Z","fileIds":[],"replyId":"9lgp1jg87r","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lh3yn7d2v","text":null,"createdAt":"2023-10-30T23:41:26.137Z","fileIds":[],"replyId":null,"renoteId":"9lh3n7u018","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lijt3socl","text":"@tournesol@peculiar.florist calckey displays not just the post but the post it replied to so you end up with a stream of echoes when someone posts a thread :-/","createdAt":"2023-10-31T23:52:47.736Z","fileIds":[],"replyId":"9lij7kkwau","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ljo8vx1iz","text":"every once in a while a re-read the monotype license to remind myself why i only use open source fonts. \n\n#sigh","createdAt":"2023-11-01T18:44:48.661Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ljp2gzznd","text":"@WeightlessBooks@wandering.shop Clarke's World has a masto: @clarkesworld@mastodon.online \n\nI swore locus did, but now I can't find it...","createdAt":"2023-11-01T19:07:49.007Z","fileIds":[],"replyId":"9ljhi14gss","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ljp3zkinh","text":"@WeightlessBooks@wandering.shop found it! @Locusmag@mastodon.social","createdAt":"2023-11-01T19:08:59.730Z","fileIds":[],"replyId":"9ljp2gzznd","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lk43z7j80","text":null,"createdAt":"2023-11-02T02:08:53.503Z","fileIds":[],"replyId":null,"renoteId":"9lk2fby82t","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lkpw05bfu","text":null,"createdAt":"2023-11-02T12:18:33.023Z","fileIds":[],"replyId":null,"renoteId":"9lkjcktkuf","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lkpw05nfv","text":null,"createdAt":"2023-11-02T12:18:33.035Z","fileIds":[],"replyId":null,"renoteId":"9lkjcktkuf","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lktzbwsuk","text":"a side note: i really like the new blue that You Need a Budget is using. #ynab","createdAt":"2023-11-02T14:13:06.700Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ll2wyfkwu","text":"for one more... \n\nBeatles release their new song, *Now and Then* featuring vocals from John Lennon\n\nhttps://www.goldradiouk.com/artists/the-beatles/now-and-then-listen-stream-video/","createdAt":"2023-11-02T18:23:12.464Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9llc9rbryk","text":"the new Beatles song is good, y'all.","createdAt":"2023-11-02T22:45:06.327Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9llcrv2d25","text":null,"createdAt":"2023-11-02T22:59:10.981Z","fileIds":[],"replyId":null,"renoteId":"9kpt1oawxu","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9llcvi3p2g","text":"#Horrorfam, this is a fantastic read about writing ghost stories. \n\n@horror@a.gup.pe","createdAt":"2023-11-02T23:02:00.805Z","fileIds":[],"replyId":null,"renoteId":"9kpt1oawxu","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9llhyic7i4","text":null,"createdAt":"2023-11-03T01:24:19.159Z","fileIds":[],"replyId":null,"renoteId":"9llhurygi0","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lm3qptuhf","text":null,"createdAt":"2023-11-03T11:34:07.170Z","fileIds":[],"replyId":null,"renoteId":"9llv0s0059","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lm90f7rpm","text":"@Undertow@mastodon.online you should be proud. It was a fantastic accomplishment.","createdAt":"2023-11-03T14:01:38.055Z","fileIds":[],"replyId":"9lm5o1u8kz","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lnlcpzqmm","text":"Apparently its my 1 year mark on the #fediverse (on my other account) #sparkles","createdAt":"2023-11-04T12:34:53.462Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lp52oiyl5","text":"I watched the stupid world of warcraft expansion trailer for the stupid world of warcraft expansion and now i want to play stupid world of warcraft again. stupid. \n\n#sigh.","createdAt":"2023-11-05T14:34:43.498Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lquvdhsmm","text":null,"createdAt":"2023-11-06T19:24:38.800Z","fileIds":[],"replyId":null,"renoteId":"9lqura9sm4","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lsmgm63q1","text":null,"createdAt":"2023-11-08T01:04:45.627Z","fileIds":[],"replyId":null,"renoteId":"9lskq934gc","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lsmja1vq3","text":null,"createdAt":"2023-11-08T01:06:49.891Z","fileIds":[],"replyId":null,"renoteId":"9lsj46t4a5","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lsoey9hwz","text":"Just got a spam solicitation for a URL I havent owned in 20 years. Someone didnt get their moneys worth from a data broker for sure.","createdAt":"2023-11-08T01:59:27.221Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lt84hsr8j","text":null,"createdAt":"2023-11-08T11:11:11.643Z","fileIds":[],"replyId":null,"renoteId":"9lt7np4w7q","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ltjzeklzz","text":"well, looks like i'll be moving hosts... anyone have suggestions for simple LAMP / CPanel host providers? \n\n#hosting #selfhosting #server #LAMP","createdAt":"2023-11-08T16:43:09.573Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ltnj2t8kr","text":"heya @wordpress@a.gup.pe does anyone here have experience with the Wordpress Newsletter feature, using your WP site as newsletter similar to Substack, etc. \n\nParticularly from a self hosted (Jetpack) standpoint, but any experience is appreciated. \n\n#wordpress #jetpack #newsletter","createdAt":"2023-11-08T18:22:26.300Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lu4t3dffr","text":null,"createdAt":"2023-11-09T02:26:07.059Z","fileIds":[],"replyId":null,"renoteId":"9lu2huewab","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9luunvhvw8","text":null,"createdAt":"2023-11-09T14:29:53.587Z","fileIds":[],"replyId":null,"renoteId":"9luu2at4vl","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lvgkjtsi4","text":"surgery on two #JoyCons successful, replaced with hall affect joysticks. so far so good! (and a thanks to IFixIt for their guides!)\n\n#nintendo #ifixit","createdAt":"2023-11-10T00:43:10.048Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lwcn3k8dr","text":"@appassionato@mastodon.social @bookstodon@a.gup.pe reminds me of a book i started way too long ago, The Universal History of Numbers (which may be out of print at this point). Going to take a look at this too!","createdAt":"2023-11-10T15:40:56.648Z","fileIds":[],"replyId":"9lvr4s28ew","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lwkq9oljs","text":"i've had Karma Police by Radiohead going through my head for days at this point. \n\nFam, i couldn't tell you the last time I actually HEARD that song.","createdAt":"2023-11-10T19:27:21.477Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lwnh7daxq","text":"Our tomatoes waited until October to fruit and have just enough to make a batch of ketchup. So making that now.","createdAt":"2023-11-10T20:44:17.422Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lxu08yhkj","text":"@AngelaPreston@toot.site my intuition says it is a part of the tilt of the earth and the elliptical nature of the orbit, but I cant quite make it work in my head yet.","createdAt":"2023-11-11T16:34:49.817Z","fileIds":[],"replyId":"9lxqsu088l","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ly5gdm11h","text":null,"createdAt":"2023-11-11T21:55:18.121Z","fileIds":[],"replyId":null,"renoteId":"9lxzuuw0il","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lz6udy4fe","text":"@futurebird@sauropods.win that thread is amazing.","createdAt":"2023-11-12T15:21:57.532Z","fileIds":[],"replyId":"9lz5fq8gca","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lz6udy8ff","text":"@futurebird@sauropods.win that thread is amazing.","createdAt":"2023-11-12T15:21:57.536Z","fileIds":[],"replyId":"9lz5fq8gca","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lz6ve0wft","text":null,"createdAt":"2023-11-12T15:22:44.288Z","fileIds":[],"replyId":null,"renoteId":"9lz5fq8gca","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9lzbdq59w7","text":null,"createdAt":"2023-11-12T17:28:58.269Z","fileIds":[],"replyId":null,"renoteId":"9lz5fq8gca","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m0t51vfuf","text":"I have a little app I wrote in #SwiftUI to help with journalling, nothing fancy but I love it. Decided to see if I could do the same in #KDE with #Tauri, only to fall down a rabbit hole of bug reports as some basic change in #Linux seems to remove the system tray window option. \n\n#sigh","createdAt":"2023-11-13T18:33:52.827Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m0ti0l1wp","text":"@helge@mastodon.social i'll take a look, but my Swift is, uh, elementary at best. (Hence Tauri / Electron). To date myself (dot com boom webprogrammer) I did look at whether I could use Perl and TK or QT... lol.","createdAt":"2023-11-13T18:43:57.685Z","fileIds":[],"replyId":"9m0tf2cgwb","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m0u9mlgz2","text":"@korvroffe@masto.ai i totally get this. I remember the old days of more menubar apps than Netscape toolbars. \n\nThis one is just for me, it's basically just a fast way to take a note without having to think about file name or save location.","createdAt":"2023-11-13T19:05:25.924Z","fileIds":[],"replyId":"9m0u6qhkye","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m0ub0gtz9","text":"@korvroffe@masto.ai and I am new to both! got a Framework and put Fedora KDE on it and love it. Now seeing what i can get myself into. lol.","createdAt":"2023-11-13T19:06:30.557Z","fileIds":[],"replyId":"9m0u7z8oym","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m0um8q62l","text":"@korvroffe@masto.ai I will! tho i'm more of a tinkerer than developer, I was a web programmer back in the dotcom boom era, and really just make little dorky things when I get an idea I can't let go. \n\nthe Framework is fantastic. The keyboard and screen are great, the speakers aren't as good as the Mac Pro, but whose are? it's light, easy to use, and repairable.","createdAt":"2023-11-13T19:15:14.478Z","fileIds":[],"replyId":"9m0ugm7410","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m12ol4txo","text":"@courtney@mstr.cloud someone (read: some blog or Reddit post I read so long ago I cant remember where) turned me on to Input, which is free for personal use and I am the same way. I keep trying other things and always go back to it.","createdAt":"2023-11-13T23:01:00.797Z","fileIds":[],"replyId":"9m0p3lw8vj","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m2mecsiqn","text":"so since the systemtray thing didn't work, I put in some hours to convert my #Electronjs app to #Tauri. The Tauri version is 90% there. some interesting stats (built on #Fedora)\n\nElectron\n- file size, RPM: 64 meg\n- RAM: ~230 meg\n\nTauri\n- file size, Appimage: 88 megs\n- file size, deb: 4.6 megs\n- RAM, Appimage: ~165\n(Tauri does not build RPM)","createdAt":"2023-11-15T01:00:41.922Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m3a202t89","text":"@Kai@puppo.space my tomatoes didnt fruit until October. It was an odd year I think.","createdAt":"2023-11-15T12:02:56.357Z","fileIds":[],"replyId":"9m39f9wg76","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m3j0hkivk","text":"@iamgaarden@mastodon.world @bookstodon@a.gup.pe The Hero and the Crown! it's YA but fantastic.","createdAt":"2023-11-15T16:13:42.258Z","fileIds":[],"replyId":"9m3h04fkmg","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m3j7lknvs","text":"It definitely feels like Lifehacker is back. Looking forward to seeing how it grows now that it has shaken off the last of the Gawker-ness.","createdAt":"2023-11-15T16:19:14.039Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m3opo6d9e","text":null,"createdAt":"2023-11-15T18:53:15.301Z","fileIds":[],"replyId":null,"renoteId":"9m0qhtrk96","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9m4vq18xt5","text":"#Netflix promised watching TV on our terms and then punishes us for doing that very same thing.","createdAt":"2023-11-16T14:57:15.729Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m4wd55xuk","text":"#Netflix promised watching TV on our terms and then punishes us for doing that very same thing.","createdAt":"2023-11-16T15:15:13.893Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m5hf7iqny","text":null,"createdAt":"2023-11-17T01:04:42.194Z","fileIds":[],"replyId":null,"renoteId":"9m5g0vn4ky","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m7lhqb36s","text":"@stina_marie@social.horrorhub.club i'd be there day one for those.","createdAt":"2023-11-18T12:34:10.671Z","fileIds":[],"replyId":"9m7l6js84z","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m7lqh567v","text":"reading some this morning on the #Mastdon discussions, and wondering how much of my opinons I want to post, as opinions about mastodon seem to be what started the discourse.","createdAt":"2023-11-18T12:40:58.698Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m87vnfvv1","text":"I got a new keyboard today and have been typing all the things to try it out. Haven't had a mechanical keyboard in i don't know how long, so thought I'd give it a shot. \n\nNow... what to type...","createdAt":"2023-11-18T23:00:51.691Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m881rdxvl","text":"also, i got the matching mouse. not that i needed one, but they match!","createdAt":"2023-11-18T23:05:36.741Z","fileIds":[],"replyId":"9m87vnfvv1","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m883faevq","text":"I saw The Marvels today and it was fantastic. Easily my favorite MCU movie since the first Guardians of the Galaxy. \n\n#marvel #marvels #mcu","createdAt":"2023-11-18T23:06:54.374Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m89dbxe23","text":"And now I am using a mouse on my phone? I could get used to this…","createdAt":"2023-11-18T23:42:36.194Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m8d4hu7rb","text":null,"createdAt":"2023-11-19T01:27:42.415Z","fileIds":[],"replyId":null,"renoteId":"9m8cwg60qo","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m8dkf26u4","text":"@craig_patrick@mastodon.social @Spiggitzfan@mstdn.social @dbsalk@mastodon.social @bookstodon@a.gup.pe Ghost Story is my favorite so Im biased but. Start with Ghost Story.","createdAt":"2023-11-19T01:40:05.310Z","fileIds":[],"replyId":"9m8c7ra0nk","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m8zq7rxbx","text":"@sheiladebonis@mastodon.world @bookstodon@a.gup.pe alibris is another option. Abe Books is owned by Amazon, unfortunately. For new books, Bookshop is a great alternative","createdAt":"2023-11-19T12:00:27.357Z","fileIds":[],"replyId":"9m8ncl28v0","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m914rtveu","text":"@chestas@aus.social @bookstodon@a.gup.pe If you've not read Catch-22, it would recommend it. Satire, funny at times, and yet also very much about the war.","createdAt":"2023-11-19T12:39:46.147Z","fileIds":[],"replyId":"9m90nkw0do","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m9179q1f7","text":"@sheiladebonis@mastodon.world @bookstodon@a.gup.pe AH you said sell, not buy, this is what I get for posting before coffee... sorry about that.","createdAt":"2023-11-19T12:41:42.649Z","fileIds":[],"replyId":"9m8zq7rxbx","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9m99rt571a","text":"server down, server moving, server acquired but not needed? at least the VPS is up and I can ramble on the fediverse.","createdAt":"2023-11-19T16:41:37.867Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9maes1khls","text":null,"createdAt":"2023-11-20T11:49:33.041Z","fileIds":[],"replyId":null,"renoteId":"9mabuafsk7","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mal706rzl","text":"because of the new keyboard i've been a wordy bastard in emails today. sorry, not sorry? clicky click!","createdAt":"2023-11-20T14:49:08.787Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mby6cnnwv","text":"So i find myself looking for things to type to use my new keyboard… which is great. It bleeds into working on writings which Ive stagnated on, but thats an internal inertia rather than a tool issue. \n\nBut if the tool helps…","createdAt":"2023-11-21T13:40:19.475Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mcafw8hez","text":null,"createdAt":"2023-11-21T19:23:40.145Z","fileIds":[],"replyId":null,"renoteId":"9lyi970wao","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mcaykdfht","text":null,"createdAt":"2023-11-21T19:38:11.235Z","fileIds":[],"replyId":null,"renoteId":"9mcajzi0fu","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mcb6sn6je","text":"Im going to sound like a nerd for a second* but Im starting to dig using a mouse on my phone at times.\n\n* I sound like a nerd most of the time.","createdAt":"2023-11-21T19:44:35.202Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mcbeed6ke","text":"The two SF stories Ive been working on have too much spec to be normal and too much normal to be spec (horror specifically)… I suspect that is something I should worry about when they are finished tho.","createdAt":"2023-11-21T19:50:29.946Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mccz5uaon","text":"Also, am I really sitting in front of a 24 inch monitor and writing a story on my phone? The muse wants what the muse wants","createdAt":"2023-11-21T20:34:38.290Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mdn21bsd4","text":"If you are a non-paying market where are the submission fees going?? \n\n#rant","createdAt":"2023-11-22T18:04:34.744Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mdpy125pb","text":null,"createdAt":"2023-11-22T19:25:26.621Z","fileIds":[],"replyId":null,"renoteId":"9mdpsz94ou","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mdx77ka7b","text":null,"createdAt":"2023-11-22T22:48:32.266Z","fileIds":[],"replyId":null,"renoteId":"9mdj4gaw0w","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mdxze258u","text":"First observation: Apps using GPT risk becoming a ChatGPT feature.\n\na fantastic read about the state of AI from an app maker","createdAt":"2023-11-22T23:10:27.053Z","fileIds":[],"replyId":null,"renoteId":"9mdj4gaw0w","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9meodll8vu","text":null,"createdAt":"2023-11-23T11:29:20.012Z","fileIds":[],"replyId":null,"renoteId":"9mdxs7j48o","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mep4askyf","text":null,"createdAt":"2023-11-23T11:50:05.732Z","fileIds":[],"replyId":null,"renoteId":"9mehniawjk","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mercxyy2j","text":"@fictionable@lor.sh @bookstodon@a.gup.pe \n\nas someone who ran a fiction magazine for a decade i don't agree with the premise of that article. The future is in the slush pile, not in a network of who happens to know the right person. \n\nand i suspect the issue is more that the slush pile usually outweighs the subscribers for most small magazines.","createdAt":"2023-11-23T12:52:48.250Z","fileIds":[],"replyId":"9mepfn6gzf","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9merr0ns3b","text":"my timeline is absolutely flooded with boosts mid conversation and partial threads demonstrating again that the UI and networking for conversations / replies / threads on the fediverse is still in need of a lot of work.","createdAt":"2023-11-23T13:03:44.920Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mes4o2o41","text":"through a comedy of errors (completely on my end) I now have more server space than I've had in years. \n\n*sounds of machinations*","createdAt":"2023-11-23T13:14:21.792Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mf615kfhh","text":null,"createdAt":"2023-11-23T19:43:32.463Z","fileIds":[],"replyId":null,"renoteId":"9mf58t5cce","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mfh5vyccg","text":null,"createdAt":"2023-11-24T00:55:09.060Z","fileIds":[],"replyId":null,"renoteId":"9mfgkmh49n","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mfhe0lhcy","text":"@DelilahTech@tech.lgbt we thank you for your sacrifice. *fireworks*","createdAt":"2023-11-24T01:01:28.325Z","fileIds":[],"replyId":"9mfagyaosr","renoteId":null,"poll":null,"cw":"Yet another Coke Zero PSA","visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mfhmh3ne2","text":"@MiaWinter@tech.lgbt bookmarked, thank you!","createdAt":"2023-11-24T01:08:02.963Z","fileIds":[],"replyId":"9mdrkz9kwe","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mg44kxkid","text":null,"createdAt":"2023-11-24T11:37:59.288Z","fileIds":[],"replyId":null,"renoteId":"9mg2u99sgc","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mggr3k7hh","text":"@geffrey@pkm.social I dig it. reminds me of the plaintextproject in a good way (they just linked to other articles) \n\ni may have to learn to use git with other people so I can send some things in!\n\n(thanks @ellane@pkm.social for the boost!)","createdAt":"2023-11-24T17:31:25.255Z","fileIds":[],"replyId":"9mg7ni5k9g","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mgq1nrdcn","text":"How does Netflix, who has been collecting data on my viewing habits for over a decade, still recommend me things like the Squid Game Show","createdAt":"2023-11-24T21:51:34.537Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mh1scsr24","text":null,"createdAt":"2023-11-25T03:20:15.819Z","fileIds":[],"replyId":null,"renoteId":"9juqic2o1t","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mh2tk4d30","text":"@amaditalks@wandering.shop arg this sucks. Ive gotten all my masks from there.","createdAt":"2023-11-25T03:49:11.581Z","fileIds":[],"replyId":"9mh0bpvkyy","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mhqpp0s23","text":"Calckey letting me know the year is 90% done...","createdAt":"2023-11-25T14:58:02.092Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mhyqstikr","text":"i think the most frustrating part of wearing reading glasses is how well they work.","createdAt":"2023-11-25T18:42:50.598Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mi2si7wyx","text":null,"createdAt":"2023-11-25T20:36:08.636Z","fileIds":[],"replyId":null,"renoteId":"9mi1upogxt","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mi2ssxayy","text":"Say it now.","createdAt":"2023-11-25T20:36:22.510Z","fileIds":[],"replyId":null,"renoteId":"9mi1upogxt","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mi8ityee6","text":"@nantucketebooks@fosstodon.org it's been a bit, but I did VBScript and some Cold Fusion way back in the dark ages. Client side Perl tho... I'll have to check that out.","createdAt":"2023-11-25T23:16:34.982Z","fileIds":[],"replyId":"9mi7izug9t","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mj069c4xr","text":null,"createdAt":"2023-11-26T12:10:37.636Z","fileIds":[],"replyId":null,"renoteId":"9mh6t2c8t6","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mj0z0hbzu","text":null,"createdAt":"2023-11-26T12:32:59.183Z","fileIds":[],"replyId":null,"renoteId":"9mi6e5603s","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mj4o9dk8x","text":"#Horrorfam, not sure how I missed this, but Lofi Girl put out a Halloween playlist and it is fantastic (if you like lofi / chill stuff...)\n\ncheck it out:\n\nhttps://lofigirl.bandcamp.com/album/lofi-girl-halloween-2023\n\n@horror@a.gup.pe #lofigirl #lofi #music","createdAt":"2023-11-26T14:16:35.960Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mj4tvsu9w","text":"@sco7sbhoy@mastodon.scot that's fantastic.","createdAt":"2023-11-26T14:20:58.302Z","fileIds":[],"replyId":"9minnxfc94","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mj4zal3a9","text":null,"createdAt":"2023-11-26T14:25:10.743Z","fileIds":[],"replyId":null,"renoteId":"9mj2pg0w3a","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mj62au1cl","text":"bookmarks came up on one of my nerd news sites, and I wanted to post this again, it is about how I use #Tiddlywiki as my homepage specifically as a bookmarking tool:\n\nhttps://jacobhaddon.com/2018/12/22/tiddlywiki-home-page/","createdAt":"2023-11-26T14:55:30.649Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mjcbzs2zr","text":null,"createdAt":"2023-11-26T17:51:00.578Z","fileIds":[],"replyId":null,"renoteId":"9mijvxlcw4","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mjcv8rf24","text":"@helplessduck@mastodon.online i run a solo instance. I know enough server stuff to get myself into trouble, but not enough to get out of it... \n\nI used YUNOHost, which takes care of just about everything once you set it up. I'm on Calckey, but it has Masto, Misskey, GoToSocial and Plemora as well.\n\nCliquey? na, smaller servers are, in my opinion, the future of Fedi. \n\nFederation becomes an active thing on a small server. I don't see things I don't connect with (again, just me), so you'll have to be more active than you were on a large server, but with groups and Lisa Melton it rapidly fills up. \n\nSide note: just to make sure you know, masto.host will do the hard stuff for you for a reasonable price per month.","createdAt":"2023-11-26T18:05:58.683Z","fileIds":[],"replyId":"9mj3allk11","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mjhk2s6j3","text":"@number6@fosstodon.org well. Thats not good. Thanks Ill see if I can figure out whats going on.","createdAt":"2023-11-26T20:17:15.798Z","fileIds":[],"replyId":"9mjf2wag76","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mjhlgilj7","text":"@spacewizard@mas.to basically I use tiddlers for subjects and its a combination of book makes and notes from those sites. \n\nAlso not sure whats up with my site, gonna go check that out …","createdAt":"2023-11-26T20:18:20.253Z","fileIds":[],"replyId":"9mjfu5009x","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mjhnhzijf","text":"Post a link to my site. People actually see it! Site is down. #sigh","createdAt":"2023-11-26T20:19:55.470Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mjlcj7iva","text":"@koosli@aus.social this is the way.","createdAt":"2023-11-26T22:03:22.302Z","fileIds":[],"replyId":"9mjlawc0v0","renoteId":null,"poll":null,"cw":null,"visibility":"followers","visibleUserIds":[],"localOnly":false},
{"id":"9mjs4lvbbr","text":"@spacewizard@mas.to this is way cool and far more advanced than what I do (which is just by hand) Ill give it a shot and see what I think. Thank you!","createdAt":"2023-11-27T01:13:09.815Z","fileIds":[],"replyId":"9mjs1zvkbm","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mjucts5h7","text":"@spacewizard@mas.to little late now, but the server is back up and my post should be viewable. I will say adding notes, taking the part of the book mark I wanted ot remember, like the code for a text box, or the instructions on how set something up, and have that in my wiki has helped so much as link-rot sets in with some of these sites.","createdAt":"2023-11-27T02:15:32.549Z","fileIds":[],"replyId":"9mjsssdscj","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mkg2ga7o3","text":null,"createdAt":"2023-11-27T12:23:20.047Z","fileIds":[],"replyId":null,"renoteId":"9mjvhe08pi","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mkhm4twra","text":"@nillyrobot@mastodon.art i saw this posted elsewhere and it has become my opinion: why would i bother to read something you couldn't bother to write?","createdAt":"2023-11-27T13:06:37.940Z","fileIds":[],"replyId":"9mkh70w8qd","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mkknqzb0i","text":"Using a keyboard and mouse on my phone like i was a kid in the 90s. \n\n#nerd","createdAt":"2023-11-27T14:31:52.151Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mluxpmgbf","text":"@phil_smith@mastodonapp.uk this is a question! \n\nFor me. And with these things “for me” is usually the caveat \n\nFor me and it is the sound, which is the primary focus of poetry. The best poems desire to be read aloud. \n\nBaked into that is both rhythm and lack of excess words. It isnt a piece of fiction with strange line breaks.\n\nThat said. I still do lower case and dramatic spacing.","createdAt":"2023-11-28T12:07:19.288Z","fileIds":[],"replyId":"9mlurejsbc","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mlvmg7bcd","text":"@phil_smith@mastodonapp.uk it is! and yet sometimes works the other way. I had the word \"shoreline\" in a poem, and a friend commented \"shore\" works just fine. \n\nand yet, it didn't sound fine. those extra sounds were a part of the flow. and maybe 'pointless' from a meaning standpoint, they were not from the overall feel of the line.","createdAt":"2023-11-28T12:26:33.479Z","fileIds":[],"replyId":"9mlv3tb4bp","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mlxnkqzit","text":null,"createdAt":"2023-11-28T13:23:25.259Z","fileIds":[],"replyId":null,"renoteId":"9mlw72w0fp","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mlxq461j1","text":"Hey @feditips@mstdn.social any chance you have tips for changing server software? \n\nTrying to figure out what I should do if i want to change my software, but keep the same address, since you can exactly “move” the way you would if i was jumping servers. Thanks!","createdAt":"2023-11-28T13:25:23.737Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mlxwpz2kk","text":"@futurebird@sauropods.win pardon the language, but always makes me think of this:\n\nhttp://motherfuckingwebsite.com/\n\nthere are days I miss making sites by hand. You know your site and its content better when you do.","createdAt":"2023-11-28T13:30:31.934Z","fileIds":[],"replyId":"9mlx3egwhl","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mlzj3ehow","text":"@Rhube@wandering.shop @wordsmith@writing.exchange heh it is # 2 for me on DDG and # 1 on google. yay for 'tailored' responses... #sigh \n\nconsistency is all i ask.","createdAt":"2023-11-28T14:15:55.385Z","fileIds":[],"replyId":"9mlzf2tcol","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mlzohxxps","text":"@Rhube@wandering.shop @wordsmith@writing.exchange about five down is a blog post by a friend of my with great tips on the format, so there is that =) \n\nhttps://redlagoe.com/2021/04/29/formatting-your-manuscript-a-brief-guide-to-shunn/","createdAt":"2023-11-28T14:20:07.509Z","fileIds":[],"replyId":"9mlzj3ehow","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mm07h5orw","text":"@wordsmith@writing.exchange @Rhube@wandering.shop agreed. I'll make sure I keep putting a direct link to Shunn in any submission guidelines I write. We'll need to look out for each other on these little things more.","createdAt":"2023-11-28T14:34:52.956Z","fileIds":[],"replyId":"9mlzsuygqg","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mm1jh8gu3","text":"I HAVE HAD TOO MUCH COFFEE THS MORNING PLEASE FORGIVE AHHHHH\n\n(Runs around house)","createdAt":"2023-11-28T15:12:12.544Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mm3781fzn","text":null,"createdAt":"2023-11-28T15:58:39.987Z","fileIds":[],"replyId":null,"renoteId":"9mm2spo8xu","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mm6039v8u","text":"@john@sauropods.win have you seen the posts on iA Writer's blog about AI? They are incredibly thoughtful as an overall analysis of where things are. While i wouldn't say 'positive' i wouldn't say 'negative' either. \n\nhttps://ia.net/topics/no-feature\n\nhttps://ia.net/topics/writing-with-ai","createdAt":"2023-11-28T17:17:06.067Z","fileIds":[],"replyId":"9mly4834mo","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mmajiesqu","text":null,"createdAt":"2023-11-28T19:24:10.612Z","fileIds":[],"replyId":null,"renoteId":"9mmagetsq1","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mmfw7w7dq","text":null,"createdAt":"2023-11-28T21:54:01.591Z","fileIds":[],"replyId":null,"renoteId":"9mmex18gad","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mmh5yeoju","text":null,"createdAt":"2023-11-28T22:29:35.472Z","fileIds":[],"replyId":null,"renoteId":"9mmfpr6ojo","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mne6b7qh6","text":null,"createdAt":"2023-11-29T13:53:39.398Z","fileIds":[],"replyId":null,"renoteId":"9mnb7yz4fn","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mne6s9yhb","text":null,"createdAt":"2023-11-29T13:54:01.510Z","fileIds":[],"replyId":null,"renoteId":"9mnd100wfc","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9mnvshz59j","text":"Is it weird Im excited to see what the new iA Writer update is going to be tomorrow?","createdAt":"2023-11-29T22:06:48.065Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mo0mz1usa","text":null,"createdAt":"2023-11-30T00:22:28.338Z","fileIds":[],"replyId":null,"renoteId":"9mbf11h4jj","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mpgrfbjgd","text":null,"createdAt":"2023-12-01T00:41:36.079Z","fileIds":[],"replyId":null,"renoteId":"9mo7o14o7b","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mpi8yadnm","text":null,"createdAt":"2023-12-01T01:23:13.429Z","fileIds":[],"replyId":null,"renoteId":"9mpdk2hcmz","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mqiaat2s6","text":"I am just whelmed by that announcement and that is perfectly ok.","createdAt":"2023-12-01T18:12:02.486Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mqnp98dg2","text":"Did… did I just write the first draft of a story?","createdAt":"2023-12-01T20:43:38.365Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mqxf13g2e","text":"if Mothra is fighting you, you are on the wrong side of the conflict. make better life choices. \n\n#godzilla #mothra #lifeadvice","createdAt":"2023-12-02T01:15:37.420Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mr0351bcv","text":null,"createdAt":"2023-12-02T02:30:21.503Z","fileIds":[],"replyId":null,"renoteId":"9mqyzqfs7z","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mrlkmy0n5","text":"i'm seeing some processing errors with meta data on iA W 7 that were not present in iA W 6. i can email support a report if that will help, but i wanted to check if the restrictions or formatting for meta data had changed (the site does not indicate so)\n\niA Writer is a fantastic piece of software, thank you for making it.","createdAt":"2023-12-02T12:31:49.800Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"specified","visibleUserIds":["9gqnmejn3p"],"localOnly":false},
{"id":"9mrmk5j8pd","text":"@ia@mastodon.online fantastic. thank you again! iA Writer is a daily use app for me and I am constantly grateful for it.","createdAt":"2023-12-02T12:59:26.852Z","fileIds":[],"replyId":"9mrmha94p0","renoteId":null,"poll":null,"cw":null,"visibility":"specified","visibleUserIds":["9gqnmejn3p"],"localOnly":false},
{"id":"9mrnrmguri","text":"my #spotify wrapped is what happens when you spend most of the year listening to things you purchased.","createdAt":"2023-12-02T13:33:15.006Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mroa2nati","text":"@wordsmith@writing.exchange that was half my year, but i had a long road trip and caved. still, most of the year were rips of CDs I got a the library sale lol. \n\nand LoFi Girl, which is probably the actual top hit of the year.","createdAt":"2023-12-02T13:47:35.782Z","fileIds":[],"replyId":"9mro6a8osw","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mroc4qstl","text":null,"createdAt":"2023-12-02T13:49:11.812Z","fileIds":[],"replyId":null,"renoteId":"9mqf855ksn","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9ms9hj7ntf","text":"I saw Godzilla Minus One earlier today and cannot get over how good it was. \n\nKnow that it is a more serious movie than most Godzilla films. This is a war movie about Japan.","createdAt":"2023-12-02T23:41:15.779Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mtco9bop2","text":null,"createdAt":"2023-12-03T17:58:14.580Z","fileIds":[],"replyId":null,"renoteId":"9msgbgs01a","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mtcrbykpm","text":"blarg, i wish there was an 'unread toots/posts' feed option on top of the chronological one.","createdAt":"2023-12-03T18:00:37.964Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mtd4xkfrp","text":"@dickrubin716@mastodonbooks.net \n\ni know it can be hard, but the best advice i have for a writer is to ignore the reviews. all of them. it is not worth your mental energy. Spend that writing your next thing.","createdAt":"2023-12-03T18:11:12.495Z","fileIds":[],"replyId":"9mtbvms8jv","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mth9widb5","text":"@moss@wandering.shop not a hosted solution, but I've been using Zotero for a few years now for this reason. It saves a version of the page for you to access later (on your computer). It has a cloud component, but i don't use it. \n\nhttps://www.zotero.org/\n\nI also have been just 'print to PDF' some things, and for two rare sites, i used WGET to download and archive the whole thing. \n\nthere are self hosted archive tools, but i've not used them. ArchiveBox comes to mind.","createdAt":"2023-12-03T20:07:02.869Z","fileIds":[],"replyId":"9mte1qigz6","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mttldtzr8","text":"@NanoRaptor@bitbang.social a mechanical keyboard and a trackball on a laptop. How far we have fallen.","createdAt":"2023-12-04T01:51:53.927Z","fileIds":[],"replyId":"9mtgp0aoqc","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mueec5h62","text":null,"createdAt":"2023-12-04T11:34:17.093Z","fileIds":[],"replyId":null,"renoteId":"9mudamao2d","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mus0ebi8u","text":"@NanoRaptor@bitbang.social I know Im like the last trackball user on the planet but I still prefer them for normal use. I had a Compaq back in the day where the mini trackball was on the lid (in the screen bezel) which let the keyboard sit at the front of the chassis. I still think about that one.","createdAt":"2023-12-04T17:55:21.342Z","fileIds":[],"replyId":"9mtud3koua","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9muten8ghf","text":"Have i mentioned today how much i fucking love this keyboard, because i dont want to bother anyone if i have… TAPPY TAP.","createdAt":"2023-12-04T18:34:25.696Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9muverkzt4","text":"He can call me Flower… if he wants to.","createdAt":"2023-12-04T19:30:30.563Z","fileIds":[],"replyId":null,"renoteId":"9muv380wne","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mv0ss6gad","text":"@dansup@mastodon.social out of curiousity, do the Misskey forks, like Firefish, come up independently, or under the Misskey overhead?","createdAt":"2023-12-04T22:01:22.600Z","fileIds":[],"replyId":"9muzcyqwyi","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mw1640bhh","text":"The good(? Probably good?) part about this new keyboard is that it has lessened my desire to get a Freewrite.","createdAt":"2023-12-05T14:59:30.635Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mw2mgoomq","text":null,"createdAt":"2023-12-05T15:40:13.176Z","fileIds":[],"replyId":null,"renoteId":"9mvyttkge1","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mw2qtj2n6","text":null,"createdAt":"2023-12-05T15:43:36.446Z","fileIds":[],"replyId":null,"renoteId":"9mvxo0xsai","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mw64kgp16","text":"anyone out there know if it is possible to change the server software and keep the account of a #Fediverse instance? I'm on Calckey, but thinking of changing to something else. \n\nnot sure if i can swap things, or if I have to start over. \n\n#fediverse #fedihelp #selfhost","createdAt":"2023-12-05T17:18:16.729Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mw6rh2e42","text":"@tournesol@peculiar.florist i'm not sure yet what i'd like to move to, which I suppose is part of the issue.","createdAt":"2023-12-05T17:36:05.414Z","fileIds":[],"replyId":"9mw6gpfl2v","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9mw837nj80","text":"@tournesol@peculiar.florist i will take a look. I am using YUNOHost, which I quite like for the admin tools, but because of that I'm stuck on Calckey, not able to easily update to Firefish. \n\nas so, I thought I'd check around to see what options were. I like Calckey, but it doesn't work fantastic for me (mostly on the phone), so I thought maybe a server that let's me us an app would be better. \n\nI do look forward to GoToSocial being more complete, I think it is really the answer for single user servers like myself.","createdAt":"2023-12-05T18:13:12.703Z","fileIds":[],"replyId":"9mw7ypuu74","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9mw8cmfv8v","text":"@tournesol@peculiar.florist it is not... but i suppose i could look into what that would take. That one has been recommended to me by someone else, so I will take a look again. maybe I can manually update and then... maintain my own YNH package? that sounds like work. lol.","createdAt":"2023-12-05T18:20:31.771Z","fileIds":[],"replyId":"9mw87dsm8c","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9mw8omtmai","text":"@tournesol@peculiar.florist you aren't selling this very well. lol =)\n\ni found the iceshrimp misskey migration docs. will see what I think. In the end, I am starting to think I'll need to move to a different subdomain, rather than update this one... =\\","createdAt":"2023-12-05T18:29:52.138Z","fileIds":[],"replyId":"9mw8hq2y96","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9mw918bmc4","text":"@tournesol@peculiar.florist i'm not sure how to do that... i see Misskey to Firefish/Iceshrimp migrations, but not Calckey. I suspect for non-YUNOHost it was mostly just an update?","createdAt":"2023-12-05T18:39:39.874Z","fileIds":[],"replyId":"9mw8vl0mbb","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9mwa4lpwgw","text":"@tournesol@peculiar.florist inquired on the forum about the update, and will see how things go from there. thanks for the chat, it is nice to feel seen. 😺","createdAt":"2023-12-05T19:10:16.820Z","fileIds":[],"replyId":"9mw9e59cdo","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9mwa5e4xgz","text":"@spacewizard@mas.to that thing... its the nerdiest thing I wished I used.","createdAt":"2023-12-05T19:10:53.649Z","fileIds":[],"replyId":"9mwa4qhkgx","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mwae3e3ic","text":"@spacewizard@mas.to been using Tiddly since 2006. Its place in my life has changed a few times since then, but it is a fantastic piece of software.","createdAt":"2023-12-05T19:17:39.627Z","fileIds":[],"replyId":"9mwabvfkhq","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mwafum2il","text":"I Don't Have any Avatars on my Server so I don't Know Who You Are, a dirge that requires an accordion by Jacob Haddon","createdAt":"2023-12-05T19:19:01.562Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mwaifiojd","text":"this. all this. \n\nA chat room is not documentation. Also one day Discord is going to shift its financial priorities and all this information will be lost.","createdAt":"2023-12-05T19:21:01.968Z","fileIds":[],"replyId":null,"renoteId":"9mw8rnigi2","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mwajvo6js","text":"@spacewizard@mas.to that was the sell. I used to keep it on a thumb drive (128MB in a *watch*) and used it as a daily journal / writing tool as I went from home to work to whereever.","createdAt":"2023-12-05T19:22:09.558Z","fileIds":[],"replyId":"9mwahzc8ja","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mwdqp84ua","text":"Thats the first part of a second story. I blame this keyboard.","createdAt":"2023-12-05T20:51:26.644Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mxdi4tqeg","text":"there is too much noise about #Godzilla 's new pink spikes as if this doesn't look fucking badass.","createdAt":"2023-12-06T13:32:33.134Z","fileIds":["9mxdgvvdef"],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9my2wqgxlh","text":"I always forget how useful Apple Shortcuts can be until I make a new one. Have to set up my phone to make them easier to see or more automatic.","createdAt":"2023-12-07T01:23:44.769Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9my2x2a9lk","text":"Also I wish there were some fediverse shortcuts.","createdAt":"2023-12-07T01:24:00.081Z","fileIds":[],"replyId":"9my2wqgxlh","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9my4uefrr8","text":null,"createdAt":"2023-12-07T02:17:55.095Z","fileIds":[],"replyId":null,"renoteId":"9my3wu14pt","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9myzc44f20","text":"While it doesnt have all the same features, the #Plemora installation Im testing seems to work better overall, between the speed and the ability to use the Mastodon app on my phone. Still hoping I can figure out how to update from #Calckey to #IceShrimp as that would be best of both worlds…","createdAt":"2023-12-07T16:31:30.015Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mzjm1e27j","text":null,"createdAt":"2023-12-08T01:59:05.354Z","fileIds":[],"replyId":null,"renoteId":"9mwsobo0jp","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9mzma9xgca","text":null,"createdAt":"2023-12-08T03:13:55.396Z","fileIds":[],"replyId":null,"renoteId":"9mz178s0ty","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n0vlv8rli","text":null,"createdAt":"2023-12-09T00:22:38.955Z","fileIds":[],"replyId":null,"renoteId":"9n0swxb4ct","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n0vnt84lo","text":"Good! Breaking an end to end encrypted protocol is bad. \n\n“But… they didnt they…”\n\nI dont give a fuck what they did. Whatever exploit they used can be used by bad actors and needed to be plugged.","createdAt":"2023-12-09T00:24:09.652Z","fileIds":[],"replyId":null,"renoteId":"9n0swxb4ct","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n0vxfzhn0","text":null,"createdAt":"2023-12-09T00:31:39.053Z","fileIds":[],"replyId":null,"renoteId":"9n0705h4bs","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n0vyslpn3","text":null,"createdAt":"2023-12-09T00:32:42.061Z","fileIds":[],"replyId":null,"renoteId":"9n0kemawqe","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n0w6bhrnq","text":"@stevegis_ssg@mas.to @futurebird@sauropods.win @chrispackham@mastodon.social this is something I loved about Midnight Mass. after a certain point you know what you need to know to figure out the end and you are just along for the ride. But what a ride it was. \n\nAgreed. I dont need a “twist youll never see coming!” I need a good story.","createdAt":"2023-12-09T00:38:33.135Z","fileIds":[],"replyId":"9n0jpir47o","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n38qa8syd","text":null,"createdAt":"2023-12-10T16:05:32.380Z","fileIds":[],"replyId":null,"renoteId":"9n37ntowt9","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n392p8qzt","text":null,"createdAt":"2023-12-10T16:15:11.690Z","fileIds":[],"replyId":null,"renoteId":"9n0ab2c8gh","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n398v580f","text":"this looks amazing. Writers who love notebooks, take a look! #notebooks #writer","createdAt":"2023-12-10T16:19:59.276Z","fileIds":[],"replyId":null,"renoteId":"9n0ab2c8gh","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n48071251","text":null,"createdAt":"2023-12-11T08:33:01.334Z","fileIds":[],"replyId":null,"renoteId":"9n45g71k1p","poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9n483cvv52","text":null,"createdAt":"2023-12-11T08:35:28.891Z","fileIds":[],"replyId":null,"renoteId":"9n43ua60yu","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n6pfetj3m","text":null,"createdAt":"2023-12-13T02:16:17.095Z","fileIds":[],"replyId":null,"renoteId":"9n6mve8wx7","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n8skgs72f","text":"well, the final and probably hardest choice to make... what should the new URL be for my fedi server? social.jacobhaddon was a good subdomain, so picking an equally good one will be challenging. \n\nfedi.\nstream.\nposts.\ntoots.\ngodzilla.\nramblings. (this fits a theme...)","createdAt":"2023-12-14T13:19:44.119Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n8ukc1yr5","text":null,"createdAt":"2023-12-14T14:15:37.222Z","fileIds":[],"replyId":null,"renoteId":"9n8aulq811","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n8ulbjbr7","text":"this sounds like a job for...\n\nFUTURE JACOB! *dramatic music*\n\n(takes a nap)","createdAt":"2023-12-14T14:16:23.207Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n8ungivrh","text":"@kamikat@social.horrorhub.club i laid out the start of a kilt this past week! have i sewn before, NO... lol. Mom is giving advice.","createdAt":"2023-12-14T14:18:02.983Z","fileIds":[],"replyId":"9n8u64b4qg","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n8xeno90t","text":null,"createdAt":"2023-12-14T15:35:11.193Z","fileIds":[],"replyId":null,"renoteId":"9n8rwh9kyd","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n9b9yq1ki","text":null,"createdAt":"2023-12-14T22:03:26.857Z","fileIds":[],"replyId":null,"renoteId":"9n8d523c5p","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n9c5mxom0","text":"STOP SHOOTING AT GAMERA","createdAt":"2023-12-14T22:28:04.572Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n9jetdfdq","text":"well, i just ugly cried in the middle of an anime about a giant turtle, if you want to know how this week is going. #Gamera","createdAt":"2023-12-15T01:51:10.131Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n9jxkgag0","text":"@avarisclari@mastodon.social that would be the one. the end of 6 got me again.","createdAt":"2023-12-15T02:05:45.034Z","fileIds":[],"replyId":"9n9jg20wep","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9n9lzt2vu2","text":null,"createdAt":"2023-12-15T03:03:28.759Z","fileIds":[],"replyId":null,"renoteId":"9n8skgs72f","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9na848aqu6","text":"@passenger@kolektiva.social @Jtmoriartywriter@mastodon.au @farbel@mas.to @bookstodon@a.gup.pe to add, if you can find it, watch the SciFi series. It is not the highest budget production, but it makes up for that in storytelling. \n\ntruth is all three movies versions have some good and bad to them, and as a dune fan I am glad they all exist.","createdAt":"2023-12-15T13:22:46.658Z","fileIds":[],"replyId":"9na79o94ho","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nad2l0g7m","text":null,"createdAt":"2023-12-15T15:41:27.904Z","fileIds":[],"replyId":null,"renoteId":"9nacrw2074","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nade6yn8a","text":"@jsstaedtler@mastodon.art this reminded me to check mine... 298 hours on Zelda 0_0","createdAt":"2023-12-15T15:50:29.567Z","fileIds":[],"replyId":"9nacgnqg6m","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nala1yw2z","text":null,"createdAt":"2023-12-15T19:31:13.400Z","fileIds":[],"replyId":null,"renoteId":"9n398v580f","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9namfuwq7p","text":"ok folks who see my posts, moving day is coming. going to be shifting to a new account this weekend. It should migrate over like any other account, but just in case...","createdAt":"2023-12-15T20:03:43.802Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nan1eb8au","text":"@tournesol@peculiar.florist setting up a plemora server, but instead over-writing this one, will set it up on a different domain and transfering the account. the reading I did seems to think that is the easiest plan....","createdAt":"2023-12-15T20:20:28.724Z","fileIds":[],"replyId":"9namp71687","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9nan3we7bn","text":"@Monte_Lin@wandering.shop @UncannyMagazine@mastodon.social that channel is fueling Apokrupha these days as well.","createdAt":"2023-12-15T20:22:25.471Z","fileIds":[],"replyId":"9n97eclk9a","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nao46nrev","text":"@tournesol@peculiar.florist I hope so! Picking the new url wasnt easy tho! Lol.","createdAt":"2023-12-15T20:50:38.391Z","fileIds":[],"replyId":"9nan7taac3","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9nap1cinl7","text":"while i've been using Fedora KDE, i've been watching System76 work on their Cosmic DE for Pop with much interest! \n\nhttps://blog.system76.com/post/the-spirit-of-cosmic-december-updates\n\n#linux #popos","createdAt":"2023-12-15T21:16:25.631Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nap1qfyl8","text":null,"createdAt":"2023-12-15T21:16:43.678Z","fileIds":[],"replyId":null,"renoteId":"9naozom8kz","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9narx27603","text":"@tournesol@peculiar.florist @Theotime812@bliry.fr wish i knew what to do with most of my domain names... lol","createdAt":"2023-12-15T22:37:04.482Z","fileIds":[],"replyId":"9naq4jobrd","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9naskgt73o","text":null,"createdAt":"2023-12-15T22:55:16.507Z","fileIds":[],"replyId":null,"renoteId":"9nanntmgei","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9natcrs98c","text":"i went with \"posts\" because I'm boring... also \"godzilla\" sounds more like a writefreely URL than a microblog... just saying.","createdAt":"2023-12-15T23:17:17.097Z","fileIds":[],"replyId":null,"renoteId":"9n8skgs72f","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9naunotse9","text":"all set up for the move... but i think i'll spend one more night here.","createdAt":"2023-12-15T23:53:46.096Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nauwptgg2","text":"I am reminded in this moment of setting up a IFTTT trigger to copy my twitter posts to a txt file in my Dropbox. It was simple to set up, and meant that my Twitter account was basically being backed up real time. \n\ni know I can download all the posts from here. But it's not quite the same, esp as I see I can't import them to the new server. \n\ni mean. i could have said something brilliant, you know?","createdAt":"2023-12-16T00:00:47.284Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9navcztnhi","text":"@tournesol@peculiar.florist go for chaos!","createdAt":"2023-12-16T00:13:26.747Z","fileIds":[],"replyId":"9nauyqccgs","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9navk4e7j6","text":"@vampiress@eigenmagic.net this brought back memories of hand writing websites on my breaks at my retail job.","createdAt":"2023-12-16T00:18:59.263Z","fileIds":[],"replyId":"9napsvjkg0","renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nbkqam27v","text":null,"createdAt":"2023-12-16T12:03:37.658Z","fileIds":[],"replyId":null,"renoteId":"9nbifjpk2g","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nbnd3tobr","text":null,"createdAt":"2023-12-16T13:17:21.180Z","fileIds":[],"replyId":null,"renoteId":"9nblqsx49a","poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nbnmkhqcc","text":"Moving Day! \n\nI'm moving to a new server, with a strikingly similar URL. If I do it right, most of you won't notice, but just in case, my new account is: \n\n@jake@posts.jacobhaddon.com","createdAt":"2023-12-16T13:24:42.686Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nbno3nece","text":"Moving Day! \n\nI'm moving to a new server, with a strikingly similar URL. If I do it right, most of you won't notice, but just in case, my new account is: \n\n@jake@posts.jacobhaddon.com","createdAt":"2023-12-16T13:25:54.170Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nbqzo79nk","text":"well, moving day isn't going as planned. Calckey is fighting until the end, it would seem with a barrage of errors and rate exceeds #sigh","createdAt":"2023-12-16T14:58:52.869Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nd28mke89","text":"well, after 18 hours of not having this site open, I am still getting the \"Rate Exceeded\" error when I try to move. #Calckey is effectively holding my account hostage with whatever broken thing on the backend. I know I can just import my follows and start over, but this is supposed to be one of the things that makes the Fedi better. #sigh","createdAt":"2023-12-17T13:01:32.606Z","fileIds":[],"replyId":null,"renoteId":null,"poll":null,"cw":null,"visibility":"public","visibleUserIds":[],"localOnly":false},
{"id":"9nd30fm2b1","text":"@tournesol@peculiar.florist assuming I'm doing it right (which may be a big assumption heh!) it returned (empty array) for the keys command.","createdAt":"2023-12-17T13:23:09.962Z","fileIds":[],"replyId":"9nd2jzfb9c","renoteId":null,"poll":null,"cw":"","visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9nd3rr6uql","text":"@Theotime812@bliry.fr @tournesol@peculiar.florist sorry it is my first time with redis so I am taking a crash course via google. I did not, i just entered `redis-cli` and got a prompt. \n\nI am seeing keys when i type `KEYS *` but they seem to be all Bookwrym related...","createdAt":"2023-12-17T13:44:24.678Z","fileIds":[],"replyId":"9nd3jjy5pv","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9nd4x00uto","text":"@Theotime812@bliry.fr @tournesol@peculiar.florist pass is commented out in both default and ci.yml, but i tried it anyways. auth gives an OK, but no change in the list. i couldn't tell from the command list if there were multiple databases and you switched between them, or if the password should just open things up...","createdAt":"2023-12-17T14:16:29.022Z","fileIds":[],"replyId":"9nd3wc43qs","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false},
{"id":"9nd6e1g6y2","text":"@Theotime812@bliry.fr @tournesol@peculiar.florist I do not, it is running via YUNOHost","createdAt":"2023-12-17T14:57:43.638Z","fileIds":[],"replyId":"9nd5k0wvvy","renoteId":null,"poll":null,"cw":null,"visibility":"home","visibleUserIds":[],"localOnly":false}]

2
src/vite-env.d.ts vendored Normal file
View File

@ -0,0 +1,2 @@
/// <reference types="svelte" />
/// <reference types="vite/client" />

7
svelte.config.js Normal file
View File

@ -0,0 +1,7 @@
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
export default {
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
// for more information about preprocessors
preprocess: vitePreprocess(),
}

7
vite.config.js Normal file
View File

@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
})