<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../assets/xml/rss.xsl" media="all"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>die-welt.net (Posts about mobile)</title><link>https://www.die-welt.net/</link><description></description><atom:link href="https://www.die-welt.net/category/mobile.xml" rel="self" type="application/rss+xml"></atom:link><language>en</language><copyright>Contents © 2026 &lt;a href="mailto:evgeni@golov.de"&gt;evgeni&lt;/a&gt; </copyright><lastBuildDate>Fri, 06 Mar 2026 14:03:31 GMT</lastBuildDate><generator>Nikola (getnikola.com)</generator><docs>http://blogs.law.harvard.edu/tech/rss</docs><item><title>QiFi - the pure JS WiFi QR Code Generator</title><link>https://www.die-welt.net/2013/03/qifi-the-pure-js-wifi-qr-code-generator/</link><dc:creator>evgeni</dc:creator><description>&lt;p&gt;Some time ago, the &lt;a title="QR Code Generator - WiFi Access" href="http://blog.qr4.nl/QR-Code-WiFi.aspx"&gt;QR Code Generator - WiFi Access&lt;/a&gt; made quite some noise on the mighty Internet. Sure, it is cool to be able to share your WiFi-access with someone by just showing him a QR code he can scan on his phone and the phone will auto-connect to the WiFi. But I get a strange feeling telling someone I do not know my WiFi credentials. No, I do not mean my guests, I know them. I mean that shiny web-service that will generate a QR code for me.

The geek in you will now say: "So? Open up a terminal, install &lt;code&gt;qrencode&lt;/code&gt;, pipe it the string &lt;code&gt;WIFI:S:&amp;lt;SSID&amp;gt;;T:&amp;lt;WPA|WEP|&amp;gt;;P:&amp;lt;password&amp;gt;;;&lt;/code&gt; and you got our QR code". Yeah, that works. But was it one or two semicolons at the end? And was it really just WPA even if my WiFi uses WPA2? Oh and how do I encode that umlaut again? &lt;strong&gt;I&lt;/strong&gt; do not want to remember this.

Thus, without too much rumble, may I present you: &lt;a href="https://qifi.org"&gt;QiFi - the pure JS WiFi QR Code Generator&lt;/a&gt;. QiFi is a QR code generator for WiFi access in pure JavaScript. It will generate the QR code on &lt;strong&gt;your&lt;/strong&gt; machine, in &lt;strong&gt;your&lt;/strong&gt; browser, not leaking your precious credentials to anyone (but your guests). Don't trust me? &lt;a href="https://github.com/evgeni/qifi"&gt;Read the code&lt;/a&gt;. Fork the code. Host the code yourself.

I hope you will find QiFi at least slightly useful ;-)&lt;/p&gt;</description><category>mobile</category><category>planet-debian</category><category>software</category><guid>https://www.die-welt.net/2013/03/qifi-the-pure-js-wifi-qr-code-generator/</guid><pubDate>Wed, 20 Mar 2013 20:29:02 GMT</pubDate></item><item><title>Desktop in a shell: irssi</title><link>https://www.die-welt.net/2011/03/desktop-in-a-shell-irssi/</link><dc:creator>evgeni</dc:creator><description>&lt;p&gt;Continuing my series about my &lt;a href="https://www.die-welt.net/2011/02/desktop-in-a-shell/"&gt;desktop in a shell&lt;/a&gt;, in this chapter I will present you my irssi setup.

Irssi is the most customized part of my setup, using many scripts from the irssi-scripts Debian package and some "from the internet", handling 6 irc networks with a total of 34 channels plus &lt;del&gt;Jabber&lt;/del&gt;XMPP, ICQ, Twitter and identi.ca.

&lt;/p&gt;&lt;h3&gt;My "custom" irssi settings&lt;/h3&gt;

I like my conversations to look like "Buddy, you rock" instead of "Buddy: you rock", so:
&lt;code&gt;/set completion_char ,&lt;/code&gt;

