miércoles, 21 de octubre de 2009

Media Center for Windows 7 gets NETFLIX OFFICIALY !

at last !

What I had been wating for an official netflix for WMC !

Early on today I was going to watch some netflix, however yesterday I was looking at some stuff on internet tv ( part of WMC ), so I wanted to show it to my wife.

When I opened it, it started downloading again, I said weird an update I just installed it 2 days ago, so I let it go.

and then SURPRISE, InternetTV has a complete new look and the SO much expected WMC netflix plugin !! WOOT !!!!!!!!!




Windows 7 WMC

It seems to have everything, and it acually looks like the old netflixplugin
however it is fully embedded and starts the movies in full screen !


WMC NATIVE NETFLIX WINDOWS 7


So after months and months of waitng here it is !

BTW, I am using the RTM ( build 7600) no idea if this is in the beta, I guess it is :)

have fun !


martes, 20 de octubre de 2009

PHP some more !

today I had a small yet interesting chore to do on PHP...

again with charsets, anyhow I needed to find a specific UTF-8 char on any given string.

I don't play that much with UTF characters however ( this might be public knowledge , well it is , but I did not know it )

ok it seems every UTF 8 character is 3 characters in one... so when you want to analize it you have to analize the 3 characters separately to get a final response.

so a UTF character enters to the PHP script like this: %E2%95%90
and it becomes inside the PHP E2 95 90 so the string contains E2 95 90 :)

so then I wanted to filter out characters like this so I made a small conversion of the first character to decimal

E2=226

so I did this check against he variable:

$val = $_GET['text'];
if( strpos ( $val , chr(226) ) !== false )
{// stuff}


So after looking at many UTF functions out there, this was the best option based on performance and whatnot...

I don't think it would be valid for all types of UTF encoding and there are UTF functions in PHP but sometimes they are just too big do to something small

I know I could have used the E2 directly but I am the kind of nerd that likes to use the dec notation :)

anyhow that is usefull.

=)