sidebarEventsCalendar() in actual post does not work.
Leave a Comment

I am using this Events Calendar on a blog:  http://wordpress.org/extend/plugins/events-calendar/

When using the sidebarEventsCalendar(13) instructions in a actual post page instead of a a sidebar, it displays the events but the mouseover breaks.

Work around:

Open the templates page.php and add this where you want it to appear.  Change the ID to the page Id of your events calendar and the events to the number you want displayed (25).  This only displays if its on the Events Calendar page (200 for me).  This fixes the event not displaying on mouseover.

<?php
if (get_the_ID() == 200) {
echo “Please place your mouse over an event to see details:”;
SidebarEventsList(25);
}
?>

Technorati Claim Post
Leave a Comment

Z22FQ5PK5AV5

Category: Brain Dump  
.htaccess 500 Server Error for 301 redirect
Leave a Comment

I was adding a .htaccess file to a domain for the purpose of a 301 redirect for a bunch of a pages.  The 301 redirect is supposed to tell search engines that the file has been moved permanently AND keep the page rank the same.  One of the pages had spaces in the file name and it caused a 500 Server Error when I uploaded the .htaccess file.  Here is a sample of what I did to fix it.  Also note you need to make sure you have only ONE space between the elements or the same error occurs.

WRONG:
301 redirect /file with spaces.php http://www.mydomain.com/file with spaces.php

CORRECT:
301 redirect /file_with_spaces.php http://www.mydomain.com/file_with_spaces.php

http://www.weather.com/weather/wxdetail/33912?from=today_daypartforecast_icon

iPhone browser detection in PHP with Conditional CSS
Leave a Comment

Last year we began to quote compatibility for iPhone enabled web applications.  When two quotes came within the same week, it was time to pay attention.  This trend so far in 2010 has not ceased as we have included in our web application quotes specific language for iPhone compatibility on 40% of the quotes in January alone.  If you have not started looking at incorporating iPhone enabled functionality in your quotes I would strongly suggest you get on the ball.

This is the server side PHP code we use to detect an iPhone and I am storing it here for easy reference. Feel free to snag it for yourself if you want. Basically it will detect for iPhone and use conditional CSS based on detection or not. This is especially useful if you have an iPhone application that is primarily used with the iPhone (example: Propane company field technician) but features a browser based administration through a web browser going to the same domain from a PC in an office (example: Scheduling Admin at the Propane company home office). Based on the platform this code will “choose” the correct user experience using a CSS style sheet. Making sure your CSS is compliant will also solve any issues with different browser platforms (LOL…most of the time).

<?php if(strpos($_SERVER['HTTP_USER_AGENT'], ‘iPhone’) !== false) { ?>
<link media=”all” href=”iphone-device.css” type= “text/css” rel=”stylesheet”>
<?php } else { ?>
<link media=”all” href=”not-iphone-device.css” type= “text/css” rel=”stylesheet”>
<?php } ?>

Want to demo what the web application will look like in an iPhone, but don’t have one? No problem, check out this cool FREE app iPhoney. It’s important to remember this is not an actual simulator, but actually a tool for web developers to develop 320 by 480 (or 480 by 320) websites for use with the iPhone:

http://www.marketcircle.com/iphoney/

What’s next on the horizon?  Can you say Apple Tablet?

Happy Coding!

Tony Nestor
CEO, Progress Technologies, Inc.
(239) 985-0335 ext. 623
tn@progresstechnologies.com
http://www.progresstechnologies.com
http://twitter.com/progresstech

Progress Technologies, Inc. is a leading supplier of custom web based applications to small business.

Download failed.: Could not create Temporary file in Wordpress
Leave a Comment

I kept getting this error when trying to perform and automatic upgrade to WP 2.9.1.  I chmod 777 the upgrade directory with no luck.  I then chmod the /wp-content directory to 777 and it worked!

NOTE:  MAKE SURE YOU CHMOD THESE DIRECTORIES BACK TO 755 OR YOU HAVE A SECURITY ISSUE

