<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>TechBeeps</title> <atom:link href="http://techbeeps.com/feed/" rel="self" type="application/rss+xml" /><link>http://techbeeps.com</link> <description>Computer &#124; Tutorials &#124; Make money Online &#124; Blogging &#124; Wordpress &#124; SEO</description> <lastBuildDate>Tue, 07 Feb 2012 09:49:00 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>Data Recovery from Windows File System without Softwares &#124; data recovery in windows, permanently deleted file recovery</title><link>http://techbeeps.com/data-recovery-from-windows-file-system-without-softwares/</link> <comments>http://techbeeps.com/data-recovery-from-windows-file-system-without-softwares/#comments</comments> <pubDate>Tue, 07 Feb 2012 09:22:16 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[WINDOWS]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=430</guid> <description><![CDATA[Recover Permanently deleted files without softwares How to recover deleted files/folders from a hard disk in Windows-FAT/NTFS partitions ? Just read the rest to recover permanently deleted files or folders by Shift+Del key operations. You may amaze how to recover data without any softwares, it is possible when you know the theory behind file structure]]></description> <content:encoded><![CDATA[<h1>Recover Permanently deleted files without softwares</h1><p>How to recover deleted files/folders from a hard disk in Windows-FAT/NTFS partitions ? Just read the rest to recover permanently deleted files or folders by Shift+Del key operations. You may amaze how to recover data without any softwares, it is possible when you know the theory behind file structure in windows. Windows 7, xp, vista, 98, 95 are some variants of Windows Os.</p><p>Data is important to us than food now a days. Your hard disks, pen drives, flash drives, SD memory cards, etc. carrying your personal informations like PAN/ATM/Credit card details,  biometric signatures, user account passwords, important photographs, Passport details, and a lot. Have you think of lossing such very important data due to accidental deletion or by virus attacks ? Our clients are facing such situations. But no one to help them to recover deleted data, mostly they go for a search in data recovery softwares. Genuine data recovery softwares are costly, so I think of a free method to recover data without any software costly.</p><h2>Data Recovery steps</h2><p>Before starting the data recovery from hard disk, flash drives, pen drives, SD memory cards understand the basics of Windows File system.</p><h3><span
style="text-decoration: underline;">Data Recovery from FAT (File Allocation Table) Partition</span></h3><p>1. Explore FAT partition in any of the hexa-editor or hexadecimal explorer.</p><p>2. Browse root directory and find out your target file. If your target file is in subfolder, browse into subfolder. Every folder entry keeps a start cluster of its subfolders.</p><p>3. If you get your file in the directory entry,  you’ll notice the start bit of the  file entry is 0xE5, which denotes a deleted file.  Read the start cluster and the file size from the directory entry.</p><p>4. Now, get the FAT table with the help of the Boot Record. The Boot Record keeps a start cluster of FAT. Basically the FAT table shows the used clusters in a current drive and the file fragments.</p><p>5. Using the start cluster of files, we collect a complete chain (link list) of file clusters where the file data can exist until the end of file (0xFFFFFFF8\0xFFFFFF0F or 0xFFF8\0xFFFF)<strong>.</strong></p><h4><span
style="text-decoration: underline;"><strong>What is FAT File System ?</strong></span></h4><p>The File Allocation Table (FAT) file system is one of the most simple file systems found in common operating systems. FAT is the primary file system of the Microsoft DOS and Windows 9x operating systems. FAT is supported by all Windows and most UNIX operating systems. FAT is frequently found in compact flash cards for digital cameras and USB “thumb drives.”</p><p>To get the data of a file, we first get the start cluster of the file from the Root Entry, and then get a complete link list from the FAT table. In the FAT table, the starting cluster number is the address of the first cluster used by the file. Each cluster contains a pointer to the next cluster in the file, or an indication (0x FFFFFFF8\ 0xFFF8) that this cluster is the end of the file.</p><p>Let’s see how the FAT table is allocated. Suppose we have a file named FILE.TXT, whose start sector is 0×00000002 (from the root directory). We can see from the diagram below that the FILE.TXT data is in clusters 2, 3, 4 and 5. Clusters 0 and 1 are always reserved.</p><p><a
href="http://techbeeps.com/wp-content/uploads/2012/02/Table2.jpg"><img
class="aligncenter size-full wp-image-432" title="Table2" src="http://techbeeps.com/wp-content/uploads/2012/02/Table2.jpg" alt="data recovery in windows, permanently deleted file recovery"width="599" height="57" /></a><a
href="http://techbeeps.com/wp-content/uploads/2012/02/Table3.jpg"><img
class="aligncenter size-full wp-image-433" title="Table3" src="http://techbeeps.com/wp-content/uploads/2012/02/Table3.jpg" alt="data recovery in windows, permanently deleted file recovery"width="635" height="266" /></a></p><h4><span
style="text-decoration: underline;"><strong>Root Directory </strong><strong>(Directory Entries):</strong></span></h4><p>The FAT directory entry contains the name and metadata for a file or directory. One of these entries is allocated for every file and directory, and they are located in the clusters allocated to the file’s parent directory. This data structure supports a name that has only 8 characters in the name and 3 characters in the extension. If the file has a more complex name, there will be a long file name directory entry in addition to a directory entry.</p><p>Friends, to make it easier to understand, I relate the term Root Directory to a book index. We can say the Root Directory is like an index for a FAT file system. As a book index has chapter names and page numbers, similarly the root directory contains files names and start clusters of files.</p><p>The Root Directory can contain more information about files than just the name and start cluster, including:</p><ul><li>Name (eight-plus-three characters)</li><li>Attribute byte (8 bits worth of information, described later in this section)</li><li>Create time (24 bits)</li><li>Create date (16 bits)</li><li>Last access date (16 bits)</li><li>Last modified time (16 bits)</li><li>Last modified date (16 bits.)</li><li>Starting cluster number in the file allocation table (16 bits)</li><li>File size (32 bits)</li></ul><p>Folders have a set of 32-byte folder entries for each file and subfolder contained in the folder.  The Root Directory entry structure is as follows:</p><p><a
href="http://techbeeps.com/wp-content/uploads/2012/02/Table1.jpg"><img
class="aligncenter size-full wp-image-434" title="Table1" src="http://techbeeps.com/wp-content/uploads/2012/02/Table1.jpg" alt="data recovery in windows, permanently deleted file recovery"width="512" height="657" /></a>Now, suppose I accidently deleted a file. In the Root directory/directory entry in the picture below, 0xE5 shows that the specific file has been deleted (look for PARTA~1AVI).</p><p><a
href="http://techbeeps.com/wp-content/uploads/2012/02/Table4.jpg"><img
class="aligncenter size-full wp-image-435" title="Table4" src="http://techbeeps.com/wp-content/uploads/2012/02/Table4.jpg" alt="data recovery in windows, permanently deleted file recovery"width="638" height="366" /></a></p><p>In the picture above, you can see the deleted file name is ắPARTA~1AVI and ắ (0xE5) represents the file is deleted. To recover a file, you can either unmark the file/folder entry with an ASCII character or you can get the start cluster and size of the file to create a new file.</p><p>If you unmark the entry, you need to correct the FAT table or you need to unmark all the parent directories in the directory entry to establish the complete path of a file if the file is in a subdirectory (but I do not suggest this for new guys because the OS can be damaged).</p><p>I suggest you just read the start cluster and size of the file and get all cluster chain from the FAT table. Now you can jump on the cluster, collect the data from the drive and create a new file.</p><p><span
style="text-decoration: underline;"><strong>Data Recovery from an NTFS Partition:</strong></span></p><p><strong>1)     </strong>Explorer your NTFS partition in any hexadecimal explorer.<strong></strong></p><p><strong>2)     </strong>Read the Master File Table’s (MFT) start cluster from the Boot Record. Basically, the MFT entry (1024 byte) of a file reflects the file’s create date/time, modified date/time, access date/time, file security information, file attributes, file name and file’s data fragments. All this information is categorized by attribute value.</p><p><strong>3)     </strong>Now, move to the MFT entry of your file.</p><p><strong>4)     </strong>The MFT’s 22<sup>nd</sup> bit shows the information of file, folder, deleted file and deleted folder, and the 49<sup>th</sup> bit shows the MFT sequence number of its parent directory. The MFT sequence number 0×05 always denotes the root/drive.</p><p><strong>5)     </strong>Now we will try to find the 0×80 attribute in the file’s MFT entry, because this attribute has the fragment list of the data or the data itself (for small files).</p><p><strong>6)     </strong>In the 0×80 attribute, the 8<sup>th</sup> byte denotes whether file is resident (0×00) or nonresident (0×01). Resident (a small file, usually in bytes) means the data is in the current MFT entry itself. Nonresident (a large file, usually more than 10-12 bytes) means the data has allocated different clusters in the drive.  In the case of Nonresident, the 32<sup>nd</sup> byte denotes where the file’s cluster list (data run) starts in current attribute. In the case of Resident, the 32<sup>nd</sup> byte denotes the start of data of a small file.</p><p><strong>7)     </strong>Now, read all the fragment lists (cluster chain) from this attribute.</p><p><strong>8)     </strong>We now have all the occupied clusters lists of a file. We can jump on the cluster in the partition and collect the data.</p><p>Friends, I will be talking more about NTFS in future discussions. For further query, you can contact me. Thanks for spending your valuable time reading this.</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/data-recovery-from-windows-file-system-without-softwares/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Search Engine Optimization Guide for WordPress-Beginners &#124; SEO, search engine optimization, wordpress beginners</title><link>http://techbeeps.com/search-engine-optimization-guide-for-wordpress/</link> <comments>http://techbeeps.com/search-engine-optimization-guide-for-wordpress/#comments</comments> <pubDate>Thu, 12 Jan 2012 11:13:04 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Articles]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[tricks in blogging]]></category> <category><![CDATA[wordpress]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=180</guid> <description><![CDATA[WordPress rules the Blogging trend. In our web nearly 3.8% are WordPress blogs and 10% using WordPress indirectly such as Plugins, Scripts, Themes, Styles, etc. But the most of thw WordPress bloggers failed to get good search engine rankings. What may be the reason ? It may be thousands of faults done in their blogs.]]></description> <content:encoded><![CDATA[<p>WordPress rules the Blogging trend. In our web nearly 3.8% are WordPress blogs and 10% using WordPress indirectly such as Plugins, Scripts, Themes, Styles, etc. But the most of thw WordPress bloggers failed to get good search engine rankings. What may be the reason ? It may be thousands of faults done in their blogs. Now I instruct you to setup WordPress for best SEO(Search Engine Optimization) results and make your website more search engine friendly. You may know it but I emphasise each and every step clearly to understand even for a beginner in WordPress blogging.</p><p>&nbsp;</p><p>Follow the steps clearly and make it possible in your blog</p><h2>1. Importance of Blog Title and Tag Lines in wordpress</h2><p>What is the importance of a blog title and the Tag Lines ? I too wondered first, but the title is important and must be relevant to content. If a blog developing for mobile Blog title must contain mobile related words. Some times Tag line consider as the description for blog. You may understand the importance of catching title for blog with title tag. Tag line should contain essential keywords and search engine friendly.</p><h2>2.  Update Services</h2><p><label
for="ping_sites">When you publish a new post, WordPress automatically notifies the following site update services.</label> A list of websites keeping the current weblog updates of each websites. When you make a new post, WordPress will ping these websites automatically and inform that the website made a new post. Then response will be updation of weblog for that request website. It gives a lot of traffic to your sites.</p><p>To enable &#8220;Update Services&#8221; goto <em>Settings</em>/Options in sidebar of Admin Control Panel, and Select <strong>Writing</strong> tab.</p><p>Scroll down in writing tab and find &#8220;Update Services&#8221;.</p><p>Add some more ping services listed below</p><p
align="LEFT"><span
style="color: #99cc00;">http://blogsearch.google.com/ping/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://1470.net/api/ping</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://api.feedster.com/ping</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://api.feedster.com/ping.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://api.moreover.com/ping</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://api.moreover.com/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://api.my.yahoo.com/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://api.my.yahoo.com/rss/ping</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://bblog.com/ping.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://bitacoras.net/ping</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://blogdb.jp/xmlrpc</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://blog.goo.ne.jp/XMLRPC</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://blogsearch.google.com/ping/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://blogmatcher.com/u.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://bulkfeeds.net/rpc</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://coreblog.org/ping/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://mod-pubsub.org/kn_apps/blogchatt</span></p><p
align="LEFT"><span
style="color: #99cc00;">https://phobos.apple.com/WebObjects/MZFinance.woa/wa/pingPodcast</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.amagle.com/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.bitacoras.com</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.bloggers.jp/rpc/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.blogmura.jp/rpc/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.blo.gs/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.cocolog-nifty.com/xmlrpc</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://pinger.blogflux.com/rpc/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.exblog.jp/xmlrpc</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.feedburner.com</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.myblog.jp</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://pingqueue.com/rpc/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.blogg.de/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.rootblog.com/rpc.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.syndic8.com/xmlrpc.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.weblogalot.com/rpc.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://ping.weblogs.se/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rcs.datashed.net/RPC2/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.blogbuzzmachine.com/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.blogrolling.com/pinger/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.britblog.com/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.icerocket.com:10080/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.newsgator.com/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.pingomatic.com/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.tailrank.com/feedburner/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.technorati.com/rpc/ping</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.weblogs.com/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://rpc.wpkeys.com/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://services.newsgator.com/ngws/xmlrpcping.aspx</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://signup.alerts.msn.com/alerts-PREP/submitPingExtended.doz</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://topicexchange.com/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://trackback.bakeinu.jp/bakeping.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.a2b.cc/setloc/bp.a2b</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.bitacoles.net/ping.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.blogdigger.com/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.blogoole.com/ping/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.blogoon.net/ping/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.blogpeople.net/servlet/weblogUpdates</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.blogroots.com/tb_populi.blog?id=1</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.blogshares.com/rpc.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.blogsnow.com/ping</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.blogstreet.com/xrbin/xmlrpc.cgi</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.holycowdude.com/rpc/ping/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.lasermemory.com/lsrpc/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.imblogs.net/ping/</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.mod-pubsub.org/kn_apps/blogchatter/ping.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.newsisfree.com/RPCCloud</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.newsisfree.com/xmlrpctest.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.popdex.com/addsite.php</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.snipsnap.org/RPC2</span></p><p
align="LEFT"><span
style="color: #99cc00;">http://www.weblogues.com/RPC/</span></p><p><span
style="color: #99cc00;">http://xmlrpc.blogg.de</span></p><p>If you are posting, there may be a delay occur to do next post. The reason is <strong>pinging </strong>this much of site take a lot of time. Inorder to avoid this, you should install a plugin <a
target="_blank" href="http://www.exwebjunkie.com/nopingwait2.zip" target="_blank">No Ping Wait</a>. This plugin makes the pinging in backlog and it never affect our process.</p><h2>3. SEO optimized title tag</h2><p>Title tag changes according to post title. But WordPress doesnot give a deep scan in to SEO basis title. Many plugins are available to give seperate Title, description, meta-data, keywords and a lot. Here I explain about a small modification in <em>header.php</em></p><p><em>Goto Presentation &gt; Theme Editor &gt; header.php </em></p><p>In <em>header.php</em> you may find &lt;title&gt;[code]&lt;/title&gt;</p><p>Replace the [code] in between starting and ending title tags withe the following code.</p><p
align="LEFT"><span
style="color: #339966;">&lt;?php if (is_home () ) { bloginfo('name'); } elseif ( is_category() ) { single_cat_title(); echo " - "; bloginfo('name'); }</span></p><p
align="LEFT"><span
style="color: #339966;">elseif (is_single() || is_page() ) { single_post_title(); } elseif (is_search() ) { bloginfo('name'); echo " search results: ";</span></p><p><span
style="color: #339966;">echo wp_specialchars($s); } else { wp_title('',true); } ?&gt;</span></p><h2><span
style="color: #000000;">4. Meta Tags</span></h2><p><span
style="color: #000000;">Meta tags are not included in wordpress posts in default. Search engines trace meta tags for its result, so it is important to add meta tags with each post for a good page rank. WordPress plugin called <strong><a
target="_blank" href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/" target="_blank">All in one SEO pack</a> </strong>should install to add alternate titles as well as meta tags. </span></p><h2><span
style="color: #000000;">5. Permalinks or direct links</span></h2><p><span
style="color: #000000;">Many types of URL can notice in websites with numbers, ids, page, var, date and text. Search Engines love text-based Urls for easy access. <em>http://yoursite.com/?id=12  </em> denotes the post number 12, but search engines always use keyword search. So these are rejected first even if content inside the post is good. If your Urls are in this <em>http://yoursite.com/you-post.html </em>format, Search engines' spiders grab it quickly. </span></p><p><span
style="color: #000000;"><a
href="http://techbeeps.com/wp-content/uploads/2012/01/permlinks-techbeeps-com.jpg"><img
class="aligncenter size-medium wp-image-181" title="permalinks techbeeps-com" src="http://techbeeps.com/wp-content/uploads/2012/01/permlinks-techbeeps-com-300x149.jpg" alt="SEO, search engine optimization, wordpress beginners"width="300" height="149" /></a></span></p><p><span
style="color: #000000;">To enable it <em>Goto Settings &gt; Permalinks  and </em></span><span
style="color: #000000;">Select <strong>Custom </strong>and type %postname%.html in text box.</span></p><p><strong>Now you done it.</strong></p><h2><strong>6. Google Sitemap</strong></h2><p>We are already described about the <a
target="_blank" title="Why Google Site maps are important ?" href="http://techbeeps.com/why-google-site-maps-are-important/" target="_blank">importance of google sitemaps</a> and how to make a Google sitemap. Google sitemap contain links of posts, tags, categories, pages in a hierarchy. Mostly it will be in xml-format and named as <em>sitename.com/sitemap.xml</em>. <a
href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_blank">Google Sitemap Generator for WordPress</a> plugin is available to install. It creates sitemaps when ever you want and store in .xml and .gz formats.</p><h2>7. Social bookmarking</h2><p>Big traffic is expected to come from <a
href="http://techbeeps.com/tag/socialnetworks/" target="_blank">social networks</a> like <a
href="http://techbeeps.com/tag/facebook/" target="_blank">Facebook</a>, Digg, <a
href="http://techbeeps.com/tag/twitter/" target="_blank">Twitter</a>, Stumbleupon, etc. Many plugins available for Social bookmarking such as Sharer, AddThis, etc. Install one among and make your blog Social network favourites.</p><p>&nbsp;</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/search-engine-optimization-guide-for-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to make a Privacy Policy for Website</title><link>http://techbeeps.com/how-to-make-a-privacy-policy-for-website/</link> <comments>http://techbeeps.com/how-to-make-a-privacy-policy-for-website/#comments</comments> <pubDate>Thu, 12 Jan 2012 06:25:15 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[tricks in blogging]]></category> <category><![CDATA[wordpress]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=176</guid> <description><![CDATA[How we can make a complete privacy policy in own websites is describing in the post. What is the importance of a privacy policy in a website ? Is it play major roles in SERP Ranking ? Many questions may araise while you think about to include a Privacy policy in your website or blog. Every commercial]]></description> <content:encoded><![CDATA[<p>How we can make a complete privacy policy in own websites is describing in the post. What is the importance of a privacy policy in a website ? Is it play major roles in <strong>SERP Ranking</strong> ? Many questions may araise while you think about to include a <em><strong>Privacy policy</strong></em> in your <a
title="Why Google Site maps are important ?" href="http://techbeeps.com/why-google-site-maps-are-important/">website or blog</a>. Every commercial websites ahould include their privacy policy according to the federal and state laws. You may start to think <strong> how to write a complete privacy policy </strong>for your website. Now the task is so simple ! Don&#8217;t wonder about automatic documentation of Privacy Policy. Lets do it&#8230;.<img
class="aligncenter size-medium wp-image-177" title="Privacy Policy in techbeeps-com" src="http://techbeeps.com/wp-content/uploads/2012/01/Privacy-Policy-in-techbeeps-com-300x171.jpg" alt="privacy policy for website"width="300" height="171" /></p><h2>Instructions for a better Privacy Policy</h2><p>1. What information is collecting from your visitors through sites, eg: Name, email, phone numbers, address, social security numbers, ip-hosts, etc..</p><p>2. How you are collecting information, eg: Signup newsletters, Registrations, online transactions, surveys, etc..</p><p>3. How long personal information store in log files; it may according to type of sites.</p><p>4. How you use these information, eg: personalize your visitors&#8217; experience, improve website and customer service, to process transactions, send them mail, periodic newsletters/updates, traffic analysis, etc..</p><p>5. Whether cookies are used for advertisements like Google Dart cookies.</p><p>6. Whether infomation shared with google search or other third parties, disclosure of private information with bots.</p><p>7. Contact information of site owner to include with privacy policy are genuine.</p><p>Now you may understand the outline of good Privacy Policy. Many automatic privacy policy generator tools are available in the market, some are free. Lets go for such tools to generate privacy policy.</p><h2>Privacy Policy Generator Tools</h2><ul><li><a
target="_blank" href="http://Freeprivacypolicy.com" target="_blank">Freeprivacypolicy.com</a></li><li><a
target="_blank" href="http://SerpRank.com" target="_blank">SerpRank.com</a></li><li><a
target="_blank" href="http://GeneratePrivacyPolicy.com" target="_blank">GeneratePrivacyPolicy.com</a></li></ul><p>Visit one of the privacy policy generator tools, most of them are free. These online privacy policy generator tools get information about your website using a form. Answer the questions and get privacy policy in your email. Most of the questions can answer with multiple choice.</p><p>Rather than the form details, you are able to add extra content to privacy policy. Finally review the privacy policy document you may received. Using appropriate style publish in your website.</p><p>Google adsense accept your site request only if you have a privacy policy. Some one got rejected due do lack of privacy policy in website. So better you use <a
href="http://techbeeps.com/privacy-policy/" target="_blank">privacy policy</a> and <a
title="Why Google Site maps are important ?" href="http://techbeeps.com/why-google-site-maps-are-important/" target="_blank">sitemap</a> before apply for Google adsense account. Now you may understood how to write a <b>privacy policy for website</b> in a good way in simple steps.</p><p><a
href="http://techbeeps.com/privacy-policy/" target="_blank">Visit privacy policy used in Techbeeps</a></p><p>&nbsp;</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/how-to-make-a-privacy-policy-for-website/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Tips to become a successful Guest blogger &#124; guest blogging</title><link>http://techbeeps.com/tips-to-become-a-successful-guest-blogger/</link> <comments>http://techbeeps.com/tips-to-become-a-successful-guest-blogger/#comments</comments> <pubDate>Thu, 12 Jan 2012 02:09:33 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[BLOGGER]]></category> <category><![CDATA[Blogging]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[author]]></category> <category><![CDATA[author image]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[comment image]]></category> <category><![CDATA[tricks in blogging]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=167</guid> <description><![CDATA[Every blogger may know what is a Guest Blogging. Write posts for another blog or writing articles for any other blogs, gives a good traffic to your blog. In early days all are single or personal bloggers, now the trend has changed. Single author blogs transformed into Multi author blogs. The main idea behind multi author blogging]]></description> <content:encoded><![CDATA[<p>Every blogger may know what is a<strong> Guest Blogging. </strong>Write posts for another blog or writing articles for any other blogs, gives a good traffic to your blog. In early days all are single or personal bloggers, now the trend has changed. Single author blogs transformed into Multi author blogs. The main idea behind multi author <a
href="http://techbeeps.com/tag/tricks-in-blogging/" target="_blank">blogging</a> is advatage to both blog author and guest author. This article helps you know in deep about <i>guest blogging</i> and tutorial to <strong>become a successful guest blogger.</strong></p><p><a
href="http://techbeeps.com/wp-content/uploads/2012/01/guest-blogging.jpg"><img
class="aligncenter size-medium wp-image-168" title="guest-blogging" src="http://techbeeps.com/wp-content/uploads/2012/01/guest-blogging-300x150.jpg" alt="tips for guest blogging" width="300" height="150" /></a></p><h1>What is Guest Blogging ?</h1><p>I know most of  you are aware about <u>guest blogging</u>. Those who are new to blogging may don&#8217;t know &#8220;<strong>What is Guest blogging ?</strong>&#8221; In a multi author blog, you are invited to write posts according to their <a
href="http://techbeeps.com/write-for-us/" target="_blank">guidelines</a> provided. You can be a guest blogger in a multi author blogs or invite guest authors to post in your blogs.</p><h2>Tips which will get success for you through Guest Blogging</h2><p>What are the main criterias to become a successful Guest blogger ? Lets discuss it with some tips and tricks to become a good Guest blogger.</p><h3>1. List nice Blogs to start</h3><p>First step is to make a <strong>list of good blogs</strong>, where you plan to do guest blogging. When you select a blog, make sure that it has better traffic and popuarity than your blog. Try to select same category blogs as you own.</p><h3>2. Create a complete Author Profile</h3><p>Author profile must be attarctive and amazing to get more visitors to your site. Your profile will be published with your guset posts. If a reader look in to your profile it should be attractive and make them to visit your site is your success. Better you include your area of knowledge, experience and blogs you own in profile with links is a complete and meaningful profile about a guest blogger. <strong><a
title="Add authors image to wordpress blog" href="http://techbeeps.com/add-authors-image-to-wordpress-blog/" target="_blank">Author image</a></strong> is also a postive approach in profile.</p><h3>3. Write quality posts</h3><p>Way of approching a subject is important in blogging, especially a technical blogs. <strong>Quality of the post</strong> is much influencing the readers mind to continue reading your blog also. Your knowledge about the topic and your writing skills gives a quality post. When you work as a guest blogger in a big blog, quality of posts are important to approve by that blog admin.</p><h3>4. Importance of Images in posts</h3><p>An image can say 100words about the topic. If you are including relevant images in guest posts, it become more attractive and easily understandable to readers. Another use of image in post is Admin will approve your post easily. So use related images in posts. Make sure that images are in normal size to optimize site loading time.</p><h3>5. Follow hierarchy in posts</h3><p>When you do a guest post, write in point by point method than using conventional paragraphs. Users welcome such approaches in post due to easy readable. You can use <strong>numbering or bulleting</strong> to follow hierarchy. Menus, submenus, statements, points are come in a regular hierarchy.</p><h3>6. Reply to Comments regularly</h3><p>Guest bloggers are not only to write post in multi author blogs, they are also responsible for Questions raised by readers in their respective posts. Comments are more important to lead a blog very successful way. If you are giving reply to comments, it become a good space for discussing. So this comments can use to improve the content of the blog post.</p><p>&nbsp;</p><h3>More tips related to become a successful Guest blogger include soon. <em><strong>Guest blogging</strong></em> is always good for a blogs development.</h3><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/tips-to-become-a-successful-guest-blogger/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Add authors image to wordpress blog &#124; author image wordpress blog gavatar</title><link>http://techbeeps.com/add-authors-image-to-wordpress-blog/</link> <comments>http://techbeeps.com/add-authors-image-to-wordpress-blog/#comments</comments> <pubDate>Tue, 10 Jan 2012 10:27:58 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[about author plugin]]></category> <category><![CDATA[author]]></category> <category><![CDATA[author image]]></category> <category><![CDATA[avatar]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[comment image]]></category> <category><![CDATA[gavatar]]></category> <category><![CDATA[image]]></category> <category><![CDATA[internet]]></category> <category><![CDATA[tricks in blogging]]></category> <category><![CDATA[wordpress]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=138</guid> <description><![CDATA[How to add avatar [image of author] in wordpress blogs ? Are you a wordpress blogger ?  What is an avatar ? Avatar is an image of blogger which is posted in blog while you create a new article or comment below an article or using &#8220;About author&#8221; plugin in WordPress blogs. By default it]]></description> <content:encoded><![CDATA[<h1>How to add avatar [image of author] in wordpress blogs ?</h1><p
style="text-align: center;"><a
href="http://techbeeps.com/wp-content/uploads/2012/01/Avatar-in-wordpress-blog.jpg" target="_blank"><img
class="aligncenter size-medium wp-image-139" title="Avatar in wordpress blog" src="http://techbeeps.com/wp-content/uploads/2012/01/Avatar-in-wordpress-blog-300x148.jpg" alt="author image wordpress blog gavatar"width="300" height="148" /></a>Are you a wordpress blogger ?  What is an avatar ?</p><p>Avatar is an image of blogger which is posted in blog while you create a new article or comment below an article or using &#8220;<em>About author</em>&#8221; plugin in WordPress blogs. By default it will be a outlined picture of unknown person or human being.</p><p>How long you blog with unknown Avatar image in posts, comments, etc. This tutorial helps you to add your own photo with wordpress blog.  Before adding authors&#8217;s image understand about &#8220;WP About Author&#8221; Plugin. This tutorial make you use of a public account we can use author&#8217;s avatar/image in any number of blogs with email as identity.</p><p>&nbsp;</p><p><em><code>You may see this script  in the plugin when open in editor.</code></em></p><p><code> &lt;?php echo get_avatar( $author_email, $size, $default, $alt ); ?&gt; </code></p><p><code>or</code></p><p><code>get_avatar( $author_email, $size);</code></p><p>The Parameters in <strong>get_avatar </strong>are<strong> author_email </strong>and<strong> size.</strong></p><p>This line fetches author&#8217;s image from another site called<strong> <a
target="_blank" href="http://Gravatar.com" target="_blank">Gravatar</a>. </strong></p><h1><span
style="text-decoration: underline;"><strong>Gravatar</strong></span></h1><p><strong>Gravatar  is an image that follows you from site to site appearing beside your name when you do things like comment or post on a blog. Avatars help identify your posts on blogs and web forums.</strong></p><p><strong><a
href="http://techbeeps.com/wp-content/uploads/2012/01/Gravatar-authors-image.jpg"><img
class="aligncenter size-medium wp-image-140" title="Gravatar authors image" src="http://techbeeps.com/wp-content/uploads/2012/01/Gravatar-authors-image-300x158.jpg" alt="author image wordpress blog gavatar"width="300" height="158" /></a></strong></p><p><strong>How to create our own Avatar for WordPress blogs.</strong></p><p><strong>Step 1: Goto <a
target="_blank" href="http://gravatar.com" target="_blank">Gravatar.com</a></strong></p><p><strong>Step 2: Click over &#8220;Get your Gravatar Today&#8221;.</strong></p><p><strong>Step 3: Signup using email address.</strong></p><p><strong>Step 4: Activate account by clicking the link send to your email.</strong></p><p><strong>Step 5: Then &#8220;Add a new Image&#8221;, and crop as you want in square shape. </strong></p><p><strong>Step 6: Now the Avatar is ready in Gravatar. </strong></p><p><strong>Step 7: You can add any number of emails to account and any number of images associated with it. </strong></p><p><strong>Step 8: WordPress blog fetches the image by matching the email used to login and shown it in the place of Author description.</strong></p><p><strong>Step 9: Wait for 5-10minutes to appear your image in wordpress blog Author image part.</strong></p><h3>You can test the gravatar image by clickng &#8220;check this gravatar&#8221;. It shows many options and a Hash key with image url to use it again. Author can also deney the permission to show his image in blogs. Now you may understood how to add image of author in worpress blogs.</h3><p>&nbsp;</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/add-authors-image-to-wordpress-blog/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to post photo and video in Twitter</title><link>http://techbeeps.com/how-to-post-photo-and-video-in-twitter/</link> <comments>http://techbeeps.com/how-to-post-photo-and-video-in-twitter/#comments</comments> <pubDate>Tue, 10 Jan 2012 09:17:24 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Twitter]]></category> <category><![CDATA[image]]></category> <category><![CDATA[photo]]></category> <category><![CDATA[tweets]]></category> <category><![CDATA[upload]]></category> <category><![CDATA[video]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=132</guid> <description><![CDATA[We are familiar with tweets but not familiar with photos and videos in tweets. Everyone post video or image/photo to twitter as shortened links. Now it is possible to upload video or image/photo in twitter as our tweets. Its awesome to twitter users to upload your own creative photos in twitter. But you are not]]></description> <content:encoded><![CDATA[<p>We are familiar with tweets but not familiar with photos and videos in tweets. Everyone post video or image/photo to twitter as shortened links. Now it is possible to upload video or image/photo in twitter as our tweets. Its awesome to twitter users to upload your own creative photos in twitter. But you are not possible to create albums as in Facebook or Orkut. The main reason for this restriction is <a
title="Twitter Error Logs, Something is technically wrong with my twitter !" href="http://techbeeps.com/2011/06/something-is-technically-wrong-with-my-twitter/" target="_blank">twitter server errors</a>. Lets start to upload a photo in to twitter, its quite simple.</p><p><strong>Step 1: Go to <a
target="_blank" href="http://twitpic.com" target="_blank">twitpic.com</a></strong></p><p>[ <strong>twitter</strong> doesnot allow image/video upload directly. It is enabled by <strong>TwitPic.com</strong> ]</p><p><strong>Step 2: Click over &#8220;Login or Create an Account&#8221;</strong></p><p><strong>Step 3: Login using Twitter username and password.</strong></p><p
style="text-align: center;"><a
href="http://techbeeps.com/wp-content/uploads/2012/01/twitpic-image-upload-in-twitter.jpg"><img
class="aligncenter size-medium wp-image-133" title="twitpic image upload in twitter" src="http://techbeeps.com/wp-content/uploads/2012/01/twitpic-image-upload-in-twitter-300x208.jpg" alt="twitpic image upload" width="300" height="208" /></a></p><p>After successful login you redirect to twitpic Account.</p><p>Account is shown here, with Public timeline and settings.</p><p><a
href="http://techbeeps.com/wp-content/uploads/2012/01/twitpic-account.jpg"><img
class="aligncenter  wp-image-134" title="twitpic account" src="http://techbeeps.com/wp-content/uploads/2012/01/twitpic-account-300x188.jpg" alt="twitpic account" width="428" height="197" /></a></p><p><strong>Step 4: To upload a photo click over &#8220;Upload or Video&#8221; button.</strong></p><p><a
href="http://techbeeps.com/wp-content/uploads/2012/01/twitpic-photo-upload.jpg"><img
class="aligncenter  wp-image-135" title="twitpic photo upload" src="http://techbeeps.com/wp-content/uploads/2012/01/twitpic-photo-upload-300x212.jpg" alt="" width="401" height="212" /></a></p><p>simple uploader is also available to upload photo.</p><p><strong>Step 5: Select a photo from your computer and give description to it in &#8220;Add a message&#8221; box.</strong></p><p><strong>Step 6: Then click &#8220;Upload: button.</strong></p><p><strong>Features of Twitpic</strong></p><p><strong>1. Upload photo from mobile by sending an Email to <a
target="_blank" href="mailto:twitter_username.secret_code@twitpic.com">twitter_username.secret_code@twitpic.com</a></strong></p><p><strong>2. Share photos in facebook and other social networks.</strong></p><p><strong>3. Tag faces and create events in photos.</strong></p><p><strong>4. Places where photo taken is marked.</strong></p><p><strong>5. RSS feeds are available for our photo stream.</strong></p><p><strong>6. Comments are enabled.</strong></p><p><strong>7. Twitpic profile widget are also available to place in websites.</strong></p><p><strong>8. Twitpic application for iPhone and Blackberry can download here.</strong></p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/how-to-post-photo-and-video-in-twitter/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Facebook Chatting with multiple friends or Add friends to your chat</title><link>http://techbeeps.com/facebook-chatting-with-multiple-friends-or-add-friends-to-your-chat/</link> <comments>http://techbeeps.com/facebook-chatting-with-multiple-friends-or-add-friends-to-your-chat/#comments</comments> <pubDate>Tue, 16 Aug 2011 03:56:49 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Chat]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[chat]]></category> <category><![CDATA[groups]]></category> <category><![CDATA[multiple chat]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=113</guid> <description><![CDATA[Chatting with multiple friends in Facebook [Group Chat] How do I chat with more than one friend at once ? If you’re chatting with a friend and want to add more friends to the conversation: When you&#8217;re chatting with a friend, click at the top right corner of your chat window. Select Add Friends to]]></description> <content:encoded><![CDATA[<h3><strong>Chatting with multiple friends in Facebook [Group Chat]</strong></h3><div><div><strong>How do I chat with more than one friend at once ?</strong></div></div><div><div>If you’re chatting with a friend and want to add more friends to the conversation:</div><ol><li>When you&#8217;re chatting with a friend, click <img
src="http://dragon.ak.fbcdn.net/cfs-ak-ash4/84984/800/178565852203737_476637639_png" alt="" /> at the top right corner of your chat window.</li><li>Select <strong>Add Friends to Chat&#8230;</strong> from the dropdown menu.</li><li>Enter the names of the friends you want to add, then click Done.</li></ol><div><div><strong>What happens when I add more friends to a chat ? What do they see when they join ?</strong></div></div><div><div>When you’re chatting with one friend and you add more friends to the conversation, a new chat window opens for the group. Friends who are added can’t see the private conversation that you and your friend were having before you created the group chat.Once you’ve already set up a group chat and you add more friends, the chat continues in the same window. Friends that are new to the chat can see the full history of the group conversation. This allows them to go back and see what the group is talking about.</div><div><div><div><strong>How do I leave a chat with multiple friends ?</strong></div></div><div><div>To stop receiving messages in a chat with multiple friends, open the actions menu in the top right corner of the chat window and select Leave Conversation.<br
/> <img
src="http://dragon.ak.fbcdn.net/cfs-ak-ash4/84981/109/213893238652556_2112767202_png" alt="" /></div><div><div><div><strong>Can I chat with the same group of friends more than once ?</strong></div></div><div><div>To start a new chat with the same group of friends, go to the original conversation in Facebook Messages and select Open in Chat from the actions menu.</div><div><div
id="attachment_114" class="wp-caption aligncenter" style="width: 310px"><a
href="http://techbeeps.com/wp-content/uploads/2011/08/facebook-art-marketing-webinar1.jpg"><img
class="size-medium wp-image-114" title="facebook-art-marketing-webinar1" src="http://techbeeps.com/wp-content/uploads/2011/08/facebook-art-marketing-webinar1-300x220.jpg" alt="group chat" width="300" height="220" /></a><p
class="wp-caption-text">facebook chat</p></div></div><h1><strong>Chatting with a group</strong></h1><p>&nbsp;</p><p><strong>How do I chat with a group ?</strong></p><div><div>To chat with members of a group, go to the group and select &#8220;Chat with Group&#8221; on the upper right side of the page.</div><div><strong>How do I leave a group chat ?</strong></p><div><div>To leave a group chat, simply go offline. You can also minimize a Chat window by clicking the blue bar at the top so it remains available at the bottom of the page.</div><div><strong>How do I know which members of a group are online to chat ?</strong></p><div><div>When you click &#8220;Chat with Group,&#8221; you’ll see photos of other group members that are online at the top of the chat window. In the bottom right corner of each picture, a green box will indicate a member who is online and a gray box will indicate anyone who is currently idle. People are considered idle when they have not taken any action on the site in the last 10 minutes.</div><div><strong>Can I chat with members of my group if they are not my confirmed friends ?</strong></p><div><div>All members of a group can interact in a group chat, regardless of whether they are confirmed friends. However, only confirmed friends can contact each other individually in chat.</div><div><strong>What do I do if someone is attacking me in a group chat ?</strong></p><div><div>If you feel uncomfortable in a group chat, you can go offline at any time. If necessary, you can report and/or block the attacker&#8217;s profile.</div><div><a
target="_blank" title="Facebook help" href="http://www.facebook.com/help/?page=193341410712774" target="_blank">[facebook help]</a></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/facebook-chatting-with-multiple-friends-or-add-friends-to-your-chat/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How to Enable Facebook video chat</title><link>http://techbeeps.com/how-to-enable-facebook-video-chat/</link> <comments>http://techbeeps.com/how-to-enable-facebook-video-chat/#comments</comments> <pubDate>Sun, 10 Jul 2011 02:02:14 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Chat]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[multiple chat]]></category> <category><![CDATA[socialnetworks]]></category> <category><![CDATA[video chat]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=94</guid> <description><![CDATA[Facebook video chat is introduced with Skype support, it is already discussed in previous post. Now this post describes how to use the facebook video chat step by step. Video chat in facebook increase the popularityof facebookamong social network. Google+ feature  Hangout allows a group 25 persons can video chat at a time. Please visit the]]></description> <content:encoded><![CDATA[<p><b>Facebook video chat</b> is introduced with Skype support, it is already discussed in <a
title="Facebook Video Chat using Skype Started against Google+" href="http://techbeeps.com/2011/07/facebook-video-chat-using-skype-started-against-google/">previous post.</a> Now this post describes how to use the <u>facebook video chat</u> step by step. Video chat in facebook increase the popularityof facebookamong social network. Google+ feature  <strong><a
title="Facebook Video Chat Vs Google Video Chat" href="http://techbeeps.com/facebook-video-chat-vs-google-video-chat/">Hangout</a></strong> allows a group 25 persons can video chat at a time.</p><p>Please visit the Google plus and facebook chat features <a
title="Facebook Video Chat Vs Google Video Chat" href="http://techbeeps.com/facebook-video-chat-vs-google-video-chat/">here</a>.</p><p><strong>Note: </strong><em>Facebook video chat may not supported by some of the browsers. So upgrade your browser to latest one. And enjoy Facebook video chats.</em></p><h1 style="text-align: center;"><strong> Steps to make a video chat with Facebook</strong></h1><ul><li>Log in to your Facebook account</li><li>Visit the page <a
target="_blank" title="Start with Facebook video chat" href="https://www.facebook.com/videocalling" target="_blank">https://www.facebook.com/videocalling</a>.</li><li>Click on the <strong>Get Started</strong> button.<a
href="http://techbeeps.com/wp-content/uploads/2011/07/Facebook_video_chat.png"><img
class="aligncenter size-medium wp-image-95" title="Facebook_video_chat" src="http://techbeeps.com/wp-content/uploads/2011/07/Facebook_video_chat-300x101.png" alt="Facebook video chat" width="300" height="101" /></a></li></ul><ul><li>Clicking over <strong>Get Started</strong> button; will pop up the chat box and ask you to select a friend to make video call.</li><li>Select any friend who is online and click on the <strong>video chat</strong> button.<a
href="http://techbeeps.com/wp-content/uploads/2011/07/0CAL5SZZQCAMQV38ECA00ZPLNCA78WQ0RCAF9WKUBCA88114WCATD2XBCCADYBVDBCAURAC5BCAG2NMMICAERQ9HECAFZ1UZCCA51X9J8CAN4WTW6CA6327WDCA5Y6XU6CA26LV7GCAU7I8KHCAL7N7DH.jpg"><img
class="aligncenter size-medium wp-image-97" title="facebook video call setup" src="http://techbeeps.com/wp-content/uploads/2011/07/0CAL5SZZQCAMQV38ECA00ZPLNCA78WQ0RCAF9WKUBCA88114WCATD2XBCCADYBVDBCAURAC5BCAG2NMMICAERQ9HECAFZ1UZCCA51X9J8CAN4WTW6CA6327WDCA5Y6XU6CA26LV7GCAU7I8KHCAL7N7DH-300x134.jpg" alt="facebook video call setup" width="300" height="134" /></a></li></ul><p>&nbsp;</p><ul><li>A pop up will be appeared and will ask you to Set up video call click on the <strong>Set Up button</strong>.</li><li>It will open a FacebookVideoCallSetup_v1.2.199.0.exe.Just click on the <strong>Save file Button</strong>.</li><li>It has a size of 482KB.Once download completed double click on it and <strong>Run</strong>.</li><li>It will install the plug in for your Facebook video chat.<a
href="http://techbeeps.com/wp-content/uploads/2011/07/facebook-video-call-2.png"><img
class="aligncenter size-medium wp-image-98" title="facebook-video-call-2" src="http://techbeeps.com/wp-content/uploads/2011/07/facebook-video-call-2-298x300.png" alt="facebook video chat"width="298" height="300" /></a></li></ul><p>&nbsp;</p><ul><li>Up on completing the installation you can make video call on Facebook.</li></ul><p>Some times Facebook video chat plugin never work. Insuch situations better you unistall the facebook video chat plugin from Installed applications [Settings &gt; Control panel &gt; Installed Applications]. Now I use Googlw plus for video chat or Skype for video chat. Don&#8217;t think that Facebook video chat is not good. Because in Primary step facebook video plugin showin an error in my browser. &#8220;Server encountered error, please try after some time&#8221; &#8211; It may be due to overload or facebook engineers are not well experienced as Google Engineers in traffic handling.</p><p>Anyway try your best and enjoy with Facebook Video chat.</p><p>&nbsp;</p><p>&nbsp;</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/how-to-enable-facebook-video-chat/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>How To Move Your Facebook Photos To Picasa in an easy step</title><link>http://techbeeps.com/how-to-move-your-facebook-photos-to-picasa-in-an-easy-step/</link> <comments>http://techbeeps.com/how-to-move-your-facebook-photos-to-picasa-in-an-easy-step/#comments</comments> <pubDate>Thu, 07 Jul 2011 03:38:57 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Facebook]]></category> <category><![CDATA[Picasa]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[image]]></category> <category><![CDATA[photo]]></category> <category><![CDATA[socialnetworks]]></category> <category><![CDATA[upload]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=90</guid> <description><![CDATA[We know the number of photos uploading to facebook in a second is beyond our expectations. In orkut and other google services, all photos are linked with picasa. Most leading another photo sharing is from yahoo based flicker. Now we can transfer our facebook photos to picasa. How it is possible ? Many ways are]]></description> <content:encoded><![CDATA[<p>We know the number of photos uploading to facebook in a second is beyond our expectations. In orkut and other google services, all photos are linked with<strong> picasa</strong>. Most leading another photo sharing is from yahoo based <strong>flicker.</strong></p><p>Now we can transfer our facebook photos to picasa. How it is possible ? Many ways are possible. Here am saying only about a website that providing a link between our picasa and facebook accounts. The main advantage is we can share our photos between orkut, blogger, facebook and a lot &#8230;. and recently with <a
title="Google Plus – alternative for Facebook Trend" href="http://techbeeps.com/google-plus-alternative-for-facebook-trend/" target="_blank">google+</a> !!!</p><p>The aptly named <a
target="_blank" href="http://move2picasa.com/"><strong><span
style="color: #009f00;">Move2Picasa.com</span></strong></a> website lets you connect to your Facebook account, after which all your Facebook photos and albums will automatically be migrated over to Google’s Picasa service. Note: sans captions, comments and whatnot.</p><p>It admittedly took a couple of hours for me to get my Facebook photos transferred, but for people who don’t mind the wait and would like to move only their photos to Picasa / Google Photos, this is a more than adequate solution.</p><p>Evidently, the more photos you (and others) migrate, the longer the wait. Another caveat: it’s all or nothing – you can’t transfer specific photos or albums at this point.</p><p><a
href="http://techbeeps.com/wp-content/uploads/2011/07/picasa-logo.gif"><img
class="aligncenter size-medium wp-image-91" title="picasa-logo" src="http://techbeeps.com/wp-content/uploads/2011/07/picasa-logo-300x118.gif" alt="" width="300" height="118" /></a></p><p>Needless to say, once your photos are in Picasa, sharing them with Circles (or the world) on Google’s brand new social networking service, <strong><span
style="color: #009f00;">Google+</span></strong>, can be done in a snap.</p><p>The web app was conceived by AmiWorks’ <strong><span
style="color: #009f00;">Aman Kumar Jain</span></strong> and <strong><span
style="color: #009f00;">Amogh</span></strong>. According to the website, roughly 300,000 photos have already been transferred to date.  We ensure that the reuse of the facebook images in picasso become popular, because google fetches the google product-picasso images into google search. Any way the full credit for this photo transfer is to the web application developers of AmiWorks. Enjoy the new trick in internet and transfer or share what ever the photos you want to transfer.</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/how-to-move-your-facebook-photos-to-picasa-in-an-easy-step/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Facebook Video Chat Vs Google Video Chat</title><link>http://techbeeps.com/facebook-video-chat-vs-google-video-chat/</link> <comments>http://techbeeps.com/facebook-video-chat-vs-google-video-chat/#comments</comments> <pubDate>Thu, 07 Jul 2011 03:02:07 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Facebook]]></category> <category><![CDATA[Google+]]></category> <category><![CDATA[Google]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=85</guid> <description><![CDATA[I last post we seen that Facebook-skype video chat. Would group video chat be part of Facebook Chat, and if so would it be free ? No, Facekook-skype video chat doesn&#8217;t has a group video chat for free. Premium account holder can initiate group video chat for $4.49/month. So not a lot of group video chat]]></description> <content:encoded><![CDATA[<p>I last post we seen that <a
title="Facebook Video Chat using Skype Started against Google+" href="http://techbeeps.com/2011/07/facebook-video-chat-using-skype-started-against-google/">Facebook-skype </a>video chat. Would group video chat be part of Facebook Chat, and if so would it be free ?</p><p><em><strong>No</strong></em>, Facekook-skype video chat doesn&#8217;t has a group video chat for free. Premium account holder can initiate group video chat for $4.49/month. So not a lot of group video chat happens on Skype.</p><p><strong>Google video chat advantages:</strong></p><ul><li>All about group chat, and it’s free</li><li>Up to ten people can use it at once</li><li>Figuring out which person is talking and focusing the video stream on them until someone else takes over</li><li>Hold a dead simple video team call</li><li> Google Hangouts isn’t as good for one on one conversations</li></ul><p>If you want to have a one on one video chat, and your friend list is hosted at Facebook, the new Facebook video chat is a near perfect product. You can initiate a call right from the home page, or that person’s profile page. And there’s no need to register for Skype, or download the Skype client.</p><p>Both products require their own download, though. And neither work on mobile yet.</p><p>So for now, there’s really no comparison between the products. Facebook video chat is great to talk to friends one at a time. Google Hangouts is great for group chat. There’s no real overlap between the products at all.</p><p><a
href="http://techbeeps.com/wp-content/uploads/2011/07/Facebook-vs-Google-cheat-stories-1.jpg"><img
class="aligncenter size-medium wp-image-86" title="Facebook-vs-Google-cheat-stories-1" src="http://techbeeps.com/wp-content/uploads/2011/07/Facebook-vs-Google-cheat-stories-1-300x222.jpg" alt="" width="300" height="222" /></a></p><p>But…I wouldn’t be surprised to see Facebook launch group video chat down the road. Until now Skype has kept up fees for premium/business users, and we’ve heard that it was always a key “future revenue” product that they pointed to during their IPO and buyout process. But few users seem to be willing to go premium, and their new owners may just remove that pay barrier sooner rather than later. When that happens I’d expect Facebook to launch that feature as well shortly afterward.</p><p>&nbsp;</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/facebook-video-chat-vs-google-video-chat/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Facebook CEO &#8211; Mark Zuckerberg, The Most Followed User On Google+</title><link>http://techbeeps.com/facebook-ceo-mark-zuckerberg-the-most-followed-user-on-google/</link> <comments>http://techbeeps.com/facebook-ceo-mark-zuckerberg-the-most-followed-user-on-google/#comments</comments> <pubDate>Thu, 07 Jul 2011 02:00:56 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Facebook]]></category> <category><![CDATA[Google+]]></category> <category><![CDATA[follower]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[internet]]></category> <category><![CDATA[Mark Zukerberg]]></category> <category><![CDATA[socialnetworks]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=82</guid> <description><![CDATA[Facebook CEO Mark Zuckerberg is the most followed user on Google+, according to the Google+ Statisticscounter. The Facebook CEO has 21,213 followers, compared to the Google CEO at 14,798, Google social czar Vic Gundotra at 13,783, Google co-founder Sergey Brin at 11,629, blogger Robert Scoble at 11,389, Google spam avenger Matt Cutts at 9,153, TWIT founder]]></description> <content:encoded><![CDATA[<p>Facebook CEO Mark Zuckerberg is the most followed user on <a
target="_blank" title="Google Plus – alternative for Facebook Trend" href="http://techbeeps.com/google-plus-alternative-for-facebook-trend/">Google+, </a>according to the <a
href="http://socialstatistics.com/">Google+ Statistics</a>counter.</p><p>The <a
title="Common Facebook Errors" href="http://techbeeps.com/common-facebook-errors/" target="_blank">Facebook</a> CEO has 21,213 followers, compared to the Google CEO at 14,798, Google social czar Vic Gundotra at 13,783, Google co-founder Sergey Brin at 11,629, blogger Robert Scoble at 11,389, Google spam avenger Matt Cutts at 9,153, TWIT founder Leo Laporte at 7,566, Google’s Bradley Horowitz at 7,187, TechCrunch’s MG Siegler at 6,579 and blogger Gina Trapani at 5,649.</p><h1>How Google tolerate it ?</h1><p>Google+ Statistics creator Boris Veldhuijzen van Zanten explains the CEO’s unlikely popularity thus, “He has the most friends in the world, they made a movie[social network] about him, and he is more handsome than the Larry and Sergey.” I think the answer goes more like this; The more media coverage someone receives related to Google+, the more followers they get, hence MG Siegler at #9.</p><p><a
href="http://techbeeps.com/wp-content/uploads/2011/07/screen-shot-2011-07-04-at-2-59-03-pm.png"><img
class="aligncenter size-medium wp-image-83" title="google+ stats" src="http://techbeeps.com/wp-content/uploads/2011/07/screen-shot-2011-07-04-at-2-59-03-pm-300x180.png" alt="" width="300" height="180" /></a></p><p>Facebook is developing in any sense. But Google plus is laging its growth, Google is marking a steady growth. Google plus show the statistics of marketing also. Most of the users are from Blog or website owners. Because by a single click the link reach everywhere even in google search also. So it is the better idea to use google plus.</p><p>Facebook CEO also make using Google plus a single channel to talk about new features and plans of Facebook social network. For funny mind, he may showing his products to google engineers just to say don&#8217;t copy as it is. Facebook CEO is popular than Google brothers, I don&#8217;t know how it happen. May be he is always with his users in touch. He is always coming to socialnetworks and talking to public over the business plans. It is a good news to Facebook that CEO has more number of followers in google plus. If twitter also getting Mark Zukerberg, imagine the popularity of Facebook and its CEO in users&#8217; mind.</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/facebook-ceo-mark-zuckerberg-the-most-followed-user-on-google/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Why Google Site maps are important ?</title><link>http://techbeeps.com/why-google-site-maps-are-important/</link> <comments>http://techbeeps.com/why-google-site-maps-are-important/#comments</comments> <pubDate>Wed, 06 Jul 2011 08:57:49 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[blogging]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[internet]]></category> <category><![CDATA[tricks in blogging]]></category> <category><![CDATA[wordpress]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=77</guid> <description><![CDATA[During the designing step of a website, we need to care on of how your pages are interlinked. This is very important for SEO performance. The more pages you accumulate on your blog or website, the more pages that will eventually get buried on Google. To correct this you should create a sitemap so that]]></description> <content:encoded><![CDATA[<p
style="text-align: justify;">During the designing step of a website, we need to care on of how your pages are interlinked. This is very important for SEO performance. The more pages you accumulate on your blog or website, the more pages that will eventually get buried on Google. To correct this you should create a sitemap so that you can create links to every page on your site.</p><p
style="text-align: justify;"><strong>Google Sitemaps</strong> is one of the biggest inventions made by the Google. Recently, Yahoo has also taken interest in it and even the “Yahoo SHLURP” bot is requesting the sitemaps.xml file. The sitemaps is a map of your well-structured website which contains each individual url and its priority for the website.</p><p
style="text-align: justify;">Even if you use <em><strong>WordPress</strong></em> you should not assume that the archives will automatically contain links to all your pages because they don’t. An <em><strong>XML sitemap</strong></em> is a separate page within your site and is linked to as “sitemap.” It provides links for all of your pages. But it is no ordinary list either. An XML sitemap gives data on the URLs, such as when the page was last updated, how often it changes, how important the page is compared to other pages on the site, etc. This helps the search engine crawl and index your page more effectively. If you enjoy the geeky technical details, you can read more about the technical specifications of sitemaps at: <a
target="_blank" href="http://www.sitemaps.org/protocol.php">http://www.sitemaps.org/protocol.php</a></p><p
style="text-align: justify;"><strong><em>Google</em></strong> highly recommends  to add a XML sitemap. If Google likes it then that will mean they will be friendly toward sites with sitemaps.</p><p
style="text-align: justify;"><em><strong>Here’s what Google says on its site:</strong></em></p><p
style="text-align: justify;"><em>“Make a site with a clear hierarchy and text links. Every page should be reachable from at least one static   text link. Offer a site map to your users with links that point to the important parts of your site.”</em></p><p
style="text-align: justify;"><em><strong>Google, Yahoo</strong></em> and <strong><em>Microsoft</em></strong> have all agreed on a single sitemap standard. This means that web designers only have to make one kind of sitemap to serve traffic from all the search engines. This is obviously a good thing from a SEO perspective.</p><p
style="text-align: justify;">Fortunately, there are many free sitemap generators available and, of course, WordPress plugins. The one I use and recommend is “<em><strong>Google Sitemap Generator</strong></em>“. As you’ll see, the XML sitemap does more than just provide links to your pages. Some of its features include: support for multi-level categories and pages, category/page exclusion, multiple-page generation with navigation, permalink support, choose what to display, what order to list items in, show comment counts and/or post dates, and more.</p><p
style="text-align: justify;">Websites that do not use WordPress should also have an XML sitemap. Fortunately, the creation process for them can be automated too using a services like XML-Sitemaps.com</p><p
style="text-align: justify;"><strong><em>Quick Tip:</em></strong> After you add your sitemap you can let the search engines know about it by pinging it with Ping-o-Matic. This will speed up the process of the spiders crawling your website.</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/why-google-site-maps-are-important/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Google Plus &#8211; alternative for Facebook Trend</title><link>http://techbeeps.com/google-plus-alternative-for-facebook-trend/</link> <comments>http://techbeeps.com/google-plus-alternative-for-facebook-trend/#comments</comments> <pubDate>Wed, 06 Jul 2011 08:07:51 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Facebook]]></category> <category><![CDATA[Google+]]></category> <category><![CDATA[follower]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Mark Zukerberg]]></category> <category><![CDATA[socialnetworks]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=67</guid> <description><![CDATA[Now you may start to get invitation from Google plus from your friends associated with that email. Like any other social network Google plus is also meant for sharing. When Google under taken Orkut, it was not a complete product of Google. But Google plus is fully developed by google engineers in an year. Same]]></description> <content:encoded><![CDATA[<p>Now you may start to get invitation from Google plus from your friends associated with that email. Like any other social network Google plus is also meant for sharing. When Google under taken Orkut, it was not a complete product of Google. But Google plus is fully developed by google engineers in an year. Same as Facebook &#8220;<strong>Like</strong>&#8221; button, Google plus is also having such option of   <strong>&#8220;+1&#8243;. </strong>Even in Google search this &#8220;+1&#8243; option is avialable.</p><p>Yesterday I notice that a mysterious black bar appearing on the top of Google.com. Or you may have even seen it yourself. No, you weren’t hallucinating. It was a sign of something about to show itself. Something big. Google+.</p><h1><span
style="text-decoration: underline;"><strong>What is Google+ ?</strong></span></h1><p>It’s the super top-secret social project that Google has been working on for the past year. You know, the one being led by General Patton (Vic Gundotra) and General MacArthur (Bradley Horowitz). Yes, the one Google has tried to downplay as much as humanly possible — even as we got leak after leak after leak of what they were working on. Yes, the one they weren’t going to make a big deal about with pomp and circumstance.</p><p>The most important differnce of Google plus from Facebook is security and specific sharing. Facebook updates are shared with all friends. But Googl Plus can share with a group of friends or some selected friends. Lets wait for the acceptance of Google plus from existing users of google.</p><h2><span
style="text-decoration: underline;"><strong>How’s that for downplaying it ?</strong></span></h2><p>Gundotra says, “We believe online sharing is broken. And even awkward”. “We think connecting with other people is a basic human need. We do it all the time in real life, but our online tools are rigid. They force us into buckets — or into being completely public,” he continues. “Real life sharing is nuanced and rich. It has been hard to get that into software,” is the last thing he says before diving into a demo of Google+.</p><p><em><strong><a
href="http://techbeeps.com/wp-content/uploads/2011/07/Google+.png"><img
class="aligncenter size-medium wp-image-69" title="Google+" src="http://techbeeps.com/wp-content/uploads/2011/07/Google+-300x198.png" alt="" width="300" height="198" /></a></strong></em></p><p><em><strong>Every user asks a question:</strong> What happen to Orkut ?   Orkut is available there in new version. Orkut also implemented &#8220;Like&#8221; and &#8220;Comment&#8221; option.</em></p><p>The first thing Gundotra shows me about Google+, and the first thing you’re likely to interact with, is something called “Circles”. You may recall that talk of this feature leaked out a few months ago — though it wasn’t exactly right. In fact, our story from months prior about a feature of Google +1 (the name of the network at the time which ended up being the name of the button — more on that in a bit) called “Loops” may have been a bit closer. That is, Circles isn’t actually a stand-alone product, it’s a feature of Google+ — an important one. He added, “It’s something core to our product”</p><h2><span
style="text-decoration: underline;"><strong> Google+ Features:</strong></span></h2><p>It’s through Circles that users select and organize contacts into groups for optimal sharing. I know, I know — not more group management. But the truth is that Google has made the process as pleasant as possible. You simply select people from a list of recommended contacts (populated from your Gmail and/or Google Contacts) and drag them into Circles you designate. The UI for all of this is simple and intuitive — it’s so good, that you might even say it’s kind of fun. It beats the pants off of the method for creating a group within Facebook.</p><p>&nbsp;</p><p>Gundotra realizes that many social services have tried and failed to get users to create groups. But he believes they’ll succeed with Circles because he says they’re using software in the correct way to mimic the real world. More importantly, “you’re rewarded for doing this,” he says. How so? A big feature of Google+ is the toolbar that exists across the top of all Google sites (yes, the aforementioned black one). Once your Circles are set, sharing with any of them from any Google site is simple thanks to this toolbar.</p><p>Speaking of this black toolbar, which was codenamed the “Sandbar” as Google was working on it, Horowitz explains that it arose from the fact that sharing models on different sites are all different. The toolbar is an attempt to unify them. This toolbar will exist across all Google properties (though it may take some time to fully roll out). And down the road, you can imagine browser extensions, mobile versions, etc. But again, we’re on step one here.</p><p><a
href="http://techbeeps.com/wp-content/uploads/2011/07/c3.jpg"><img
class="aligncenter size-medium wp-image-73" title="google+circle" src="http://techbeeps.com/wp-content/uploads/2011/07/c3-300x224.jpg" alt="" width="300" height="224" /></a></p><p>Next, Gundotra showed off a feature called “Sparks”. He was quick to note that even though it’s a search box, this is not some sort of new search engine. Instead, he calls is a “sharing engine”. “Great content leads to great conversations,” he says. With Sparks, you enter an interest you have and Google goes out and finds elements on the web that they think you’ll care about. These can be links to blog posts, videos, books — anything that Google searches for. If you find something you like, you can click on an item to add it to your interest list (where it will stay for you to quickly refer to anytime you want). Or you can see what others are liking and talking about globally in the “Featured interests” area.</p><p>“Our goal here is to connect people. And everyone has a camera in their pocket,” Gundotra says as he shows me “Instant Upload”. This feature of Google+ relies on the use of an Android devices to take photos or shoot video. From a new app, you’ll do either of these things and the content will automatically be uploaded to Google+ in the background and stored in a private album (which you can share with one click later).</p><p>Another feature of Google+ is called “Huddle”. It’s essentially a group messaging app that works across Android, iPhone, and SMS to allow you to communicate with the people in certain Circles. When I asked why they wouldn’t just use Disco, the group messaging app that the Slide team within Google built, Horowitz would only smile and pretend that he didn’t know what I was talking about.</p><p>Finally, there’s a feature called “Hangouts”. “Everyone has high-speed networks these days, but how many use group video chat?,” Gundotra asks. “Not a lot.” He notes that while there are technical challenges, and some cost money, the biggest problem is that it’s socially awkward to video chat with someone. The Google+ team set out to fix this by thinking about neighbors sitting out on porches. If your neighbor is sitting there, you know that they’ll likely be interested in striking up a conversation. In fact, it would be rude for you to walk by and not say anything.</p><p>With that in mind, Google+ Hangout attempts to solve the social problem of video chat by making it easy for you to let others know that you’re interested in chatting. And if you’re already chatting with a Circle, everyone else in that Circle will get an alert to come hang out. This works for up to 10 people. And seeing it in action is a bit magical. Gundotra starts a Hangout with some co-workers and as they join, conversations start between multiple people. But the Google+ system is smart enough to focus on who is controlling the conversation in any given minute. This makes the conversation easy to watch. It was almost as if an editor is working behind the scenes, cutting between people.</p><p>&nbsp;</p><p>Even cooler is that you can share a piece of content, like a YouTube clip, and everyone in the Hangout can watch it together while talking about it. It sounds a bit cheesy, but it’s really pretty great.</p><p>After the rundown of all of these features, Google+ may sound a bit convoluted. But the key to the project is the attempt to unify everything. This is done via the toolbar (which features a drop-down showing you all of your relevant Google+ activity), but also on the mobile apps (again, Android and iPhone), and, of course, on the web. The Google+ site is the main stream on which you’ll find everything. From here, you can easily switch between all of your Circles, share content with any of them, start a Hangout, look up Sparks, etc.</p><p>All of the information flowing through the system does so in real time. As something is shared with you, it appears at the top of your stream. It’s a bit like FriendFeed, in this regard (which I love).</p><p>You’ll also find a link to your Google+ Profile, which will replace your old Google Profile if you have Google+ enabled. On this profile you’ll find not only a stream of everything you’ve shared across Google+, but also your +1 content. That’s likely important. While there has been plenty of speculation (by myself and others) that the +1 Button is already a dud, the larger picture is still a bit hidden. While Gundotra and Horowitz declined to specifically talk about it too much, you’ll see a +1 button on all Google+ content — the +1 Button clearly ties deeply into all of this. It is going to be their Facebook “Like” button.</p><p>All of this sounds great so far, but what about the downsides? Whether they’ll admit it or not, Google is making a bold and perhaps risky move by attempting to attack social from scratch. What if they flop again?</p><p>From the little that I’ve seen so far, Google+ is by far the best effort in social that Google has put out there yet. But traction will be contingent upon everyone convincing their contacts to regularly use it. Even for something with the scale of Google, that’s not the easiest thing in the world — as we’ve seen with Wave and Buzz. There will need to be compelling reasons to share on Google+ instead of Facebook and/or Twitter — or, at the very least, along with all of those other networks. The toolbar and interesting communication tools are the most compelling reasons right now, but there will need to be more of them. And fast.</p><p>Speaking of Buzz, one thing that strikes me about Google+ is that it seems a bit like Google Buzz done right. When I asked if Google+ would be the official death of Buzz, Horowitz declined to say, but did note that it was still being decided how those pieces will play together.</p><p>And that could be a bigger issue for Google. With much of Google+, they’re simply creating a new layer rather than utilizing Google’s existing services. For example, when you upload pictures to Google+, they don’t just go to Picasa (though they do go there as well), they also reside on Google+. On one hand, that will confuse some users. On the other, it’s quite refreshing to see Google attempt to start fresh with this new project.</p><p>What about Twitter, Facebook, or other social integration? Horowitz wouldn’t go into too much detail as it sounds like tie-ins are still being discussed. As I understand it, right now, Google+ will largely be a stand-alone network with some low-level third-party social network integration.</p><p>So when can you try Google+ ? Here’s the thing that will be a kick in the pants to some users: Google is beginning to roll it out today, but it will only be a very limited field trial. You can submit your email address here to be entered into the system and notified as roll-outs continue, but Google says that they have no set time table for a full rollout. Again, this is phase one of what Google hopes to do with Google+, so they’re taking it slow.</p><p>“It’s not about one particular project, it’s about Google getting better. We know this is going to take us a considerable amount of time. But we want to make Google better by connecting you with your relationships and interests,” Gundotra reiterates. He declined to state how big the team within Google currently working on the project is, but says that it’s a “decent sized team”.</p><p>“Today’s web is about people. To organize the world’s data, you have to understand people,” Gundotra concludes, noting that newly crowned CEO Larry Page has been heavily involved in this project from the get-go. As it is unveiled to the world, Google+ sounds and looks great. But we’ve seen that before from Google. Now comes the hard part.</p><p>Google Plus is a new social network from the Family of Google. Google is now answered the question “Facebook is there Why we need Another social network?”. The answer is in the form of Google Plus . Yeah, Google Plus utilizes the all the draw backs of Facebook and going to launch the full version soon. What are the things you are in Facebook is available in Google Plus with higher security. Google + is rich with the graphic interface.</p><p>Most of us left Orkut due to its loading time, But you never leave Google+ due to the same reason. Google made a special care on loading time makes Google+ a perfect one. Google + having video chat option,there 8 friends can chat at a time. Also the text chat is avail with it. Not like Facebooks dim chat. Google Plus is collection of circles. Where you can create your own circles to share your thoughts. Google also take a step in the security which beats Facebook.</p><p
style="text-align: justify;">In the Following days the Google plus becomes the Coffin of Facebook…Mark Zukerberg has work hard to keep peoples with Facebook. Google Plus is now running as trial one you can access it by following <a
target="_blank" title="Visit Google +" href="https://plus.google.com/" target="_blank">https://plus.google.com/</a> .Make your circles and share your thoughts with higher security and with more Fun.</p><p><span
class="embed-youtube" style="text-align: center; display: block;"><object
width="420" height="349" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="allowfullscreen" value="true" /><param
name="wmode" value="opaque" /><param
name="src" value="http://www.youtube.com/v/xwnJ5Bl4kLI?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" /><embed
width="420" height="349" type="application/x-shockwave-flash" src="http://www.youtube.com/v/xwnJ5Bl4kLI?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" allowfullscreen="true" wmode="opaque" /> </object></span></p><p><span
class="embed-youtube" style="text-align: center; display: block;"><object
width="420" height="349" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="allowfullscreen" value="true" /><param
name="wmode" value="opaque" /><param
name="src" value="http://www.youtube.com/v/BeMZP-oyOII?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" /><embed
width="420" height="349" type="application/x-shockwave-flash" src="http://www.youtube.com/v/BeMZP-oyOII?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" allowfullscreen="true" wmode="opaque" /> </object></span></p><p><span
class="embed-youtube" style="text-align: center; display: block;"><object
width="420" height="349" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="allowfullscreen" value="true" /><param
name="wmode" value="opaque" /><param
name="src" value="http://www.youtube.com/v/MRkAdTflltc?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" /><embed
width="420" height="349" type="application/x-shockwave-flash" src="http://www.youtube.com/v/MRkAdTflltc?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" allowfullscreen="true" wmode="opaque" /> </object></span></p><p><span
class="embed-youtube" style="text-align: center; display: block;"><object
width="420" height="349" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="allowfullscreen" value="true" /><param
name="wmode" value="opaque" /><param
name="src" value="http://www.youtube.com/v/Tku1vJeuzH4?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" /><embed
width="420" height="349" type="application/x-shockwave-flash" src="http://www.youtube.com/v/Tku1vJeuzH4?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" allowfullscreen="true" wmode="opaque" /> </object></span></p><p><span
class="embed-youtube" style="text-align: center; display: block;"><object
width="420" height="349" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="allowfullscreen" value="true" /><param
name="wmode" value="opaque" /><param
name="src" value="http://www.youtube.com/v/6y_xKVSRAy8?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" /><embed
width="420" height="349" type="application/x-shockwave-flash" src="http://www.youtube.com/v/6y_xKVSRAy8?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" allowfullscreen="true" wmode="opaque" /> </object></span></p><p><span
class="embed-youtube" style="text-align: center; display: block;"><object
width="420" height="349" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="allowfullscreen" value="true" /><param
name="wmode" value="opaque" /><param
name="src" value="http://www.youtube.com/v/iA22daAstNg?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" /><embed
width="420" height="349" type="application/x-shockwave-flash" src="http://www.youtube.com/v/iA22daAstNg?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1" allowfullscreen="true" wmode="opaque" /> </object></span></p><p
style="text-align: justify;">Anyway I think Facebook will become the another Orkut…</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/google-plus-alternative-for-facebook-trend/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Facebook Video Chat using Skype Started against Google+</title><link>http://techbeeps.com/facebook-video-chat-using-skype-started-against-google/</link> <comments>http://techbeeps.com/facebook-video-chat-using-skype-started-against-google/#comments</comments> <pubDate>Wed, 06 Jul 2011 01:46:05 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Chat]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[Skype]]></category> <category><![CDATA[chat]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Mark Zukerberg]]></category> <category><![CDATA[multiple chat]]></category> <category><![CDATA[socialnetworks]]></category> <category><![CDATA[video chat]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=3</guid> <description><![CDATA[Just as Google&#8217;s next big thing &#8216; Google Plus&#8217; is all set to launch, Facebook and Skype are about to strike a deal that would bring the video chatting service to the social networking site. Facebook Video Chat with Skype : Video Calls Last month Microsoft bought Skype, it became a big news. Very next]]></description> <content:encoded><![CDATA[<p>Just as Google&#8217;s next big thing &#8216; Google Plus&#8217; is all set to launch, Facebook and Skype are about to strike a deal that would bring the video chatting service to the social networking site.<br
/> <strong></strong></p><p><strong>Facebook Video Chat with Skype : Video Calls</strong><br
/> Last month Microsoft bought Skype, it became a big news. Very next month Facebook implemented the skype video chat on their network. Any how it is a big deal. World&#8217;s third population is in Facebook after China &amp; India. Free calling is possible now. Enjoy.</p><p>Google-Orkut already implemented video chats. But Skype video chats are more clear and faster even in low bandwidth connection. Thus the Skype Facebook integration is now implemented.</p><p><strong></strong><a
href="http://techbeeps.com/wp-content/uploads/2011/07/skype.bmp"><img
class="aligncenter size-full wp-image-62" title="skype" src="http://techbeeps.com/wp-content/uploads/2011/07/skype.bmp" alt="" /></a><br
/> Google already has Google Voice voip service, so a integration of social networking, mail and video/voice calling will make it one of the best. Facebook on the other hand is also trying best to bring new features and make the user experience more good.</p><p>Many of us spend a lot of time chatting on Facebook with our facebook buddies, but it lacks the default Voice and video Chat/Calls. Though in the past, we have covered post on making facebook free calls and but still the service is not by default!</p><p>It is in news on various blogs that Facebook will be soon unveiling a Skype-powered video chat platform. With Microsoft taking over Skype and its already serious partnership, Video Chat on facebook will be great feature. Only time will tell if it is a rumor or will turn out to be a real thing! Few things are not clear, whether people will be asked to download skype client to enjoy video calls on facebook, or do we need to be Skype users to use this facebook video chat feature.<br
/> These answers will get solved only with time! Technology is advancing at great pace and its all good for us.</p><p>With Facebook CEO Mark Zuckerberg promising an &#8220;awesome&#8221; new feature on July 6, Skype, which was recently purchased by Microsoft for a whopping USD 8.5 billion, could become a fixture on the world&#8217;s largest social network.</p><p>The beta version of Google&#8217;s social network, Google Plus, debuted last week to rave reviews, especially for its +Hangouts feature that allows for multi-user video chat. <a
href="http://techbeeps.com/wp-content/uploads/2011/07/facebook-skype-integration.jpg"><img
class="aligncenter size-full wp-image-64" title="facebook-skype-integration" src="http://techbeeps.com/wp-content/uploads/2011/07/facebook-skype-integration.jpg" alt="" width="250" height="150" /></a></p><p>At present, Facebook users update message and status through their profile, and share photos but the addition of video chat will bring an interesting change to their account.</p><p>Editor of Tech Crunch, Michael Arrington stated in the Next Week that Facebook, in collaboration with Skype, will unveil its video chat option which will be powered by Skype.</p><p>This move will strengthen Facebook&#8217;s position in the social networking market.</p><p>Facebook at present is the most influential and one of the biggest social networking sites in the world having over 500 million active users.</p><p>This isn&#8217;t the first time that Skype has been linked to Facebook.</p><p>Back in September 2010 the same rumour reared its head and this March it was reported that talks had resumed between the two companies.</p><p>Citing an insider source, Techcrunch announced the news, describing the powered-by-Skype Facebook video chat: &#8220;The product has been built on Skype and will include a desktop component&#8221;.</p><p>&#8220;It&#8217;s not clear to me whether that means it will just work if a user has Skype already installed on the computer, or if additional software will need to be downloaded even if the user already uses Skype.</p><p>&#8220;But it&#8217;s clear that there&#8217;s very deep integration between the products, and from the user&#8217;s perspective, the product will be an in browser experience&#8221;.</p><p>Official word will come out tomorrow when Facebook holds an event at its Palo Alto headquarters.</p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/facebook-video-chat-using-skype-started-against-google/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Common Facebook Errors</title><link>http://techbeeps.com/common-facebook-errors/</link> <comments>http://techbeeps.com/common-facebook-errors/#comments</comments> <pubDate>Tue, 28 Jun 2011 10:47:24 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Facebook]]></category> <guid
isPermaLink="false">http://techbeeps.com/?p=54</guid> <description><![CDATA[&#8220;Sorry, an error has occurred.We&#8217;re working on getting this fixed as soon as we can. Go Back&#8221; every few page loads, anybody else seeing it on Facebook ? We know Facbook is working on PHP-AJAX combination. Mainly the errors are occuring due to developers problem in the script. I noticed some discussions in the facebook]]></description> <content:encoded><![CDATA[<p>&#8220;Sorry, an error has occurred.We&#8217;re working on getting this fixed as soon as we can. Go Back&#8221; every few page loads, anybody else seeing it on Facebook ?</p><p>We know Facbook is working on PHP-AJAX combination. Mainly the errors are occuring due to developers problem in the script. I noticed some discussions in the facebook developers forum regarding the frequent error in facebook. You can also become a part of it. <a
target="_blank" href="http://forum.developers.facebook.net/viewtopic.php?id=36438" target="_blank">Facebook developers forum.</a></p><p>Here am showing the errors occured to me. It is commonly occuring rather than the interior errors in messages and chat. Now am describing two of the error only. If you are experiencing the same error ask the explanation to fb developers through forum.</p><div
id="attachment_42" class="wp-caption aligncenter" style="width: 311px"><a
href="http://techbeeps.com/wp-content/uploads/2011/06/facebook.png"><img
class="size-medium wp-image-42" title="facebook" src="http://techbeeps.com/wp-content/uploads/2011/06/facebook-300x145.png" alt="Facebook error" width="301" height="193" /></a><p
class="wp-caption-text">Facebook unable to update status</p></div><p>And the facebook happens some Database Errors. Usually this happens when captcha showing options. Before verifying this captcha Facebook publish content, if captcha is wrongly entered rollback is necessary. Thus database become more busy and Database error occurred.</p><div
id="attachment_43" class="wp-caption aligncenter" style="width: 310px"><a
href="http://techbeeps.com/wp-content/uploads/2011/06/facebookk.png"><img
class="size-medium wp-image-43" title="facebookk" src="http://techbeeps.com/wp-content/uploads/2011/06/facebookk-300x153.png" alt="Facebook Database Error" width="300" height="153" /></a><p
class="wp-caption-text">Facebook Database Error</p></div><p>Now you may understood the common errors in Facebook. Facebook Chat is also not well to compete with orkut chat. Share your ideas also as comment. <a
target="_blank" href="http://facebook.com/TricksnTips" target="_blank">Find us on Facebook&#8230;.</a></p><p><div
style="float:left; text-align:left;><img
alt='' src='http://1.gravatar.com/avatar/5a778bcf8e0d19aa2c6ce6e25611fe08?s=100&amp;d=&amp;r=G' class='avatar avatar-100 photo' height='100' width='100' /></div><h3><a
href='http://techbeeps.com/author/admin/' title='admin'>admin</a></h3><p>Am Anuraj from Palghat, Kerala, India. Owner of TechBeeps.com, completed my Engineering in Computer Science from Anna university. Blogging is passion for me; it brings me close to new comings in the technology.</p><p><a
href='http://techbeeps.com' title='admin'>Website</a> - <a
href='http://twitter.com/anurajr' title='adminon Twitter'>Twitter</a> - <a
href='http://facebook.com/TricksnTips' title='admin on Facebook'>Facebook</a> - <a
href='http://techbeeps.com/author/admin/' title='More posts by admin'>More Posts</a></p></p>]]></content:encoded> <wfw:commentRss>http://techbeeps.com/common-facebook-errors/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
