A new mobile application from Maverick Mobile Solutions lets you protect the data on a stolen cellphone, track down its location and torture the thief. Think of it as LoJack for cell phones.
Your personal technology and web 2.0 Guide.




(No Ratings Yet)A new mobile application from Maverick Mobile Solutions lets you protect the data on a stolen cellphone, track down its location and torture the thief. Think of it as LoJack for cell phones.




(No Ratings Yet)Cisco has announced the Cisco Virtual Office (CVO) that allows businesses to extend their enterprise and productivity by “bringing the office” to employees who regularly work in a variety of remote settings, such as branch locations or from a home office.
The solution addresses the growing trend among mid-sized and large enterprises that have increasingly distributed workforces who need access to collaborative business applications and services outside of their corporate offices. The networking solution packages routing, switching, security, wireless, IP telephony and policy control technology into a centrally managed office-caliber solution that provides highly secure video, voice, data and wireless service.
via itnewsonline




(No Ratings Yet)We Gmail developers are arguably among the most demanding of Gmail’s users. So in addition to the feedback we get from all of you, a lot of the ideas for new features come from our own frustrations and experiences. We send and receive a lot of mail, and we’ve already started using these Labs features to make replying that much better.
Quote selected text, by Ryan A
Gmail makes it easy to manage long conversations or threads by hiding the text you’ve seen before. Unfortunately, this means that the people you’re communicating with that aren’t using Gmail sometimes get annoyed with you for leaving 25 pages of irrelevant conversation in the email. Also, sometimes you just want to reply to one small part of a conversation. Deleting lots of irrelevant text is rather annoying, so this Labs feature should make your life easier. Just highlight the text you want to include in your reply, hit the keyboard shortcut “r” to reply, and the compose template will be just what you selected! Note: This doesn’t quite work in Chrome or Safari yet, but it will in a few weeks.