Email notify in Web Apps, Check Multiple Test Email From a Single App
Leave a Comment

Every application we build has a requirement for email notification in some form or the other. Tough economic times call for doing more with less and savvy business folk recognize the value of automation in any shape or form.  Sales applications want automated “tickler” email to their prospects sent over X days, order fulfillment, accounting notices, real estate listing matches, etc. Since this type of automation is our specialty, and one I personally love the heck out of, we try to help guide the client in this direction during project discovery as to what an email notification enabled system can do for the client specifically. With the emergence of broadband and mobile devices to the mainstream I am comfortable with saying this trend will itself become a standard requirement for all custom web applications.

In fact, if you are a developer and are NOT guiding the client in this direction you are doing them a disservice as well as opening the door for your competition to offer your client features that they will value.

As with any feature that functions with outside systems (email server, spam filters, ISP’s, firewalls, etc.) you must heavily test the notification feature extensively. This will save a tremendous amount of time when supporting the application later. Almost always we initially find issues as to how the header is sent or a curmudgeonly inclined blacklist smacking you down. Once fixed, despite best efforts, invariably issues with delivery do arise.

When this happens we immediately go into test mode and send notifications from the web application to a series of test email accounts. These email accounts span the Internet from free Gmail, Yahoo and Hotmail accounts to POP accounts on servers on the same network as well as across the grid. Bottom line, after 10 years we have the USA pretty much covered for email testing.

The one problem with this “test system” is that it takes a HUGE amount of time to login/logout of each test email account to see if the mail is received.

THE SOLUTION: POP Popper! This awesome gem of a program allows you to set up each test account a single time and then check all the accounts simultaneously!  Can you say GODSEND?  It covers all the free email accounts as well as any POP accounts.  Even better you can handle customer replies in the same application just like a regular email client to test sending back to your system.  The software is free and features a cNet download link.  You can get to the application here.

Happy Coding!

Tony Nestor
CEO, Progress Technologies, Inc.
(239) 985-0335 ext. 623
tn@progresstechnologies.com
http://www.progresstechnologies.com
http://twitter.com/progresstech

Progress Technologies, Inc. is a leading supplier of custom web based applications to small business.

Windows 7 Show Desktop Icon on Quick Launch fix
Leave a Comment

After an uneventful (this is good) and successful (even better) upgrade from Vista (ewwww, yuck) to Windows 7 (ahhh, much better) I found that  the Show Desktop icon had been moved to the far right hand side of the screen next to the Time.  After about a week of trying to get used to this I just could not adapt to the new location.  Since I have at a minimum of 3 programs open at any given time and have a terrible habit of dropping everything on my desktop, the Show Desktop icon on the Quick Launch taskbar is crucial as I usually “Show Desktop” to regroup or open a file on the desktop frequently.

A quick search on the Internet found that there was no quick fix for this and after following a verbose, long winded (hey, it takes one to know one) 20 step process found on the net to make your own Show Desktop on the Quick Launch that worked fine right up until you rebooted the machine (it IS Windows after all…)  I realized there was nothing easy about adding this feature back in.

This issue from my perspective is that you can ONLY Pin a executable program (.exe) to the Quick Launch task bar (no shortcuts, scripts etc.).  Surprisingly nobody had created a app to do this simple little function.  Here is a small app written in Visual Basic and compiled as an .exe to do the trick.

Download and unzip the .zip I have uploaded.  Save it to someplace on your hard-drive and then right click over the .exe and choose “Pin to taskbar”.  That is it, simple and it works!

Enjoy!

Everything You Need to Know About Eggnog – Food
Leave a Comment

Everything You Need to Know About Eggnog – Food & Drink – FOXNews.com

Posted using ShareThis

Category: Brain Dump  
Wordpress Line Breaks in text editor not working
Leave a Comment