I also like &lt;strong&gt;*long highlighted text*&lt;/strong&gt;, so:
&lt;code&gt;/set emphasis_multiword on&lt;/code&gt;

Hide mIRC and ANSI colors when turned on. This can be used to eliminate angry fruit salad syndrome in some channels. (Quote from &lt;a href="http://irssi.org/documentation/settings"&gt;irssi.org/documentation/settings&lt;/a&gt;, do I have to say more?):
&lt;code&gt;/set hide_colors on&lt;/code&gt;

When talking in more than one channel, it sometimes comes handy to repeat something from the past said in THAT channel, not searching though all:
&lt;code&gt;/set window_history on&lt;/code&gt;

Tell irssi to shutup when away, noone will hear/see the beep anyways:
&lt;code&gt;/set beep_when_away off&lt;/code&gt;

I want my screen to inform me about new messages, so I need this:
&lt;code&gt;/set bell_beeps on&lt;/code&gt;

Beep for query text, notices, dcc, dcc text and hilight:
&lt;code&gt;/set beep_msg_level MSGS NOTICES DCC DCCMSGS HILIGH&lt;/code&gt;

&lt;h3&gt;My used irssi scripts&lt;/h3&gt;
&lt;h4&gt;active_notice.pl (from irssi-scripts)&lt;/h4&gt;
Show notices in the active window or the corresponding query instead of the status-window.

No further configuration needed.

&lt;h4&gt;adv_windowlist.pl (from &lt;a href="http://anti.teamidiot.de/static/nei/*/Code/Irssi/adv_windowlist.pl"&gt;anti.teamidiot.de&lt;/a&gt;)&lt;/h4&gt;
Some really smart windowlist, see &lt;a href="https://www.die-welt.net/2010/12/because-people-asked-my-irssi-advanced-windowlist-setup/"&gt;my previous post about adv_windowlist.pl&lt;/a&gt;, I won't explain its features and settings here again.

&lt;h4&gt;autorealname.pl (from irssi-scripts)&lt;/h4&gt;
Show peoples real-name when they join (my $nick ←→ $name memory is poor :()

No further configuration needed.

&lt;h4&gt;chansort.pl (from irssi-scripts)&lt;/h4&gt;
Automatically sort my channels alphabetically, grouped by network.

Enable via &lt;code&gt;/set chansort_autosort on&lt;/code&gt;

&lt;strong&gt;&amp;lt;Update&amp;gt;&lt;/strong&gt;&lt;a href="http://identi.ca/kaimi"&gt;kaimi&lt;/a&gt; asked me yesterday, whether chansort could ignore the network and just sort &lt;strong&gt;ALL&lt;/strong&gt; channels in alphabetical order. Well, it could not, until yesterday ;) Fetch either the &lt;a href="http://files.die-welt.net/irssi/chansort-ignore.patch"&gt;patch against chansort.pl&lt;/a&gt; or &lt;a href="http://files.die-welt.net/irssi/chansort-ng.pl"&gt;"my" chansort-ng.pl&lt;/a&gt; and set &lt;code&gt;chansort_ignore_network&lt;/code&gt; to &lt;code&gt;ON&lt;/code&gt;. You can also set &lt;code&gt;chansort_ignore_windowtype&lt;/code&gt; to mix channels and queries if you like to.&lt;strong&gt;&amp;lt;/Update&amp;gt;&lt;/strong&gt;

&lt;h4&gt;hack-whois-in-current-window.pl (from &lt;a href="http://dgl.cx/irssi/hack-whois-in-current-window.pl"&gt;dgl.cx&lt;/a&gt;)&lt;/h4&gt;
Display /whois in the current window or the corresponding query instead of the status-window.

No further configuration needed.

&lt;h4&gt;keepnick.pl (from irssi-scripts)&lt;/h4&gt;
Restore my nick after it is free again (like after a ping timepout).