(5 votes, average: 4.8 out of 5)Lets assume that you have created a killer article and you know that it will bring tons of traffic once you digg or stumble it. Now tons of users are on your blog and your blog serving them content using the dynamic PHP scripts files, this will put tremendous load on your sever and even you can face CPU outage. This is more likely to happen when you have a self-hosted blog.
If you can make static mirror pages of your blog posts, it will save you and your server. WP-Super-Cache plugin does exactly that and we will discuss in great deal in this tutorial. You should also consider following steps to reduce page load time
1. Use fewer images.
2. Optimize images before uploading. You can either use Photoshop to optimize JPEG files or use a JPEG compression utility like Advanced JPEG Compressor 2008. Create an action in Photoshop so that you don’t have to do repetitive tasks.
3. Use minimum third party java script code; they really slow down the page load.
4. Stay up to date with the latest WP releases. Every new wordpress release comes with lots of performance enhancements. Also don’t forget to update the maintenance release that follows every main release.
5. Disable or preferably delete unused plugins. Every plugin executes quite a few scripts and SQL queries that might slow down your blog. Deleting unused plugins will save you some space.
6. Stay up to date with Plugins, whenever a new WP version is released, plugin authors enhance plugins for performance and other enhancements. If you publish your posts from desktop visit your dashboard often to check weather a new version of plugins is available. WP 2.6 now gives you a visual indication about the plugins that need your attention. It shows a red blurb with a number inside it, that number defines how many plugins need your attention.
7. If you have added a new feature to your WP blog by writing some PHP code that executes SQL queries; make sure that you minimize the load on the server.
8. Place javascript code in an external .js file instead of dumping all the code in head section. Compress javscript code.
9. Put external javascript files below the head tag.
10. Remove duplicate scripts.
11. Compress all CSS files.
12. Do not put CSS documents outside HEAD tag.
13. Check Firefox Error Console and eliminate errors from your code, if any.
14. Check website load time using a cool utility called Pingdom. 
15. Reduce whitespaces in your CSS files and use shorthand CSS. It will increase the speed time. Whitespaces are great and every coder uses them extensively for better reading. The solution to this problem is that you make a copy of code on you local machine, kill all the whitespaces and upload the optimized the file to server. That way you will have a mirror of the code that you can read and modify easily later. Use Pingdom to check wheather it makes any difference or not.
16. Optimize database using phpMyAdmin.
17. Use firebug Firefox addon to quickly find errors on your page. Apart from this you can do tons of thing with firebug including monitoring network utility.
18. Install YSlow Firefox addon. YSlow analyzes web pages and tells you why they’re slow based on Yahoo’s rules for high performance web sites.
19. Reduce DNS lookup, try to reduce number of domains to 4.
20. And now the most important step, enable cache option. Use a very nice plugin called WP Super Cache, it is an advanced version of WP-Cache however you can choose which mode to turn on when you activate the plugin i.e. WP-Cache or WP-Super-Cache.
WP-Super-Cache plugin is a very fast cashing engine for wordpress. It generates static HTML files from dynamic blog posts. Once this plugin generates a static html file, that file will be executed in your browser instead of the wordpress PHP scripts that are much heavier and take far more time to load.
Static files are only displayed to following set of visitors…
1. Users who are not logged in.
2. Users who have not left a comment on your blog.
3. Or users who have not viewed a password protected post.
It is correct because when user’s details are displayed on the post after they leave comments. These visitors are served dynamically and they are very few in numbers so your server is safe from being overload. Now lets study the plugin.
1. Enable mod mime, mod rewrite and fancy permalinks on.
2. Disable PHP safe mode.
3. If above two settings are missing, you can still cache files but caching will be slow.
Step - 1
Open your .htaccess file, it should be in your website root. Insert following code into it.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /iblog/
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*s=.*
RewriteCond %{QUERY_STRING} !.*p=.*
RewriteCond %{QUERY_STRING} !.*attachment_id=.*
RewriteCond %{QUERY_STRING} !.*wp-subscription-manager=.*
RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L]
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*s=.*
RewriteCond %{QUERY_STRING} !.*p=.*
RewriteCond %{QUERY_STRING} !.*wp-subscription-manager=.*
RewriteCond %{QUERY_STRING} !.*attachment_id=.*
RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /iblog/index.php [L]
</IfModule>
# END WordPress
Step - 2
Create a new . htaccess file inside wp-content/cache folder and insert following code in it.
AddEncoding x-gzip .gz AddType text/html .gz
Step - 3
Copy wp-super-cache/wp-cache-config-sample.php to wp-content/wp-cache-config.php. You have to copy the file wp-super-cache/wp-cache-config-sample.php to wp-content and rename it as wp-cache-config.php. Make sure that WPCACHEHOME variable is pointing to correct direction.
define( 'WPCACHEHOME', WP_CONTENT_DIR . '/plugins/wp-super-cache/' );
Step - 4
Copy /plugins/wp-super-cache/wp-cache-phase1.php to wp-content folder and rename it as advanced-cache.php.
Step - 5
Open wordpress config file \wp-config.php and add following code just above
require_once(ABSPATH . 'wp-settings.php');
So entire code block will look like…
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
define( 'WP_CACHE', true );
require_once(ABSPATH . 'wp-settings.php');
Step - 5.1
Choose Setting > WP Super Cache. Now you should see options. You can turn on and off cache from there. You can even set legacy WP-Cache caching from there by clicking on the HALF ON radio button.

Step - 6
Next you can enable or disable compression from there.
If your browser keeps asking you to save the file disable the compression.
Step - 7
Next you can set the expiry time and garbage collection numbers. By default a very high frequency has been set because new WP-Super-Cache plugin works much better then legacy WP-Cache plugin. If your site starts to slow down, decrease the time and also the garbage collection. Garbage collection number defines, How often should expired files be deleted?