I had and issue with Wordpress removing my line breaks no matter what I did in a post for a Wordpress installation.  I ultimately upgraded the Rich Text Editor that comes with Wordpress to the advanced version found here:  http://wordpress.org/extend/plugins/tinymce-advanced/

This did not fix the issue with pages that are formatted outside the editor, for example custom imports of outside RSS feeds.

NOTE: This page edit WILL get overwritten when you upgrade Wordpress, so keep it handy as I suggest you upgrade frequently and you will need to edit this back in after the upgrade.

Fix:

I modified the function called the_content(), that echoes out the posts content. This function can be found in wp-includes/post-template.php on line 165. Then I simple added two lines, that replaces the line-break with a br-tag. So here how my the_content() looks now.

function the_content($more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {
	$content = get_the_content($more_link_text, $stripteaser, $more_file);
	$content = apply_filters('the_content', $content);
	$content = str_replace(']]>', ']]>', $content);
	$content = str_replace("\n", "<br />", $content);
	$content = str_replace("\r", "", $content);
	echo $content;
}

Category: Brain Dump  
Google/Yahoo Indexing Flash and Flash SEO, Part I
2 Comments

I found myself in a lively discussion as to whether SEO is possible with text found within a Flash movie indexed by the major search engines such as Google, Yahoo and Bing.  Its been well over a year since Google announced the development of an algorithm to consume text found within a Google movie on the Google Webmaster Blog.

Randomly consuming this text and having the text show up in a search result is a whole different story.  We know that Google has trouble with complicated Actionscript within the movie as well as JavaScript referenced outside the Flash movie but there is no clear documentation as to what actually is indexed.  For example… is only static text indexed?  Does the indexing extend to buttons, embedded text within movies?  Does the indexing go even further and index text found WITHIN embedded movies WITHIN an embedded movie?  How deep does the indexing go?

The Experiment:

Basically I have a two frame movie with text featured on the first frame, a button with text that links to the second frame, text on the second frame, embedded movie clip with text on the second frame and finally a third embedded movie within that second frame.

This should start to answer if Google indexes these elements and how deep it goes.  Depending on these results I intend to extend the experiment to dynamic data pulled from a database directly as well as a XML file as each will be very interested to see.   Google usually indexes this site weekly, so check back in a week or use Google to search on “progresstechlabs.com %word you find in the movie below%” to test.  If you see some results show up before I post an update, please post a comment here so I can check it out.  Here is the source of the Flash movie as a reference.

Here is the movie embedded into the post:

Get Adobe Flash player

Dreamweaver CS3 crashes with List Menu/Dynamic Bind to Dynamic Source
Leave a Comment

I had this problem and it killed an hour of time.  Everytime I tried to create a dynamic list menu from a recordset it closed Dreamweaver.  It appears the best solution is to delete the DW cache file.

1) Close DW
2) Go to c:\documents and settings\USERNAME\application Data\adobe\Dreamweaver 9\configuration
3) Delete WinFileCache-ADXXXXXX.dat
4) Reopen DW

I was also having trouble locating this .dat file so I found this article in Adobe Support.  Given that alot of their links disappear without warning, I am posting the whole thing here:

Original Link:  http://forums.adobe.com/thread/494811

Dreamweaver creates a cache file called WinFileCache-********.dat or MacFileCache-********.dat inside your personal Dreamweaver configuration folder (the asterisks represent a series of letters and numbers that might differ from computer to computer). This occasionally gets corrupted causing instability, unpredictable error messages, and even crashes.

To solve the problem, close Dreamweaver and delete WinFileCache-********.dat or MacFileCache-********.dat. Sometimes, deleting this file is not sufficient, and you need to delete your personal configuration folder in its entirety.

WARNING: Do not confuse your personal configuration folder with the main configuration folder in Program Files in Windows or Applications on a Mac. You should never touch the main configuration folder unless you really know what you’re doing.

Locating your personal configuration folder

