tux0r

joined 1 year ago
[–] tux0r@feddit.org 1 points 12 hours ago (1 children)

So is Inspur K/UX, which is a Linux distribution. There is a difference between Unix (the software) and UNIX (the certification).

[–] tux0r@feddit.org 1 points 13 hours ago (3 children)

Not quite. FreeBSD, where much of macOS originates after the merge from NeXTSTEP, is merely “UNIX-like” as well.

[–] tux0r@feddit.org 3 points 1 day ago

I stand corrected.

[–] tux0r@feddit.org 1 points 1 day ago (5 children)
[–] tux0r@feddit.org 1 points 1 day ago

True, although Qobuz targets a slightly different audience.

[–] tux0r@feddit.org 9 points 1 day ago (12 children)
[–] tux0r@feddit.org 14 points 1 day ago

I even buy vinyls

[–] tux0r@feddit.org 10 points 1 day ago (5 children)

TIDAL pays much more to the artists anyway.

[–] tux0r@feddit.org 2 points 2 days ago (1 children)

There’s a word for that, “anemoia”.

[–] tux0r@feddit.org 14 points 2 days ago

You can’t deny love!

[–] tux0r@feddit.org -1 points 4 days ago

Not as long as possible replacements aren't platform-independent.

[–] tux0r@feddit.org 2 points 4 days ago (1 children)

TIDAL HiFi is FLAC as far as I know.

 

geteilt von: https://feddit.org/post/14273969

This is a paper for a MIT study. Three groups of participants where tasked to write an essay. One of them was allowed to use a LLM. These where the results:

The participants mental activity was also checked repeatedly via EEG. As per the papers abstract:

EEG revealed significant differences in brain connectivity: Brain-only participants exhibited the strongest, most distributed networks; Search Engine users showed moderate engagement; and LLM users displayed the weakest connectivity. Cognitive activity scaled down in relation to external tool use.

 

I know, I know, WordPress is no longer cool, the boss is a dork and PHP is sooo 2000s. Unfortunately, life is often not a concert of wishes, and you have to make compromises.

One of the things that annoys me the most about the newer versions of WordPress is the ‘block editor’. (Yes, there is the Classic Editor. But Automattic has already announced that it won't be around forever. And then what?) It may be useful for people in marketing who want to ‘design’ websites, but I just want to write prose on the Internet and not have to think about trivial things like paragraphs. But what do people who write a lot of prose use?

That's right: WordStar. ;-)

A few years ago, Gerald Brandt published WordTsar - great name! -, a WordStar clone for modern systems that doesn't necessarily require (nor even support) DOS. Writing Word documents with it is really fun. So why not blog posts too?

Like many people in this community, I use a Markdown editor that could also publish directly in WordPress. After a few years with Ulysses, I recently switched to iA Writer on macOS to minimise my software subscriptions. Alternatively, there are also a few WordPress plugins that directly support Markdown as an input format, which is probably still the cheaper option.

So my approach for WordPress blog posts that don't necessarily require fiddling around with the HTML code (sometimes I fancy colour or specially formatted embedded photos, for example) is as follows: I write my posts in WordTsar, convert them with ws2markdown to Markdown and then upload the result to WordPress. I enjoy writing longer texts more this way and am therefore happy to recommend it to others. Maybe you like it too.

 

With the release of the 1.5 series of 42links (first announced here), my own approach at writing a bookmark collector has finally surpassed the functionality of its inspiration Espial: As you can see in the screenshot, deleting multiple links at the same time right from the index page is possible now. 🎉

I have been using 42links myself almost every day and I think I have now found and fixed the most embarrassing shortcomings. I would still very much welcome more users contributing ideas and/or people contributing code. :-)

 

I kept my promise and wrote something in Lisp.

FWIW: Not counting third-party libraries, READMEs and build-related stuff:

-------------------------------------------------------------------------------
Language                     files          blank        comment           code
-------------------------------------------------------------------------------
LISP                            12            205            330           1028
HTML                            16             69              6            698
CSS                              1             19             11             92
-------------------------------------------------------------------------------
TOTAL                           29            293            347           1818
-------------------------------------------------------------------------------

This has a few rough edges yet, for which I’m sorry. I’m proud enough to release it though. Please don’t consider this to be “finished software” yet. :-)

 

For a reason not worth mentioning here, I would like to write a somewhat more complex awk script in which I would have to explain in detail what I am doing. (If only so that I'll still know next week.) There doesn't seem to be a way to wrap a list of conditions in GNU awk, right?

This is what I tried:

command-that-prints-a-table | awk '
    NR>1 &&                # Skip line 1
    NF>2 &&                # Skip lines with only one column
    substr($1,1,1) != "("  # Skip lines that start with a "("
    { print $1 }
'

Alas, that does not work - awk skips the conditions entirely and only runs print $1. It seems that escaping the newlines does not work either, which makes sense as the end of the lines are comments.

This would work:

command-that-prints-a-table | awk '
# - Skip line 1
# - Skip lines with only one column
# - Skip lines that start with a "("
    NR>1 && NF>2 && substr($1,1,1) != "("  { print $1 }
'

But - my original code has a few more conditions - it is rather annoying to read and maintain. Is there an elegant way to fix this?

 

TL;DR: I made the switch an hour ago and thought I'd share my motivations and experiences here in case anyone wants to do the same.


A few years ago, when the number of devices in my LAN threatened to get out of hand for reasonable maintainability, I made the switch to network-wide ad blocking. An older Raspberry Pi model connected directly to my router turned out to be a good solution. After checking the available options, I ran AdGuard Home on it for a while, which is (in my opinion) a nicer solution than the top dog Pi-Hole, but essentially does the same thing: every DNS request is forwarded to a customisable DNS server and filtered using equally customisable blocking lists, plus there's a nice web interface.

Third-party DNS servers have some advantages, but they are not protected against censorship (e.g. the attacks by corporations against Quad9) and surveillance. Because what used to be called ‘paranoia’ can now be called healthy caution again, my own DNS server wouldn't be such a bad idea, I thought. The most obvious solution, setting up an Unbound in addition to AdGuard Home, did not seem wise to me for two reasons: Firstly, I have had rather mixed experiences with setting up and running Unbound on my mail server, and secondly, the concept of having to run two different services on the same device for the same purpose, which then have to talk to each other, seemed ill-conceived to me: not only is it quite complex and seems partially redundant, it is also more error-prone than a standardised solution.

Shortly afterwards, I accidentally found the answer to my doubts with the Technitium DNS server. Technitium (they have more products, but I'll cut it short for now) is something similar to AdGuard Home and Pi-Hole: you start a software and this software then acts as a DNS server. Technitium does not (necessarily) use a third-party service, but sends all queries directly to the root nodes. This takes a little longer than usual the first time a domain is called, but is censorship-free and then (naturally, because it is within the local network) lightning-fast.

Technitium works without further configuration, right after starting (and setting the admin password) it is fully operational. Fine-tuning is possible, there are also some plugins, I myself have actually only set up a few ad filters, because Technitium can also use these by default. I like it.

I regret not having started until 2025. I was always put off by Unbound. If I had known that something like Technitium existed (for over five years now), I would probably have skipped AdGuard Home straight away. I am happy to recommend it.

 

I mean, there is a variety of intriguing political parties, but it's still always "Republicans or Democrats". Why?

(Disclosure: I'm German, never been to the US.)

 

As I was reading about the Valley of the Kings again, I wonder why that was actually legal.

35
OpenBSD 7.6 (www.openbsd.org)
view more: next ›