Google releases Public DNS

 Google recently announced a new service they're offering... "Google Public DNS".

I'm kind of surprised that it's taken this long for one of the major players in web technologies to have released a service like this. DNS is such a huge part of the internet... and it seems as though I've been reading more and more about DNS poisoning...etc.

Security is always a huge issue and it's but one of the things Google is trying to help address with this project.

Quoted from their website:

 

The DNS protocol is an important part of the web's infrastructure, serving as the Internet's phone book: every time you visit a website, your computer performs a DNS lookup. Complex pages often require multiple DNS lookups before they start loading, so your computer may be performing hundreds of lookups a day.

 

This is a service I'll be looking into. I've never used my IPS's DNS servers but I've used a few services that were included with domain purchases.

I'll be giving this a look.

Tesla motors is making money!

Ever hear of Tesla motors?

They make really sweat electric sports cars. They're out of my price range of course but that's another topic.

Apparently, Tesla motors have had their first profitable month. Although that might not sound great... to have 1 profitable month it still means that maybe their brand of high end electric sports cars are taking off. 

CNN Money reported on their profits.

I think they're beautiful cars... and for the sports car lovers out there they seem to boast power. The Roadster gets 0-60 in 3.9 seconds... not  bad.

Check out Tesla Motors on their website!

CentOS 5 YUM Repository for Zend Optimizer

I had the task of installing Zend Optimizer on a client's new VPS and it was proving a bit challenging, not necessarily because I could find any info on Zend Optimizer or anything on the server.... but because my home office internet connection kept crappin' out on me!

When I was getting ready to attempt the install it occured to me to look around to see if I could find a YUM repo. I first became familiar with YUM repositories a few years back while working with a server which used CentOS.

This new VPS that we setup is using CentOS 5 and out of the blue I thought... ."What if I could find a repo for Zend Optimizer"... I thought for sure I wouldn't find one.

But as I looked I found.

This is a short "how-to" explaining how to set it up on the Question-Defense website.

The anti-IE6 movement is getting noticed

As some of you have experienced working with Internet Explorer 6 can be frustrating. Increasingly harder to support.

There's been a movement towards trying to free the world of Internet Explorer 6. One such website called "IE6 No More" explains in a simple way what the goal of the movement is.

I saw that CNN took notice of the movement and wrote an article about it entitled "Web citizens trying to kill Internet Explorer 6". Great name.

They estimate that there are still 15 to 25 percent of people still using IE6. Still a very large number.

A nice multi-purpose pop up window javascript

 Today I ran a little search and found a nice little script I had never seen before... not like I've seen them all!

It's called GreyBox and I've been playing with it on a project and it's very easy to use.

What's really nice about GreyBox is that you can easily use it to display image galleries but you can also use it to open webpages. Pages on your own site or even external sites.

There are nice easy to follow examples on the website and you can find out more about it by visiting the GreyBox website.

Google Chrome will have support for Themes

Reading up a bit tonight and saw that Google Chrome will support themes and their preparing to launch a theme directory.

I've been using Chrome since it was released. I don't really use 1 browser exclusively but I generally test stuff in a few different browsers (FireFox, Safari, Opera, IE, Camino to name a few others).

I've never really been a huge fan of themes just because I don't feel the need for it. Widgets on the other hand are something that I find quite useful.

In Firefox for instance there are a few widgets that I find quite handy for debugging a web application or  Delicious bookmarks... twitter...etc.

Found and read a short article on the new Google Chrome Themes on TechCrunch.

Huge iPhone problem - Possibly hack every iPhone

Just found this on Yahoo's website.

It's reported that there is a huge security hole in Apple iPhone and it could result in massive amounts of phones being hacked.

According to the article Collin Mulliner will publicize their findings. Essentially by sending a text message, they were able to take complete control over any smart phone's functionality. 

Imagine!

Someone could dial numbers on your phone, visit websites, turning on the camera... and who knows what. I'd say the who knows what is the scary part.

The only defense appears to be turning off the phone.

A warning sign for this hack is receiving a text message with a single square character. They suggest turning your phone off. "Quickly" is the exact quote.

Read the article here:
How to hijack 'every iPhone in the world'

OpenBD 1.1 has been released

For anyone who uses CFML OpenBD 1.1 was released.

I've used both ColdFusion (Adobe) and BlueDragon (NewAtlanta) in my years of using CFML... for those who don't know, OpenBD in an open sourced release of BlueDragon.