The location of the personal configuration folder depends on your operating system and version of Dreamweaver. For Dreamweaver CS4, it’s as follows:

  • Vista: C:\Users\<username>\AppData\Roaming\Adobe\Dreamweaver CS4\<language>\Configuration
  • Windows XP: C:\Documents and Settings\<username>\Application Data\Adobe\Dreamweaver CS4\<language>\Configuration
  • Mac OS X: Macintosh HD:<username>:Library:Application Support:Adobe:Dreamweaver CS4:<language>:Configuration

In all cases, <username> is the name of your user account on the computer and <language> indicates the language of your operating system. The language is usually represented by two pairs of characters separated by an underscore, as in en_US (English), es_ES (Spanish), or fr_FR (French).

Earlier versions of Dreamweaver locate the personal configuration folder in a slightly different location. This is where it can be found in Dreamweaver CS3:

  • Vista: C:\Users\<username>\AppData\Roaming\Adobe\Dreamweaver 9\Configuration
  • Windows XP: C:\Documents and Settings\<username>\Application Data\Adobe\Dreamweaver 9\Configuration
  • Mac OS X: Macintosh HD:Users:<username>:Library:Application Support:Adobe:Dreamweaver 9:Configuration

The personal configuration folder for Dreamweaver 8 and older is in a similar location, except you should replace “Adobe” with “Macromedia” and substitute the appropriate version of Dreamweaver in the path name.

The Dreamweaver configuration folders are hidden on Windows, so you need to enable the option to view hidden files and folders in order to locate them, as follows:

  • In Vista, select Start > Computer > Organize > Folder and Search Options > View. In Advanced settings, choose Show hidden files and folders.
  • In Windows XP, select Start > My Computer > Tools > Folder Options > View. In Advanced settings, choose Show hidden files and folders.

Once you turn on this option, hidden folders are displayed as dimmed icons to remind you to treat them with care.

Category: Brain Dump  
DataAssist 1.31 Error when loading
Leave a Comment

I re-installed my data assist extension and upon launching I am getting the following error when I click the database icon in Dreamweaver for a PHP site for the first time. This occurs even before I can past my license key in. “While executing onLoad in WA_AppBuilder.htm, a JavaScript error occurred”.

This is a reply from a WebAssist tech on their forums…going to post it here just in case it happends again, hope it helps someone else:

With Dreamweaver closed, try deleting the WinFilecache-########.dat or MacFileCache-########.dat, depending on your operating system, file from the following location:

WinXP
-DW8
–C:\Documents and Settings\<Your User Name>\Application Data\Macromedia\Dreamweaver 8\Configuration
-DWCS3
–C:\Documents and Settings\<Your User Name>\Application Data\Adobe\Dreamweaver 9\Configuration
-DWCS4
–C:\Documents and Settings\<Your User Name>\Application Data\Adobe\Dreamweaver CS4\en_US\Configuration

Win Vista
-DW8
–C:\Users\<Your User Name>\AppData\Roaming\Macromedia\Dreamweaver 8\Configuration
-DWCS3
–C:Users\<Your User Name>\AppData\Roaming\Adobe\Dreamweaver 9\Configuration
-DWCS4
–C:\Users\<Your User Name>\AppData\Roaming\Adobe\Dreamweaver CS4\en_US\Configuration

Mac OSX;
-DW8
–Hard disk: Users: <Your User Name>: Library: Application Support: Macromedia: Dreamweaver 8:Configuration
-DWCS3
–Hard disk: Users: <Your User Name>: Library: Application Support: Adobe: Dreamweaver 9: Configuration
-DWCS4
–Hard disk: Users: <Your User Name>: Library: Application Support: Adobe: Dreamweaver CS4: en_US: Configuration

(Please note that <Your User Name> Should be replaced with the User name you use to log into your computer)

Also, please make sure that you have the most recent version of our extensions installed.

NOTE:
On Windows Computers, The AppData or Application Data folders may be set to be hidden.

