1 day ago mod
Banned OwOarchist @pawb.social from the community reason: Rule 1, 2, 4
expires: in 2 months
2 days ago mod
Banned quick_snail @feddit.nl from the community reason: Troll
expires: in 5 days
2 days ago mod
Removed Comment Aaand now you have malware, courtesy of AUR. Enjoy :) by quick_snail @feddit.nl reason: Misinformation
2 days ago mod
Removed Comment Uses AI: https://github.com/Supernova3339/changerawr/tree/master/.claude by uuj8za @piefed.social reason: As this is clearly disclosed in the tag and disclosure, this is off topic as a comment.
2 days ago mod
Removed Comment If anyone else is confused what this does, I pointed the clankers at it and asked. Way to bury the lede OP.
See [6] for some missing features (?) that would be nice to clear up.
---
[1]
- You open a webpage normally.
- The browser extension reads the page that your browser loaded.
- It sends the page text, title, URL, and other details to your Hister server.
- Hister stores and indexes that content.
- Later, you search Hister for words from the page.
- Hister finds the saved page, even when you cannot remember its title or URL.
[2]
> so, like a Google search of visited sites and my own drive?
Yes. That is actually a reasonable use case.
If you pointed Hister at:
C:\Documents
it would:
1. Walk the folder tree.
2. Read supported files.
3. Build a full-text index.
4. Watch for changes.
5. Re-index new or edited files automatically.
You could then search for things like:
tax invoice lenovo
lumbar radiculopathy
that python script with sqlite
"Methylphenidate" (exact phrase)
without caring which folder the file lives in.
Is it like Google?
Yes, but only for your own data.
Imagine Google, except the only websites are:
C:\Documents
D:\Notes
your browser history
pages you crawled yourself
You open a browser, type a search, and receive ranked results from your own files instead of the internet.
[3]
Can you access it from elsewhere on your LAN?
Yes.
By default it listens only on localhost:
127.0.0.1:4433
However, you can configure it to listen on all network interfaces:
0.0.0.0:4433
Then any device on your LAN can use the web interface or API, provided your firewall allows it. You should also enable an access token or user accounts if you expose it beyond your own PC.
---
[4]
What interests me more for your home setup is that Hister is not just a search engine.
It already exposes:
a web UI,
a REST API,
and an MCP endpoint for AI assistants.
That means you could run one Hister instance on your server, index your documents once, and then:
search them yourself from any device on the LAN,
or let an AI search the same index through MCP.
If I wanted a self-hosted "Google for my own stuff" with minimal setup, Hister is much closer to that goal than Meilisearch. Meilisearch is an indexing engine. Hister is already a complete document search application.
---
[5]
Yes. By default, Hister stores its data in SQLite:
Search index and metadata: db.sqlite3
Stored HTML previews: separate files on disk
Configuration: YAML
It can also use PostgreSQL instead of SQLite if you want.
Regarding browser history, there are two separate things:
1. Your browser's history database (Chrome, Firefox, etc.).
2. Hister's own index.
They are independent after import.
For example:
Monday: You visit example.com.
The extension sends the page to Hister.
Hister stores the text, title, URL, metadata, and optionally the HTML preview.
Tuesday: You clear Chrome's history.
The Hister copy remains. Clearing your browser history does not delete Hister's copy. Hister is designed to be a long-term knowledge store, not a mirror of your browser history.
If you want Hister to forget something, you must delete it from Hister itself. The web UI and terminal both support deleting indexed entries.
I actually like that design. If it deleted documents every time you cleared browser history, it would defeat one of its main purposes. It treats browser history as an ingestion source, not as the source of truth.
---
[6]
From the current documentation:
Are sources timestamped?
Yes.
Each indexed document records at least:
Added timestamp.
Updated timestamp.
For browser pages, the visit timestamp.
URL, title, and metadata.
---
Is there a TTL (auto-expiry)?
No.
I could not find any TTL, age-based expiry, or retention policy.
Documents remain until you delete them or overwrite them with newer content.
---
Can I set a maximum database size?
Not that I can find.
There is no option such as:
10 GB maximum.
Delete oldest first.
Keep only the last 365 days.
Limit to 1 million documents.
You can reduce storage by:
Disabling HTML previews.
Limiting indexed file size.
Restricting indexed file types.
Excluding paths or domains.
---
Can I cleanly delete by topic?
Partly.
You can:
Delete individual documents.
Delete crawl jobs (but not the indexed documents).
Label imported content.
Query by labels and metadata.
Configure rules to stop future indexing.
I did not find built-in support for bulk deletion such as:
"Delete everything about Tesla."
"Delete all Reddit pages."
"Delete every page tagged AI."
The API may allow scripted deletion, but I did not see a first-class "delete by query" feature in the documentation.
---
Is browser ingestion automatic?
Yes.
That is one of its main features.
Once the browser extension is installed and pointed at your server:
Every page you visit is captured automatically.
The extension extracts the rendered page.
It sends it to Hister.
If the page later changes, the extension periodically checks it and updates the stored copy.
Duplicate visits update the existing document rather than creating a new one.
You do not need to press a button.
---
My only concern
This project feels like it is missing a lifecycle policy.
For a personal knowledge base, I would want options such as:
Keep browser pages for 90 days.
Keep GitHub forever.
Keep PDFs forever.
Delete pages that nobody has opened for two years.
Maximum database size: 20 GB.
Delete by label or query.
I could not find those features in the current documentation.
The project is very good at collecting information. It appears less mature at managing its lifetime. That would probably become the first thing I wanted if I intended to leave it running for years.
---
[7]
Yes, on both counts.
Can I exclude particular sites?
Yes, and it is quite flexible.
Hister has skip rules that apply before a page enters the index. You can exclude:
Entire domains.
Subdomains.
URL patterns.
Login pages.
Admin pages.
Cookie consent pages.
Anything that matches a regular expression.
For example:
^https://reddit//.com/
^https://mail//.google/.com/
^https://.*\.bank\.com/
Those pages never enter the index.
The nice part is that the rules apply both to new browser captures and to re-index operations, so they stay excluded.
---
How does multi-tenancy work?
It is better than I expected.
Each user has:
Their own login.
Their own search index.
Their own browser history.
Their own skip rules.
Their own search aliases.
Their own API token.
If you and your wife both use the same Hister server:
You
├── browser history
├── indexed pages
├── rules
└── API token
Wife
├── browser history
├── indexed pages
├── rules
└── API token
Neither user can search the other's documents.
There is also a global area.
You can configure directories such as:
/shared/docs
Those appear in everyone's searches, while personal folders remain private.
---
One feature I really like
Directory indexing also supports user ownership.
For example:
alice -> /nextcloud/alice
bob -> /nextcloud/bob
global -> /shared/docs
The server enforces that visibility automatically. Even administrators do not automatically see other users' indexed files.
Overall, I came into this expecting "browser history search". After reading the documentation, it is closer to a lightweight, self-hosted personal search appliance with sensible multi-user support. The remaining gaps are lifecycle management features such as retention policies, TTL, storage quotas, and richer bulk deletion. Those do not appear to be built in. by SuspiciousCarrot78 @aussie.zone reason: Feel free to bring up concerns that you parsed through, but lets not just copy/paste a wall of text of llm output.
2 days ago mod
Removed Comment  by GreenKnight23 @lemmy.world reason: Rule 1.
3 days ago mod
Banned Elrecoal @lemmy.world Banned deleted by creator reason: automod
3 days ago mod
Banned brachiosaurus @mander.xyz from the community reason: Rule 4
4 days ago mod
Removed Post NaviDash — A lightweight self-hosted start page with a free-form canvas reason: Rule 7: Account is too new to make promo posts. Please stick around, get to know the community, and post again when requirements are met. Note you'll also need to tag appropriately then, so please review rules 7 & 8.
5 days ago mod
Banned pincad @lemmy.world from the community reason: Rule 4
6 days ago mod
Banned Scipitie @lemmy.dbzer0.com from the community reason: False reporting
expires: in 22 hours
6 days ago mod
Banned bridgeburner @lemmy.world Banned reason: History of racist and islamophobic comments. See modlog, also comments here (https://lemmy.world/post/49908926/24968012) and here (https://lemmy.world/post/49822973/24926032).
7 days ago mod
Removed Comment Yeah, you're the asshole by gwl [he/him] @lemmy.blahaj.zone reason: Rule 1 - lets not do that here.
8 days ago mod
Banned diabetic_porcupine @lemmy.world Banned reason: Trolling, harassment. The last straw was the transphobic comment here: https://lemmy.world/post/49775630
8 days ago mod
Removed Post NaviBeat - iOS client for Navidrome Testflight reason: I'm going to remove as its been a day and still not compliant with rules 7&8. Please review these rules before posting, and reach out with any questions.
8 days ago mod
Banned reluctant_squidd @lemmy.ca from the community reason: Insulting people over DM
expires: in 23 days
9 days ago mod
Banned TheFuckler @piefed.social Banned expires: in 73 years
9 days ago mod
Banned betterdeadthanreddit @lemmy.world from the community reason: Rule 4
expires: in 6 months
9 days ago mod
Locked Post NaviBeat - iOS client for Navidrome Testflight 10 days ago mod
Unbanned B0rax @feddit.org from the community 10 days ago mod
Banned jaksoy @shredderfood.net from the community reason: advertiser
10 days ago mod
Banned B0rax @feddit.org from the community reason: URL Blacklist
10 days ago mod
Removed Post The Corporate Creep of Plex vs. The Jellyfin Dilemma reason: This is your own site, with a new account, so self-promo applies. Your account is not old enough to post hete., please see rule 7.
11 days ago mod
Locked Post Codeberg bans vibe coded projects 11 days ago mod
Removed Post I built a free, no-signup directory of self-hostable alternatives to popular SaaS reason: Rules 7/8.
12 days ago mod
Unbanned Axolotl @feddit.it from the community reason: automod false positive
12 days ago mod
Banned Axolotl @feddit.it from the community reason: URL Blacklist
12 days ago mod
Banned Axolotl @feddit.it from the community reason: URL Blacklist
12 days ago mod
Banned Axolotl @feddit.it from the community reason: URL Blacklist
12 days ago mod
Banned Axolotl @feddit.it from the community reason: URL Blacklist
12 days ago mod
Banned Axolotl @feddit.it from the community reason: URL Blacklist
12 days ago mod
Banned Axolotl @feddit.it from the community reason: URL Blacklist
12 days ago mod
Banned Axolotl @feddit.it from the community reason: URL Blacklist
12 days ago mod
Banned Axolotl @feddit.it from the community reason: URL Blacklist
12 days ago mod
Banned Axolotl @feddit.it from the community reason: URL Blacklist
12 days ago mod
Banned nikolasdimi @lemmy.world Banned reason: automod
14 days ago mod
Unbanned ikt @aussie.zone reason: Test
14 days ago mod
Banned ikt @aussie.zone reason: Test
14 days ago mod
Removed Post The worlds Most Powerful, Highest Privacy and Local AI Integrated Workstation to date reason: Posting your product comes with requirements, please review rules 7&8.
15 days ago mod
Removed Post Homedex: a living inventory for your homelab. What runs where, every port, route, and cert expiry. Read-only, no telemetry, MIT reason: Rules 7/8: Account Age, please post again when requirements are met. See post tag requirements as well.
16 days ago mod
Removed Post pvectl - a command-line companion for Proxmox reason: Rule 7/8: Account Age, Tag, Disclosure if applicable. Hang out for a while and post up again once requirements are met, with tags.
16 days ago mod
Removed Post [AIP] Wardnet: An open-source (GPL-3) network privacy gateway: per-device VPN routing, DNS ad-blocking, and firewall-enforced zones, all self-hosted reason: Rule 7: Account Age. Your account must be at least 30 days old to post promo. In addition to the tag, next time add the disclosure as well.
16 days ago mod
Removed Post Change your server's alert rules from the couch reason: Rule 7/8: Account Age, Participation, Missing Tag/Disclosure
17 days ago mod
Removed Post Announcing Rust 1.97.1 reason: Duplicate
17 days ago mod
Removed Post Meta: Thank you for removing u/hybridsarcasm@lemmy.world, they were toxic with zero communication. reason: On second thought, calling them out like this is a rule 1 issue. Lets avoid posts targeting a specific user like this.
17 days ago mod
Removed Comment Ok guys, so we're building a solution that is a lot more than just a episeode tracker, so it is not a 1:1 alternative, but we've just made a GDPR import function for TV Time users.
We were always wondering how to decode taste and why do we like what we like. Genres suck and are generic af. So we're building a solution that analyzes your watch history but also your personal facts (the one that you wish to share) and finds paths/patterns in your taste. Like **"Grief Bends Reality: These are stories where a man loses (or is about to lose) someone he loves and tries to hack reality itself to fix it"** or **"Life as a Product: Stories where the main character slowly realizes their entire reality is something designed, sold, or controlled by a company. "** etc. I gotta admit tha after more than 40 years of my life I discoverd that I truly adore dystopian love stories :D Maybe something to do with my past relationships? :)
We also track movies and shows availability per country, per service, ask for your viewing context (alone, with partner, with kids) and plan to do many more things. We actually dropped quite big companies to build this and we are totally into it so it would be great if you gave TasteRay a chance and give some feedback - thanks.
Here's the import page: https://www.tasteray.com/tv-time
P.S. (Sorry that it is not self hosting related, but I guess this thread isn't - however I can really talk about self hosting as well if you want lol, I have many containers to talk about :D)
by g00rek @lemmy.world reason: Rule 2: No other comments/posts except for an advertisement for your closed source app
17 days ago mod
Removed Comment [AIP] Not open-source, so partly off-brief — but since this crowd cares about owning their data: I built Help Me Binge, a free browser-based tracker with no account and no server. Everything lives in local storage on your device, and it imports the TV Time GDPR zip in one tap. helpmebinge.com by NaniNoodles @lemmy.world reason: Rule 2: No other comments/posts except for an advertisement for your closed source app
17 days ago mod
Removed Comment Full disclosure: I’m the indie developer of ShowCal. It isn’t open-source or self-hosted, so it may not be exactly what OP is looking for — but for anyone also considering a native iOS or Android app, I’d be grateful if you gave it a try.
ShowCal focuses on a clean episode timeline, watch progress, release reminders, Trakt sync, and opening titles directly in streaming apps or your own Emby, Jellyfin, or Plex library.
Direct import from TV Time’s official export ZIP is coming in version 2.3.5, and the file stays on your device. The iOS app is currently rated 4.7/5.
Most importantly, export and save your TV Time data before July 15. You’ll be able to import it later:
https://showcal.tv/en/tvtime
I’m actively testing the importer, so reports about missing episodes or unmatched titles would be genuinely helpful. by byronyeung @lemmy.world reason: Rule 2: No other comments/posts except for an advertisement for your closed source app
19 days ago mod
Banned jackgreen @lemmy.world Banned reason: advertiser
19 days ago mod
Removed Post OpenSigner - Open-source non-custodial wallet solution reason: Rule 7: Account Age, and requires a tag.
19 days ago mod
Removed Post Qobuz Librarian: build and maintain a lossless FLAC library from your Qobuz subscription reason: Rule 7: Account Age, Requires Tag
19 days ago mod
Removed Post Bindery: self-hosted, folder-watching converter for ebooks and comics reason: Rule 7: Account Age, Tag Required
19 days ago mod
Removed Post Wholesale Ivermectol 12mg Tablets from an Experienced Manufacturer reason: Spam
19 days ago mod
Removed Post Got banned from linuxsucks@lemmy.world for saying the following reason: offtopic - no need to advertise that troll's community in /c/linux
19 days ago mod
Removed Comment You blah blah blah about 'good faith discussion', but I see none of that here. -Just violation of the rules like you did there.
You're more than welcome to take your 'expert' propaganda anywhere else. by madthumbs @lemmy.world reason: lemmy.ml rule 2, trolling
19 days ago mod
Removed Comment I am sorry your mom got fucked by Linus and made you watch. by FoxAlive @lemmy.zip reason: lemmy.ml rules 1 and 2
20 days ago mod
Removed Post I connected my self-hosted network scanner to an AI assistant over MCP, kept fully on-LAN reason: Rule 7 - Account is not at the minimum age to post promo content.
20 days ago mod
Removed Post SeldonFrame – open-source, self-hostable AI front office for service businesses (AI receptionist + CRM + booking + website) reason: Rule 7: Account Age Requirement not met
21 days ago mod
Removed Post Porto Slate Importers reason: Spam
22 days ago mod
Removed Comment hereforawhile — el tema de migrar una comunidad existente desde plataformas como Discourse o Discuz! a un sistema self-hosted como Torum puede ser un dolor de cabeza. ¿El equipo de Torum ofrece herramientas de migración directa o solo scripts genéricos para volcar datos a SQLite? Si aún no lo tienen documentado, quizá les interese echar un vistazo a los pasos que seguimos nosotros para evitar perder hilos históricos — más detalles en https://cxgo.ai/l/0X7PxZh si te es útil. by 雅加达珊姐 @lemmy.1095.me reason: Spam that should have deleted with the associated ban.
23 days ago mod
Removed Post A new distro — quite a special one :) reason: Rule 4 - likely spam
23 days ago mod
Locked Post Recent Influx of Spam 23 days ago mod
Locked Post Example Project Post for [AIP] 23 days ago mod
Removed Comment I kind hope google goes full retard. It's probably the best way to break their monopoly.
My phone is 9yrs old this year -still works great. When it dies, I will go dumbphone + small tablet route. Fuck it, I will *build* a tablet or a cyber deck if I have to. No better fuel than spite. by SuspiciousCarrot78 @aussie.zone reason: Lets not use that word here
26 days ago mod
Locked Post Most slopcode projects are abandoned and deleted within months of release 26 days ago mod
Removed Comment The 'intensive at first' part is real — I've seen teams hit a wall when Authelia needs to talk to their existing LDAP or when session timeouts don't sync right with app-level auth. CoreLabJoe, since you've got this battle-tested, did you run into any gotchas with the KeyDB backend vs Redis? We put together a quick comparison of MFA middleware stacks here https://cxgo.ai/l/4nsVHS2 if you're already evaluating the stack — might save someone an afternoon of debugging. by 溫哥華David @lemmy.1095.me reason: Rule 2.
27 days ago mod
Banned baadhu @lemmy.world Banned reason: Spam
27 days ago mod
Locked Post AI & Promotional Post Expanded Rules 28 days ago mod
Removed Comment since you're a jellyfin user I'll give you the best solution.
expose ports 80, 22, and 3306 of your server to the internet.
better yet, just make a DMZ to your server from the internet.
then you can stream, ssh, and query your database from anywhere in the world. by GreenKnight23 @lemmy.world reason: This one gets a special reason. This sort of trolling is not welcome. A repeat will mean a ban.
28 days ago mod
Removed Comment not a flex, quite the opposite.
I've met numerous devs and engineers that didn't. knowing OSI and TCP/IP should be the bare minimum to work in service development/admin. by GreenKnight23 @lemmy.world reason: Rule 1
28 days ago mod
Removed Comment Lol the OSI model? Weird flex. I am a senior network engineer by trade and manage global routing and security for large companies, so I am definitely familiar. by yeehaw @lemmy.ca reason: Rule 1
28 days ago mod
Removed Comment I only read your first quote. I didn't realize you had the capacity to be in every persons shoes, ergo have total understanding. If you can't see how fucked up that is, I'm just arguing with a narcissist and there's nothing I can do to open your view so I cease my comments here. by yeehaw @lemmy.ca reason: Rule 1
28 days ago mod
Removed Comment you read it, you don't have to lie about it. by GreenKnight23 @lemmy.world reason: Rule 1
28 days ago mod
Removed Comment Not everyone has the luxury or capacity to research and learn. So if you have a health problem you self diagnose and give yourself treatment at the hospital? I'm sure those docs get asked about the same problems all the time. And yet, they don't turn you away because they have seen that problem too many times.
Built my first pc around the same time, and I still researched and asked for clarifications when needed.
I think you just have an issue accepting that others are not in the same situation or as capable as you. Some people have much less free time. Less tolerance for error.
Let's say your engine costs 25k to rebuild. You'd do that yourself? Sans the labour, 10k in parts. You're okay with not having a vehicle for potentially months? You're okay if you happen to misunderstand an instruction or forget something and spend all thy time getting it back together advancing the thing explode when you get it all together?
You seem to think quite highly of yourself. Your comments just reek of narcissism. by yeehaw @lemmy.ca reason: Rule 1
28 days ago mod
Removed Comment > Not everyone has the luxury or capacity to research and learn.
bullshit excuses.
> So if you have a health problem you self diagnose and give yourself treatment at the hospital?
I can diagnose, I've read medical textbooks and have researched. I have even performed minor surgery on myself to remove a cyst from my thigh about the size of a grape. I taught myself how to properly suture for that one. I don't recommend it though. cyst's can actually wrap around blood vessels which when burst or cut can make you bleed out quickly. having a cauterizing tool helps mitigate this. you can DIY with a scalpel and an induction source to heat the tip of the blade (ask me how I know), though most surgeons use electric ones these days that use plasma to burn the flesh away. you can actually buy them for pretty cheap these days.
> I'm sure those docs get asked about the same problems all the time. And yet, they don't turn you away because they have seen that problem too many times.
doctors take a Hippocratic Oath. Tech workers don't, so your analogy falls flat.
> Built my first pc around the same time, and I still researched and asked for clarifications when needed.
good for you. sounds like you had better opportunities than I did. How did you put it? "Not everyone has the same luxury to research and learn." Sorry, paraphrasing.
> I think you just have an issue accepting that others are not in the same situation or as capable as you. Some people have much less free time. Less tolerance for error.
how presumptuous. you don't have the time or tolerance for making mistakes, so you're going to waste the time and effort of a community and ask the same question repeatedly? compared with that perspective, I sound less like an asshole. and I *am* an asshole!
> Let's say your engine costs 25k to rebuild. You'd do that yourself?
of course I wouldn't! $25k will buy a new car. I only spent $13k on my *current* car.
> Sans the labour, 10k in parts. You're okay with not having a vehicle for potentially months? You're okay if you happen to misunderstand an instruction or forget something and spend all thy time getting it back together advancing the thing explode when you get it all together?
I see what you're trying to do. the difference is, I would be **paying** a mechanic to fix my car. I'm not asking them how to fix it, or why it needs to be fixed. nobody is paying anyone on this community. maybe that's the problem. maybe if we charged people to ask questions they might be more inclined to see if the question has been asked already...
> You seem to think quite highly of yourself. Your comments just reek of narcissism.
funny! I'm super humble about myself IRL. I don't talk about myself or my accomplishments at all, except when it comes to shining a light on lazy people who just want the answers spoon fed to them. y'all aren't babies or children anymore. the internet exists and is a treasure trove of information. think critically, ask yourself more questions than others. reach out when you don't understand some*thing*.
it's not hard, but I guess it is when your expectation is that people should just help you because you want it. by GreenKnight23 @lemmy.world reason: Rule 1
1 month ago mod
Banned inkblade @lemmy.world Banned reason: Queerphobe
1 month ago mod
Banned Angel44 @lemmy.world Banned reason: Spam
1 month ago mod
Banned Johnny_Rewind @lemmy.world Banned reason: unmarked bot, llm spam
1 month ago mod
Banned tomiant @piefed.social Banned reason: Modlog a mile long
expires: in 73 years
1 month ago mod
Banned angelM900 @lemmy.world Banned reason: advertiser, ban evasion
1 month ago mod
Banned Angel21 @lemmy.world Banned reason: spam
1 month ago mod
Banned zarax12 @lemmy.world Banned reason: Spam
1 month ago mod
Locked Post Community Rules 1 month ago mod
Banned sweety3211 @lemmy.world Banned reason: Spam
1 month ago mod
Banned SamuelEllis @lemmy.world Banned reason: Suspected unmarked bot
1 month ago mod
Locked Post Rule 7 Adjustment 1 month ago mod
Banned indigonynja @lemmy.world Banned reason: Advertising / self-promotion
1 month ago mod
Locked Post Help me fix my dad’s home internet setup. Does my plan make sense? 1 month ago mod
Banned News Reporter @lemmy.wtf Banned B reason: Spam / inactive owner
2 months ago mod
Locked Post Is PH still legit way to promote your tool? 2 months ago mod
Locked Post [Project] 0807 - a self-hosted ephemeral file host with no accounts and a Tor onion service 2 months ago mod
Appointed curbstickle_lw @lemmy.world as a mod to the community 2 months ago mod
Unlocked Post Family Email w/ Custom Domain 2 months ago mod
Removed HybridSarcasm @lemmy.world as a mod to the community 2 months ago mod
Appointed curbstickle @anarchist.nexus as a mod to the community 2 months ago mod
Appointed ayyy @sh.itjust.works as a mod to the community 2 months ago mod
Locked Post Where is API tooling lacking ? 2 months ago mod
Unlocked Post Where is API tooling lacking ? 2 months ago mod
Locked Post Where is API tooling lacking ? 3 months ago mod
Appointed I2jgwh0hYtxrCZQ @ani.social as a mod to the community 5 months ago mod
Locked Post [METAPOST] Please stop linking OpenSlopware 5 months ago mod
Locked Post How many projects involve LLM-written code now? 5 months ago mod
Locked Post *Permanently Deleted* 6 months ago mod
Locked Post Not sure if it quite fits here, but I wanted to shout out a TTS browser extension Read Aloud. 8 months ago mod
Locked Post Does anyone know how to make the Arch text bigger? 1 year ago mod
Removed Myne @ani.social B as a mod to the community 1 year ago mod
Removed Myne @ani.social B as a mod to the community 2 years ago mod
Appointed I2jgwh0hYtxrCZQ @lemmy.sdf.org as a mod to the community 2 years ago mod
Appointed d3Xt3r @lemmy.nz deleted by creator as a mod to the community 2 years ago mod
Appointed Cyclohexane @lemmy.ml as a mod to the community 2 years ago mod
Appointed wjs018 @lemmy.world as a mod to the community 2 years ago mod
Appointed savedYouAClick @lemmy.world as a mod to the community 2 years ago mod
Removed MrKaplan @lemmy.world as a mod to the community 2 years ago mod
Appointed MrKaplan @lemmy.world as a mod to the community 3 years ago mod
Appointed testman @lemmy.ml as a mod to the community 3 years ago mod
Removed throwaway_ludrol @bookwormstory.social as a mod to the community 3 years ago mod
Appointed throwaway_ludrol @bookwormstory.social as a mod to the community 3 years ago mod
Appointed Mestionora @bookwormstory.social B as a mod to the community 3 years ago mod
Appointed testman @lemmy.ml as a mod to the community 3 years ago mod
Removed rknuu @beehaw.org as a mod to the community 3 years ago mod
Featured Post Megathread for Reddit Blackouts and News - Rest of the Week(?) in community 3 years ago mod
Unfeatured Post Megathread for Reddit Blackouts and News - Day 3 in community 3 years ago mod
Featured Post Megathread for Reddit Blackouts and News - Day 3 in community 3 years ago mod
Featured Post Reddit Exodus: Welcoming the Selfhosted Community to Lemmy - Migrating to Freedom! in community 3 years ago mod
Featured Post Megathread for Reddit Blackouts and News - Day 2 in community 3 years ago mod
Featured Post Megathread for Reddit Blackouts and News - Week 1 in community 3 years ago mod
Removed Community 3 years ago mod
Appointed Icewind as an admin