iPhone/iPod Touch Monopoly

I have been in the market for an upgrade to my iPod and the question of a replacement has been this, should I upgrade my old Palm Vx to a Palm T/X or my first generation iPod (5GB). The candidates have been the Nokia N770 / N800 / N810 series, the iPod Touch and the Palm T/X. I have by this time determined that the Nokia systems, while the most versatile are not completely integrated systems, more hacker devices than finished products. So the choices are down to the Palm T/X, which is getting very long in the tooth, running an aging operating system, or the iPod touch with a revolutionary OS/GUI but no third party applications.

The requirements are relatively simple, WiFi, bluetooth, applications like email, browsing communicating. MultiMedia. And any other things would be optional like eBooks. I have a medium sized iTunes collection, and plenty of Palm apps.

Currently if the rumor that Apple will approve and distribute apps and limit access to iPod/iPhone internals is true, this will be a deal breaker. No iPod Touch!

I have no intention of buying a totally locked in device. If for no other reason than it’s bad monopolistic practice. It will limit what the developers will be able to develop, and turn away some of the most innovative designs. This would be the most stupid thing Apple could do. A proverbial shooting one’s own foot off. It would cripple any development that might be applied, it would make the Palm the only choice.

I’ll wait until Apple announces on Thursday, but this rumor smells too true, so I’ll start pricing Palm T/X’s.

UPDATE: I looks like Apple has screwed it’s self Here! So my Decision to but an unlocked Obsolete Palm T/X is vindicated yet again!

Obama to be assassinated

Or at least that is the desire of some. I’m afraid there is a massive movement of miss information underway to undermine the Obama presidential campaign. Emails and messages are being passed throughout the American South and the Bible Belt that such things as Obama being a Closet Muslin and that he intends to swear into the Presidential Office on the Koran (Quran) rather than the bible. I personally thought this was silly until I saw this video God and Politics in Lynchburg Tennessee It’s amazing the ignorance being spoken here. But the more interesting is the indications that the source of the information is an ‘information artifact’ where there is no defined source for the ‘fact’ being quoted. But the the ‘fact’ carried such emotional weigh that it is believed because it falls into one’s own belief structure. This is dangerous, as Anti Obama information carrying such emotional power, evokes powerful reactions, like assassination.

Monday may mean independence

I’m looking forward to monday as it may actually become my release from the hospital. The hospital stay in which I’ve posted about the A&E and the long stay through Christmas and the New Year and the Medieval rituals which have had their crescendo on Friday. This is when they attempted to revert my heart back to normal rhythm and failed, after three attempts. I was told after the event that it must have been interesting, and a bit more violent than the movies, as I am now missing one of my front teeth, all the way down to the root, which popped out in front a group of interns getting their first lesson in electro-reversion!

Eating peas has now become an issue.

In any case, with any luck (something sadly lacking of late) I will get my dosing of drugs balanced, my eye’s checked, and escape from Tallaght hospital tomorrow. Hopefully to find a dentist to repair my lasting memories of my stay.

Happy New Year from the Hospital

As I’m still stuck in (and blogging from) the hospital this New Years Eve, I will wish that all the rest of the blogging world remains OUT of the hospital this New Years Eve and hope you can remain in that condition throughout this next year. So I’ll wish you a Very Happy (and sensibly drinking) New Year.

Home for Christmas

I’m home, well at least my bolt hole in Dublin, for Christmas. Having spent the last week in Tallaght Hospital with arrhythmia, rapid heart beat and now type 2 Diabetes I feel like a free man. Mind you, I have to go back tonight as there are more tests to take, and then they are going to shock me back to a normal heart beat. Still I’m free today and I have quite a story to tell about the 12 hours I spent in the Tallaght A&E and nice folks there. It looks like Damien has had his share of medical issues this season also, so I’m in good company. I’ll blog more about it when I finally get out of the hospital, I’m SO looking forward to that, as there is no internet there (even though I made a half hearted attempt to hack into their WiFi connections).

Katy French was a drug addict!

Let’s be clear here, EVERYONE knew that when she collapsed that it was drug related. Either from an overdose or due to some cheap drug dealer cutting the batch with something toxic. Katy was part of the problem, someone who appears perfect, and assumed that her partaking in illegal drug usage was her right as a celebrity. Above the law, and granted special rights. The thing is, will this lead to more celebrities being tested, of maybe minsters, lawyers and Guarda being tested. Not a chance in hell, this government is swimming in drugs it knows it, and in part, supports it, profits from it.

You will not stop the drug problem!

Until you start taking it down from the top, celebrities, minsters, lawyers and Guarda.

Guess what, you will have more luck legalizing Cocaine than arresting any of these drug users.

And everything else

As we were talking about our cat, my wife mentioned; “What would we do without him”, and I replied “Everything else!” And this brought to mind an old saying that was common when I was in the Navy. “A bitchy sailor, is a happy sailor”. This is more or less what blogging is about, a place and a platform to bitch about things, and as I blog more about politicians and government, I could apply this meaningful cat dialog to my blogging. What would I do without bad politicians and rotten government, why, everything else. Governments could reform health care, cure cancer and fly to the Moon, Mars and the Stars. We could live in peace and have happier lives with our families. And I would have to find another subject to blog about. 😉

