Random Thoughts on software related topics such as web, web 2.0, mobile, servers, networks, programming, social networks, engineering, science, and more...
Sunday, May 10, 2009
Saturday, May 9, 2009
All 3 Letter Combinations - PHP Script
<?PHP
$arr = Array();
array_push($arr, "a");
array_push($arr, "b");
array_push($arr, "c");
array_push($arr, "d");
array_push($arr, "e");
array_push($arr, "f");
array_push($arr, "g");
array_push($arr, "h");
array_push($arr, "i");
array_push($arr, "j");
array_push($arr, "k");
array_push($arr, "l");
array_push($arr, "m");
array_push($arr, "n");
array_push($arr, "o");
array_push($arr, "p");
array_push($arr, "q");
array_push($arr, "r");
array_push($arr, "s");
array_push($arr, "t");
array_push($arr, "u");
array_push($arr, "v");
array_push($arr, "w");
array_push($arr, "x");
array_push($arr, "y");
array_push($arr, "z");
$results = Array();
foreach ( $arr as $three ) {
foreach ( $arr as $two ) {
foreach ( $arr as $one ) {
array_push($results, $three.$two.$one);
}
}
}
foreach( $results as $result ) {
echo " $result";
}
?>
Shopzilla Errors
Here is a sample of the errors:
HTTP Status 404 - /pp/content/tal/publisherID-6287/assetID-344/assetTypeID-9/placementID-1/showProducts-3/showRandom-0/start-1/sort-default/onlyOffers-1/categoryID-11580100/tokenID-7X/keyword-wireless/style-10px Verdana, Arial, Sans-serif
type Status report
message /pp/content/tal/publisherID-6287/assetID-344/assetTypeID-9/placementID-1/showProducts-3/showRandom-0/start-1/sort-default/onlyOffers-1/categoryID-11580100/tokenID-7X/keyword-wireless/style-10px Verdana, Arial, Sans-serif
description The requested resource (/pp/content/tal/publisherID-6287/assetID-344/assetTypeID-9/placementID-1/showProducts-3/showRandom-0/start-1/sort-default/onlyOffers-1/categoryID-11580100/tokenID-7X/keyword-wireless/style-10px Verdana, Arial, Sans-serif) is not available.
Apache Tomcat/5.5
Zend Framework Quickstart Application - Guestbook
Guestbook.
This was set-up on Mac OS X. The one problem encountered was that the mod_rewrite is not set-up by default on Mac OS X. This must be enabled.
PHP Frameworks
I'm taking a look around for the framework to move forward with. I've narrowed it down to CakePHP or Zend Framework. Although, Symfony is also being considered.
Here are some good comments about which of the PHP Frameworks are best.
Tuesday, May 5, 2009
Sunday, May 3, 2009
Shopzilla
Thursday, April 23, 2009
Wednesday, April 22, 2009
Cubestat
Sunday, March 29, 2009
PageRank Checker
Check Page Rank of any web site pages instantly: |
This free page rank checking tool is powered by Page Rank Checker service |
Thursday, March 19, 2009
Boston PHP
Saturday, January 24, 2009
Grand Central
Friday, January 23, 2009
Thursday, January 22, 2009
Zero Degrees
Wednesday, January 21, 2009
Friday, January 16, 2009
Youtube! Profile!
Stats
Thursday, January 15, 2009
Earnings Report Totals
Tuesday, January 13, 2009
Monday, January 12, 2009
Random Thoughts
Sunday, January 11, 2009
Saturday, January 10, 2009
Differences?
roduct Links
Basic Display - Detail Page (Product-Preview-enhanced)
Build more 0 0.00% 0 N/A 0 0 $0.00
Basic Display - Detail Page (Impression-counted)
Build more 2 0.00% 0 N/A 0 0 $0.00
Basic Display - Offer Listing Page (Impression-counted)
Build more 0 0.00% 0 N/A 0 0 $0.00
Basic Display - Offer Listing Page (Product-Preview-enhanced)
Build more 0 0.00% 0 N/A 0 0 $0.00
Enhanced Display
Build more 58 0.00% 0 N/A 0 0 $0.00
Easy Links on Amazon Same as Omakase
Omakase
Friday, January 9, 2009
Amazon Campaign Performance
Thursday, January 8, 2009
PHP Developer
Wednesday, January 7, 2009
Bounce Rate
This may not be a proper metric. What if the landing page has only external links? The page may be exactly what the user is looking for.
"Use this metric to measure visit quality - a high bounce rate generally indicates that site entrance pages aren't relevant to your visitors"
Google looks down upon this. For example, a page may have a listing of popular DVDs with external links. The user may be looking for a DVD, find it, and click on the external link. This hurts the rankings. I may make a "learn more..." link that goes to a page all about that item and then the user can purchase it. This would be two page views and it would not constitute as a "bounce".
Traffic Zap Directory
Website Design
That service looks interesting. I wonder if it is manual or automated. A bot may crawl the web looking for sites to list. It looks like it is manual, however.
Hot Technology
Netbooks. In a weak economy, these small and cheap laptops will continue to be popular. Already loaded with Wi-fi, webcams and other features, these ultra-portable computers will soon come with GPS and touch screens as well -- all for prices under $500. Look for a new wave of them at CES.
Thin OLED TVs. You've heard of LCD and LED -- now meet OLED, which stands for organic light-emitting diode and creates a gorgeous picture. For now, they're also way too expensive -- Sony's XEL-1, the world's first OLED TV, costs $2,500 for an 11-inch screen -- but they're cool to look at. The screen panel on the Sony model is only 3 millimeters thick.
Mobile devices. Touch screens, once limited to high-end smartphones such as Apple's iPhone, are filtering down to mid-range devices as well. Cell phone manufacturers also are increasingly building phones that shoot sharper photos and better video.
Wireless home electronics. Will this mark the year we can finally say goodbye to that cumbersome tangle of wires behind our TVs and stereos? Probably not, but we're getting there.
More "green" products. Motorola is rumored to be launching a phone made from recycled tech waste. And at least several manufacturers are promising to unveil pioneering, environmentally safe batteries -- including one made without lithium or lithium ion.
Downloadable video players. "We're going to see a lot of devices that offer downloadable video, be they Blu-Ray players [or video game consoles]," said Costa of PC magazine, who believes prices of Blu-ray players will keep dropping. "All these devices can download video over the Internet, some of it in HD quality. That's the type of device we're going to see a lot more of, and it makes perfect sense when people are looking to nest [at home]."
Hackers Crack SSL Certificates
Researchers have officially cracked the MD5 algorithm that certificate authorities like Verisign use to issue the SSL certificates that help secure web communications. Find out how they did it, and what this crack means for Web security.