arran 🇦🇺
- 0 Posts
- 10 Comments
arran 🇦🇺@aussie.zoneto
Selfhosted@lemmy.world•E-mail archive browser for gmail takeout files (.mbox)English
1·1 month agoA friend uses: https://github.com/LogicLabs-OU/OpenArchiver
Also I have been meaning to release the one I’ve been working on so I won’t mention more about that.
This sounds like a review / gating problem. Getting people to self filter / self gate is never going to work, and if it does it will work probably on the wrong people.
Actually might be easier to do [AIless]
If you don’t delineate, it will simply be easier to tag everything ai as there was ai involved somewhere and you’re less likely to need to defend yourself.
arran 🇦🇺@aussie.zoneto
Selfhosted@lemmy.world•Looking for an RSS proxy that can perform frequency-based filteringEnglish
3·10 months agoI’m looking for something similar. I did start a project for something more general but, incomplete project pile.
arran 🇦🇺@aussie.zoneto
Selfhosted@lemmy.world•Self-Host Weekly (17 October 2025)English
2·11 months agoWhat are the requirements for getting something on the list?
I like the idea and have been meaning to build / find something like this however this does a little too much and in not quite the way I want. But it’s cool for those who need this exact implementation.
arran 🇦🇺@aussie.zoneto
Selfhosted@lemmy.world•Best way to dockerize a static website?English
61·2 years agoThe busybox one seems great as it comes with shells. php looks like it would add some issues.
Personally since I use go, I would create a go embedded app, which I would make a deb, rpm, and a dockerfile using “goreleaser”
package main import ( "embed" "net/http" ) //go:embed static/* var content embed.FS func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { // Serve index.html as the default page http.ServeContent(w, r, "index.html", nil, content) }) // Serve static files http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.FS(content)))) // Start the server http.ListenAndServe(":8080", nil) }Would be all the code but allows for expansion later. However the image goreleaser builds doesn’t come with busybox on it so you can’t
docker execinto it. https://goreleaser.com/customization/docker/Most of the other options including the PHP one seem to include a scripting language or a bunch of other system tools etc. I think that’s overkill

Ah reminds me of “SomethingAweful” I think it was