Interesting times if you're using CFML (or thinking of it) because the old argument about cost has been thrown out the door with the open source releases of Railo and OpenBD.

New functionality of note (for me) in this OpenBD 1.1 release is cfvideoplayer, although the recent "tweaking" of OpenBD by Vince Bonfanti to run on Google's cloud is pretty darn neat.

My first Magento experience

On a fairly recent project I'd been working on a webstore using Magento.

Magento is an open source system using PHP and the Zend Framework.

One thing that we needed in this project was automatic shipping calculation with Canada Post... we found a module that gave that functionality and purchased it.

The installation process seemed pretty straight forward, went through the process and the module was then listed in Magento's configuration.

But the module wasn't working. The author of the module had written a test script which I began using to test with.

This module needed to use port 30000 to connect with the canada post system.. I contacted my technical support with the hosting provider and concluded that the port was open. I then used telnet and got a valid response (from the server).

I had also used another PHP script to connect with the canada post successfully which used stream_socket_client() and had programmed (for my own fun) a small test script in ColdFusion which had successfully connected....

After lot's of lookin' around, reading forum posts on Magento's forums, help from a twitter contact and trying a couple of PHP lists I had nothing. I was suspecting that somehow it was the PHP config or the curl command ... so I spent time looking that up.

After a bit, I was in contact with the module's author who suggested a couple of things. One of these things I had sworn I had tried... but must not of... or made the change in code and hadn't uploaded the file to the server in a tired state of mind....

It was to do with options for the curl command. The original code used was something like this:

// setting the url and port
$url = 'http://sellonline.canadapost.ca:30000';
$port = '30000';
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_PORT, $port);


 So the suggestion was to add the port directly to the url... and get rid of the curlopt_port... which looked something like this:

// basically this is what is being passed to the URL opt
$url = 'http://sellonline.canadapost.ca:30000';
curl_setopt($ch, CURLOPT_URL, $url);
// and comment out the port opt
//curl_setopt($ch, CURLOPT_PORT, $port);


By not using curlopt_port and adding the port to the URL.... it worked beautifully.

I should mention that this was being hosted on CentOS. Not exactly sure why it is that it wouldn't work... but it worked with the little fix.... and since this little fix there has been NO glitch.

Works perfectly!

Thanks to the module's author!

Conficker Worm removal

 Just found this post on removing the conficker worm that is supposed to hit today.

Check it out here:
http://www.tech-recipes.com/rx/4095/how-to-remove-the-conficker-c-worm/

I haven't seen any computers affected yet.... but the day is still young.

Peace!

More Entries


RSS

Search

CF_Yves - Flickr

Yves and the iPhone
My Photostream

Calendar

Sun Mon Tue Wed Thu Fri Sat
   1234
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30   

Archives By Subject

A glimpse of the worst (4) [RSS]
Adventures in self-employment (8) [RSS]
Bands (13) [RSS]
Books (1) [RSS]
Business (18) [RSS]
Cars (2) [RSS]
Celebrities (5) [RSS]
ColdFusion (9) [RSS]
Comedy (2) [RSS]
Drums (9) [RSS]
Gigs (1) [RSS]
History (6) [RSS]
Hockey (10) [RSS]
Humour (1) [RSS]
Internet (6) [RSS]
Mac (3) [RSS]
Money $tuff (4) [RSS]
Montreal Canadiens (17) [RSS]
Music (27) [RSS]
Musicians (8) [RSS]
NBA (1) [RSS]
News (71) [RSS]
NHL (9) [RSS]
OpenBD (1) [RSS]
PHP (2) [RSS]
Picture Fun (2) [RSS]
Politics (5) [RSS]
Reading (1) [RSS]
Seventh Stone (7) [RSS]
Software (26) [RSS]
Stuff (2) [RSS]
Technology (72) [RSS]
Toronto Raptors (1) [RSS]
Videos (19) [RSS]
Web Development (1) [RSS]
World Stuff (4) [RSS]
Yves Stuff (66) [RSS]

Subscribe

Enter your email address to subscribe to this blog.

G Ads

Blogroll

The Hallway
Cracked Virtue

Blog sites

Add to Technorati Favorites

Blog Directory, Find A Blog, Submit A Blog, Search For The Best Blogs

Blogarama - The Blog Directory

Blogio.net blog directory

Blog Flux Directory

Tags

bands business hockey montreal canadiens music news software technology videos yves stuff