arran4

joined 2 years ago
[–] arran4@aussie.zone 8 points 1 year ago

I feel like I have been doing this all my life. I think it's more to do with the depth of understanding too. But the environment has to support it, if there is an expectation that everyone is an expert from day one, and there is no room for self improvement then it can't be done.

As stated there are down falls with the approach such as lack of exposure to new ideas. You still need to look just not study. But to me it's also a work/life balance policy. But don't practice it in extreme as it can hold you back. Good work places should allow for some learning time and I'm hoping that gets normalized.

[–] arran4@aussie.zone 46 points 1 year ago (3 children)

Forgot /dev/hdx ?

[–] arran4@aussie.zone 8 points 1 year ago

Age old rule, invert the statement; they aren't ready, don't start now they don't think it would be fair.

[–] arran4@aussie.zone 2 points 1 year ago

Would this mean free news for all residents and citizens and journalist get paid for consumption?

[–] arran4@aussie.zone 1 points 1 year ago

Used to use it a lot. However these days I prefer window'd terminals that popup with a keyboard shortcut. To answer op. I use konsole atm. Usually that suffices, I don't know what features I'm missing but I keep an eye on Warp. Tempted to write my own /again./

[–] arran4@aussie.zone 2 points 1 year ago

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

[–] arran4@aussie.zone 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.

[–] arran4@aussie.zone 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

[–] arran4@aussie.zone 5 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.

[–] arran4@aussie.zone 9 points 1 year ago (1 children)

Is it mostly retries?

[–] arran4@aussie.zone 2 points 1 year ago

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

[–] arran4@aussie.zone 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.

view more: ‹ prev next ›