To View Hidden Folders in Windows Vista:
1) In The Windows Explorer, Click the “Organize” button
2) Select “Folders And Search Options”
3) Select the “View” tab
4) Click the “Show Hidden Folders And Files” radio button.

To View Hidden Folders in Windows XP:
1) On the Tools menu in Windows Explorer, click Folder Options.
2)Click the View tab.
3) Under Hidden files and folders, click Show hidden files and folders.

Category: Database  
The future of RSS data feeds while selling on the Internet
2 Comments

I am looking for a sailboat. Nothing fancy, just a safe, solid, little sailboat I can take the family out on for the weekend and learn the time honored tradition of capturing the wind. Through a few weeks of research, I identified and exact criteria of what I am looking for: Catalina 25′ under $10,000 with a trailer. Naturally my first choice for locating a sailboat brought me to Craigslist. What a nightmare, despite the fact that the site looks like a piece of poo aesthetically, there really is no way to search and locate this specific criteria easily across an entire state. You actually have to navigate to each location and then issue your search criteria…there are tons of locations in Florida…a daunting task to say the least.

Through some testing I was able to tweak the Craigslist query and figured out I can switch the location if I know it and re-use it.

http://daytona.craigslist.org/search/boa?query=sailboat&;catAbbreviation=boa&;minAsk=min&;maxAsk=10000&;hasPic=1&;format=rss

Now this little ditty will locate sailboats under $10,000 with a photo, insert a different city and I am good to go. Since I am not ruling out buying a trailer separately and I am not opposed to purchasing something besides a Catalina this produced the best results for what I was looking for.

The root problem still exists, namely that I have to manually do this EVERY day for EVERY location in Florida if I want to stay on top of what is for sale. These Catalina’s in this price range go fast, super fast so checking Craigslist twice a day would be a good thing (if not a bit obsessive, but hey it’s how I attack a problem).

Being a bit lazy (Lazy = Automation), I figured there had to be a way to automate this search across the entire state and then run a CRON job to check it twice daily (okay, I have it checking it every two hours but our server could care less, I assure you).

About this time, I noticed the little  graphic at the bottom of each successful sailboat search. NICE!!! Since I do a poor job of explaining what things are, this is the definition of RSS according to Wikipedia: “RSS (most commonly translated as “Really Simple Syndication”) is a family of web feed formats used to publish frequently updated works…” works for me. In human speak basically it’s a way to publish your frequently updated content (such as classifieds) so that people can see the most recent additions.

In short, problem solved…seriously. Each location in Florida has its own RSS feed that displays sailboats for sale. Now all I have to do is suck in these feeds to a database (MySQL) and I can pool my results in a format where I can search specifically as well as order the data to show me latest sailboat listings across the entire state of Florida!

My solution is a blog that updates every two hours:

http://www.ptdev.com/wordpress/

Although I still have not located my “perfect” little sailboat, I know I am seeing the entire State’s inventory for sailboats on Craigslist without lifting a finger (err…mouse click).

Since Craigslist is not the only site selling sailboats online, I then went to Sailboat Trader to find their RSS feed and to my dismay they do not offer one. I took the time to email the webmaster asking for its location just in case it’s something tucked away (and not used). They had no clue what I was talking about, but were very interested once I showed them what I was doing with Craiglist. I tried a few other Boats for Sale in Florida websites and all had the same reaction.

In short, I don’t think anyone has realized the convenience and power of RSS when serving their content to the masses.  I predict a trend (if us web folks grab onto this) that sites offering products for sale will treat their content as a dynamic feed and thus open their content to new methods of getting it to the masses.  Take my PT Dev site, this is nothing more than a filter I can point to every location on the net I can find.  Since I point the user (me) back to Craigslist it behooves Craigslist when similar minded people access my site looking for similar items.

I have been experimenting with Blogs for clients for quite sometime and am amazed at how quickly Google treats these feeds and inserts them into their search results (In some cases, a matter of hours).  Recently a manufacturing client placed their technical documents online in a blog style RSS feed and by the end of the day had received a dozen calls for more information from interested parties.  Google is now indexing their content and subsequently they are the top result for their product.  Yummm!  I love RSS at this point for sure!