How would you know about the appox number? Well read out few lines below Garbage Collection options.
[Checking for and deleting expired files is expensive, but it's expensive leaving them there too. On a very busy site you can leave this fairly high. Experiment with different values and visit this page to see how many expired files remain at different times during the day. Simple rule of thumb: divide your number of daily page views by 5 and pick the closest number above.]
Step - 8
Next you can set the rejected URIs.

Enter strings here that forces a page not to be cached. For example if you don’t want to cash last year entries enter /2007/ in the box. If any uri accessed that contains the substring /2007/, WP Super Cache will not cache that page.
Step - 9
Next you can set the filenames that can be cached, even if they match one of the rejected substring specified in step-8.
Step - 10
Next set the options to prevent WP-Cache from caching bot, spiders, and crawlers’ requests.
Step - 11
Next this plugin displays number of Cached and Expired pages for both WP-Cache and WP-Super Cache and you also have two buttons for deleting Expired and Cached pages.

If you are expecting huge digg traffic on a page, cache that page directly. Directly cached files are files created directly off where your blog lives. Lets assume that you have a uri http://www.yourblog.com/game/ and you are expecting huge traffic from digg. You can enter either http://www.yourblog.com/game/ or /game/ in the box. Click on update direct page. Next time when an anonymous visitor will visit your site, cached file will be generated.

As you can see this plugin is little complex to set but the results are wonderful. Install it and please share your experience with us.




(No Ratings Yet)
When you are going to create a new campagin for your websites and running short of keyword ideas for Google Adword, google has a cool Keyword tool that can save you and also give you new ideas.
Here is link to the tool.
You have got two options to generate keyword ideas.
1. By entering descriptive words, I have tried “After Effects”
2. By entering a website address, here I have given blog address 
Wow, you can see people are more interested in making money online. Its all about money.




(No Ratings Yet)
You’ve got grand plans for your blog. Naturally, it’s going to be big - really big. But before you hit your rhythm with insightful, savvy posts, there are practical considerations - like where to host it.
With so many web hosts to choose from, that’s no easy decision. That’s why we compiled this handy guide to where the web’s top 100 blogs (by Technorati ranking on August 8 2008) are hosted.
via whoishostingthis




(No Ratings Yet)
Imagine a world where blind people can find their most-prized possessions with the click of a button, adult children are alerted if grandma has fallen and can’t get up and your cell phone fits inside your ear.
via abcnews
Technorati : bluetooth, gadgets
Del.icio.us : bluetooth, gadgets
Zooomr : bluetooth, gadgets
Flickr : bluetooth, gadgets




(No Ratings Yet)
Yahoo Buzz is now open for everyone. Now you can submit your stories to buzz and get some share of traffic that Yahoo Buzz generates.
Technorati : yahoo, yahoo buzz
Del.icio.us : yahoo, yahoo buzz
Zooomr : yahoo, yahoo buzz
Flickr : yahoo, yahoo buzz




(No Ratings Yet)
If there is too much of Google in Google’s search results for your taste, you could always try Google Minus Google.
Let me explain.
Last week, I wrote about renewed concerns among some media companies that Google was stepping on their turf. Those concerns surfaced anew following Google’s roll out of Knol, a Wikipedia-like content site, in which experts contribute articles on various topics. Some of Knol’s pages ranked surprisingly high in Google’s sea…
via nytimes
Technorati : google, search
Del.icio.us : google, search
Zooomr : google, search
Flickr : google, search




(1 votes, average: 5 out of 5)Once I visited consideropen.com and found a topic on mootools. I had commented and requested to make a 30 day tutorial series on mootools. Guess what, they did it.
Day 1 - Intro to Library is online
Technorati : javascript, mootools
Del.icio.us : javascript, mootools
Zooomr : javascript, mootools
Flickr : javascript, mootools
addtweets adsense apache automatic installation backup Beijing buddypress code embed configuration countblank CSS CSS conflicts css layout database backup Dreamweaver excel fervens Gadget Gadgets Google gtalk hackers installation internet TV Javascript keyboard makeinternettv.org ms-excel MySQL office olympics PHP picaba social shopping syntax highlight toanswer twitter Windows Wordpress Wordpress Database Backup wordpress plugins wordpress theme Wordpress Themes wp-syntax Yahoo
©2008 Aniquito.COM
Disclaimer: All data and information provided on this site is for informational purposes only.
WordPress Themes by Irish Band & Steel Band | Distributed by eBlog Templates