[-] arran4@aussie.zone 4 points 2 weeks ago

It has sleep tracking with snore and cough tracking

[-] arran4@aussie.zone 4 points 3 weeks ago

I've definitely moved back to desktops. Still have my laptops but I use them in limited cases.

[-] arran4@aussie.zone 5 points 1 month ago

I feel like there is some cause to list CS degrees and their position on Unix and Linux. awesome-linux-cs repo?

[-] arran4@aussie.zone 5 points 1 month ago

What languages are you wanting to use, the combination between toolkit and language can make a big difference to your experience.

There are a lot of interesting options out there that aren't top of people's minds too. For instance Lazarus, and Flutter. Both can do cross platform.

[-] arran4@aussie.zone 6 points 3 months ago

Back before the media decided it wasn't a competitor but rather a potential profit source. I do think the government does need to have it's own alternatives (obviously not identical more on this one day) for other reasons, such as for it's own media releases, but more internationally coordinated appropriate & considered legislation is probably better.

[-] arran4@aussie.zone 4 points 3 months ago

For another conversation I need some evidence of that, where did you find it?

[-] arran4@aussie.zone 6 points 4 months ago

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.

[-] arran4@aussie.zone 5 points 7 months ago

Played 4 first, if you do that you really notice the retrocons etc. I figure in order probably works best.

[-] arran4@aussie.zone 5 points 7 months ago

Not sure 12 hours is enough time for me to grab much. Perhaps my backlog.

[-] arran4@aussie.zone 5 points 8 months ago* (last edited 8 months ago)

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

[-] arran4@aussie.zone 4 points 8 months ago

Increases sun exposure. Great.

[-] arran4@aussie.zone 4 points 9 months ago

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

view more: ‹ prev next ›

arran4

joined 1 year ago