WTF?

illnesses like cancer are not considered urgent, unless you are in the final stages.”

Because you know, then the State can exhibit “humane” behavior. The idiocy of this kind of thinking is beyond me. There are cases where the early stages should be treated as urgent. You know why? Because it is an investment and it works this way: You treat their condition and they get to work and pay you taxes. Wait until they get to the final stage and you’re billed for whatever treatment you offer them without any actual fiscal or moral return.

Then again, such thinking should not surprise me: A system does what a system does, despite its stated purpose. We know from Systemantics that the stated purpose is never served.

Update: This is not a post about cancer. This is about how a health system chooses to treat chronic situations. I thought it was obvious. Chronic situations are a real productivity killer, but hey what do I know, right?

2-0

Καιρό είχα να γράψω δυο γραμμές για την ομάδα. Είμαι μεγάλος φαν του Τσόρι (υπάρχει φίλος που λαμβάνει SMS με το κείμενο “Τσόρι ρε!” όποτε βάζει γκολ).

Νομίζω πως κανείς Ολυμπιακός (ή Παναθηναϊκός) δεν έχει ξεχάσει την δήλωση του Σερ. Έστω κι αν ήταν μούφα μια και είχε πει “The key factor in European games is respect, whether we are playing Inter Milan or Real Madrid” και δεν είχε αναφερθεί στον Ολυμπιακό.

Από την άλλη σκέφτομαι πως εάν παίζαμε με τον Σερ Άλεξ στον πάγκο, μπορεί και να μην κερδίζαμε.

Ωραίο ήταν.

Δεν είδα τον αγώνα. Άκουγα το δημόσιο ραδιόφωνο κάνοντας debugging. Και πήγε μια χαρά.

Μπουλάς

Αγόρασα αυτόν το δίσκο πριν χρόνια μετά από recommendation από το Amazon. Τον δίσκο μου τον έκανε δώρο ο Ντίνος (και μερικές φορές η μνήμη παίζει περίεργα παιχνίδια). Τον έβαλα να παίζει και συνέχισα την δουλειά μου. Ήταν μουσική εργασίας.

Και εκεί στο δέκατο κομμάτι ξαφνικά βγήκα από τον κώδικα που ήμουν βυθισμένος για να ακούσω πραγματικά αυτό που άκουγα εκείνη την στιγμή. Από τότε και για πολύ καιρό έπαιζα το κομμάτι σε φίλους και τους ζητούσα να μου πουν ποιος τραγουδάει. Μια και ήταν out of context (και δεν έχουμε όλοι και τα καλύτερα αυτιά και ηχεία) πολλοί ξεκινούσαν από τους γνωστούς τενόρους. Σε αυτό απαντούσα πως:

– Εάν σου πω ποιος το έγραψε, ξέρεις ποιος τραγουδάει και το ανάποδο.

Η έκπληξη ήταν πάντα ευχάριστη.

Καλό ταξίδι.

Piano Text

I think it was before 2000 that I read about Piano Text and it must have been on a computing mailing list. I vaguely remember that the subject was about music people hear when they code. Somehow the title stuck with me. I used to google for it from time to time, only to find a few pages talking about it. So it was a happy surprise that there’s a version of it on Youtube.

Now if it only was available on iTunes too…

ping in Ansible playbooks

The ping module documentation says that it does not make sense in playbooks, but it is useful only for /usr/bin/ansible. Well I think there is a case where you can include it in a playbook, and that is when you disable fact gathering. I really want to know if there is something wrong with connecting to a server, prior to starting executing the whole playbook scenario and be left with a half played one to redo. So, at least for the host sizes that I apply this, it does not hurt to have this as the first task:

---
- hosts: whatever
  user: whoever
  gather_facts: no
  tasks:
  - name: ping all hosts
    ping:

The fact gathering phase implicitly runs the setup module. If your play does not make use of fact computation, you may want to disable it and use ping, just to check how ssh communicates with ansible before feeding it work to do.

My browser’s “home” page

I try not to keep fifty tabs open and stress test my browser. But nowadays, opening my browser stress tests me. Whenever I fire it up, it opens:

  • Gmail
  • Twitter
  • Facebook
  • Yammer
  • Parley

and I used to open ServerFault too. And I’ve not even mentioned Thunderbird. That is a one way trip to feeling tired 5 minutes after the day begins.

Optimisations are coming.