Sailboat Trader said they will get back to me….I hope they do or it looks like I will be finding this boat on Craigslist.

Happy Sailing!!

Tony Nestor
CEO, Progress Technologies, Inc.
(239) 985-0335 ext. 623
tn@progresstechnologies.com
http://www.progresstechnologies.com
http://twitter.com/progresstech

Tony Nestor is CEO for Fort Myers, Florida based Progress Technologies, Inc.  Progress Technologies, Inc. is a leader in the development of website and database applications for city government, real estate, financial and manufacturing companies nationwide since 1998.  The company has continued to steadily grow  while weathering the tech boom and crash of the late 1990’s and today’s market by providing unmatched customer service and top of the line programming techniques.

Category: Brain Dump  
Online Grammar Check
Leave a Comment

Gotta love the Internet…for those of us grammatically challenged:

http://spellcheckplus.com/

Category: Brain Dump  
Progress Technologies CEO, Tony Nestor quoted in NEBS business article on SmartPhones with INC Magazine
Leave a Comment

Will smartphones make computers obsolete for business operations?

This question was posed to INC Magazine and wireless application development company; Progress Technologies CEO, Tony Nestor.  Nestor states, “For real estate agents, sales professionals and other “on-the-go” types, the SmartPhones (IPhone, Blackberry, etc.) has been a godsend as far as putting these people in touch with their clients 24/7″.  In fact, Nestor argues this is quickly becoming a necessity as clients now expect a near immediate response from vendors in this day and age.  Nestor’s main concern with replacing PC’s with SmartPhones entirely is the potential for individuals not having a process in place for backing up their smart phone data.  On a server/computer type network a network administrator is (or should be) responsible for protecting corporate data with proper backups.  Companies looking to replace computer with SmartPhones should make the backing up of that data Priority #1.  Security is also an issue, as its much easier for a disgruntled employee to “walk off” with a SmartPhone as opposed to a Personal Computer in their office.  Any wireless applications built for the organization should be 100% browser based or at least the data being stored on a remote company controlled server.  For example a Customer Resource Manager (CRM) should be made available to all SmartPhones and in the event a person is terminated one only needs to disable their login to remove their access to the company database.  Another good point is the data itself is on a remote server safe and sound.  This also solves the issue of data backup.  With the data residing on a corporate server, the necessary backups can be scheduled to insure the data is protected on a regular (and hopefully frequent) basis.

Article: Will smartphones make computers obsolete for business operations?

Progress Technologies, Inc. is a leading supplier of wireless/smartphone custom applications to small business.

Save 20% in printing costs just by switching your default font.
Leave a Comment

Do you print a TON and always seems to be running to your local Office Supply store for a new laser cartridge?  Being that Progress Technologies is a digital company and we try our best to keep it all digital, we are still required to hand deliver quotes and other infoamtion and sometimes it seems burn through a laser cartridge like we are a printer.  Talking with clients on a daily basis I know we are not alone as most businesses today ranging from REALTOR Associations to financial companies all get into a “printing” mode that seem to burn the ink and paper so to speak.

I came across a random article that claims the following font features circles that allow for up to 20% in savings.

Here is the .zip of the font (true type font):  Font Download — According to their website, the font is based on the Vera Sans, an Open Source letter, and is available for Windows, Mac OSX and Linux and is itself freely available.  We are going to change over, it will be interesting to see how many cartridges we blow through in six months.  Hopefully this is a winner!

Eco Font Sample Word Document

Here is the creator website as I want to make sure they get credit:  http://www.ecofont.eu/downloads_en.html

Category: Brain Dump  
What do you do with your old hard drive? Are you a hackers dream come true?
Leave a Comment