Crypto in the personal privacy world

I was recently presented with The Code Book and while leafing through the pages during a moment of boredom I managed to create a simple crypto using the Julius Caesar character substitution method using Sybase T-SQL. And though I’m sure that the resulting encrypted text could be broken with brute force, it would not be easy, nor very worthwhile for most messaging.

In this world of spying and privacy invasion from all directions, a little personal crypto might be in order, particularly if one is inclined to be suspicious of commercial algorithms. and while this stored procedure is simple, it can be enhanced, feel free to use it for your own needs.

CREATE PROCEDURE dbo.simple_crypto
(
@key_word varchar(25),
@message varchar(255),
@direction varchar(8)
)
as

set nocount on

declare
@key_input varchar(20),
@key varchar(27),
@key2 char(27),
@olumn int, @olumnk int,
@input varchar(255),
@olumnb int,
@output varchar(255),
@out char(1), @a_char char(1),
@undone varchar(255),
@count int

select @count = 97, @olumnk = 1
select @key_input = lower(@key_word) –‘branedy’
select @input = lower(@message)

create table #alpha (a_char char(1))

while @count <= 122 begin insert into #alpha values (char(@count)) select @count = @count + 1 end select @key = char(32) while @olumnk <= datalength(@key_input) begin select @out = substring(@key_input, @olumnk, 1) delete from #alpha where a_char = @out if @@rowcount = 1 begin select @key = @key + @out end select @olumnk = @olumnk+1 end select @key = @key + a_char from #alpha drop table #alpha select @olumn = 1, @olumnb = 1, @key2 = 'abcdefghijklmnopqrstuvwxyz{' -----------------encrypt if @direction = 'Cipher' begin while @olumnb <= datalength(@input) begin select @output = @output + char(charindex(substring(@input, @olumnb,1), @key) + 96) select @olumnb = @olumnb+1 end select @input + ' = ' + @output as 'Encrypted' end -------------------------------------------decrypt if @direction = 'Decipher' begin select @output =@message while @olumn <= datalength(@output) begin select @undone = @undone+ char(ascii(substring(@key, charindex(substring(@output, @olumn,1), @key2),1))) --, select @olumn = @olumn+1 end select @output + ' = ' + @undone as 'Decrypted' end -------------------------------- select 'From the key ' + @key return GO

Bertie’s empty promises

As usual Damien is highlighting Bertie’s government failings with this
‘I ain’t really with it, I’m gettin’ off at Tara’ story.

What do you expect, Bertie can’t even tell the truth about his own expenses. And you think he would spend any money on people with needs? What, and give it to people who he doesn’t know personally? What would he give to his friends if he spent it on things like, drug prevention, drug rehabilitation, social services for children, children’s rights. That stuff is expensive, and mostly no one will notice if he just lies a bit more.

What gets me is this man got re-elected. What does that say about the electorate?

The opposite of iPhone, The MotoFone F3

While the rest of the world is talking about the iPhone like Tom O2 to sell the iPhone?. I went to Lidl this morning a pickup a mobile, that can only be described as the antitheses of the iPhone the Motofone F3 and I can tell you after only a few hours of use, it’s as beautiful a mobile phone as the iPhone, in exactly the target audience it was proposed for, as that proposed by the iPhone’s target audience.

I’ll report more as I go along, but for now, I’m just as happy to have this phone as I might have been to be one of the proud iPhone owners.

I am still trying to find out if it runs Linux.

UPDATE: The F3 is a SCPL (scalpel) class device which runs a Java/Linux derived OS called JUIX now all I have to do is hack a command line interface to really get this thing to sing 😉

Links:
Motorola Motofone F3 Dissassembly
Motorola Motofone F3
Motorola Motofone F3

Review of Lemongrass Restaurant Ballincollig

Where not to eat in Ballincollig

Anyone who knows me, knows I love to eat good food, and it shows. So it comes with some regret that I have found some place where I will not return. One of the things I’m fond of in Irish restaurants in general is the leisurely way you can dine. The Lemongrass in Ballincollig is not such a place. Having been to the Lemongrass in Maynooth I was looking forward to a nice dinner, and as we were led through an over crowded floor, we were at first impressed with the decor.

But there began the feeling of being rushed along, the waitress was prompt and was anxious to take our orders after only a brief glance at the menu. I choose the Sizzling Peking Duck as I enjoy spicy food and a beer. We were amazed at how quickly the food arrived, ahead of the beers. And then began my first disappointment perhaps not being familiar with duck in general, I was immediately struck by the smell of cooked feathers, not a pleasant aroma. This followed by the heavy layers of skin and fat on the bits of meat put me off eating most of them, at least they did not taste of feathers, but the dish suffered from the thick cornstarch sauce which lacked any serious spicy elements, very disappointing. This was the least authentic tasting ‘Asian’ food I had ever tasted.

So if you like being rushed into eating nondescript ‘Asian’ food and quickly rotated through like an American Restaurant this is the place.

For real Thai food in Ballincollig, I suggest the Banna Thai Restaurant across from the Movie theater. At least you will not be disappointed with the food, service or the quiet leisurely dining you will find there.

Rated 1/5 on Jun 22 2007 by Branedy
LouderVoice Review Tags: , ,
Vote on this review or write your own at LouderVoice