Set the nick via &lt;code&gt;/keepnick [-net chatnet] [nick]&lt;/code&gt;

&lt;h4&gt;nickserv.pl (from irssi-scripts)&lt;/h4&gt;
Automatically authorize me on networks with NickServ.

Enable by settings services address, nick and password via:
&lt;pre&gt;/nickserv addnet freenode NickServ@services.
/nickserv addnick freenode Zhenech mypass&lt;/pre&gt;

&lt;h4&gt;screen_away.pl (from irssi-scripts)&lt;/h4&gt;
Set away when screen is detached.

Will be enabled automatically, but you maybe want to tweak &lt;code&gt;screen_away_message&lt;/code&gt; :)

&lt;h4&gt;seen.pl (from irssi-scripts)&lt;/h4&gt;
Add a &lt;code&gt;/seen nick&lt;/code&gt; command to lookup when and where nick was online the last time.

No further configuration needed.

&lt;h4&gt;trackbar.pl (from irssi-scripts)&lt;/h4&gt;
Draw a line when you switch irssi windows so you can see which part of the conversation you have already seen.

No further configuration needed.

&lt;h3&gt;BitlBee&lt;/h3&gt;
I'm using &lt;a href="http://bitlbee.org"&gt;BitlBee&lt;/a&gt; as my irssi-to-every-im gateway of choice ;) But while it sounds easy, my setup isn't. I am using BitlBee only to connect to &lt;code&gt;jabber.die-welt.net&lt;/code&gt;, my Jabber/XMPP server. There I have a &lt;a href="http://code.google.com/p/pyicqt/"&gt;pyICQt&lt;/a&gt; instance running, to connect to ICQ via Jabber (yes, BitlBee would support that directly, but that would fail on me when I would like to connect from a different Jabber-client). Twitter and &lt;a href="http://identi.ca"&gt;identi.ca&lt;/a&gt; are handled via Jabber too: identi.ca does support this by themself, for Twitter I use the &lt;a href="http://tweet.im"&gt;tweet.im&lt;/a&gt; service.

But besides of my strange setup, BitlBee is easy: &lt;code&gt;apt-get install bitlbee&lt;/code&gt;, connect irssi to &lt;code&gt;localhost:6667&lt;/code&gt;, you will be force-joined to &lt;code&gt;&amp;amp;bitlbee&lt;/code&gt;, where you do:

&lt;pre&gt;register somepassword
account add Jabber you@jabberserber.example.com jabberpassword
account on 0&lt;/pre&gt;

and done, you@jabberserver.example.com is online :)

The all awaited screenshot (from my last irssi-post):

&lt;a class="image-reference" href="https://www.die-welt.net/wp-content/uploads/2010/12/irssi-awl.png"&gt;&lt;img class="alignnone size-medium wp-image-759" title="irssi advanced windowlist" src="https://www.die-welt.net/wp-content/uploads/2010/12/irssi-awl-300x181.png" alt="" width="300" height="181"&gt;&lt;/a&gt;

