Home

A Flying Car? PDF Print E-mail
Wednesday, 30 June 2010 19:57

Looks like the Jetsons are not far off..  this little flying car has now cleared a hurdle with the FAA and is expected to go to market as early as next year:

Terrafugia-flying-car-gets-FAA-clearance

This causes some concerns. Even now we can't seem to stop people from texting and driving at the same time. Just imagine how much more damage they can do when airborne. It gives the phrase "we'll drop by" a whole new meaning....

At least for now the cost of one of these will be out of most people's budgets, so we don't have to worry YET. But like all technology over time, the price eventually goes down. It's bad enough dealing with drivers on the road, but the potential is now there to have them cluttering up the air as well, dropping their trash all over your property instead of just alongside the road (bad enough that they drop it there!) and polluting areas that were so far pristine because one couldn't easily drive there. As nice as the technology could be, I sure hope they get some rules into place before they let these things loose.


 
Get IT Out Of The SEO Business--Link to a Good Article PDF Print E-mail
Friday, 21 May 2010 19:40

It needed to be said...

IT departments do a great job with the things they do, but they can't do it all. Nor should they be asked to. It's enough enough these days dealing with security and keeping everything running smoothly. IT has highly trained people, but they are not web designers and they are most certainly not schooled in SEO (search engine optimization).

That said, here's the article.

 
How to Check What's Using Port 80 or 443 PDF Print E-mail
Friday, 16 April 2010 01:52

Technical warning: this may make your eyes glaze over unless you're a techie type. :-)

Every once in a while I have to learn something I didn't expect to learn, but which, upon its accomplishment, makes me feel very pleased that I was able to find out about something so useful and share it with others who might be having the same problem.

I was installing WAMP today, which basically turns my computer into a server that is then able to process websites under development. This gives me the ability to try out coding on a test server without disturbing a live site. This is something I've been wanting to do for a while, and now with all new sites being created in Content Management Systems it's become pretty much a necessity. Plus, I want to be able to write some code for various reasons and this way I can test it without having to be online. Much more convenient.

Despite following all instructions I  found, I could not get WAMP to work for me. I went to the forums and looked for solutions, finding a list of things to check. I went through that list and amde sure I did everything suggested, but was still not having any luck. The key to Wamp's functioning correctly had to be use of port 80, it was the only thing left. I needed to use port 80 for WAMP, and something had to be blocking it. I had closed down all the programs I had running that it was suggested I close down, but the problem was still the same. I needed a way to find out what was running on port 80.

My research on the web paid off, and I finally discovered how to find out what's using what port on my computer. It involved a Windows utility named "netstat".

Read more...
 
More Fun with htaccess PDF Print E-mail
Tuesday, 13 April 2010 18:43

More and more I have had to be delving into the powerful tool of htaccess. When dealing with a large, dynamic site, sometimes it can take a good bit of research to put together the right code to get things to work, and with Search Engine Optimization (SEO) figuring out how to write redirects for dynamic pages can take quite a while. Code for simple page redirects looks much like this:


RewriteEngine On
Options +FollowSymlinks
Redirect Permanent /pagename.html http://www.domainname.com/newpagename.html

The first two lines must be in place in the htaccess file, once only, for redirects to work. The 3rd and last line is the actual redirect code.This produces a 301 redirect, necessary for search engine optimization purposes to retain the page rank of the original page.

One could also write:

RewriteEngine On
Options +FollowSymlinks
Redirect 301 /pagename.html http://www.domainname.com/newpagename.html

The only difference is in typing out "permanent" vs. "301".

In this case though, the page I wanted to redirect looked like this

http://www.domainname.com/dynamicpage.php?id=2

The normal simpler method of redirection doesn't work because of that question mark and id at the end. The working code I finally came up with looked like this:

RewriteEngine On
Options +FollowSymlinks

RewriteCond %{QUERY_STRING} id=2
RewriteRule dynamicpage.php http://www.domainname.com/newpagename.php? [R=301,L]

Note that the RewriteCond line show the id=2. This was done because there was a particular page I wanted to have redirected to a new static page. It would need to be done differently if I was doing a general rewrite of all the dynamic pages served from the same dynamicpage.php.

In the second line, note the question mark at the end of the new URL. That ? removed the dynamic part of the url, " ?id=2", which otherwise shows up on the rewritten url when the page is redirected. And of course we add the R=301 to make sure it's a permanent redirect (without the =301 the server would automatically make it a temporary redirect) and the "L" says it's the last rule.

This solved the problem, and it tests as search engine friendly.


 
Hacker Disables Cars PDF Print E-mail
Thursday, 18 March 2010 17:08

You don't even have to be using a computer to get hacked these days....

I guess it's better than taking a gun and going postal (shooting your former fellow employees, in case you've been living in a cave), but not by much. Imagine trying to get to work in the morning and finding your car is completely disabled, or else being woken in the middle of the night by your car's horn that you can't shut off unless you remove the vehicle's battery:
Hacker Disables More Than 100 Cars

Just goes to show--don't share your passwords with fellow employees, and for employers, when an employee leaves, then it's time to get your employees to change passwords.. which they should be doing periodically anyway.

 
« StartPrev1234NextEnd »

Page 1 of 4
TonerDesign.biz, Joomla templates by SG web hosting