Email or username:

Password:

Forgot your password?
5 posts total
Stefan Eissing

Yesterdays link to the Let‘s Encrypt blog dragged in some people who seem to think that CAs are unnecessary or even evil.

LE is s very small group who set out to improve the terrible CA situation and the fucking middle box corruptions.

They did that successfully with a budget that a medium sized city spends on its department for car license plates.

So, my advice: don‘t yell at people who made the world somewhat better or you‘ll soon run out of ones who try.💁🏻‍♂️

Show previous comments
[HUGS] getimiskon :OwOid: :blobcatgooglywtf: :verified_neko:
@icing CAs are a what you could call a "necessary evil", like lots of things in today's society, but i don't consider LE to be bad, compared to what other corporations do. It was an initiative to improve security on the web and it has been successful. Although, to be honest, i would like to see a more decentralized option being adopted instead.
ddg

@icing there are people who complain about LE? It's made my life so much easier I can't fathom someone yelling at them. I guess I just lack imagination…

Fubaroque

@icing Well, the browsers created the problem, that LetsEncrypt is trying to solve… 🥴

… nothing wrong with the encryption provided by a self signed certificate. 🤔

Stefan Eissing

A FOSS project like OpenSSL should be able to explain their choices without resorting to unverified, wishy-washy statements.

This has gone on long enough. Debian sid is now shipping curl with gnutls to enable HTTP/3. Gentoo is considering its options.

Talk to your distro of choice, if you want access to modern internet protocols. The alternatives are there.
mastodon.social/@bagder/112849

Stefan Eissing

It's better to solve the merge conflicts later than never to have coded at all!

Johan Wärlander 🦀

@icing We need a programming language where the merge conflict markers are valid syntax, and means that one of the options will be picked at random.

Alternatively, the compiler may try permutations of the combined code until it becomes a valid program, the final version only existing in the resulting binary.

Stefan Eissing

Javascript sizes for landing pages;

Slack: 55 MB
Jira: 50 MB
Discord: 21 MB
Gmail: 20 MB
Youtube: 12 MB

Pornhub: 1.4 MB
People prefer fast sex, it seems.

(via @simon)
tonsky.me/blog/js-bloat/

Yaksh Bariya

@icing @simon Meanwhile GitHub's homepage is around 2MB (logged in version).

Stefan Eissing

Fast Unix Commands: alexsaveau.dev/blog/projects/p (via HN)

„Tar
Shockingly, collecting a directory into a tarball and then extracting it into a new directory to copy it is often faster than cp.“

Class assignment: explain why🤓

Stephan Neuhaus

@icing my preferred way of copying a directory for ages has been

(cd source; tar cf - .) | (cd dest; tar xf -)

I can never remember how cp -r works.

Ariadne Conill 🐰

@icing cp is slow in general in most cases. with tar, file accesses are buffered, inodes are preloaded, etc. somewhat related: ariadne.space/2022/07/17/how-e

Andy Jones

@icing I'm afraid I always use rsync. Which probably tells you I only copy small directories (or always have another task I can be doing…)

Go Up