We recently decommissioned a client’s old server as we had developed a new intranet application to handle their sales order system that required a total upgrade of hardware and software.  As was expected, we were given the task of destroying the old server or at least the data on the hard drive.  Considering that this hard disk had customer information including credit cards and that we folks here at Progress Technologies posses a healthy share of paranoia the simple format and putting to the curb will just not do.

Our solution?  Killdisk.

Here is a excerpt from their website explaining better than I can how it works and why you need it:

Active@ KillDisk – Hard Drive Eraser is powerful and compact software that allows you to destroy all data on hard and floppy drives completely, excluding any possibility of future recovery of deleted files and folders. It’s a hard drive and partition eraser utility.

If you use FDISK, FORMAT utilities, or DELETE standard operating system command for data removal, there is always a chance to recover deleted files (using undelete utility or some data recovery software) and use against the owner’s will. We highly recommend you to run this FREE utility for the hard and floppy drives you want to dispose of, recycle, re-use, sell or donate to somebody.

Active@ KillDisk conforms to US Department of Defense clearing and sanitizing standard DoD 5220.22-M. The most secure Gutmann’s data destruction method is also implemented.
Both WIPE and KILL functions support 17 security standards from various countries such as USA, Canada, Germany and others. You can be sure that once you clean up with Active@ KillDisk, sensitive information is purged out forever.

Basically, using this little diddy of a program makes sure its gone, long gone.  DO NOT assume tossing that computer to the curb (hopefully you at least format the disk) will guarantee your in the clear.  If your business or personal life is being targeted by some freak or a computer “hacker” happens to be poking around, a system being tossed is excellent at least for parts salvage.  The fact that all information is still available on the disk is a super bonus to the wrong type of people.

Here is the website:  http://www.killdisk.com/

Oh and by the way, another fun thing we like to do is take a hammer to the disk to make sure its totally crashed.  While this step is entirely optional I highly recommend it as it places a warm fuzzy feeling in your heart that you have done all you could do as well as get out that pent up aggression that occurs after 8 hours of staring at a computer screen.

Category: Brain Dump  
Blah, Blah, Blah… so far for Bing search engine queries…
Leave a Comment

Read and interesting article on the latest stats for search engine queries. Here is an excerpt of the stats:

Internet users worldwide ran 76.7 billion search queries on Google’s search engine in July, up 58 percent compared with the same month last year. This gave Google nearly 68 percent share of all search engine queries last month.

Yahoo came in a very distant second place with 8.9 billion queries, up only 2 percent year-on-year and good for a 7.8 percent share.

China’s Baidu ranked third with almost 8 billion queries, up 8 percent and good for a 7 percent share.

Microsoft took fourth place with 3.3 billion queries, up 41 percent, while eBay came in fifth place with 1.7 billion, also up 41 percent.

Interesting to say the least…all those expensive ads I see on TV, including the Anthony Bourdain “Official Search Engine” have ALOT of searches to make up for.

Here is the full article:
http://www.pcworld.com/businesscenter/article/171166/study_google_pulls_away_in_global_search_usage.html

Category: Brain Dump  Tags: , , , , , ,  
Twitter Analytics, Twitter Missing the Boat?
Leave a Comment

I found this cool website from a follower’s tweet called Twitter Analyzer.  Basically it provides stats and analytical data for your twitter account, something I think Twitter should be doing personally.  Most of the information appears to be gleaned from the page of the account entered as there is it does not ask for credentials (thank god, as I am skeptical of that as you should be).

Check it out:

http://twitteranalyzer.com/

Also, finding the API for Twitter is a pain I think.  Here is a direct link to the Twitter API home page:

http://apiwiki.twitter.com/

Progress Tech Labs announces new Blog layout
One Comment

What do you think of our latest theme?  The idea was to make it more clean, understated and focus solely on the rich content we provide.

Leave us a comment letting us know your thoughts!

Category: Brain Dump  Tags: , , , ,  
Get Adobe Flash playerPlugin by wpburn.com wordpress themes