Ich wünsche mir schon sehr lange die Möglichkeit direkt im Podcastclient eine Episode zu kommentieren. Ich bin nie am Computer, wenn ich eine Podcastfolge höre, sondern immer mit meinem Smartphone unterwegs. Bis ich wieder zu Hause bin, habe ich längst vergessen was ich schreiben wollte oder meist, dass ich überhaupt schreiben wollte. Die Folge: Podcast Kommentare sind sehr rar.
Nun ist heute eine neue Version des Podcastclients Podcat (iOS) erschienen, der erste Schritte in diese Richtung geht.
Ganzen Artikel lesenFolgender Codeschnipsel findet sich im Code von SQLite:
/*
** 2006-10-31: The default prefix used to be "sqlite_". But then
** Mcafee started using SQLite in their anti-virus product and it
** started putting files with the "sqlite" name in the c:/temp folder.
** This annoyed many windows users. Those users would then do a
** Google search for "sqlite", find the telephone numbers of the
** developers and call to wake them up at night and complain.
** For this reason, the default name prefix is changed to be "sqlite"
** spelled backwards. So the temp files are still identified, but
** anybody smart enough to figure out the code is also likely smart
** enough to know that calling the developer will not help get rid
** of the file.
*/
#ifndef SQLITE_TEMP_FILE_PREFIX
# define SQLITE_TEMP_FILE_PREFIX "etilqs_"
#endif
Immer wieder lustig mit welchen Problemen man sich als Developer so herumschlagen muss :)
Ganzen Artikel lesen