Μικρότητες...

Αντιγράφω από το tvxs.gr:

Λυπηρό και απαράδεκτο για την Ελλάδα χαρακτήρισε ο διεθνής Έλληνας σκηνοθέτης Κώστας Γαβράς, το «ψαλίδισμα» που έγινε στη 13 λεπτών ταινία του, η οποία προβάλλεται στο Νέο Μουσείο της Ακρόπολης. Το σημείο της ταινίας που «ενόχλησε» ήταν η σκηνή που εμφανίζονται ανδρικές φιγούρες να σφυροκοπούν τα μάρμαρα του Παρθενώνα και οι οποίες παραπέμπουν σε ορθόδοξους ιερείς.

...

Για άλλη μια φορά ξεσηκώθηκαν ορισμένοι παπάδες επειδή στο animation που σκηνοθέτησε ο Γαβράς δείχνει ιστορικά γεγονότα που δείχνουν τους πρώτους χριστιανούς να χαλάνε τμήματα του Παρθενώνα. Μετά το κράτος αναγκάζεται υπό τις «πιέσεις» αυτές να κόψει την επίμαχη σκηνή, για να μην χάσει το κύρος της η Εκκλησία στα μάτια των ανθρώπων. Μωρέ καλά το λέω σε διάφορες συζητήσεις, φορολογήστε μία φορά την Εκκλησία όπως πρέπει και θα καλύψετε όλες τις τρύπες του δημοσίου χρέους.

Μικρότητες...

διάφορα / miscellaneous: 
Χρήσιμο / Useful: 
Average: 3 (13 votes)
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

Προσεχώς: Λευκάδα, ένας εξαιρετικός προορισμός διακοπών (και όχι μόνο)

Μείνετε συντονισμένοι, καθώς τις επόμενες μέρες θα δημοσιεύσω λεπτομέρειες για τη Λευκάδα, που είχαμε την τύχη και τιμή να επισκεφθούμε λίγες ημερούλες για να περάσουμε ευχάριστα. Θέλω να τακτοποιήσω ορισμένες φωτογραφίες προκειμένου να δείξω και φωτογραφικό υλικό.

Χρήσιμο / Useful: 
Average: 3.6 (5 votes)
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

Microsoft "donates" 22,000 lines of code to the open source community...

A couple of days ago, Microsoft announced that it contributes somewhat 22,000 lines of code to the open source community. This probably comes as a surprise to the community, since it is well known that Microsoft is not particularly fond of Linux and, to speak more widely, open source software. The code is released under GPL v.2 and it is drivers that make Linux perform better when used as a guest OS under Microsoft's virtualization technology, Hyper-V, that is used in Windows Server 2008.

However, today the story that circles the internet is that Microsoft was actually obligated to release those drivers under the GPL v.2 license. The truth is that Stephen Hemminger -a network engineer that works for a company that produces open source routers- discovered that parts of code of a network driver in Hyper-V are compiled against GPL code, which constitutes a GPL violation. Hemminger contacted Greg Kroah-Hartman, who works for SuSE, to deal with this "silently", since SuSE (Novell) has a partnership contract with Microsoft. So, the marketing magic happened and Microsoft now seems to be the good guy that donates code to the community.

At least, that's what happened until today. The truth is now out.

υπολογιστές / computers: 
Χρήσιμο / Useful: 
Average: 3.2 (12 votes)
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

Use exiftool to rename your photos

It's annoying to have a bunch of photos with names such as DSC_wxyz.JPG where wxyz integers... My D60 happens to start from the beginning (that is 0001) when I delete all photos from the memory card. So, you take your photos and when you connect the camera to the PC to download them, you discover that your new DSC_0001.jpg file will overwrite your older DSC_0001.jpg if you have not anticipated the creation of folders for each case/event. Besides, DSC_0001.jpg provides 0 (zero) information about the actual photo.

So, enough of this! I searched a bit and discovered exiftool, a handy Perl script that reads the EXIF information (and several other vendor specific tags from the photos). So, the first thought I made was "what is the EXIF feature/tag that uniquely identifies a photo?". The answer was that a good candidate is the time the photo was taken. So, with a minimal Bash script, I can now rename all those DSC_ useless filenames to something like 20090712214512.jpg, which is the concatenated timestamp of the photo (year + month + day + hour + minutes + seconds). You must be a bit unlucky (and have a modern camera) to have two or more photos with the same timestamp (taken at the same second), but with a little tweaking, the script can also be modified to consider this case.

