arran4

joined 2 years ago
[–] [email protected] 2 points 1 year ago

Check the requirements with the intended institution they tend to differ sadly. :(

[–] [email protected] 3 points 1 year ago (5 children)

IIRC print them out and get them signed by a justice of the peace, police officer, or post office worker or some such.

[–] [email protected] 5 points 1 year ago* (last edited 1 year ago) (1 children)

The 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 exec into 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

[–] [email protected] 6 points 1 year ago (1 children)

Don't let your guard down but at some point trust and risk consideration is required for most systems to work. If you're after solutions; you could run your own node in the cloud and federate it.

[–] [email protected] 9 points 1 year ago (1 children)

Is it mostly retries?

[–] [email protected] 2 points 1 year ago

The people that do care the most have a choice to use older cars and that reduces resistance now.

[–] [email protected] 10 points 1 year ago (9 children)

Matrix with bridges can help consolidate them. Some managed versions exist like Beeper and Element. Been slowly moving to that. Will eventually self host.

[–] [email protected] 13 points 1 year ago

In contrast 2009 was a actually a very bad year for a lot of people. I think what you're feeling is pretty normal. Try create some new fun, don't do too much in terms of recreating things except to confirm / dis-confirm memories.

[–] [email protected] 14 points 1 year ago (2 children)

Anyone else here concerned about what this means for the health of the ecosystem? If reddit was never sustainable and we are well and truly past a phase of consolidation there is potentially a lot of history / info to loose here. The damage has been done already by the funding model. While the return to federation and private hosting is nice, there is a potential "dark" age.

[–] [email protected] 4 points 2 years ago (2 children)

Increases sun exposure. Great.

[–] [email protected] 6 points 2 years ago (1 children)

I feel discord does really well because the way it structures it "servers" really focuses around individuals rather than groups. Which then creates an incentive for a certain type of person to "grow their server" bringing more activity onto discord. This is confounded by both a) you join all channels on a server, 2) the ability of individuals to "mute" servers or channels; combined it means it fills up with a bunch of idlers in a way which is worse than IRC as it's unlikely they will ever read the contents or participate beyond asking a question then leaving.

[–] [email protected] 4 points 2 years ago

Limited time to build something so you have to pick based on a couple factors, often largest % of users.

view more: ‹ prev next ›