I’m not sure what this is or who it is for, or why I should be interested?
I’m not sure what this is or who it is for, or why I should be interested?
This. Although I’m not sure if it’s about in-app display, but it needs to be on the store and on a website somewhere.
It’s fairly uncomplicated just flexible and without guide rails so you need to figure out how you want to represent it yourself. I’ve used a separate space for my links compared to everything else which is just in my ‘home’ space
I’ve been using AnyType for this starting a couple weeks ago.
For another conversation I need some evidence of that, where did you find it?
This sounds like FUD to me. If it were it would be acquired pretty quickly.
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.
Where your friends are?
Microsoft invests a lot of time and effort in (selective) backwards compatibility. It’s one of the draws to the OS. In past leaks of code we have seen it’s code base is littered with special cases. I can’t find the link but here have this almost good enough reddit link: https://www.reddit.com/r/Windows10/comments/lpdn0x/microsoft_really_understands_backward/
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
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.
Is it mostly retries?
ah. Sorry