Google Click-tracking
Sonntag, Juli 24th, 2005Wann hat Google eigentlich angefangen, Nutzer bei den Suchergebnissen über einen Google-Redirect zu leiten?
Oder ist das nur, weil ich mit meinem GMail-Account eingeloggt bin?
Private Mitteilungen aus der TV-Soap-Fabrik
Wann hat Google eigentlich angefangen, Nutzer bei den Suchergebnissen über einen Google-Redirect zu leiten?
Oder ist das nur, weil ich mit meinem GMail-Account eingeloggt bin?
Das regelmäßige Blinken des DVD-Brenners beim Schreiben macht mich nervös - ist noch ein Relikt aus der Zeit als so ein Blinken bei der 1541 nichts Gutes bedeutete.
Tja - sein erstes Wechselspeichermedienlaufwerk vergisst man eben nie - oder so…
Ich fand es sehr lästig, dass die “Saved Searches” in Spotlight nicht alles anzeigten, was ich von ihnen wollte - darum hier nun meine Konfiguration, die wirklich alles zeigt, was seit gestern geöffnet wurde: Emails, jegliche Dokumente, die Spotlight kennt, etc.
(Klick auf das Thumbnail-Bild öffnet die Großansicht in neuem Fenster.)
Dasselbe kann man auch auf andere Spotlight-Suchen anwenden: Sobald man anfängt bestimmte Dateinamen mit “Reine Daten” (lausige Übersetzung für “Raw Query”) auszuschließen, zeigt der Finder alle Arten von Dokumentenan, die nicht ausgeschlossen werden. ![]()
Und wenn ich mir das katastrophale Layout dieses Eintrags ansehe, weiß ich, dass ich mal ein Redesign machen muss - bald…
Cool - hoffentlich gibt’s Google Earth bald auch für Mac, dann kann ich solche Hacks auch mal ausprobieren.
Okay, I’m going to write this one in English, because it’s probably useful for many people out there who don’t speak German.
Based on the “Smart Radio” playlist idea here, the (non-existing) ultimate iTunes script described here and using this script as a starting point, I decided to roll my own ultra-smart iTunes personal radio.
Some of the highlights:
The caveats:
And a last warning - this is a bit advanced stuff. You should be familiar with smart playlists, AppleScript and a bit of shell stuff if you attempt this.
Read more - a lot more - after the jump.
The setup
First a bit of theory: My script uses the ratings system as a way to measure how much you like a song at the moment - if you play it a lot, its rating will rise. If you’re getting sick of it and skip it, the rating will sink again.
How is this accomplished? I’ll walk you through it step by step:
1. Install Anacron
To make sure our regular task of downgrading songs we haven’t heard in awhile gets executed even if the system is not running 24/7, we use the wonderful Anacron package (which also makes sure that some imprtant OS X housekeeping jobs are taken care of). Grab it here for Tiger (10.4) or here if you’re still using 10.3 or below. It’s a simple install, come back when you’re done.
2. Create a core playlist
This is the master playlist - anything that’s on this playlist will be played, anything that’s not on there will be ignored by our radio.
Personally, I use a smart playlist that excludes anything shorter than 1 minute, anything longer than 10 minutes, any of the QuickTime moves I happen to have in my library (”Kind does not contain ‘QuickTime’”) and also exclused some genres - like “Spoken Word” that I just don’t want on my personal radio. You could go a completely different route, e.g. only include certain genres - it’s up to you. Don’t use selection based on ratings - that’d break the logic the script relies upon.
After you finised creating that playlist, call it @@core@@ (The @-signs put it at the top of the list in iTunes’ playlist display. You could call it anything else, but I’m sticking with “@@core@@”
)
3. Create a playlist for recently added music
Fresh and unknown music should be preferred - that’s why we have a special area for it. I call it @@new@@ and it looks like this:
Later on, when we create the radio playlist, every song in @@new@@ will automatically be included.
4. Create a playlist for “semi-stale” music
The system’s design makes it possible for songs to be played once and then rot in some waiting place for awhile without being played. To counter that (and make automatic downgrading possible), we need a list for rated music that hasn’t been played in awhile. (Remember - our script is going to take over the rating, so basically anything that’s been rated must have been touched by it.)
@@old@@
5. Create the ratings playlists
We want to have a Radio playlist that feeds off @@core@@, but it should honor the ratings system: Songs we like should be played more often, some new or forgotten music should be infused, as well, etc. To make that possible we need a filtering layer between the Radio playlist and @@core@@. We also want to exclude songs in the @@new@@ playlist, since those will be included within our master radio playlist anyway.
The first list in that filtering layer contains unrated music. In my model, unrated songs are either songs you never heard before or those you haven’t played in a long time. I call it @@0 Stars (a)@@ and it looks like this:
(You might want to tweak the limit number later on when the system is in use, but I found 50 to be a nice starting point.)
Why did I call it @@0 Stars (a)@@ instead of just “@@0 Stars@@”. Very simple: Because there’s a @@0 Stars (b)@@, as well.
iTunes’ star rating isn’t very fine grained, but it’s just the frpnt-end for a more sophisticated ratings system: You can rate a song anything from 0 to 100 - each star in iTunes corresponds to a 20 point increase. (1 star: A rating of 20 points, 2 stars = 40 points, etc.) iTunes will round the number of stars displayed: If you have song rated 44, iTunes will display 2 stars. That song, however, won’t show up in a smart playlist designed to show every 2-star-song, because iTunes’ filtering is designed to look for the exact number of points - so it’ll only display songs with exactly 40 points.
To be able to use the “fuzzy” ratings in between, we need to create a rather curious looking playlist: @@0 Stars (b)@@
One would expect this playlist not to match anything, however it actually matches every song with a rating between 0 and 20 points - exactly what we need.
(Update: According to user feedback, this trick isn’t necassary any more in iTunes 6.0.3 since it’ll automatically include all numbers in the range in a smart playlist. I didn’t try it out myself yet, but if that’s true, you should be able to leave out all of the (b)-lists in 6.0.3 or above and still have the same functionality.)
Note that while the first playlist is odered randomly, this (and all subsequent) playlists are ordered by most recently played This - coupled with the numer limit - makes sure that songs have a small “cooling off” period before being played again. (Since the playlists for the higher ratings are larger, higer rated songs are repeated more frequently than lower rated songs.)
Here are the other ratings playlists:
@@1 Star (a)@@
@@1 Star (b)@@
@@2 Stars (a)@@
@@2 Stars (b)@@
@@3 Stars (a)@@
@@3 Stars (b)@@
@@4 Stars (a)@@
@@4 Stars (b)@@
@@5 Stars@@
Again - all the limit numbers are guesstimates - you might want to tweak them after using the script for a bit. The general idea is that there should be more room for high rated songs than for the lower ratings.
6. Create the master Radio playlist
Okay, this is our radio playlist, called @@@Radio@@@. (Note that it doesn’t access @@core@@ directly - it uses the “filtering layer” of our smart playlists.)
Make sure you’re setting it to only match some rules, no song is ever going to match all of those rules.
7. Create Housekeeping playlists
Our script needs two playlists for internal use: A “recently” played smart playlist and a regular playlist to store the last song it caught:
@@recently played@@
Next, create a regular (non-smart) playlist named “@@current song@@” and leave it empty. The script needs it for its own dark purposes.
8. Create the scripts
We have two scripts: One that’s running in the background, rating your music as you play it, and one that’s started once a week to downgrade the “semi-stale” music.
Here they come:
First our background rating skript - the brain of the operation:
Save this in script editor as an application called Rating and make sure you check the box that says “don’t terminate automatically” or something like that.
The second script is needed for downgrading stale songs. Every time it’s called, it’ll reduce the rating of all songs in your @@old@@ playlist by 1 star.
Save this as a plain application called “Purge”. (Don’t check the “don’t terminate” box.)
9. Make “Purge” callable
We want to call “Purge” via Anacron. Anacron runs as root, but we want our script to be run as out user. A small bash script does the trick:
#!/bin/sh sudo -u <USERNAME> osascript /<PATH>/<TO>/Purge.app
(Substiute your username and the path to your Purge application in the indicated places.)
Save the script as purge.sh.
Now, open a Terminal window, and type sudo pico /etc/anacrontab.
Enter your password when asked.
In the anacrontab file, ass the following line:
7 10 purge.weekly /<PATH>/<TO>/purge.sh
(Again, substitute the correct path to your purge.sh)
Press Ctrl-X to exit the editor. It asks you if you want to save the changes - press “Y” to save them.
From now on, Purge.app will be run weekly - downgrading anything in your @@old@@ list.
10. Start the Rating app
Just double-click your Rating.app - it shoud stay running. You probably want to add it as a startup item - make sure iTunes is started before the Rating script.
11. Test it
Play an unrated song from the @@@Radio@@@ playlist - wait until it finihes (or, if you’re impatient, jump close to the end of the track, but make sure it plays for at least 10 seconds.)
A few seconds after the next song starts, the previous song’s rating should change to “2 stars”.
If it doesn’t work, add a comment below, hopefully, we’ll figure it out.
12. Hints:
This’ll even sort by the “real rating, so a song with a rating of “40″ will always be below a song with a rating of “49″, even though both have 2 stars displayed.
13. The way of a song through all of this
Here’s what happens to a song within this maze of scripts and lists:
14. What’s left?
Well, that was my setup - there are a lot of things to tweak and change, so feel free to experiment and share your results in the comments.
Oh, and feel free to subscribe to my English RSS feed to receive future English language postings to the site. ![]()
Kaum hatte ich ein bisschen mit iTunes 4.9 rumgespielt, da hatte ich auch schon die ersten Fehlermeldungen beim Laden - es gong um ungültige URLs.
Aber siehe da: Das Unofficial Apple Weblog hat die Lösung:
I’ve been having difficulty subscribing to several of the podcast feeds available in the iTMS. I’ll click subscribe, then the dialog will pop up asking if I am sure I want to subscribe, I click yes, then the podcast appears in my podcast pane with a little ! next to it. I click on the !, and I am met with something like the following:
If this happens to you, here’s the solution: Go back to the iTMS. Instead of subscribing to the entire podcast, simply click the "Get Episode" button next to the podcast to which you want to subscribe. The episode will begin loading in your podcasts pane and the podcast will appear above the individual episode with a "Subscribe" button. Click on that Subscription button and now for some unknown reason, it works. Probably something to do with podcast feeds that aren’t properly embedded, but who knows?
Es gibt also offensichtlich noch Kinderkrankheiten - hoffen wir, dass die schnell ausgebügelt werden.
Okay, jetzt wird das Treiben der Musikindustrie endgültig absurd:
Sony BMG Music Entertainment gibt Nutzern von iTunes unter Windows auf Anfrage eine Anleitung, wie der hauseigene Kopierschutz auf Audio-CDs zu umgehen ist, sodass man die Musik-CDs über iTunes auf dem iPod übertragen kann. Auf der Support-Seite fordert das Unternehmen zudem Kunden dazu auf, das Problem an den Apple-Support zu melden, damit eine zukünftige iTunes-Software das Problem behebt. Wer die weiterführende Support-Anfrage ausfüllt, erhält US-Medienberichten zu Folge eine Schritt-für-Schritt-Anleitung zum Umgehen des Kopierschutzes. Sony BMG selbst kündigt diese Anleitung auf den Support-Seiten mit deutlichen Worten an: “Even though there is no direct support on the disc for iTunes or iPod, Sony BMG has worked out a way for consumers to move content into these environments, despite the challenges noted above.”
Besonders den Abschnitt mit dem Apple-Support finde ich putzig: Da tut die Musikindustrie alles, um das Kopieren auf MP3-Player zu verhindern - und dann ist Apple Schuld, dass es nicht funktioniert?
(Via: heise online)
Pünktlich zur Einführung des biometrischen Reisepasses hat der CCC eine Schritt-für-Schritt Anleitung veröffentlicht, die alle Informationen enthält, um einen vorhandenen Fingerabdruck von einem Glas (oder ähnlichem) abzunehmen und in eine künstliche Fingerkuppe zu verwandeln. Damit ist es mögliche biometrische Sensoren zu täuschen.
(Via: Stör-Signale)
Ein schönes Beispiel für Fortschritt liefert das Museum of pre-historic technology (I):
From The Hunt for Red October (1984)
During her last overhaul, the Dallas had received a very special toy to go with her BQQ-5 sonar system. Called the BC-10, it was the most powerful computer yet installed aboard a submarine. Though only about the size of a business desk, it cost over five million dollars and ran at eighty million operations per second.
[…]
Twenty years and 13 or so cycles through Moore’s law later, this kind of massive computing power comes in a rather more convenient package.
(Via: a crank’s progress)
Microcontentnews analysiert den Wandel vom Sortier-Paradigma zum Such-Paradigma. AN sich gar nicht schlecht, aber beim Thema “Desktop Search” übersieht der Autor Spotlight vollokommen:
Let’s take a look at what a Google Desktop might look like, if it worked just like Gmail.
Clearly, Search would be primary - like it is now on Google Desktop Search. But in addition, we’d see feature like the following:
- There’d be an “Inbox” of current files that you’re working on
- Perhaps this would be called your “Desktop”? (others have called it a Stream)
- You could “Archive” old files, so they disappear from your Desktop
- You could “Star” files you want to work on, or even “Label” them with keywords to make them easy to find later
Den ersten und dritten Punkt bietet Spotlight schon heute (für den ersten legt man sich einfach eine Suche an, die nach den Dateien guckt, an denen man zuletzt gearbeitet hat - allerdings könnte Apple da noch etwas am Interface nachbessern, für den dritten gibt es die guten alten Finder-Kommentare, die jetzt “Spotlight Kommentare” heißen. Auch hier lässt die Oberfläche allerdings zu wünschen übrig.
Hm, vielleicht ein Projekt, wenn ich mal was Zeit übrig habe: Eine saubere Oberfläche für Spotlight schreiben.