So, the following command will display the EXIF date and time the picture was taken:

$ exiftool -EXIF:DateTimeOriginal DSC_0028.jpg
Date/Time Original              : 2009:01:04 14:18:26

You can now get this timestamp and convert it to a more compact form:

$ exiftool -EXIF:DateTimeOriginal $i|awk '{print $4":"$5}'|tr -d :

This will give you something like

20090104141826

which is good enough for me to uniquely identify my photos.

υπολογιστές / computers: 
Χρήσιμο / Useful: 
No votes yet
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

ΜΜΕ και ψέμματα σε ζωντανή σύνδεση

Δείτε ένα πολύ καλό ρεπορτάζ του Στέλιου Κούλογλου στο tvxs.gr με θέμα την παραπληροφόρηση των Μέσων Μαζικής Ενημέρωσης, για να καταλάβουμε τελικά ότι αυτά που βλέπουμε στην τηλεόραση μπορεί και να μην είναι η αλήθεια, αλλά η «αλήθεια» που θέλουν να μας περάσουν.

διάφορα / miscellaneous: 
Χρήσιμο / Useful: 
Average: 3.6 (8 votes)
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

Spam on Twitter

I have an account on Twitter, although to be honest, I don't use it much. Lately, I've started receiving e-mails by Twitter that notify me that user mpla mpla mpla is following me on Twitter. I click on the user's profile and I discover hot women that want to have sex with me, etc. You get the point. I block these users without any further delay. I am wondering. Is this a new kind of spam?

υπολογιστές / computers: 
Χρήσιμο / Useful: 
No votes yet
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

Microsoft IE 8: Get the facts (...or here we go again)

Microsoft again publishes its own version of truth. Or in other words, Internet Explorer 8: Get the facts. Remember what happened with the Get the facts campaign about Linux? Well, more people have turned over to the free OS. I guess the same will probably happen with IE 8...

My dear Microsoft, there is only one fact you can get: Retire!

διάφορα / miscellaneous: 
υπολογιστές / computers: 
Χρήσιμο / Useful: 
Average: 2.9 (8 votes)
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

Μαζέψτε τα τώρα...

Οδηγούσα τις προάλλες και σταματώ σε φανάρι. Κοιτάω έξω και βλέπω σε διάφορες κολώνες τις αφίσες από την προεκλογική περίοδο. Τρίτη 2 Ιουνίου ο τάδε, Τετάρτη 3 Ιουνίου ο δείνα, Πέμπτη 4 Ιουνίου ο άλλος... Δε βαριέσαι. Ίδια πρόσωπα, διαφορετικές ημερομηνίες. Ωστόσο, θα σταθώ στο ότι τα κόμματα έκαναν τη δουλειά τους, γέμισαν τον τόπο με τις φάτσες των αρχηγών τους και αφού πέρασαν οι εκλογές (βγαίνουν και πανηγυρίζουν με 50% αποχή, αν είναι δυνατόν), τώρα πρέπει ο κάθε υπάλληλος του εκάστοτε δήμου να μαζέψει όλες τις αφίσες και τα σκουπίδια που άφησαν πίσω τους οι «κύριοι». Αν δεν καταλάβατε, πλήρωσαν τα κόμματα από την τσέπη τους (λέμε τώρα, δεν παίρνουν επιδότηση σε κάθε εκλογές από τη Βουλή;) για να κρεμάσουν τις φάτσες των αρχηγών τους και τώρα καλούμαστε εμείς (μέσω των φόρων που όλοι -οι μη έχοντες- πληρώνουμε) για να πάει ο υπάλληλος να μαζέψει τα σκουπίδια που άφησαν. Αυτό είναι. Αθάνατη Ελλαδάρα.

διάφορα / miscellaneous: 
Χρήσιμο / Useful: 
Average: 3.6 (7 votes)
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

Don't feed the spammers!

