tux0r

joined 9 months ago
[–] [email protected] 1 points 12 hours ago

The bulk of commercial servers run Linux, and a hobbyist would find Linux easily the most accessible option.

FWIW, I think FreeBSD is a massively superior server system.

[–] [email protected] -2 points 5 days ago (1 children)

Und 2024 luden die Deutschen ihre Befreier nicht mehr zum Jahrestag der Befreiung ein. Und konfiszierten die Flaggen derer, deren Taten sie zu feiern behaupten.

[–] [email protected] 1 points 5 days ago

Ja gut, direkt unerwartet ist davon jetzt hoffentlich nichts.

[–] [email protected] 1 points 1 week ago (1 children)

Does the country flag verify your dependencies?

[–] [email protected] 3 points 2 weeks ago (3 children)

I wish nationalism wasn't a good thing in the FLOSS world anymore.

[–] [email protected] -5 points 2 weeks ago* (last edited 2 weeks ago)

Gib “Russland droht” in eine beliebige Suchmaschine ein

Jede Menge Interpretationen in der Hoffnung, dass die Leser kein Russisch können. Substanz leider: kaum.

Muss ich dir wirklich erklären, wie viele Grenzen die Schweiz und Österreich mit Russland teilen?

Genau so viele wie Deutschland. Also warum genau muss Deutschland jetzt in der NATO sein und die beiden anderen Staaten nicht?

So… und jetzt geh schnell wieder bei den Mods jammern

Ich sehe, du hast dein "Argumentieren für Zwölfjährige"-Büchlein wiedergefunden. "Heul doch, nänänä." Mach' ich aber nicht. Und jetzt?

dass dich gegenteilige Meinungen persönlich beleidigen.

Was nichts ist als eine unbelegte Unterstellung deinerseits. Denn das tun sie nicht.

Ich tu mir das hier nicht länger an

Bist du dir sicher, dass ich es bin, der jammert?

da du ja offensichtlich an nichts als Polemik interessiert bist.

Schade. Eine Antwort auf die Frage, wieso Deutschland mehr Angst vor Russland haben sollte als die Schweiz, hätte mich wirklich sehr interessiert. Aber von russophoben Bundeswehrfans kann man so was offenkundig nicht erwarten. Alles beim Alten bei den Rechten.

Herzlich willkommen insofern auf meiner Blockierliste. Du verschwendest meine Zeit.

[–] [email protected] 1 points 2 weeks ago

Nee, aber reicht.

[–] [email protected] 0 points 2 weeks ago (3 children)

Hatte ich dreizehn Jahre lang ausprobiert. Klappt nicht. In keiner Partei.

 

TL;DR: Wählen lohnt sich nicht.

 
 
 

Kurze Erklärung der kommenden Hochrechnungen.

 

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. :-)

 

Ich finde die Entwicklung nicht gut, aber dieser Blogger hätte 2-3 Ideen, wie man sie aufhält.

Oder man macht halt weiter so.

 
 
 

Als Ergänzung zu meinem vorherigen Maimai vielleicht noch eine Erklärung dazu, was mich am Parlamentarismus eigentlich stört.

Wo bleibt eigentlich die Revolution?

 
 

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?

view more: next ›