And the whole &lt;code&gt;~/.irssi/config&lt;/code&gt;: &lt;a href="http://files.die-welt.net/irssi-config.txt"&gt;http://files.die-welt.net/irssi-config.txt&lt;/a&gt;, read it carefully while waiting for the next post about newsbeuter :)</description><category>debian</category><category>desktop-in-a-shell</category><category>english</category><category>laptop</category><category>linux</category><category>mobile</category><category>planet-debian</category><category>software</category><guid>https://www.die-welt.net/2011/03/desktop-in-a-shell-irssi/</guid><pubDate>Tue, 08 Mar 2011 22:21:10 GMT</pubDate></item><item><title>Streaming OGG Vorbis to a Nokia E51</title><link>https://www.die-welt.net/2008/05/streaming_ogg_vorbis_to_a_nokia_e51/</link><dc:creator>evgeni</dc:creator><description>&lt;p&gt;Today I discovered, that there is a beta of &lt;a href="http://symbianoggplay.sourceforge.net" target="_blank"&gt;OggPlay&lt;/a&gt; for my Nokia E51 (Symbian Series 60, 3rd Generation, FeaturePack 1), which &lt;a href="http://sourceforge.net/forum/message.php?msg_id=4857972" target="_blank"&gt;can play OGG Vorbis streams&lt;/a&gt;.&lt;br&gt;
And it does really work!&lt;br&gt;
&lt;br&gt;
So here is what I did to hear my Icecast stream (which is filled with data by my MPD):&lt;br&gt;
1. Get the last version from &lt;a href="http://symbianoggplay.sourceforge.net/nSIS" target="_blank"&gt;http://symbianoggplay.sourceforge.net/nSIS&lt;/a&gt; - at the time of writing it is &lt;a href="http://symbianoggplay.sourceforge.net/nSIS/OggPlayS60V3_1_80b2.sis" target="_blank"&gt;OggPlayS60V3_1_80b2.sis&lt;/a&gt;.&lt;br&gt;
2. If you do not have an older version of OggPlay installed, you may need a skin - see the OggPlay homepage for details.&lt;br&gt;
3. Send the file via Bluetooth to the phone.&lt;br&gt;
4. Get the .m3u file for the stream.&lt;br&gt;
5. Send the .m3u file via Bluetooth to the phone and notice it will refuse to save it :/&lt;br&gt;
6. Send the .m3u file via USB to the phone.&lt;br&gt;
7. Open OggPlay 1.80b2&lt;br&gt;
8. Search for new files.&lt;br&gt;
9. Go to &lt;strong&gt;"ogg_text_string_15"&lt;/strong&gt; (that should be streams, dunno why it fails here)&lt;br&gt;
10. Select your m3u and let it play.&lt;br&gt;
11. Notice that it plays like shit, too many gaps.&lt;br&gt;
12. Set &lt;strong&gt;Settings &amp;gt; Playback &amp;gt; Buffering mode&lt;/strong&gt; to &lt;strong&gt;Single thread&lt;/strong&gt; as suggested in the forums, notice that the playback did not get any better.&lt;br&gt;
13. Set &lt;strong&gt;Settings &amp;gt; Playback &amp;gt; Buffering mode&lt;/strong&gt; to &lt;strong&gt;No buffering&lt;/strong&gt;.&lt;br&gt;
14. Enjoy!&lt;br&gt;
&lt;br&gt;
Until now I listened to a couple of Marilyn Manson and Megaherz tracks without any problems. But the phone gets a little bit warm, and I bet my battery will be low in some hours.&lt;br&gt;
&lt;br&gt;
HAIL OpenSource&lt;br&gt;
HAIL Icecast&lt;br&gt;
HAIL OGG Vorbis&lt;br&gt;
HAIL MPD&lt;br&gt;
HAIL OggPlay&lt;br&gt;
&lt;br&gt;
\o \o/ o/ *dance*&lt;/p&gt;</description><category>english</category><category>linux</category><category>mobile</category><category>software</category><guid>https://www.die-welt.net/2008/05/streaming_ogg_vorbis_to_a_nokia_e51/</guid><pubDate>Tue, 13 May 2008 14:44:59 GMT</pubDate></item><item><title>Was am Nokia E51 schlecht ist</title><link>https://www.die-welt.net/2008/04/was_am_nokia_e51_schlecht_ist/</link><dc:creator>evgeni</dc:creator><description>&lt;p&gt;Das Nokia E51 ist ein tolles Handy, das konnte man mittlerweile vielerorts lesen. Das kann und werde ich hier auch nicht widerlegen, aber dennoch hat das Handy einige "Macken", die ich hier mal aufzählen möchte.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Nachname Vorname im Mitteilungseingang&lt;/strong&gt;&lt;br&gt;
Egal ob man im Telefonbuch die Anzeige auf "Vorname Nachname", "Nachname, Vorname" oder "Nachname Vorname" stellt, im Mitteilungseingang werden die Nachrichten als "Nachname Vorname" angezeigt. Eine separate Einstellung existiert auch nicht. Interessanter Weise folgen die anderen Ordner (Ausgang, Gesendet, Berichte) der Einstellung im Telefonbuch.&lt;br&gt;
Das ist nervig und etwas unübersichtlich, stört aber nicht sonderlich.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Die Namen werden nicht aktualisiert&lt;/strong&gt;&lt;br&gt;
Wenn man im Telefonbuch den Namen eines Kontakts ändert, wird dieser bei den Mitteilungen nicht aktualisiert und es steht immer noch der, der beim Empfang aktuell war. Ebenso in den Protokollen. Richtig schlimm ist das, wenn man eine neue Nummer speichert, überall aber dennoch statt dem Namen immer noch die Nummer steht... Das war bei den alten Modellen (6230i zB) anders :(&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Internet Einstellungen ändern sich nach SIM-Karten Wechsel&lt;/strong&gt;&lt;br&gt;
Wenn ich zwischen meiner Fonic und meiner Congstar Karte wechsle, steht bei den Internet Einstellungen immer der entsprechende Zugangspunkt, obwohl ich immer wieder auf "Immer fragen" umstelle. Absolut nervig und kann unnötige Kosten verursachen, wenn man eigentlich per WLAN surfen möchte, er aber meint per T-Mobile ins Netz gehen zu müssen.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Berichte sind nach SIM-Karten Wechsel weg&lt;/strong&gt;&lt;br&gt;
Wenn man die SIM-Karte wechselt, sind plötzlich alle Berichte über Mitteilungen weg, und kommen auch nicht wieder, wenn man die alte Karte einsetzt. Dieses "Feature" kann ich nicht verstehen, aber so richtig schlimm ist es auch nicht, denn den Bericht brauch ich eh nur nach dem Senden um zu sehen, dass die Mitteilung wirklich angekommen ist.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Per Bluetooth an den Computer gesendete Notizen sind kaputt&lt;/strong&gt;&lt;br&gt;
Wenn ich auf dem Handy eine Notiz erstelle, und diese per Bluetooth an meinen Rechner schicke, kann weder mein Mousepad noch mein nano die Datei vernünftig öffnen. file(1) sagte dazu schlicht und einfach: MPEG ADTS, layer I, v1, 224 kBits, 44.1 kHz, Stereo&lt;br&gt;
Öffnet man die Datei aber mit vim, so funktionierts, aber es ist fileencoding=ucs-2le gesetzt, was man erstmal auf utf-8 umstellen muss, damit andere Editoren das vernünftig verstehen. Wer oder was dieses UCS-2LE ist, und warum das Handy die Notizen damit kodiert ist mir bis dato ein Rätsel.&lt;br&gt;
Es scheint übrigens ein 2Byte Encoding zu sein, siehe &lt;a href="http://en.wikipedia.org/wiki/UTF-16/UCS-2"&gt;http://en.wikipedia.org/wiki/UTF-16/UCS-2&lt;/a&gt; und &lt;a href="http://en.wikipedia.org/wiki/Universal_Character_Set"&gt;http://en.wikipedia.org/wiki/Universal_Character_Set&lt;/a&gt; - warum das Handy es benutzt ist mir dennoch ein Rätsel - warum nicht UTF-16 oder UTF-8?!&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Bluetooth wird nach dem Senden nicht deaktiviert&lt;/strong&gt;&lt;br&gt;
Wenn man etwas per Bluetooth schicken möchte, sagt das Handy "Bluetooth ausgeschaltet, Bluetooth einschalten?", wenn man die Frage bejaht wird Bluetooth eingeschaltet und man kann die Datei verschicken, danach geht es aber nicht von alleine aus und frisst Strom - ganz toll. Wieder etwas was bei meinem alten 6230i besser funktioniert.&lt;br&gt;
&lt;br&gt;
&lt;strong&gt;Nummer Typ nicht nachträglich änderbar&lt;/strong&gt;&lt;br&gt;
Wenn man einem Kontakt eine Nummer zuweist, kann man ja auswählen, ob das Mobiltelefon, Mobiltelefon dienstlich, Festnetz, Fax etc ist. Nachträglich kann man aber nur noch den Namen ändern, also aus Mobiltelefon Foobar machen, aber leider nicht das Icon wechseln. Das ist ziemlich blöd, vor allem wenn man viele Nummern von wo anders importiert und die per Default Mobiltelefon werden :(&lt;br&gt;&lt;/p&gt;</description><category>german</category><category>mobile</category><category>nokia</category><guid>https://www.die-welt.net/2008/04/was_am_nokia_e51_schlecht_ist/</guid><pubDate>Thu, 10 Apr 2008 12:50:06 GMT</pubDate></item><item><title>Wie O2 sich ins eigene Fleisch schneidet</title><link>https://www.die-welt.net/2008/03/wie_o2_sich_ins_eigene_fleisch_schneidet/</link><dc:creator>evgeni</dc:creator><description>&lt;p&gt;Als &lt;strong&gt;teltarif&lt;/strong&gt; berichtete, dass &lt;a href="http://www.teltarif.de/arch/2008/kw06/s28801.html" target="_blank"&gt;o2 langsam das Roaming im T-Mobile Netz abschaltet und bis Dezember 2009 ein komplett eigenes Netz haben will&lt;/a&gt;, musste ich ein wenig lachen, war aber auch gespannt wie sie das hinkriegen, hatte ich mir doch genau zu diesem Zeitpunkt eine FONIC Prepaidkarte gekauft. In Düsseldorf hatte ich von Anfang an kein T-Mobile, aber das o2 Netz war gut genug ausgebaut. Gestern hatte ich dann die Möglichkeit der ultimativen Probe von o2 - eine 4 stündige Fahrt im IC und ICE von Offenburg nach Düsseldorf.&lt;br&gt;
&lt;br&gt;
Dieser Test ist für o2 recht mies verlaufen (oftmals kein o2, aber dennoch keine Erlaubnis für T-Mobile) und so verfasste ich noch im Zug die folgende Mail an FONIC:&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Sehr geehrter Fonic-Support,&lt;br&gt;
&lt;br&gt;
ich habe mir am 16.2.2008 eine Fonic Prepaid Karte gekauft (bei Lidl, Tel. Nr. 0176/xxxxx) um einerseits von den günstigen Tarifen zu profitieren und andererseits ein stabiles und flächendeckendes Netz zu haben (im Gegensatz zu ihrem grünen Wettbewerber, denn mir wurde zugesichert ich könne das Netz von T-Mobile benutzen, sofern das von o2 nicht verfügbar sei).&lt;br&gt;
Nun gab es kurze Zeit nach dem Kauf die Information, o2 baue sein Netz aus und schalte langsam das Roaming mit T-Mobile ab. Das ist soweit kein Problem, solange man immer noch ein Netz zum telefonieren hat.&lt;br&gt;
Heute musste ich aber leider feststellen, dass das doch ein Problem darstellt. Ich musste heute mit dem Zug die Strecke von Offenburg nach Düsseldorf fahren und musste feststellen, dass vielerorts kein o2 verfügbar war, T-Mobile mir aber den Zugang verweigerte. Dies war teilweise zwischen Mainz und Koblenz der Fall (wo ich wegen der ländlicheren Gegend kein o2 erwartet habe), als auch im Raum Bonn/Köln (wo ich dann doch mit o2 gerechnet habe). Insgesamt bin ich mit der Leistung sehr unzufrieden und möchte Sie bitten die für die Karte bezahlten 9.99EUR und das Restguthaben von 1.54EUR auf mein Ihnen bekanntes Konto zu erstatten, damit ich mir eine Karte im T-Mobile Netz kaufen kann, und anschließend meine Karte zu sperren.&lt;br&gt;
&lt;br&gt;
Mit freundlichen Grüßen verbleibt und viel Erfolg mit Ihrem Geschäftsmodell wünscht Ihnen&lt;br&gt;
Evgeni Golov&lt;br&gt;
&lt;br&gt;
PS: Bitte antworten Sie per eMail&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Als ich dann zuhause ankam, wollte ich diese Mail abschicken, aber auf der FONIC Webseite findet sich nirgendswo eine eMail-Adresse vom Support, nur ein blödes Kontakt-Formular, dass hinter einer &lt;strong&gt;nicht aktueller&lt;/strong&gt; FAQ versteckt ist und auch noch den Kunden auf 2000 Zeichen limitiert (meine Mail hat etwa 1500). Naja, mal den Text da reingequetscht und abgeschickt.&lt;br&gt;
&lt;br&gt;
Error 500: Internal server error&lt;br&gt;
The page you are looking for can't be shown.&lt;br&gt;
A message has been send to the administrator.&lt;br&gt;
&lt;br&gt;
Oh, danke, dann kann ich den Support halt nicht erreichen. Später habe ich das ganze dann nochmal probiert, und jetzt grade eben auch - weiterhin der selbe blöde Fehler. Ganz ganz toll. Und ich sehe irgendwie nicht ein, für 49Cent/Min die Herren per Telefon zu nerven. Mal schauen was das noch wird mit den Herren, ich hab jetzt Congstar, und es lüppt (ja, auch im Zug).&lt;/p&gt;</description><category>german</category><category>mobile</category><guid>https://www.die-welt.net/2008/03/wie_o2_sich_ins_eigene_fleisch_schneidet/</guid><pubDate>Wed, 12 Mar 2008 14:30:42 GMT</pubDate></item><item><title>Nokia - we don't know your phone</title><link>https://www.die-welt.net/2008/03/nokia_-_we_dont_know_your_phone/</link><dc:creator>evgeni</dc:creator><description>&lt;p&gt;Heute wollte ich mal schauen, was Nokia alles an Zusatzsoftware für mein E51 anbietet, und surfte deswegen auf deren Webseite. Dort findet man unter "Service und Software" einen Punkt namens &lt;a href="http://www.nokia.de/A4420002" target="_blank"&gt;"Software"&lt;/a&gt; (huch, wer hätte das gedacht?). Da kann man dann sein Handy auswählen und kriegt eine Liste von PC- und Handy-Software, die mit dem Gerät kompatibel ist (read as: "sein sollte" oder "Nokia meint die Software als Zusatz zu diesem Handy wäre toll als Werbung"). Schön, aber wo ist mein Handy?&lt;br&gt;
&lt;br&gt;
&lt;img src="https://www.die-welt.net/upload/nokia-we_dont_know_your_phone.png" alt="/upload/nokia-we_dont_know_your_phone.png"&gt;&lt;br&gt;
&lt;br&gt;
Das E50 ist da, das E60, das E61 und das E61i auch, aber E51? Gibts nicht... Komisch, ich halte so eins aber in der Hand.&lt;br&gt;
Über europe.nokia.com kommt man dann aber doch noch zu einem &lt;a href="http://europe.nokia.com/A4546190" target="_blank"&gt;Ergebnis&lt;/a&gt;, also existiert Software für das Gerät...&lt;br&gt;
&lt;br&gt;
Naja, "Nokia - connecting /dev/null".&lt;br&gt;
&lt;br&gt;
PS: Tippen mit einem Pflaster auf dem linken Zeigefinger ist absolut scheiße, aber dazu später.&lt;/p&gt;</description><category>german</category><category>mobile</category><category>nokia</category><guid>https://www.die-welt.net/2008/03/nokia_-_we_dont_know_your_phone/</guid><pubDate>Tue, 11 Mar 2008 21:54:50 GMT</pubDate></item></channel></rss>