I occasionally receive e-mails from friends, work colleagues, or relatives, that encourage you to forward the e-mail to as many people as you can. These are the so called "chain e-mails", because the process seems like the rings in a chain. For example, today I received an e-mail that claimed to be followed by Microsoft and that if you forward it to other people, at some point, Microsoft will contact you to send them your address information, so that they will eventually send you a cheque. The e-mail was so long, that 90% of it was the remains of other e-mail addresses, as other people did forward the message and the 10% was what I've just described above. You remember that when you forward an e-mail, by default the e-mail client puts all the content in the new message, indents it and leaves the message information as it was sent to you (from:, date:, subject: headers). I mark this with bold, because this is what this is all about. The purpose of these chain e-mails is for the e-mail to return at some point in the future to persons or entities that collect the inline e-mail addresses and put them in a list of e-mail addresses for spamming. So, congratulations, you've just become another spam victim.

For example, for this specific e-mail I received today, who on Earth would believe what it claimed? Why is Microsoft so stupid to send you money just because you forwarded an e-mail that claims to give you money if you forward it further? The real meaning of the e-mail is nothing. It just says "if you forward this, you will receive money from Microsoft". Well, it seems that there are a lot of people that put faith in these chain e-mails and forward them further. Ok, forward the message to as many other people as you like, but please add my personal e-mail address to BCC recipients (so that it won't be visible to the other recipients) and delete all other inline mail headers and just leave the message body. Then who knows, maybe at some point in the future you will receive a cheque with a million $ or so.

And speaking of spam, please add the e-mail address of f.papapetrou@gmail.com to your potential spam list, because today I also received another e-mail claiming to be from that address that was of course spam (and in Greek). So, it's f.papapetrou@gmail.com, don't forget it!

υπολογιστές / computers: 
Χρήσιμο / Useful: 
Average: 4.3 (4 votes)
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

Προσοχή στα καλώδια λέμε!

Σήμερα το πρωί σηκώνομαι και βλέπω στο router ότι το λαμπάκι της ADSL δεν ανάβει. Ωχ, σκέφτομαι. Επειδή από προχθές κάνει κάποια έργα έξω η ΕΥΑΘ, σκέφτομαι το χειρότερο... Πάω σηκώνω το ασύρματο, η γραμμή κομμένη. Ναι, το συνεργείο της ΕΥΑΘ έκοψε ολόκληρο καλώδιο του ΟΤΕ. Όλη η πολυκατοικία, αν όχι το τετράγωνο, δεν είχε τηλέφωνο. Κατευθείαν δηλώνω βλάβη στον ΟΤΕ (από το κινητό, αν ποτέ χρειαστείτε το 121 για τις βλάβες του ΟΤΕ, από κινητό ο αντίστοιχος αριθμός είναι 13888).

Φεύγουμε μετά για ψώνια και γυρνώντας ξαναπαίρνω στις βλάβες και λέω ότι το πρόβλημα κατά 99,9% είναι στο ότι το συνεργείο της ΕΥΑΘ έκοψε το καλώδιο και αν μπορούν να στείλουν συνεργείο κατευθείαν εδώ. Μετά μιλάω με έναν εργάτη από το συνεργείο.

- Κόψατε κάποιο καλώδιο σκάβοντας;

- Ναι, του ΟΤΕ. Ειδοποιήσαμε από το πρωί, αλλά βλέπεις, δημόσιοι υπάλληλοι... Από βδομάδα μάλλον.

- Ωχ. Καλά.

Ευτυχώς, το συνεργείο ήρθε μετά από καμιά ώρα. Προφανώς για να υπάρχει αυτή η δημοσίευση, σημαίνει ότι η βλάβη αποκαταστάθηκε. Τώρα για το ποιος φταίει, γεγονός είναι ότι το καλώδιο του ΟΤΕ ήταν μόλις 5-10 εκ. στο έδαφος, ενώ κανονικά (σύμφωνα με τα λεγόμενα του εργάτη του συνεργείου) πρέπει να είναι κάτω από 70εκ. βαθιά στο έδαφος.

Πάντως, οφείλω να ομολογήσω ότι ανταποκρίθηκε (σχετικά) γρήγορα ο ΟΤΕ.

διάφορα / miscellaneous: 
Χρήσιμο / Useful: 
Average: 3.1 (16 votes)
Ψηφίστε για την ποιότητα του άρθρου / Vote for the article's quality

Σελίδες

Εγγραφή στο lourdas.eu RSS