<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:gd="http://schemas.google.com/g/2005" xmlns:georss="http://www.georss.org/georss" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:thr="http://purl.org/syndication/thread/1.0"><id>tag:blogger.com,1999:blog-5172695185420846112</id><updated>2024-10-04T18:59:39.633-07:00</updated><title type="text">hire4rlogic</title><subtitle type="html"/><link href="http://hire4rlogic.blogspot.com/feeds/posts/default" rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default?redirect=false" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/" rel="alternate" type="text/html"/><link href="http://pubsubhubbub.appspot.com/" rel="hub"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default?start-index=26&amp;max-results=25&amp;redirect=false" rel="next" type="application/atom+xml"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><generator uri="http://www.blogger.com" version="7.00">Blogger</generator><openSearch:totalResults>1282</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><xhtml:meta content="noindex" name="robots" xmlns:xhtml="http://www.w3.org/1999/xhtml"/><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-8502279823090321859</id><published>2013-07-17T23:11:00.000-07:00</published><updated>2013-07-17T23:12:10.659-07:00</updated><title type="text">Create Xls using Java</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Hi Viewers,&lt;br /&gt;
&lt;br /&gt;
Using PIO a third party tool which help us to create .xls&amp;nbsp; files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; import&amp;nbsp; java.io.*;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; import&amp;nbsp; org.apache.poi.hssf.usermodel.HSSFSheet;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; import&amp;nbsp; org.apache.poi.hssf.usermodel.HSSFWorkbook;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; import&amp;nbsp; org.apache.poi.hssf.usermodel.HSSFRow;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; import&amp;nbsp; org.apache.poi.hssf.usermodel.HSSFCell;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; public class CreateExlFile{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public static void main(String[]args){&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; String filename="C:/Sample.xls" ;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HSSFWorkbook workbook=new HSSFWorkbook();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HSSFSheet sheet =&amp;nbsp; workbook.createSheet("FirstSheet");&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HSSFRow rowhead=&amp;nbsp;&amp;nbsp; sheet.createRow((short)0);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rowhead.createCell((short) 0).setCellValue("No.");&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rowhead.createCell((short) 1).setCellValue("Name");&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rowhead.createCell((short) 2).setCellValue("Address");&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rowhead.createCell((short) 3).setCellValue("Email");&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HSSFRow row=&amp;nbsp;&amp;nbsp; sheet.createRow((short)1);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row.createCell((short) 0).setCellValue("1");&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row.createCell((short) 1).setCellValue("raja");&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row.createCell((short) 2).setCellValue("India");&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row.createCell((short) 3).setCellValue("nanduriraja537@gmail.com");&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FileOutputStream fileOut =&amp;nbsp; new FileOutputStream(filename);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; workbook.write(fileOut);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fileOut.close();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.out.println("Your excel file has been generated!");&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } catch ( Exception ex ) {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.out.println(ex);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/8502279823090321859/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2013/07/create-xls-using-java.html#comment-form" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/8502279823090321859" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/8502279823090321859" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2013/07/create-xls-using-java.html" rel="alternate" title="Create Xls using Java" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-4666821651584339123</id><published>2012-11-19T01:36:00.002-08:00</published><updated>2012-11-19T01:36:13.072-08:00</updated><title type="text"> list of latest Samsung codes</title><content type="html">Today we will discuss about the some secret codes of Samsung mobiles. 
These codes may be not applied to all old models of Samsung mobile, but 
you can try to all latest Samsung mobiles. You can display the hidden 
information of mobile sets and troubleshoot the routine problems using 
these codes.&lt;br /&gt;
&lt;br /&gt;Follow the list of latest Samsung codes list: &lt;br /&gt;&lt;br /&gt;Code&lt;br /&gt;&lt;br /&gt;*#9999#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
&lt;div id=":1ej"&gt;
&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to display the mobile software version&lt;br /&gt;&lt;br /&gt;#*3849#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to reboot the Samsung handsets&lt;br /&gt;
&lt;br /&gt;*#06#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To display the IMEI Number of the mobile&lt;br /&gt;&lt;br /&gt;#*2558#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To on/off the mobile time&lt;br /&gt;&lt;br /&gt;#*7337#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to unlock the latest Samsung set&lt;br /&gt;
&lt;br /&gt;#*4760#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to activate and deactivate the GSM features&lt;br /&gt;&lt;br /&gt;*#9998*246#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To verify the memory and battery information&lt;br /&gt;&lt;br /&gt;*#7465625#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To verify the Lock status of mobile &lt;br /&gt;
&lt;br /&gt;*#0001#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To display the Serial Number of the mobile&lt;br /&gt;&lt;br /&gt;*2767*637#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to unlock the mobile code&lt;br /&gt;&lt;br /&gt;*#8999*636#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To display the storage capacity of the mobile&lt;br /&gt;
&lt;br /&gt;#*2562#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to reboot the Samsung handsets&lt;br /&gt;&lt;br /&gt;*#8999*667#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to run the mobile in Debug mode&lt;br /&gt;&lt;br /&gt;*2767*226372#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; To fine-tune the camera settings&lt;br /&gt;
&lt;br /&gt;*#8999*778#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to display the information about mobile SIM card&lt;br /&gt;&lt;br /&gt;*2767*637#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to unlock the mobile code&lt;br /&gt;&lt;br /&gt;*7465625*28638#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp; Use to make active the Network Lock&lt;br /&gt;
&lt;br /&gt;#*#8377466#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To display the hardware version&lt;br /&gt;&lt;br /&gt;*7465625*746*Code#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to make active the SIM card lock&lt;br /&gt;&lt;br /&gt;*#pw+15853649247w#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to unlock the mobile code without SIM card&lt;br /&gt;
&lt;br /&gt;#*3888#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To verify the Bluetooth information&lt;br /&gt;&lt;br /&gt;*#9998*627837793#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp; Uses to get extra parameter for unlock mobile settings&lt;br /&gt;&lt;br /&gt;#7465625*28638#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to unlock the Network Lock&lt;br /&gt;
&lt;br /&gt;#*7983# Voltage&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to regulate Frequency or Voltage&lt;br /&gt;&lt;br /&gt;#7465625*746*Code#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to unlock the SIM card lock&lt;br /&gt;&lt;br /&gt;#*2834#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to reset the handsfree options&lt;br /&gt;
&lt;br /&gt;#*5376#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To delete all SMS in one command&lt;br /&gt;&lt;br /&gt;*#4777*8665#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to explore the GPSR tool list&lt;br /&gt;&lt;br /&gt;#*2474#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To verify the charging duration&lt;br /&gt;
&lt;br /&gt;*2767*688#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;wbr&gt;&lt;/wbr&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use to readjust the mobile TV optionss&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/4666821651584339123/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/11/list-of-latest-samsung-codes.html#comment-form" rel="replies" title="3 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/4666821651584339123" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/4666821651584339123" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/11/list-of-latest-samsung-codes.html" rel="alternate" title=" list of latest Samsung codes" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-1823929891246606090</id><published>2012-06-20T21:21:00.000-07:00</published><updated>2012-06-20T21:22:03.001-07:00</updated><title type="text">Remote JMS with JBoss AS 7.1 / HornetQ JMS</title><content type="html">When you want to connect to a Queue or Topic on JBoss Application Server  7.1.1 with a remote jms client you can follow the next steps.
&lt;br /&gt;
&lt;br /&gt;First step is to add messaging configuration to the JBoss configuration  xml. In this case I will use the standalone configuration.
&lt;br /&gt;
&lt;br /&gt;Open &lt;b&gt;standalone.xml&lt;/b&gt; located at&lt;b&gt; jboss-as-7.1.1.Final\&lt;wbr&gt;standalone\configuration&lt;/b&gt;
&lt;br /&gt;
&lt;br /&gt;Add org.jboss.as.messaging to the extensions
&lt;br /&gt;
&lt;br /&gt;&lt;!--?xml version='1.0' encoding='UTF-8'?--&gt;
&lt;br /&gt;&lt;server xmlns="urn:jboss:domain:1.2"&gt;
&lt;br /&gt;    &lt;extensions&gt;
&lt;br /&gt;        &lt;span style="color:red"&gt;&lt;extension module="org.jboss.as.&amp;lt;wbr&amp;gt;messaging"&gt;&lt;/extension&gt;&lt;/span&gt;
&lt;br /&gt;        &lt;extension module="org.jboss.as.&amp;lt;div&amp;gt;&amp;lt;wbr&amp;gt;clustering.infinispan"&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;Add the HornetQ messaging configuration, make sure it is the first xml entry after profile.
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;    &lt;profile&gt;
&lt;br /&gt;        &lt;subsystem xmlns="urn:jboss:domain:&amp;lt;wbr&amp;gt;messaging:1.1"&gt;
&lt;br /&gt;            &lt;hornetq-server&gt;
&lt;br /&gt;                &lt;persistence-enabled&gt;true&lt;!--&lt;wbr--&gt;persistence-enabled&amp;gt;
&lt;br /&gt;                &lt;journal-file-size&gt;102400&lt;!--&lt;wbr--&gt;journal-file-size&amp;gt;
&lt;br /&gt;                &lt;journal-min-files&gt;2min-files&amp;gt;
&lt;br /&gt;
&lt;br /&gt;                &lt;connectors&gt;
&lt;br /&gt;                    &lt;netty-connector name="netty" binding="messaging"&gt;
&lt;br /&gt;                    &lt;netty-connector name="netty-throughput" binding="messaging-&amp;lt;wbr&amp;gt;throughput"&gt;
&lt;br /&gt;                        &lt;param key="batch-delay" value="50"&gt;
&lt;br /&gt;                    &lt;/netty-connector&gt;
&lt;br /&gt;                    &lt;in-vm-connector name="in-vm" id="0"&gt;
&lt;br /&gt;                &lt;/in-vm-connector&gt;&lt;/netty-connector&gt;&lt;/connectors&gt;
&lt;br /&gt;
&lt;br /&gt;                &lt;acceptors&gt;
&lt;br /&gt;                    &lt;netty-acceptor name="netty" binding="messaging"&gt;
&lt;br /&gt;                    &lt;netty-acceptor name="netty-throughput" binding="messaging-&amp;lt;wbr&amp;gt;throughput"&gt;
&lt;br /&gt;                        &lt;param key="batch-delay" value="50"&gt;
&lt;br /&gt;                        &lt;param key="direct-deliver" value="false"&gt;
&lt;br /&gt;                    &lt;/netty-acceptor&gt;
&lt;br /&gt;                    &lt;in-vm-acceptor name="in-vm" id="0"&gt;
&lt;br /&gt;                &lt;/in-vm-acceptor&gt;&lt;/netty-acceptor&gt;&lt;/acceptors&gt;
&lt;br /&gt;
&lt;br /&gt;                &lt;broadcast-groups&gt;
&lt;br /&gt;                    &lt;broadcast-group name="bg-group1"&gt;
&lt;br /&gt;                        &lt;group-address&gt;231.7.7.7&lt;!--&lt;wbr--&gt;group-address&amp;gt;
&lt;br /&gt;                        &lt;group-port&gt;9876&lt;/group-port&gt;
&lt;br /&gt;                        &lt;broadcast-period&gt;5000&lt;!--&lt;wbr--&gt;broadcast-period&amp;gt;
&lt;br /&gt;                        &lt;connector-ref&gt;
&lt;br /&gt;                            netty
&lt;br /&gt;                        &lt;/connector-ref&gt;
&lt;br /&gt;                    &lt;/broadcast-period&gt;&lt;/group-address&gt;&lt;/broadcast-group&gt;
&lt;br /&gt;                &lt;/broadcast-groups&gt;
&lt;br /&gt;
&lt;br /&gt;                &lt;discovery-groups&gt;
&lt;br /&gt;                    &lt;discovery-group name="dg-group1"&gt;
&lt;br /&gt;                        &lt;group-address&gt;231.7.7.7&lt;!--&lt;wbr--&gt;group-address&amp;gt;
&lt;br /&gt;                        &lt;group-port&gt;9876&lt;/group-port&gt;
&lt;br /&gt;                        &lt;refresh-timeout&gt;10000&lt;!--&lt;wbr--&gt;refresh-timeout&amp;gt;
&lt;br /&gt;                    &lt;/refresh-timeout&gt;&lt;/group-address&gt;&lt;/discovery-group&gt;
&lt;br /&gt;                &lt;/discovery-groups&gt;
&lt;br /&gt;
&lt;br /&gt;                &lt;cluster-connections&gt;
&lt;br /&gt;                    &lt;cluster-connection name="my-cluster"&gt;
&lt;br /&gt;                        &lt;address&gt;jms&lt;/address&gt;
&lt;br /&gt;                        &lt;connector-ref&gt;netty&lt;!--&lt;wbr--&gt;connector-ref&amp;gt;
&lt;br /&gt;                        &lt;discovery-group-ref name="dg-&amp;lt;wbr&amp;gt;group1"&gt;
&lt;br /&gt;                    &lt;/discovery-group-ref&gt;&lt;/connector-ref&gt;&lt;/cluster-connection&gt;
&lt;br /&gt;                &lt;/cluster-connections&gt;
&lt;br /&gt;
&lt;br /&gt;                &lt;security-settings&gt;
&lt;br /&gt;                    &lt;security-setting match="#"&gt;
&lt;br /&gt;                        &lt;permission type="send" roles="guest"&gt;
&lt;br /&gt;                        &lt;permission type="consume" roles="guest"&gt;
&lt;br /&gt;                        &lt;permission type="createNonDurableQueue" roles="guest"&gt;
&lt;br /&gt;                        &lt;permission type="deleteNonDurableQueue" roles="guest"&gt;
&lt;br /&gt;                    &lt;/permission&gt;&lt;/permission&gt;&lt;/permission&gt;&lt;/permission&gt;&lt;/security-setting&gt;
&lt;br /&gt;                &lt;/security-settings&gt;
&lt;br /&gt;
&lt;br /&gt;                &lt;address-settings&gt;
&lt;br /&gt;                    &lt;address-setting match="#"&gt;
&lt;br /&gt;                        &lt;dead-letter-address&gt;jms.&lt;wbr&gt;queue.DLQaddress&amp;gt;
&lt;br /&gt;                        &lt;expiry-address&gt;jms.queue.&lt;wbr&gt;ExpiryQueue&lt;/expiry-address&gt;
&lt;br /&gt;                        &lt;redelivery-delay&gt;0&lt;!--&lt;wbr--&gt;redelivery-delay&amp;gt;
&lt;br /&gt;                        &lt;max-size-bytes&gt;10485760size-bytes&amp;gt;
&lt;br /&gt;                        &lt;address-full-policy&gt;BLOCK&lt;!--&lt;wbr--&gt;address-full-policy&amp;gt;
&lt;br /&gt;                        &lt;message-counter-history-day-&lt;wbr&gt;limit&amp;gt;10history-day-limit&amp;gt;
&lt;br /&gt;                        &lt;redistribution-delay&gt;1000&lt;!--&lt;wbr--&gt;redistribution-delay&amp;gt;
&lt;br /&gt;                    &lt;/redistribution-delay&gt;&lt;/message-counter-history-day-&lt;wbr&gt;&lt;/address-full-policy&gt;&lt;/max-size-bytes&gt;&lt;/redelivery-delay&gt;&lt;/dead-letter-address&gt;&lt;/address-setting&gt;
&lt;br /&gt;                &lt;/address-settings&gt;
&lt;br /&gt;
&lt;br /&gt;                &lt;jms-connection-factories&gt;
&lt;br /&gt;                    &lt;connection-factory name="InVmConnectionFactory"&gt;
&lt;br /&gt;                        &lt;connectors&gt;
&lt;br /&gt;                            &lt;connector-ref name="in-vm"&gt;
&lt;br /&gt;                        &lt;/connector-ref&gt;&lt;/connectors&gt;
&lt;br /&gt;                        &lt;entries&gt;
&lt;br /&gt;                            &lt;entry name="java:/ConnectionFactory" wbr=""&gt;/&amp;gt;
&lt;br /&gt;                        &lt;/entry&gt;&lt;/entries&gt;
&lt;br /&gt;                    &lt;/connection-factory&gt;
&lt;br /&gt;                    &lt;connection-factory name="RemoteConnectionFactory" wbr=""&gt;&amp;gt;
&lt;br /&gt;                        &lt;connectors&gt;
&lt;br /&gt;                            &lt;connector-ref name="netty"&gt;
&lt;br /&gt;                        &lt;/connector-ref&gt;&lt;/connectors&gt;
&lt;br /&gt;                        &lt;entries&gt;
&lt;br /&gt;                            &lt;entry name="RemoteConnectionFactory" wbr=""&gt;/&amp;gt;
&lt;br /&gt;                            &lt;entry name="java:jboss/exported/jms/&amp;lt;wbr&amp;gt;RemoteConnectionFactory"&gt;
&lt;br /&gt;                        &lt;/entry&gt;&lt;/entry&gt;&lt;/entries&gt;
&lt;br /&gt;                    &lt;/connection-factory&gt;
&lt;br /&gt;                    &lt;pooled-connection-factory name="hornetq-ra"&gt;
&lt;br /&gt;                        &lt;transaction mode="xa"&gt;
&lt;br /&gt;                        &lt;connectors&gt;
&lt;br /&gt;                            &lt;connector-ref name="in-vm"&gt;
&lt;br /&gt;                        &lt;/connector-ref&gt;&lt;/connectors&gt;
&lt;br /&gt;                        &lt;entries&gt;
&lt;br /&gt;                            &lt;entry name="java:/JmsXA"&gt;
&lt;br /&gt;                        &lt;/entry&gt;&lt;/entries&gt;
&lt;br /&gt;                    &lt;/transaction&gt;&lt;/pooled-connection-factory&gt;
&lt;br /&gt;                &lt;/jms-connection-factories&gt;
&lt;br /&gt;
&lt;br /&gt;                &lt;jms-destinations&gt;
&lt;br /&gt;                    &lt;jms-queue name="testQueue"&gt;
&lt;br /&gt;                        &lt;entry name="queue/test"&gt;
&lt;br /&gt;                        &lt;entry name="java:jboss/exported/jms/&amp;lt;wbr&amp;gt;queue/test"&gt;
&lt;br /&gt;                    &lt;/entry&gt;&lt;/entry&gt;&lt;/jms-queue&gt;
&lt;br /&gt;                &lt;/jms-destinations&gt;
&lt;br /&gt;            &lt;/journal-min-files&gt;&lt;/journal-file-size&gt;&lt;/persistence-enabled&gt;&lt;/hornetq-server&gt;
&lt;br /&gt;        &lt;/subsystem&gt;
&lt;br /&gt;        &lt;subsystem xmlns="urn:jboss:domain:&amp;lt;wbr&amp;gt;logging:1.1"&gt;
&lt;br /&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt; &lt;div&gt; We will use &lt;/div&gt; &lt;div&gt;
&lt;br /&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;RemoteConnectionFactory&lt;/b&gt; as JMS ConnectionFactory with "&lt;b&gt;java:jboss/exported/jms/&lt;wbr&gt;RemoteConnectionFactory&lt;/b&gt;" as JNDI name. Use jms/&lt;wbr&gt;RemoteConnectionFactory as CF reference in your java client.
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;queue/test &lt;/b&gt;as Queue with as jndi name "&lt;b&gt;java:jboss/exported/jms/&lt;wbr&gt;queue/test&lt;/b&gt;".  Use  jms/queue/test as Queue reference.&lt;/div&gt; &lt;div&gt;
&lt;br /&gt;&lt;/div&gt; &lt;div&gt; For remote it should start with&lt;b&gt; java:jboss/exported/ &lt;/b&gt;else these object won't be exposed and then you can't lookup the CF or Queue.&lt;/div&gt; &lt;div&gt;
&lt;br /&gt;&lt;/div&gt; &lt;div&gt; Also for remote we need to create a application user. Go to the bin folder and start add-user.sh&lt;/div&gt; &lt;div&gt; Create a user jms with a password and add this user to the guest role. Guest role has permission for remote and jms. &lt;/div&gt; &lt;div&gt;
&lt;br /&gt;&lt;/div&gt; &lt;div&gt; Start JBoss with the standalone configuration.&lt;/div&gt; &lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;For our java test clients we need to have a jboss and a HornetQ jar file.
&lt;br /&gt;First copy &lt;b&gt;jboss-client.jar&lt;/b&gt; from the bin/client jboss folder and we need to download the lates HornetQ libraries ( hornetq-2.2.14.Final) . Copy &lt;b&gt;hornetq-jms-client.jar&lt;/b&gt; from the HornetQ lib folder.
&lt;br /&gt;
&lt;br /&gt;First the Jms Send Client
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;Jms Receive Client
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;In this example I use the same username , password for createQueueConnection
&lt;br /&gt; QueueConnection qcon = qconFactory.&lt;wbr&gt;createQueueConnection(&lt;b&gt;"jms","&lt;wbr&gt;jboss1"&lt;/b&gt;);
&lt;br /&gt;
&lt;br /&gt;If you don't do this you will get this error &lt;b&gt;Unable to validate user: null&lt;/b&gt;
&lt;br /&gt;
&lt;br /&gt;INFO: JBoss Remoting version &lt;a href="http://3.2.3.GA" target="_blank"&gt;3.2.3.GA&lt;/a&gt;
&lt;br /&gt;Exception in thread "main" javax.jms.&lt;wbr&gt;JMSSecurityException: Unable to validate user: null
&lt;br /&gt;&lt;span style="white-space:pre-wrap"&gt; &lt;/span&gt;at org.hornetq.core.protocol.&lt;wbr&gt;core.impl.ChannelImpl.&lt;wbr&gt;sendBlocking(ChannelImpl.java:&lt;wbr&gt;312)
&lt;br /&gt;Caused by: HornetQException[errorCode=105 message=Unable to validate user: null]
&lt;br /&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt; &lt;div&gt; To solve this you can also disable messaging security&lt;/div&gt; &lt;div&gt;     &lt;profile&gt;&lt;/profile&gt;&lt;/div&gt; &lt;div&gt;         &lt;subsystem xmlns="urn:jboss:domain:&amp;lt;wbr&amp;gt;messaging:1.1"&gt;&lt;/subsystem&gt;&lt;/div&gt; &lt;div&gt;             &lt;hornetq-server&gt;&lt;/hornetq-server&gt;&lt;/div&gt; &lt;div&gt;                 &lt;persistence-enabled&gt;true&lt;!--&lt;wbr--&gt;persistence-enabled&amp;gt;&lt;/persistence-enabled&gt;&lt;/div&gt; &lt;div&gt;                 &lt;journal-file-size&gt;102400&lt;!--&lt;wbr--&gt;journal-file-size&amp;gt;&lt;/journal-file-size&gt;&lt;/div&gt; &lt;div&gt;                 &lt;journal-min-files&gt;2min-files&amp;gt;&lt;/journal-min-files&gt;&lt;/div&gt; &lt;div&gt;                &lt;span style="color:red"&gt; &lt;security-enabled&gt;false&lt;!--&lt;wbr--&gt;security-enabled&amp;gt; &lt;/security-enabled&gt;&lt;/span&gt;&lt;/div&gt; &lt;div&gt;
&lt;br /&gt;&lt;/div&gt; &lt;div&gt; Now you can also use QueueConnection qcon = qconFactory.&lt;wbr&gt;createQueueConnection();&lt;/div&gt; &lt;div&gt; &lt;/div&gt;&lt;/subsystem&gt;&lt;/profile&gt;&lt;/extension&gt;&lt;/extensions&gt;&lt;/server&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/1823929891246606090/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/06/remote-jms-with-jboss-as-71-hornetq-jms.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1823929891246606090" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1823929891246606090" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/06/remote-jms-with-jboss-as-71-hornetq-jms.html" rel="alternate" title="Remote JMS with JBoss AS 7.1 / HornetQ JMS" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-5586485121670609064</id><published>2012-05-28T04:30:00.001-07:00</published><updated>2012-05-28T04:30:27.006-07:00</updated><title type="text">What is Ctfmon.exe? How to Fix Error Of Ctfmon.exe?</title><content type="html">&lt;h3&gt;&lt;br /&gt;&lt;/h3&gt; &lt;div&gt;  &lt;/div&gt;  &lt;p&gt;&lt;a rel="nofollow" style="FONT-FAMILY:Georgia,Times New Roman,serif;FONT-SIZE:18px" href="http://feedproxy.google.com/%7Er/BevapphaSanamHQ/%7E3/EMXOLIjTJKM/?utm_source=feedburner&amp;amp;utm_medium=email" name="136c4836f7b08fe7_5" target="_blank"&gt;&lt;/a&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;       &lt;div style="font-size:13px;font-family:Georgia,Helvetica,Arial,Sans-Serif"&gt;       &lt;p&gt;&amp;gt; Ctfmon.exe is not virus.&lt;/p&gt;       &lt;p&gt;&amp;gt;  Ctfmon.exe is vital window component, responsible for Alternative         User Input Text Input Processor (TIP) with MS office Language Bar.&lt;/p&gt;       &lt;p&gt;&amp;gt; Ctfmon.exe should not be stopped or removed.&lt;/p&gt;       &lt;p&gt;&amp;gt; Ctfmon.exe can be uninstalled.&lt;/p&gt;       &lt;p&gt;Read Complete story of Ctfmon.exe Here&lt;/p&gt;        &lt;p&gt;&lt;a rel="nofollow" href="http://support.microsoft.com/kb/282599" target="_blank"&gt;http://support.microsoft.com/&lt;wbr&gt;kb/282599&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/5586485121670609064/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/05/what-is-ctfmonexe-how-to-fix-error-of.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/5586485121670609064" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/5586485121670609064" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/05/what-is-ctfmonexe-how-to-fix-error-of.html" rel="alternate" title="What is Ctfmon.exe? How to Fix Error Of Ctfmon.exe?" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-3661479078604012602</id><published>2012-03-23T09:38:00.000-07:00</published><updated>2012-03-23T09:39:00.288-07:00</updated><title type="text">Collection Programming and Tools Crack (2011)</title><content type="html">&lt;h3 class="post-title entry-title"&gt; &lt;a href="http://nanduri-raja.blogspot.in/2011/03/collection-programming-and-tools-crack.html"&gt;&lt;br /&gt;&lt;/a&gt; &lt;/h3&gt; &lt;div class="post-header"&gt;  &lt;/div&gt;  &lt;img src="http://i3.ambrybox.com/200311/1300632559325.jpg" alt="Collection Programming and Tools Crack (2011)" title="Collection Programming and Tools Crack (2011)" height="452" width="300" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Collection Programming and Tools Crack (2011) | 4.59 GB&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;If   you're already familiar with the basics krekerstva and programming,   then videokurs CRACKL @ B could be for you to be even more useful,   because in the course of lessons you will learn the secrets of my   approach, you can "hear" the professional details that are imperceptible   beginner.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;List of lessons video course (they are all voiced):&lt;/b&gt;&lt;br /&gt;1. The benefits of krekerstva for themselves. (Audio)&lt;br /&gt;2. How not to transgress the law, being a *******. (Audio)&lt;br /&gt;3. Where to start. Stages of becoming a programmer and *******.&lt;br /&gt;4. Delphi, C or PHP: a difficult choice.&lt;br /&gt;5. PHP modern language for a beginner. Installation and the first program.&lt;br /&gt;6. Practice in PHP. Part One.&lt;br /&gt;7. Practice in PHP. Part II.&lt;br /&gt;8. Fundamentals of code: the number system, bits, bytes.&lt;br /&gt;9. What is common between EXE, JPG, TXT&lt;br /&gt;10. Program Analysis: Entropy, the basics of virology.&lt;br /&gt;11. Processor architecture for the purpose of cracking.&lt;br /&gt;12. Assembler. Familiarity with the language. Stack format registers.&lt;br /&gt;13. Assembler. Commands, flags, and examples.&lt;br /&gt;14. Overview of the main tools *******&lt;br /&gt;15. Familiarization with the debugger OllyDbg&lt;br /&gt;16. Specialization *******s&lt;br /&gt;17. Breaking the first program. Disassembly, the search code.&lt;br /&gt;18. Breaking the second program. Debugging, patch, use patterns.&lt;br /&gt;19. The structure of executable files PE.&lt;br /&gt;20. Unpacking the first program. Secrets of the approach. Classic hack unpacked program.&lt;br /&gt;21. Surprises from the protectors: littering and morph code, virtual machine, the encrypted code, anti-******* tools.&lt;br /&gt;22. Radiotekh + protection programs: a homemade dongle.&lt;br /&gt;23. Forum CRACKL @ B. Great opportunity for a proper understanding.&lt;br /&gt;24. At last&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Ext. Information:&lt;/b&gt;&lt;br /&gt;In addition, according to tradition CRACKL @ B DVD, the disk also contains tools krekerskie (1900 MB - 600 files).&lt;br /&gt;&lt;i&gt;Folder:&lt;/i&gt;&lt;br /&gt;CRACKLAB.RU.exe - a copy of the entire site CRACKL @ B (800 megabytes zipped in 7z SFX)&lt;br /&gt;Analyzers - Analyzer 22 files (PEiD Final, RDG Packer Detector ,...)&lt;br /&gt;*******s   - 25 programs to guess passwords for RAR, ZIP, The BAT, OfficeXP, MD5   (Passware Kit 9.0 Registered, Multi Password Recovery, Rar Password   ******* 4.12, The Bat Password Viewer, The Bat Unpass ,...). Here is the   archive dictionaries chastovstrechayuschimisya passwords - to break  the  method of "dictionary attacks", the total size of the uncompressed   dictionary - 40 MB.&lt;br /&gt;Crypto - 20 programs for cracking the  encryption,  hash (PasswordsPro 2.5.1.1, RSA Attacking Toolkit 0.1f, MD5  CrackFAST  2.10, Encryption Xpert 1.2, ...)&lt;br /&gt;Debuggers - 9 debuggers   (DriverStudio 3.2, SoftICE 4.05 and 4.27 (under 98, and NT / XP) + all   sorts of gadgets for him, OllyDbg 1.10 + crack + plugins + Russian  help,  OllyDbg 2.01, Syser Debugger, TRW2000, SoftSnoop, Rock Debugger,  Auto  Debug Professional)&lt;br /&gt;Decompilers - 35 decompilers (DeDe 3.50 +  SDK,.  NET Reflector 5.1, Numega SmartCheck 6.20 RC2, 9Rays Spices. NET  Suite  5.0, ReFox MMII, VB RezQ 3.3a, MSI FEU 0.2, EMS Source Rescuer  2.0, ...)&lt;br /&gt;Disassemblers  - 30 disassembler and associated tools (IDA  Pro, Flair and WinCE  Debugger + directory (RUS) + new plug-ins, Killer  WinDASM 10, Sourcer  8.01, ...)&lt;br /&gt;Dongles and LMs - a set of 47 major  management licenses  for research and instumentov hardware keys  (Sentinel LM SDK 7.3, FLEXlm  SDK 9.2i, FLEXlm SDK 11.4, HASP and  Hardlock Emulator 2007, Guardant SDK  5.0, SentinelSuperPro 6.0 Kit,  ...)&lt;br /&gt;EXE Tools - more than 25 tools  for working with EXE files (SDL  Passolo 2009, Restorator 2007 Full,  PETools 1.5, Stud_PE 2.3, PE  Explorer 1.99, PE Studio 3.3, ...)&lt;br /&gt;Monitors  - All monitors from  sysinternals (RegMon 7.04, FileMon 7.04, ...) and  45 others: Regshot  2.0.1, RegSnap Pro 6.1, kerberos 1.13p API spy, VB  Spy 2.3, ...&lt;br /&gt;Other  - 25 programs to reset trial and creating NFO  (Registry Trash Keys  Finder, Trial-Reset, Data ****, EVACleaner 2.7 +  SRC, Damn NFO Viewer,  ...)&lt;br /&gt;Packers - Packers 50 EXE files, code  scramblers (ASPack,  NSPack, PECompact, PECrypt, UPX, WinUPack ...) - all  the most recent  version&lt;br /&gt;Patchgens - 35 Patch Maker (Patchmaker 1.2g, WCRPatcher 1.2.12, Universal Patcher 2.0 Pro, ABEL Loader Generator 2.31, ...)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt;&lt;br /&gt;1. burn to cd or mount using a virutal drive e.g. Alcohol120%&lt;br /&gt;2. install the pre-cracked software&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Download Links:&lt;/b&gt;&lt;br /&gt;&lt;div class="scriptcode"&gt;&lt;a href="http://www.filesonic.com/folder/2729531" target="_blank" rel="nofollow"&gt;http://www.filesonic.com/folder/2729531&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;a class="addthis_button" rel="nofollow" href="http://www.addthis.com/bookmark.php?v=250&amp;amp;username=xa-4c825b975295c1ff"&gt;&lt;img src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div class="quote"&gt; &lt;div class="news"&gt;&lt;strong&gt;Rapid Downoad&lt;/strong&gt;&lt;/div&gt; &lt;div class="news"&gt;&lt;a href="http://downyux.com/download/Collection%20Programming%20and%20Tools%20Crack%20%282011%29.html" target="_blank" rel="nofollow"&gt;RapidShare Download Collection Programming and Tools Crack (2011)&lt;/a&gt;&lt;/div&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/3661479078604012602/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/collection-programming-and-tools-crack_23.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/3661479078604012602" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/3661479078604012602" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/collection-programming-and-tools-crack_23.html" rel="alternate" title="Collection Programming and Tools Crack (2011)" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-1486242998733609893</id><published>2012-03-17T06:08:00.001-07:00</published><updated>2012-03-17T06:08:22.803-07:00</updated><title type="text">Complete List of 100 Centuries by Sachin Tendulkar</title><content type="html">&lt;p&gt;&lt;img title="sachin-tendulkar" src="http://abhisays.com/wp-content/uploads/2012/03/sachin-tendulkar.jpg" alt="" height="196" width="201" /&gt;Finally  after a long wait of one year, Sachin Tendulkar scored his 100th  international ton in the match against Bangladesh. Sachin helped India  to score 289 runs in 50 overs but unfortunately Bangladesh scored 293  for five in 49.2 overs and won the match by five wickets. Anyway, Sachin  has become the first cricketer in the world to score 100 international  centuries, a record which came after more than two decade long career.  He is regarded as one of the greatest batsmen in the history of cricket.  Besiders being the highest century maker, he is the leading run-scorer  in Test and one-day international cricket. I have compiled the complete  list of all the hundred international centuries scored by Sachin. Please  have a look.&lt;/p&gt; &lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;img title="sachin-100-100" src="http://abhisays.com/wp-content/uploads/2012/03/sachin-100-100.jpg" alt="" height="430" width="331" /&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;One Day International Centuries ::&lt;/strong&gt;&lt;/p&gt; &lt;table border="1" cellpadding="0" cellspacing="0"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;1&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;110&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;R. Premadasa Stadium, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;9 September, 1994&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;2&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;115&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Zealand&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;IPCL Sports Complex Ground, Vadodara&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;28 October, 1994&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;3&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;105&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;West Indies&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sawai Mansingh Stadium, Jaipur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;11 November, 1994&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;4&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;112*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sharjah Cricket Association Stadium, Sharjah&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;9 April, 1995&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;5&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;127*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Kenya&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Barabati Stadium, Cuttack&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;18 February, 1996&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;6&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;137&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Feroz Shah Kotla, New Delhi&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;2 March, 1996&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;7&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;100&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Pakistan&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Padang, Singapore&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;5 April, 1996&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;8&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;118&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Pakistan&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sharjah Cricket Association Stadium, Sharjah&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;15 April, 1996&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;9&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;110&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;R. Premadasa Stadium, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;28 August, 1996&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;10&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;114&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Wankhede Stadium, Mumbai&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;14 December, 1996&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;11&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;104&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Zimbabwe&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Willowmoore Park, Benoni&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;9 February, 1997&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;12&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;117&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Zealand&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;M. Chinnaswamy Stadium, Bangalore&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;14 May, 1997&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;13&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;100&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Green Park Stadium, Kanpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;7 April, 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;14&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;143&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sharjah Cricket Association Stadium, Sharjah&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;22 April, 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;15&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;134&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sharjah Cricket Association Stadium, Sharjah&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;24 April, 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;16&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;100*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Kenya&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Eden Gardens, Kolkata&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;31 May, 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;17&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;128&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;R. Premadasa Stadium, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;7 July, 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;18&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;127*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Zimbabwe&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Queens Sports Club, Bulawayo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;26 September, 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;19&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;141&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Bangabandhu Stadium, Dhaka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;28 October, 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;20&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;118*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Zimbabwe&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sharjah Cricket Association Stadium, Sharjah&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;8 November, 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;21&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;124*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Zimbabwe&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sharjah Cricket Association Stadium, Sharjah&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;13 November, 199&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;22&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;140*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Kenya&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;County Ground, Bristol&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;23 May, 1999&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;23&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;120?&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sinhalese Sports Club, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;29 August, 1999&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;24&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;186*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Zealand&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lal Bahadur Shastri Stadium, Hyderabad&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;8 November, 1999&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;25&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;122&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;IPCL Sports Complex Ground, Vadodara&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;17 March, 2000&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;26&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;101&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sharjah Cricket Association Stadium, Sharjah&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;20 October, 2000&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;27&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;146&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Zimbabwe&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Barkatullah Khan Stadium, Jodhpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;8 December, 2000&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;28&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;139&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Nehru Stadium, Indore&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;31 March, 2001&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;29&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;122*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;West Indies&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Harare Sports Club, Harare&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;4 July, 2001&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;30&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;101&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Wanderers Stadium, Johannesburg&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;5 October, 2001&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;31&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;146&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Kenya&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Boland Park, Paarl&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;24 October, 2001&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;32&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;105*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;England&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Riverside Ground, Chester-le-Street&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;4 July, 2002&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;N/R&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;33&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;113&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;County Ground, Bristol&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;11 July, 2002&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;34&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;152&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Namibia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;City Oval, Pietermaritzburg&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;23 February, 2003&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;35&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;100&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Roop Singh Stadium, Gwalior&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;26 October, 2003&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;36&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;102&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Zealand&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lal Bahadur Shastri Stadium, Hyderabad&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;15 November, 2003&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;37&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;141&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Pakistan&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Rawalpindi Cricket Stadium, Rawalpindi&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;16 March, 2004&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;38&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;123&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Pakistan&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sardar Patel Stadium, Motera, Ahmedabad&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;12 April, 2005&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;39&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;100&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Pakistan&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Arbab Niaz Stadium, Peshawar&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;6 February, 2006&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;40&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;141*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;West Indies&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Kinrara Academy Oval, Kuala Lumpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;14 September, 2006&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;41&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;100*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;West Indies&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;IPCL Sports Complex Ground, Vadodara&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;31 January, 2007&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;42&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;117*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sydney Cricket Ground, Sydney&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;2 March, 2008&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;43&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;163*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Zealand&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;AMI Stadium, Christchurch&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;8 March, 2009&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;44&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;138&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;R. Premadasa Stadium, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;14 September, 2009&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;45&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;175&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Rajiv Gandhi International Stadium, Hyderabad&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;5 November, 2009&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;46&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;200*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Roop Singh Stadium, Gwalior&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;24 February, 2010&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;47&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;120&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;England&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;M Chinnaswamy Stadium, Bangalore&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;27 February 2011&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Tie&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;48&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;110&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Vidarbha Cricket Association Stadium, Jamtha, Nagpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;12 March 2011&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;49&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;114&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Bangladesh&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Shere Bangla National Stadium, Mirpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;16 March 2012&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;p&gt;&lt;strong&gt;Test Centuries ::&lt;/strong&gt;&lt;/p&gt; &lt;table border="1" cellpadding="0" cellspacing="0"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;1&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;119*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;England&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Old Trafford Cricket Ground, Manchester&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;14 August 1990&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;2&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;148*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sydney Cricket Ground, Sydney&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;6 January 1992&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;3&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;114&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;WACA Ground, Perth&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;3 February 1992&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;4&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;111&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Wanderers Stadium, Johannesburg&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;28 November 1992&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;5&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;165&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;England&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;M. A. Chidambaram Stadium, Chennai&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;12 February 1993&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;6&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;104*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sinhalese Sports Club, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;31 July 1993&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;7&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;142&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;K. D. Singh Babu Stadium, Lucknow&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;19 January 1994&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;8&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;179&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;West Indies&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Vidarbha Cricket Association Ground, Nagpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;2 December 1994&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;9&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;122&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;England&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Edgbaston Cricket Ground, Birmingham&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;8 June 1996&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;10&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;177&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;England&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Trent Bridge, Nottingham&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;5 July 1996&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;11&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;169&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Newlands Cricket Ground, Cape Town&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;4 January 1997&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;12&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;143&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;R. Premadasa Stadium, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;3 August 1997&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;13&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;139&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sinhalese Sports Club, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;11 August 1997&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;14&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;148&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Wankhede Stadium, Mumbai&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;4 December 1997&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;15&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;155*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;M. A. Chidambaram Stadium, Chennai&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;9 March 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;16&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;177&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;M. Chinnaswamy Stadium, Bangalore&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;26 March 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;17&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;113&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Zealand&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Basin Reserve, Wellington&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;29 December 1998&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;18&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;136&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Pakistan&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;M. A. Chidambaram Stadium, Chennai&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;31 January 1999&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;19&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;124*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sinhalese Sports Club, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;28 February 1999&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;20&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;126*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Zealand&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Punjab Cricket Association Stadium, Mohali&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;13 October 1999&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;21&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;217&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Zealand&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sardar Patel Stadium, Motera, Ahmedabad&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;30 October 1999&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;22&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;116&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Melbourne Cricket Ground, Melbourne&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;28 December 1999&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;23&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;122&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Zimbabwe&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Feroz Shah Kotla, New Delhi&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;21 November 2000&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;24&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;201*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Zimbabwe&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Vidarbha Cricket Association Ground, Nagpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;26 November 2000&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;25&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;126&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;M. A. Chidambaram Stadium, Chennai&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;20 March 2001&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;26&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;155&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Goodyear Park, Bloemfontein&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;3 November 2001&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;27&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;103&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;England&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sardar Patel Stadium, Motera, Ahmedabad&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;13 December 2001&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;28&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;176&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Zimbabwe&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Vidarbha Cricket Association Ground, Nagpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;24 February 2002&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;29&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;117&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;West Indies&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Queen’s Park Oval, Port of Spain&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;20 April 2002&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;30&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;193&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;England&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Headingley, Leeds&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;23 August 2002&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;31&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;176&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;West Indies&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Eden Gardens, Kolkata&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;3 November 2002&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;32&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;241*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sydney Cricket Ground, Sydney&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;4 January 2004&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;33&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;194*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Pakistan&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Multan Cricket Stadium, Multan&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;29 March 2004&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;34&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;248*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Bangladesh&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Bangabandhu National Stadium, Dhaka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;12 December 2004&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;35&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;109&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Feroz Shah Kotla, New Delhi&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;22 December 2005&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;36&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;101&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Bangladesh&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Bir Shrestha Shahid Ruhul Amin Stadium, Chittagong&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;19 May 2007&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;37&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;122*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Bangladesh&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sher-e-Bangla National Stadium, Mirpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;26 May 2007&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;38&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;154*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sydney Cricket Ground, Sydney&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;4 January 2008&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;39&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;153&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Adelaide Oval, Adelaide&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;25 January 2008&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;40&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;109&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Vidarbha Cricket Association Stadium, Nagpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;6 November 2008&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;41&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;103*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;England&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;M. A. Chidambaram Stadium, Chennai&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;15 December 2008&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;42&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;160&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;New Zealand&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Seddon Park, Hamilton&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;20 March 2009&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;43&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;100*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sardar Patel Stadium, Motera, Ahmedabad&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;20 November 2009&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;44&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;105*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Bangladesh&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Zohur Ahmed Chowdhury Stadium, Chittagong&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;18 January 2010&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;45&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;143&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Bangladesh&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Shere Bangla National Stadium, Mirpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;25 January 2010&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;46&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;100&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Cricket Association Stadium, Nagpur&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;9 February 2010&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;47&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;106&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Eden Gardens, Kolkata&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;15 February 2010&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;48&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;203&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sri Lanka&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Sinhalese Sports Club, Colombo&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;28 July 2010&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;49&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;214&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Australia&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;M. Chinnaswamy Stadium, Bangalore&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;11 October 2010&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Won&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;50&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;111*&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;SuperSport Park, Centurion&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;19 December 2010&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Lost&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;div&gt;51&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;146&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;South Africa&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Newlands Cricket Ground, Cape Town&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;4 January 2011&lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt;Drawn&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;p&gt;Sachin Tendulkar’s 100 international hundreds since his debut against Pakistan back in December, 1989 in sequential order.&lt;/p&gt; &lt;p&gt;1) 119 no vs England at Old Trafford on Aug 14, ‘90&lt;/p&gt; &lt;p&gt;2) 148 no India vs Australia at SCG on Jan 6,’92&lt;/p&gt; &lt;p&gt;3) 114 vs Australia at WACA, Perth on Feb 3, ‘92&lt;/p&gt; &lt;p&gt;4) 111 vs SA at Wanderers, Johannesburg on Nov 28, ‘92&lt;/p&gt; &lt;p&gt;5) 165 vs England at Chepauk, Chennai on Feb 12, ‘93&lt;/p&gt; &lt;p&gt;6) 104 no vs Sri Lanka at SSC, Colombo on Jul 31,’93&lt;/p&gt; &lt;p&gt;7) 142 vs SL at KDSB Stadium, Lucknow on Jan 19,’94&lt;/p&gt; &lt;p&gt; &lt;img src="http://abhisays.com/wp-includes/images/smilies/icon_cool.gif" alt="8)" /&gt; 110 vs Australia, at RPS, Colombo, on Sep 9, ‘94&lt;/p&gt; &lt;p&gt;9) 115 vs New Zealand at IPCL, Vadodara on Oct 28, ‘94&lt;/p&gt; &lt;p&gt;10) 105 vs West Indies at SMS, Jaipur on Nov 11, ‘94&lt;/p&gt; &lt;p&gt;11) 179 vs West Indies at VCA Ground, Nagpur on Dec 2,’94&lt;/p&gt; &lt;p&gt;12) 112 no vs Sri Lanka at Sharjah on Apr 9, ‘95&lt;/p&gt; &lt;p&gt;13) 127 no vs Kenya at Barabati, Cuttack on Feb 18, ‘96&lt;/p&gt; &lt;p&gt;14) 137 vs Sri Lanka at Kotla, New Delhi on Mar 2, ‘96&lt;/p&gt; &lt;p&gt;15) 100 vs Pakistan at Padang, Singapore, on Apr 5, ‘96&lt;/p&gt; &lt;p&gt;16) 118 vs Pakistan at Sharjah on Apr 15, ‘96&lt;/p&gt; &lt;p&gt;17) 122 vs England at Edgbaston, Birmingham, on Jun 8, ‘96&lt;/p&gt; &lt;p&gt;18) 177 vs England at Nottingham on Jul 5, ‘96&lt;/p&gt; &lt;p&gt;19) 110 vs Sri Lanka at RPS Colombo, on August 28, ‘96&lt;/p&gt; &lt;p&gt;20) 114 vs SA at Wankhede Stadium, Mumbai on Dec 14, ‘96&lt;/p&gt; &lt;p&gt;21) 169 vs SA at Newlands, Cape Town on Jan 4, ‘97&lt;/p&gt; &lt;p&gt;22) 104 vs Zimbabwe at Benoni on Feb 9, ‘97&lt;/p&gt; &lt;p&gt;23) 117 vs NZ at Chinnaswamy, Bangalore, on May 14, ‘97&lt;/p&gt; &lt;p&gt;24) 143 vs Sri Lanka at RPS, Colombo, on Aug 3, ‘97&lt;/p&gt; &lt;p&gt;25) 139 vs Sri Lanka at SSC, Colombo, on Aug 11, ‘97&lt;/p&gt; &lt;p&gt;26) 148 vs SL at Wankhede Stadium, Mumbai on Dec 4, ‘97&lt;/p&gt; &lt;p&gt;27) 155 No vs Australia at Chepauk, Chennai, on Mar 9, ‘98&lt;/p&gt; &lt;p&gt;28) 177 vs Aus at Chinnaswamy, Bangalore on March 26, ‘98&lt;/p&gt; &lt;p&gt;29) 100 vs Australia at Green Park, Kanpur, on Apr 7, ‘98&lt;/p&gt; &lt;p&gt;30) 143 vs Australia at Sharjah on Apr 22, ‘98&lt;/p&gt; &lt;p&gt;31) 134 vs Australia, Sharjah, on April 24, ‘98&lt;/p&gt; &lt;p&gt;32) 100 no vs Kenya, Eden Gardens, May 31, ‘98&lt;/p&gt; &lt;p&gt;33) 128 vs Sri Lanka at RPS, Colombo, on Jul 7, ‘98&lt;/p&gt; &lt;p&gt;34) 127 vs Zimbabwe at Bulawayo on Sep 26, ‘98&lt;/p&gt; &lt;p&gt;35) 141 vs Australia in Bangladesh on Oct 28, ‘98&lt;/p&gt; &lt;p&gt;36) 118 no vs Zimbabwe at Sharjah, on Nov 8, ‘98&lt;/p&gt; &lt;p&gt;37) 124 vs Zimbabwe at Sharjah on Nov 13, ‘98&lt;/p&gt; &lt;p&gt;38) 113 vs New Zealand at Wellington, on Dec 29, ‘98&lt;/p&gt; &lt;p&gt;39) 136 vs Pakistan at Chepauk, Chennai on Jan 31, ‘99&lt;/p&gt; &lt;p&gt;40) 124 no vs Sri Lanka at SSC, Colombo, on Feb 28, ‘99&lt;/p&gt; &lt;p&gt;41) 140 vs Kenya at Bristol, on May 23, ‘99&lt;/p&gt; &lt;p&gt;42) 120 vs Sri Lanka in Colombo, on Aug 29, ‘99&lt;/p&gt; &lt;p&gt;43) 126 no vs New Zealand at PCA, Mohali, on Oct 13, ‘99&lt;/p&gt; &lt;p&gt;44) 217 vs NZ at Motera, Ahmedabad, on Oct 30, ‘99&lt;/p&gt; &lt;p&gt;45) 186 vs New Zealand at Hyderabad on Nov 8, ‘99&lt;/p&gt; &lt;p&gt;46) 116 vs Australia at MCG on Dec 28, ‘99&lt;/p&gt; &lt;p&gt;47) 122 vs South Africa at Vadodara on Mar 17, ‘00&lt;/p&gt; &lt;p&gt;48) 101 vs Sri Lanka, Sharjah, Oct 20,’00&lt;/p&gt; &lt;p&gt;49) 122 vs Zimbabwe at Kotla, New Delhi, on Nov 21, ‘00&lt;/p&gt; &lt;p&gt;50) 201 no vs Zimbabwe at VCA, Nagpur, on Nov 26, ‘00&lt;/p&gt; &lt;p&gt;51) 146 vs Zimbabwe at Jodhpur, on Dec 8, ‘00&lt;/p&gt; &lt;p&gt;52) 126 vs Australia at Chepauk, Chennai on Mar 20, ‘01&lt;/p&gt; &lt;p&gt;53) 139 vs Australia at Indore on Mar 31, ‘01&lt;/p&gt; &lt;p&gt;54) 122 vs West Indies at Harare on Jul 4, ‘01&lt;/p&gt; &lt;p&gt;55) 101 vs SA at Wanderers, Johannesburg on Oct 5, ‘01&lt;/p&gt; &lt;p&gt;56) 146 vs Kenya at Paarl, South Africa, on Oct 24, ‘01&lt;/p&gt; &lt;p&gt;57) 155 vs SA at Goodyear Park, Bloemfontein, Nov 3, ‘01&lt;/p&gt; &lt;p&gt;58) 103 vs England at Motera, Ahmedabad, on Dec 13, ‘01&lt;/p&gt; &lt;p&gt;59) 176 vs Zimbabwe at VCA, Nagpur, on Feb 24, ‘02&lt;/p&gt; &lt;p&gt;60) 117 vs WI at QP Oval, Port of Spain, on Apr 20, ‘02&lt;/p&gt; &lt;p&gt;61) 105 vs England at Chester—Le—Street on Jul 4, ‘02&lt;/p&gt; &lt;p&gt;62) 113 vs Sri Lanka, Bristol, England, on Jul 11, ‘02&lt;/p&gt; &lt;p&gt;63) 193 vs England at Headingley, Leeds, on Aug 23, ‘02&lt;/p&gt; &lt;p&gt;64) 176 vs WI at Eden Gardens, Kolkata on Nov 3, ‘02&lt;/p&gt; &lt;p&gt;65) 152 vs Namibia, Pietermaritzburg, SA, on Feb 23, ‘03&lt;/p&gt; &lt;p&gt;66) 100 vs Australia, Gwalior, on Oct 26,’03&lt;/p&gt; &lt;p&gt;67) 102 vs New Zealand in Hyderabad on Nov 15, ‘03&lt;/p&gt; &lt;p&gt;68) 241 no vs Australia at SCG on Jan 4, ‘04&lt;/p&gt; &lt;p&gt;69) 141 vs Pakistan in Rawalpindi, on Mar 16, ‘04&lt;/p&gt; &lt;p&gt;70) 194 no vs Pakistan at Multan, on Mar 29, ‘04&lt;/p&gt; &lt;p&gt;71) 248 no vs Bangladesh in Dhaka, on Dec 12, ‘04&lt;/p&gt; &lt;p&gt;72) 123 vs Pakistan at Ahmedabad on Apr 12, ‘05&lt;/p&gt; &lt;p&gt;73) 109 vs Sri Lanka at Kotla, New Delhi, on Dec 22, ‘05&lt;/p&gt; &lt;p&gt;74) 100 vs Pakistan at Peshawar, on February 6, ‘06&lt;/p&gt; &lt;p&gt;75) 141 no vs WI at Kuala Lumpur, on Sept 14, ‘06&lt;/p&gt; &lt;p&gt;76) 100 no vs WI at Vadodara, on Jan 31, ‘07&lt;/p&gt; &lt;p&gt;77) 101 vs Bangladesh in Chittagong on May 19, ‘07&lt;/p&gt; &lt;p&gt;78) 122 no vs Bangladesh in Mirpur on May 26, ‘07&lt;/p&gt; &lt;p&gt;79) 154 no vs Australia at SCG, on Jan 4, ‘08&lt;/p&gt; &lt;p&gt;80) 153 vs Australia at Adelaide Oval, on Jan 25, ‘08&lt;/p&gt; &lt;p&gt;81) 117 no vs Australia at SCG on Mar 2, ‘08&lt;/p&gt; &lt;p&gt;82) 109 vs Australia at Nagpur, on Nov 6, ‘08&lt;/p&gt; &lt;p&gt;83) 103 no vs England at Chepauk, Chennai, on Dec 15, ‘08&lt;/p&gt; &lt;p&gt;84) 163 vs New Zealand at Christchurch, on Mar 8, ‘09&lt;/p&gt; &lt;p&gt;85) 160 vs New Zealand at Seddon Park, on March 20, ‘09&lt;/p&gt; &lt;p&gt;86) 138 vs Sri Lanka at RPS, Colombo, on Sep 14, ‘09&lt;/p&gt; &lt;p&gt;87) 175 vs Australia at Hyderabad on Nov 5, ‘09&lt;/p&gt; &lt;p&gt;88) 100 no vs Sri Lanka at Ahmedabad, on Nov 20, ‘09&lt;/p&gt; &lt;p&gt;89) 105 no vs Bangladesh at Chittagong, on Jan 18, ‘10&lt;/p&gt; &lt;p&gt;90) 143 vs Bangladesh at Mirpur, on Jan 25, ‘10&lt;/p&gt; &lt;p&gt;91) 100 vs South Africa at Nagpur, on Feb 9, ‘10&lt;/p&gt; &lt;p&gt;92) 106 vs South Africa at Kolkata, on Feb 15, ‘10&lt;/p&gt; &lt;p&gt;93) 200 no vs South Africa at Gwalior, on Feb 24, ‘10&lt;/p&gt; &lt;p&gt;94) 203 vs Sri Lanka at Colombo, on Jul 28, ‘10&lt;/p&gt; &lt;p&gt;95) 214 vs Australia at Bangalore, on Oct 11, ‘10&lt;/p&gt; &lt;p&gt;96) 111 no vs South Africa at Cape Town, on Dec 19, ‘10&lt;/p&gt; &lt;p&gt;97) 146 vs South Africa at Cape Town, on Jan 4, ‘11&lt;/p&gt; &lt;p&gt;98) 120 vs England at Bangalore, on Feb 27, ‘11&lt;/p&gt; &lt;p&gt;99) 111 vs South Africa at Nagpur, on March 12, ‘11&lt;/p&gt; &lt;p&gt;100) 114 vs Bangaldesh at Mirpur, On March 16, ‘12&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/1486242998733609893/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/complete-list-of-100-centuries-by.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1486242998733609893" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1486242998733609893" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/complete-list-of-100-centuries-by.html" rel="alternate" title="Complete List of 100 Centuries by Sachin Tendulkar" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-8522711828914283448</id><published>2012-03-02T17:43:00.000-08:00</published><updated>2012-03-02T17:44:16.163-08:00</updated><title type="text">What is Clickjacking? Download tool for Clickjacking Technique</title><content type="html">&lt;span id="4978735979329442528"&gt; &lt;p&gt;Clickjacking is a term first  introduced by Jeremiah Grossman and  Robert Hansen in 2008 to describe a  technique whereby an attacker tricks  a user into performing certain  actions on a website by hiding clickable  elements inside an invisible  iframe. &lt;/p&gt;&lt;p&gt;Although it has been two  years since the concept was  first introduced, most websites still have  not implemented effective  protection against clickjacking. In part, this  may be because of the  difficulty of visualising how the technique works  in practice.&lt;/p&gt; &lt;p&gt;This  new browser-based tool allows a user to  experiment with clickjacking  techniques by using point-and-click to  visually select different  elements within a webpage to be targeted. The  tool also allows several  'next-generation' clickjacking techniques to be  used, as introduced in  Paul Stone's Blackhat Europe 2010 talk.&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Among the features of the new tool are:&lt;/strong&gt;&lt;br /&gt;Use point-and-click to select the areas of a page to be targeted&lt;br /&gt;Supports the new 'text-field injection' technique&lt;br /&gt;Supports the new 'content extraction' technique&lt;br /&gt;'Visible mode' replay allowing a user to see how the technique works behind the science&lt;br /&gt;'Hidden mode' replay allows the same steps to be replayed in a hidden manner, simulating a real clickjacking attack.&lt;/p&gt; &lt;p&gt;The tool is currently in an early beta stage, and &lt;strong&gt;works best in Firefox 3.6.&lt;/strong&gt;   Full support for other browsers will follow shortly. For further   information, please see the Readme.txt file in the downloadable tool.&lt;/p&gt;&lt;pre&gt;&lt;a href="http://www.contextis.co.uk/resources/tools/clickjacking-tool/cjtool.zip"&gt;&lt;strong&gt;http://www.contextis.co.uk/resources/tools/clickjacking-tool/cjtool.zip&lt;/strong&gt;&lt;/a&gt;&lt;/pre&gt;&lt;pre&gt;S&lt;/pre&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/8522711828914283448/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/what-is-clickjacking-download-tool-for.html#comment-form" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/8522711828914283448" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/8522711828914283448" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/what-is-clickjacking-download-tool-for.html" rel="alternate" title="What is Clickjacking? Download tool for Clickjacking Technique" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-1661828300056451196</id><published>2012-03-02T17:08:00.000-08:00</published><updated>2012-03-02T17:09:03.066-08:00</updated><title type="text">Collection Programming and Tools Crack (2011)</title><content type="html">&lt;img src="http://i3.ambrybox.com/200311/1300632559325.jpg" alt="Collection Programming and Tools Crack (2011)" title="Collection Programming and Tools Crack (2011)" height="452" width="300" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Collection Programming and Tools Crack (2011) | 4.59 GB&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;If   you're already familiar with the basics krekerstva and programming,   then videokurs CRACKL @ B could be for you to be even more useful,   because in the course of lessons you will learn the secrets of my   approach, you can "hear" the professional details that are imperceptible   beginner.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;List of lessons video course (they are all voiced):&lt;/b&gt;&lt;br /&gt;1. The benefits of krekerstva for themselves. (Audio)&lt;br /&gt;2. How not to transgress the law, being a *******. (Audio)&lt;br /&gt;3. Where to start. Stages of becoming a programmer and *******.&lt;br /&gt;4. Delphi, C or PHP: a difficult choice.&lt;br /&gt;5. PHP modern language for a beginner. Installation and the first program.&lt;br /&gt;6. Practice in PHP. Part One.&lt;br /&gt;7. Practice in PHP. Part II.&lt;br /&gt;8. Fundamentals of code: the number system, bits, bytes.&lt;br /&gt;9. What is common between EXE, JPG, TXT&lt;br /&gt;10. Program Analysis: Entropy, the basics of virology.&lt;br /&gt;11. Processor architecture for the purpose of cracking.&lt;br /&gt;12. Assembler. Familiarity with the language. Stack format registers.&lt;br /&gt;13. Assembler. Commands, flags, and examples.&lt;br /&gt;14. Overview of the main tools *******&lt;br /&gt;15. Familiarization with the debugger OllyDbg&lt;br /&gt;16. Specialization *******s&lt;br /&gt;17. Breaking the first program. Disassembly, the search code.&lt;br /&gt;18. Breaking the second program. Debugging, patch, use patterns.&lt;br /&gt;19. The structure of executable files PE.&lt;br /&gt;20. Unpacking the first program. Secrets of the approach. Classic hack unpacked program.&lt;br /&gt;21. Surprises from the protectors: littering and morph code, virtual machine, the encrypted code, anti-******* tools.&lt;br /&gt;22. Radiotekh + protection programs: a homemade dongle.&lt;br /&gt;23. Forum CRACKL @ B. Great opportunity for a proper understanding.&lt;br /&gt;24. At last&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Ext. Information:&lt;/b&gt;&lt;br /&gt;In addition, according to tradition CRACKL @ B DVD, the disk also contains tools krekerskie (1900 MB - 600 files).&lt;br /&gt;&lt;i&gt;Folder:&lt;/i&gt;&lt;br /&gt;CRACKLAB.RU.exe - a copy of the entire site CRACKL @ B (800 megabytes zipped in 7z SFX)&lt;br /&gt;Analyzers - Analyzer 22 files (PEiD Final, RDG Packer Detector ,...)&lt;br /&gt;*******s   - 25 programs to guess passwords for RAR, ZIP, The BAT, OfficeXP, MD5   (Passware Kit 9.0 Registered, Multi Password Recovery, Rar Password   ******* 4.12, The Bat Password Viewer, The Bat Unpass ,...). Here is the   archive dictionaries chastovstrechayuschimisya passwords - to break  the  method of "dictionary attacks", the total size of the uncompressed   dictionary - 40 MB.&lt;br /&gt;Crypto - 20 programs for cracking the  encryption,  hash (PasswordsPro 2.5.1.1, RSA Attacking Toolkit 0.1f, MD5  CrackFAST  2.10, Encryption Xpert 1.2, ...)&lt;br /&gt;Debuggers - 9 debuggers   (DriverStudio 3.2, SoftICE 4.05 and 4.27 (under 98, and NT / XP) + all   sorts of gadgets for him, OllyDbg 1.10 + crack + plugins + Russian  help,  OllyDbg 2.01, Syser Debugger, TRW2000, SoftSnoop, Rock Debugger,  Auto  Debug Professional)&lt;br /&gt;Decompilers - 35 decompilers (DeDe 3.50 +  SDK,.  NET Reflector 5.1, Numega SmartCheck 6.20 RC2, 9Rays Spices. NET  Suite  5.0, ReFox MMII, VB RezQ 3.3a, MSI FEU 0.2, EMS Source Rescuer  2.0, ...)&lt;br /&gt;Disassemblers  - 30 disassembler and associated tools (IDA  Pro, Flair and WinCE  Debugger + directory (RUS) + new plug-ins, Killer  WinDASM 10, Sourcer  8.01, ...)&lt;br /&gt;Dongles and LMs - a set of 47 major  management licenses  for research and instumentov hardware keys  (Sentinel LM SDK 7.3, FLEXlm  SDK 9.2i, FLEXlm SDK 11.4, HASP and  Hardlock Emulator 2007, Guardant SDK  5.0, SentinelSuperPro 6.0 Kit,  ...)&lt;br /&gt;EXE Tools - more than 25 tools  for working with EXE files (SDL  Passolo 2009, Restorator 2007 Full,  PETools 1.5, Stud_PE 2.3, PE  Explorer 1.99, PE Studio 3.3, ...)&lt;br /&gt;Monitors  - All monitors from  sysinternals (RegMon 7.04, FileMon 7.04, ...) and  45 others: Regshot  2.0.1, RegSnap Pro 6.1, kerberos 1.13p API spy, VB  Spy 2.3, ...&lt;br /&gt;Other  - 25 programs to reset trial and creating NFO  (Registry Trash Keys  Finder, Trial-Reset, Data ****, EVACleaner 2.7 +  SRC, Damn NFO Viewer,  ...)&lt;br /&gt;Packers - Packers 50 EXE files, code  scramblers (ASPack,  NSPack, PECompact, PECrypt, UPX, WinUPack ...) - all  the most recent  version&lt;br /&gt;Patchgens - 35 Patch Maker (Patchmaker 1.2g, WCRPatcher 1.2.12, Universal Patcher 2.0 Pro, ABEL Loader Generator 2.31, ...)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt;&lt;br /&gt;1. burn to cd or mount using a virutal drive e.g. Alcohol120%&lt;br /&gt;2. install the pre-cracked software&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Download Links:&lt;/b&gt;&lt;br /&gt;&lt;div class="scriptcode"&gt;&lt;a href="http://www.filesonic.com/folder/2729531" target="_blank" rel="nofollow"&gt;http://www.filesonic.com/folder/2729531&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/1661828300056451196/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/collection-programming-and-tools-crack.html#comment-form" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1661828300056451196" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1661828300056451196" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/collection-programming-and-tools-crack.html" rel="alternate" title="Collection Programming and Tools Crack (2011)" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-3199865787344712623</id><published>2012-03-02T17:03:00.000-08:00</published><updated>2012-03-02T17:04:01.879-08:00</updated><title type="text">Ram Charan's Pic</title><content type="html">&lt;h3 class="post-title entry-title"&gt; &lt;/h3&gt; &lt;div class="post-header"&gt;  &lt;/div&gt; &lt;div class="post-body entry-content" id="post-body-4107601013828696189"&gt; &lt;div dir="ltr" style="text-align: left;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjH6kgqWBh7Q5qYSR8-5KRogGxpqP9bISBNKFNm_WAtszrJiqmKCa83LEKHMQSuSgUJ-it-t-J7fUqxUjTDtci6sRewosTv0lm3pkzZ0clRPmm-34sAFaPQXJp-4dl2fO3c3LHvFqJHOQs/s1600/ram.jpg" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjH6kgqWBh7Q5qYSR8-5KRogGxpqP9bISBNKFNm_WAtszrJiqmKCa83LEKHMQSuSgUJ-it-t-J7fUqxUjTDtci6sRewosTv0lm3pkzZ0clRPmm-34sAFaPQXJp-4dl2fO3c3LHvFqJHOQs/s320/ram.jpg" border="0" height="212" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/3199865787344712623/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/ram-charans-pic.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/3199865787344712623" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/3199865787344712623" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/ram-charans-pic.html" rel="alternate" title="Ram Charan's Pic" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjH6kgqWBh7Q5qYSR8-5KRogGxpqP9bISBNKFNm_WAtszrJiqmKCa83LEKHMQSuSgUJ-it-t-J7fUqxUjTDtci6sRewosTv0lm3pkzZ0clRPmm-34sAFaPQXJp-4dl2fO3c3LHvFqJHOQs/s72-c/ram.jpg" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-6099262613430955928</id><published>2012-03-02T17:01:00.001-08:00</published><updated>2012-03-02T17:01:36.976-08:00</updated><title type="text">Hide or Remove all your Windows Desktop Icons</title><content type="html">&lt;p&gt;Hide or Remove all your Windows Desktop Icons from your system in   single click without following any long process of removing icon , you   can do this from your desktop.&lt;br /&gt;&lt;span id="more-4892"&gt;&lt;/span&gt;&lt;br /&gt;Right-Click anywhere on your desktop -&amp;gt; Select &lt;strong&gt;View -&amp;gt; &lt;/strong&gt;Uncheck &lt;strong&gt;Show desktop icons.&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://info.scrapur.com/img/clean-desktop.png"&gt;&lt;img src="http://info.scrapur.com/img/clean-desktop.png" alt="" title="clean-desktop" class="aligncenter size-full wp-image-4893" height="287" width="435" /&gt;&lt;/a&gt;&lt;br /&gt;All your desktop icons will get hidden. To get all your hidden icon back on your desktop simply repeat the steps.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/6099262613430955928/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/hide-or-remove-all-your-windows-desktop.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/6099262613430955928" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/6099262613430955928" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/03/hide-or-remove-all-your-windows-desktop.html" rel="alternate" title="Hide or Remove all your Windows Desktop Icons" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-6870252045809930563</id><published>2012-02-05T04:48:00.001-08:00</published><updated>2012-02-05T04:48:54.314-08:00</updated><title type="text">How to Easily Switch Between Profiles On Firefox With ProfileSwitcher</title><content type="html">&lt;p&gt;One of the best things about Firefox is that it lets you create  multiple user profiles on it. This feature might come in handy when you  have siblings around working on the same computer. Firefox comes with an  excellent profile manager of its own where you can &lt;a title="How to Create a New Profile in Firefox" href="http://www.guidingtech.com/7430/how-to-create-a-new-profile-in-firefox/"&gt;create and manage profiles&lt;/a&gt;.  The sad part is that there is no way you can quickly switch between the  profiles directly from your browser. It’s like giving a five year old a  wrapped chocolate bar he can barely open.&lt;/p&gt;&lt;p&gt;To fix the things we already covered an add-on called &lt;a title="Create and Manage Firefox Profiles With Switchy" href="http://www.guidingtech.com/8533/switchy-create-manage-firefox-profiles/"&gt;Switchy&lt;/a&gt;,  a Firefox add-on that lets you create and switch between profiles  quickly. Though the plugin did the task it claimed, there were some  issues like there are weird symbols in the toolbar icon options, one can  only create a profile and there is no option to remove or rename an  existing one which sometimes made working on it difficult and annoying.&lt;/p&gt;&lt;p&gt;So today I would like to introduce another profile switcher for Firefox that does the task effectively yet elegantly.&lt;/p&gt;&lt;p&gt;&lt;a title="Install ProfileSwitcher" href="https://addons.mozilla.org/en-US/firefox/addon/profileswitcher/" target="_blank"&gt;ProfileSwitcher&lt;/a&gt;  is a simple add-on for Firefox that lets you easily launch other  profiles right from the browser menu. After you install the add-on  restart your browser. Now when you click on the file menu you will find  two new options. The first one is the&lt;strong&gt; Launch another profile&lt;/strong&gt; and the second one is &lt;strong&gt;Open Profile Manager&lt;/strong&gt; (Normal and Safe Mode).&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="profile switcher" src="http://cdn.guidingtech.com/assets/postimages/2012/01/profile-switcher.png" alt="profile switcher" border="0" height="407" width="444" /&gt;&lt;/p&gt;&lt;p&gt;As  the name speaks, the first option lets you switch between profiles  easily and the second one opens the default profile manager for Firefox  where you can handle all your profile needs.&lt;/p&gt;&lt;p&gt;If you already have the necessary profiles created, just click on the file menu and choose your desired profile from the &lt;strong&gt;Launch Another Profile&lt;/strong&gt; section. If you don’t have the profiles created, you can open the profile manager using the second option and create them.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="create manage profile" src="http://cdn.guidingtech.com/assets/postimages/2012/01/create-manage-profile.png" alt="create manage profile" border="0" height="297" width="381" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; You will have to install the add-on across all the Firefox profiles you have on your computer manually.&lt;/p&gt;&lt;p&gt;There  are some settings about the add-on behavior as well that you can  configure from the add-on options page in the add-on manager.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="profileswitcher options" src="http://cdn.guidingtech.com/assets/postimages/2012/01/profileswitcher-options.png" alt="profileswitcher options" border="0" height="398" width="372" /&gt;&lt;/p&gt;&lt;h2&gt;My Verdict&lt;/h2&gt;&lt;p&gt;Switchy’s  developer has promised that he will come with a better add-on in the  next update which will cover all the present shortcomings. Let’s see how  well it works out but until then ProfileSwitcher is the best to go  with.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/6870252045809930563/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-to-easily-switch-between-profiles.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/6870252045809930563" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/6870252045809930563" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-to-easily-switch-between-profiles.html" rel="alternate" title="How to Easily Switch Between Profiles On Firefox With ProfileSwitcher" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-5173120614329194583</id><published>2012-02-05T04:45:00.000-08:00</published><updated>2012-02-05T04:46:30.730-08:00</updated><title type="text">What is Pen-Testing? | Pen-Testing vs.Vulnerability Assessment | How Vulnerabilities Are Identified?</title><content type="html">&lt;div style="text-align: center;"&gt; &lt;b&gt;What is Pen-Testing?&lt;/b&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt; &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;Penetration testing is the process&lt;/b&gt; of attempting to gain access  to resources without knowledge of usernames, passwords and other normal  means of access. If the focus is on computer resources, then examples of  a successful penetration would be obtaining or subverting confidential  documents, price lists, databases and other protected information.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; The main thing that separates a &lt;b&gt;penetration tester&lt;/b&gt; from an attacker is permission. The &lt;b&gt;penetration tester&lt;/b&gt;  will have permission from the owner of the computing resources that are  being tested and will be responsible to provide a report. The goal of a  &lt;b&gt;penetration test&lt;/b&gt; is to increase the security of the computing resources being tested.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; In many cases, a &lt;b&gt;penetration tester&lt;/b&gt; will be given user-level  access and in those cases, the goal would be to elevate the status of  the account or user other means to gain access to additional information  that a user of that level should not have access to.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; Some &lt;b&gt;penetration testers &lt;/b&gt;are contracted to find one hole, but in many cases, they are expected to keep looking past the first hole so that additional &lt;b&gt;vulnerabilities&lt;/b&gt; can be identified and fixed. It is important for the&lt;b&gt; pen-tester&lt;/b&gt;  to keep detailed notes about how the tests were done so that the  results can be verified and so that any issues that were uncovered can  be resolved.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; It’s important to understand that it is very unlikely that a pen-tester  will find all the security issues. As an example, if a penetration test  was done yesterday, the organization may pass the test. However, today  is Microsoft’s “patch Tuesday” and now there’s a brand new vulnerability  in some Exchange mail servers that were previously considered secure,  and next month it will be something else. Maintaining a secure network  requires constant vigilance.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt; &lt;b&gt;Pen-Testing vs.Vulnerability Assessmen&lt;/b&gt;t&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; &lt;div&gt; There is often some confusion between &lt;b&gt;penetration testing and vulnerability assessment.&lt;/b&gt; The two terms are related but &lt;b&gt;penetration testing&lt;/b&gt;  has more of an emphasis on gaining as much access as possible while  vulnerability testing places the emphasis on identifying areas that are  vulnerable to a computer attack. &lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; An automated &lt;b&gt;vulnerability scanner&lt;/b&gt; will often identify possible  vulnerabilities based on service banners or other network responses that  are not in fact what they seem. A vulnerability assessor will stop just  before compromising a system, whereas a &lt;b&gt;penetration tester&lt;/b&gt; will go as far as they can within the scope of the contract.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; It is important to keep in mind that you are dealing with a ‘Test.’ A  penetration test is like any other test in the sense that it is a  sampling of all possible systems and configurations. Unless the  contractor is hired to test only a single system, they will be unable to  identify and penetrate all possible systems using all possible  vulnerabilities. As such, any Penetration Test is a sampling of the  environment. Furthermore, most testers will go after the easiest targets  first.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt; &lt;b&gt;How Vulnerabilities Are Identified?&lt;/b&gt;&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; &lt;div&gt; Vulnerabilities need to be identified by both the &lt;b&gt;penetration tester&lt;/b&gt;  and the vulnerability scanner. The steps are similar for the security  tester and an unauthorized attacker. The attacker may choose to proceed  more slowly to avoid detection, but some&lt;b&gt; penetration testers &lt;/b&gt;will also start slowly so that the target company can learn where their detection threshold is and make improvements.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; The first step in either a &lt;b&gt;penetration test or a vulnerability scan is reconnaissance.&lt;/b&gt;  This is where the tester attempts to learn as much as possible about  the target network as possible. This normally starts with identifying  publicly accessible services such as mail and web servers from their  service banners. &lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; Many servers will report the Operating System they are running on, the  version of software they are running,patches and modules that have been  enabled, the current time, and perhaps even some internal information  like aninternal server name or IP address.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; Once the tester has an idea what software might be running on the target  computers, that information needs to be verified. The tester really  doesn’t KNOW what is running but he may have a pretty good idea. The  information that the tester has can be combined and then compared with  known vulnerabilities, and then those vulnerabilities can be tested to  see if the results support or contradict the prior information.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; In a stealthy penetration test, these first steps may be repeated for  some time before the tester decides to launch a specific attack. In the  case of a strict vulnerability assessment, the attack may never be  launched so the owners of the target computer would never really know if  this was an exploitable vulnerability or not.&lt;/div&gt; &lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/5173120614329194583/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/what-is-pen-testing-pen-testing.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/5173120614329194583" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/5173120614329194583" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/what-is-pen-testing-pen-testing.html" rel="alternate" title="What is Pen-Testing? | Pen-Testing vs.Vulnerability Assessment | How Vulnerabilities Are Identified?" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-5935481158426804305</id><published>2012-02-05T04:43:00.000-08:00</published><updated>2012-02-05T04:44:24.200-08:00</updated><title type="text">Local File Inclusion Exploiter Version 1.2 Download Free</title><content type="html">&lt;h3 class="post-title entry-title"&gt; &lt;/h3&gt; &lt;div class="post-header"&gt;  &lt;/div&gt; &lt;div class="post-body entry-content"&gt; &lt;span id="1574857532678537772"&gt; &lt;div dir="ltr" style="text-align: left;"&gt; &lt;a href="http://www.xenuser.org/wp-content/uploads/2010/11/lfi_sploiter-1_0-screenshot-287x300.png"&gt;&lt;img alt="" src="http://www.xenuser.org/wp-content/uploads/2010/11/lfi_sploiter-1_0-screenshot-287x300.png" style="cursor: hand; cursor: pointer; display: block; height: 300px; margin: 0px auto 10px; text-align: center; width: 287px;" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt; &lt;b&gt;Local File Inclusion Exploiter Version 1.2 Download Free by Valentin &lt;/b&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;Description &lt;/b&gt;&lt;br /&gt;The Simple Local File Inclusion Exploiter helps you to exploit LFI  vulnerabilities. After you found one, simply pass the URL of the  affected website and the vulnerable parameter to this tool. You can also  use this tool to scan a parameter of an ULR for a LFI vulnerability.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Usage&lt;/b&gt;./lfi_sploiter.py –exploit-url= –vulnerable-parameter=&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Usage example&lt;/b&gt;./lfi_sploiter.py –exploit-url=http://www.example.com/page.php?file=main –vulnerable-parameter=file&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Usage notes&lt;/b&gt;- Always use http://….&lt;br /&gt;- When you pass a vulnerable parameter, this tool assumes that it is really vulnerable.&lt;br /&gt;- If you do not know if a parameter is vulnerable, simply pass it to this script and let the scanner have a look.&lt;br /&gt;- Only use one vulnerable parameter at once.&lt;br /&gt;- This tool does not work with SEO URLs, such as http://www.example.com/news-about-the-internet/.&lt;br /&gt;- If you only have a SEO URL, try to find out the real URL which contents parameters.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Feature list&lt;/b&gt;- Provides a random user agent for the connection.&lt;br /&gt;- Checks if a connection to the target can be established.&lt;br /&gt;- Tries catch most errors with error handling.&lt;br /&gt;- Contains a LFI scanner (only scans one parameter at once).&lt;br /&gt;- Finds out how a LFI vulnerability can be exploited (e.g. directory depth).&lt;br /&gt;- Supports nullbytes!&lt;br /&gt;- Exploit features: Dumps a list of interesting files to your hard disk.&lt;br /&gt;- Supports common *nix targets, but no Windows systems.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Known issues&lt;/b&gt;- I know there is more about LFI than it is covered in this tool. But this is the first release,&lt;br /&gt;and more features will be implemented in future versions.&lt;br /&gt;- This tool is only able to handle “simple” LFI vulnerabilities, but not  complex ones. For example: Some LFI vulnerabilities consist of two URL  parameters or require to find a way around filters. In those cases, this  tool unfortunately does not work.&lt;br /&gt;- Like most other LFI exploiter / scanner, this tool here also has  problems with handling certain server responses. So this tool does not  work with every website.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Some notes&lt;/b&gt;- Tested with Python 2.6.5.&lt;br /&gt;- Modify, distribute, share and copy the code in any way you like!&lt;br /&gt;- Please note that this tool was created for educational purposes only.&lt;br /&gt;- Do not use this tool in an illegal way. Know and respect your local laws.&lt;br /&gt;- Only use this tool for legal purposes, such as pentesting your own website&lt;br /&gt;- I am not responsible if you cause any damage or break the law.&lt;br /&gt;- Power to teh c0ws!&lt;/div&gt; &lt;div&gt; &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;All are Python scripts&lt;/b&gt;&lt;br /&gt;&lt;div&gt; &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;a href="http://www.xenuser.org/tools/lfi_sploiter.py"&gt;&lt;b&gt;Download Version 1.2&lt;/b&gt;&lt;/a&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;a href="http://www.xenuser.org/tools/lfi_sploiter-1_1.py"&gt;&lt;b&gt;Download Version 1.1&lt;/b&gt;&lt;/a&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;a href="http://www.xenuser.org/tools/lfi_sploiter-1_0.py"&gt;&lt;b&gt;Download Version 1.0&lt;/b&gt;&lt;/a&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/5935481158426804305/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/local-file-inclusion-exploiter-version.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/5935481158426804305" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/5935481158426804305" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/local-file-inclusion-exploiter-version.html" rel="alternate" title="Local File Inclusion Exploiter Version 1.2 Download Free" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-594646006637261099</id><published>2012-02-05T04:10:00.003-08:00</published><updated>2012-02-05T04:10:53.593-08:00</updated><title type="text">Exploring Google Music, the Amazing Cloud-based Music Player</title><content type="html">&lt;p&gt;Most of us, when asked about the default music manager and player we use on our computers, are likely to mention &lt;a href="http://itunes.apple.com/" rel="nofollow" target="_blank" title="Link added by VigLink" class="vglnk"&gt;iTunes&lt;/a&gt; or Windows Media Player. Both of these, and the other popular &lt;a title="How to Quickly Play Online Videos In Desktop Media Players" href="http://www.guidingtech.com/5986/play-online-videos-desktop-media-player/"&gt;desktop media players&lt;/a&gt; like Winamp and VLC are useful in their own right but they can only reign over your music as long as you are using your PC.&lt;/p&gt;&lt;p&gt;If  you also listen to music on your smartphone or any other such portable  device then getting your favorite tracks on them means manually syncing  it with the computer, which after a while feels like drudgery.&lt;/p&gt;&lt;p&gt;You need a &lt;strong&gt;cloud-based music player &lt;/strong&gt;that  can show up your favorite playlists on any device which can connect to  the Internet, be it a smartphone or a public computer in a different  continent.&lt;/p&gt;&lt;p&gt;&lt;a href="https://music.google.com/"&gt;Google Music&lt;/a&gt;  is an online music manager and streaming service, and also a music  store that lets your play your music on the go. When I say that Google  Music is an online music streaming service, don’t judge it wrong by  comparing it to services like &lt;a title="Find and Stream Your Favorite Music for Free with Grooveshark" href="http://www.guidingtech.com/6251/stream-music-free-grooveshark/"&gt;Grooveshark&lt;/a&gt; and &lt;a title="Listen to Music Online With Earbits, a Cool, Free Web Based Radio" href="http://www.guidingtech.com/9133/listen-music-online-earbits-free-web-based-radio/"&gt;Earbits&lt;/a&gt;. Google music does stream your songs on the clouds, but the songs should come from you. It is also available as an &lt;a title="Google Music Android App" href="https://market.android.com/details?id=com.google.android.music" target="_blank"&gt;Android app&lt;/a&gt; and &lt;a title="Google Music for iOS" href="http://reviews.cnet.com/8301-19512_7-20103901-233/google-music-comes-to-ios-as-a-web-app/" target="_blank"&gt;web based optimized versions for iOS devices&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="Google Music Manager player" src="http://cdn.guidingtech.com/assets/postimages/2012/02/Google-Music-Manager-player.png" alt="Google Music Manager player" border="0" height="438" width="599" /&gt;&lt;/p&gt;&lt;p&gt;Let  us get started with Google Music and see how it works. Well, firstly,  here’s the bad news: Google Music is available only in the US for now.  And now the good news: you can easily &lt;a title="How to Hide Your IP, Browse the Web Anonymously and Access Restricted Sites" href="http://www.guidingtech.com/4216/hide-ip-anonymous-browsing-free-vpn/"&gt;override your IP using a US proxy&lt;/a&gt; and activate Google Music on your account.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="tunnelbear" src="http://cdn.guidingtech.com/assets/postimages/2012/02/tunnelbear.png" alt="tunnelbear" border="0" height="240" width="465" /&gt;&lt;/p&gt;&lt;p&gt;Once  you get Google Music activated on your Google account, it’s time to  upload some music to it. To upload music from your local drive to you  can use the &lt;strong&gt;Google Music Manager&lt;/strong&gt;. You can upload &lt;strong&gt;as much as 20,000 songs&lt;/strong&gt; to Google Music Manager for free and the music can be uploaded from &lt;a href="http://itunes.apple.com/" rel="nofollow" target="_blank" title="Link added by VigLink" class="vglnk"&gt;iTunes&lt;/a&gt;, Windows Media Player or local folders.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="google music manager" src="http://cdn.guidingtech.com/assets/postimages/2012/02/google-music-manager.png" alt="google music manager" border="0" height="273" width="508" /&gt;&lt;/p&gt;&lt;p&gt;Wait!! Don’t upload your whole collection just yet. Just upload few of them as there’s a lot more to it.&lt;/p&gt;&lt;p&gt;Once you have some of your albums uploaded on Google Music, you can play them right away. Just like &lt;a href="http://itunes.apple.com/" rel="nofollow" target="_blank" title="Link added by VigLink" class="vglnk"&gt;iTunes&lt;/a&gt;, Google also has some &lt;strong&gt;auto-playlists&lt;/strong&gt;  with room to create them manually as well. Don’t worry if your music  collection is huge. It’s a Google product and thus talking about its  searching powers will be a waste of time. Stay rest assured that you’ll  be able to find any track in seconds.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="music stores" src="http://cdn.guidingtech.com/assets/postimages/2012/02/music-stores.png" alt="music stores" border="0" height="382" width="484" /&gt;&lt;/p&gt;&lt;p&gt;Google  Music not only serves as an online music manager, but it’s a music  store as well. You can buy, listen and download lots of paid and free  tracks, and listen to them across all the devices you have Google Music  installed on.&lt;/p&gt;&lt;h2&gt;My Verdict&lt;/h2&gt;&lt;p&gt;Of course, one question that came  to my mind was, “Why should I waste my bandwidth to upload the music on  the clouds and then again, spend the same bandwidth to stream them?”  Well, I realized that’s a small price to pay for the universal access to  my favorite songs irrespective of the device I am on (provided it can  connect to the world wide web).&lt;/p&gt;&lt;p&gt;Have you tried out Google Music yet? Do you like it?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/594646006637261099/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/exploring-google-music-amazing-cloud.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/594646006637261099" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/594646006637261099" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/exploring-google-music-amazing-cloud.html" rel="alternate" title="Exploring Google Music, the Amazing Cloud-based Music Player" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-5003239807551160749</id><published>2012-02-05T04:10:00.001-08:00</published><updated>2012-02-05T04:10:27.707-08:00</updated><title type="text">3 Awesome Add-ons to Watch and Manage YouTube Videos From Chrome Toolbar</title><content type="html">&lt;p&gt;Whenever I get some free time online, I resort to 2 of my favorite  pastimes: scouring through Wikipedia or devouring videos on YouTube. I  have already talked about &lt;a title="Extensions to enhance Wikipedia browsing" href="http://www.guidingtech.com/7722/chrome-extensions-to-enhance-wikipedia-browsing/"&gt;two extensions I use in Chrome&lt;/a&gt; to enhance my Wikipedia browsing, and today I will reveal the extensions that help me manage YouTube videos in Chrome.&lt;/p&gt;&lt;p&gt;If  you are like me who watches videos on YouTube quite often and uses  Chrome to do that then these 3 add-ons should get you excited.&lt;/p&gt;&lt;h2&gt;Video Controller&lt;/h2&gt;&lt;p&gt;As the name speaks, &lt;a title="Video Controller extension" href="https://chrome.google.com/webstore/detail/manomgpodoknjbgakmhbfmajgpnnaabc" target="_blank"&gt;Video Controller extension&lt;/a&gt; for Chrome lets you &lt;strong&gt;control your YouTube video&lt;/strong&gt;  right from the extension bar. You can play/pause, change tracks, adjust  volume and replay the tracks. Though the plugin is not useful when you  are viewing videos on YouTube one after another, it works as a great  music controller for YouTube music videos. Don’t want to hear a track?  Just skip it and replay the one you love without leaving the tab you are  working on.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="controller" src="http://cdn.guidingtech.com/assets/postimages/2012/02/controller.png" alt="controller" border="0" height="234" width="395" /&gt;&lt;/p&gt;&lt;p&gt;If  you have two or more YouTube tabs running videos, all of them can be  controlled simultaneously using this extension. You can click on the  title text of the video to open the respective tab too. Overall, a very  nifty YouTube tool for sure.&lt;/p&gt;&lt;h2&gt;YouTube Feed&lt;/h2&gt;&lt;p&gt;You probably  know what YouTube channels are. You can think of channels as some user  created category which is updated by an individual or an organization in  a regular basis. You can subscribe to many available channels, and  YouTube will notify you via an email regarding the addition of the new  content.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="channels" src="http://cdn.guidingtech.com/assets/postimages/2012/02/channels.png" alt="channels" border="0" height="364" width="535" /&gt;&lt;/p&gt;&lt;p&gt;&lt;a title="YouTube Feeds" href="https://chrome.google.com/webstore/detail/ghmclllfjjmmdmhjobjdgfnggfhljboa#" target="_blank"&gt;YouTube Feeds&lt;/a&gt;  is a simple add-on that notifies you right in your browser whenever new  videos are available in your YouTube subscribed channels and friends.  In simple words, you can think of this add-on as an RSS aggregator for  your YouTube channels.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="youtube feeds" src="http://cdn.guidingtech.com/assets/postimages/2012/02/youtube-feeds.png" alt="youtube feeds" border="0" height="365" width="466" /&gt;&lt;/p&gt;&lt;p&gt;All  you need to do is authenticate your YouTube account. The extension icon  will notify you whenever a new video is available. You can control  things like Number of feed items to retrieve, Polling interval, Number  of feed items to show, etc. from the option page.&lt;/p&gt;&lt;h2&gt;Lyrics for Google Chrome&lt;/h2&gt;&lt;p&gt;Do you love to sing along with your favorite artists on YouTube, but don’t remember the lyrics well enough? Don’t worry, &lt;a title="Lyrics for Google Chrome" href="https://chrome.google.com/webstore/detail/oglbipcbkmlknhfhabolnniekmlhfoek" target="_blank"&gt;Lyrics for Google Chrome&lt;/a&gt;  is a simple extension which will help you with that. After you install  the extension, just click on the extension icon in the omnibar to show  the lyrics next to the playing video. If the extension is not able to  recognize the song, you can manually provide the name and search again.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="iron maiden lyrics " src="http://cdn.guidingtech.com/assets/postimages/2012/02/iron-maiden-lyrics-.jpg" alt="iron maiden lyrics " border="0" height="275" width="599" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; All the lyrics are fetched from LyricsWiki.&lt;/p&gt;&lt;p&gt;The extension not only works for YouTube but also for Grooveshark, Last.fm and Google Music.&lt;/p&gt;&lt;h2&gt;Conclusion&lt;/h2&gt;&lt;p&gt;I  am sure these three add-ons will definitely enhance your YouTube  experience. Do you have a personal favorite extension for YouTube, we  have not mentioned above? Do let us know.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/5003239807551160749/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/3-awesome-add-ons-to-watch-and-manage.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/5003239807551160749" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/5003239807551160749" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/3-awesome-add-ons-to-watch-and-manage.html" rel="alternate" title="3 Awesome Add-ons to Watch and Manage YouTube Videos From Chrome Toolbar" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-2614939709712402441</id><published>2012-02-05T03:56:00.000-08:00</published><updated>2012-02-05T04:09:59.199-08:00</updated><title type="text">2 Ways to Arrange Firefox Tabs Vertically</title><content type="html">&lt;p&gt;The use of tabs has made browsing so much more efficient. A power  user knows that browser tab management is a productivity boost. Firefox  came late on the tabbed browsing scene, but it was a fast learner. The &lt;a title="Understanding Tab Groups and How to Use Them Efficiently in Firefox" href="http://www.guidingtech.com/7401/how-to-use-tab-groups-efficiently-firefox/"&gt;Tab Groups feature&lt;/a&gt;  is a default way to manage your Firefox tabs if you have quite a few  open. Thanks to Firefox add-ons, what’s not there by default gets  covered adroitly by these add-ons.&lt;/p&gt;&lt;p&gt;Here are two add-ons which will give you a way to arrange your Firefox tabs &lt;strong&gt;vertically&lt;/strong&gt;. Whether that gives your browsing an added edge depends on personal experience, but try it out and see for yourself.&lt;/p&gt;&lt;h2&gt;Side Tabs&lt;/h2&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9516" title="vertical-tabs01" src="http://cdn.guidingtech.com/assets/postimages/2012/02/vertical-tabs01.png" alt="" height="399" width="594" /&gt;&lt;/p&gt;&lt;p&gt;&lt;a title="Side Tabs" href="https://addons.mozilla.org/en-US/firefox/addon/Side-Tabs/" target="_blank"&gt;Side Tabs&lt;/a&gt;  is a restart-less Firefox add-on that has been preliminary reviewed by  Mozilla. It’s quite nice if you have a widescreen monitor as you can  take advantage of all that screen estate by moving your tabs to the  side. It gives you a few options to configure. For instance, you can &lt;strong&gt;set the width you want&lt;/strong&gt;  the vertical Side Tab to occupy (just drag with the double headed arrow  on the edge). You can place it on the right or left of the screen. You  can open a new tab by clicking on the ‘+’ sign or by double-clicking on  the side tab.&lt;/p&gt;&lt;p&gt;Side Tabs is very simple in looks and function. No  extra colors or themes for eye candy. A bit of a run with it found me  getting used to side–tabbed browsing quite swiftly.&lt;/p&gt;&lt;h2&gt;Tab Sidebar Reloaded&lt;/h2&gt;&lt;p&gt;&lt;img class="alignnone  wp-image-9517" title="vertical-tabs02" src="http://cdn.guidingtech.com/assets/postimages/2012/02/vertical-tabs02.png" alt="" height="486" width="595" /&gt;&lt;/p&gt;&lt;p&gt;This  is another Firefox add-on which takes the horizontally arranged tabs  and places them vertically. Compared to the plain Jane looks of Side  Tabs, &lt;a title="Tab Sidebar Reloaded" href="https://addons.mozilla.org/en-US/firefox/addon/tab-sidebar-reloaded/" target="_blank"&gt;Tab Sidebar Reloaded&lt;/a&gt; is like a rockstar. After installing the add-on, click on &lt;em&gt;View –&amp;gt;Tab Sidebar&lt;/em&gt;   to bring up the vertical tabs on the left. You can see that the open  tabs are loaded on the side with thumbnails which give you active  previews of their content. By default the top tab is rendered invisible  when the vertical tab opens in its place. You can set these in the  options:&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9518" title="vertical-tabs03" src="http://cdn.guidingtech.com/assets/postimages/2012/02/vertical-tabs03.png" alt="" height="400" width="278" /&gt;&lt;/p&gt;&lt;p&gt;You  can drag the vertical tab area with the crosshairs to change their  width. You can drag ‘n drop the tabs to change their order. Close the  tabs with a click on the cross or open a new one with a double-click.  The little thumbnails come with their own navigation buttons (history,  stop and reload). But if you are a power user, then you will appreciate  that this extension also works with other tab managers seamlessly.&lt;/p&gt;&lt;p&gt;Go  for simplicity or opt for a more complete feature-set. These two  add-ons give you the choice. Which one would you pick? Let us know.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/2614939709712402441/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/2-ways-to-arrange-firefox-tabs.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/2614939709712402441" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/2614939709712402441" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/2-ways-to-arrange-firefox-tabs.html" rel="alternate" title="2 Ways to Arrange Firefox Tabs Vertically" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-7378527395735651364</id><published>2012-02-05T03:52:00.000-08:00</published><updated>2012-02-05T03:56:03.879-08:00</updated><title type="text">How OSI 7 Layer Model Works? Understanding OSI Layers by Anuj Tyagi</title><content type="html">&lt;span id="2663229010915778689"&gt;&lt;div align="center"&gt; &lt;b&gt;&lt;u&gt;&lt;span style="font-size: 130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt; &lt;/div&gt; &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;This article aims to study the 7 layers of OSI model used by  Computer system, when communicating with any other system in same/  different network. &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-size: 100%;"&gt;&lt;u&gt;Note&lt;/u&gt;:&lt;/span&gt; This article  is not about understanding OSI layers. It is a practical approach for  how OSI layers works &amp;amp; used by our computer system.&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://lh6.ggpht.com/-HujuOZ2Dmak/TjZbtT5-QcI/AAAAAAAAGUA/yIzCkKOyLYM/s1600-h/image%25255B13%25255D.png"&gt;&lt;img alt="image" src="http://lh3.ggpht.com/-UoRzGor1RnM/TjZbvEmUO3I/AAAAAAAAGUE/iAFpd_iz5yk/image_thumb%25255B11%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="380" width="479" /&gt;&lt;/a&gt; &lt;br /&gt;&lt;b&gt;&lt;u&gt;Application Layer: &lt;/u&gt;&lt;/b&gt;Application Layer provides user  interface i.e. user directly interacts with this layer. The most common  examples of applications which enable us to communicate through  different protocols are : &lt;br /&gt;&lt;ul&gt;&lt;li&gt;FTP (Eg. Filezilla Server Application)&lt;/li&gt;&lt;li&gt;http/https (Eg. Firefox or any other Web-browser) &lt;/li&gt;&lt;li&gt;SMTP ( via any email client like IBM LOTUS or Microsoft Outlook or WebBrowser)&lt;/li&gt;&lt;li&gt;Telnet ( shell interpretaors like Command Prompt in windows/ terminal in linux distro) &lt;/li&gt;&lt;/ul&gt; As all of these applications accessed through computer .&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;Presentation Layer: &lt;/u&gt;&lt;/b&gt;This layer gets name from it’s purpose . This layer responsibility includes : &lt;br /&gt;&lt;ul&gt;&lt;li&gt;Presents data to application layer and responsible for data  translation and formatting. Eg. Translation of data we enter into  browser to be converted into web language codes with different tags .  Also it takes care of data which has been sent should be understood by  browser to present it on user-interface .&lt;/li&gt;&lt;li&gt;Compression and encryption of data .&lt;/li&gt;&lt;/ul&gt; &lt;a href="http://lh5.ggpht.com/-M5OVoV7Wgcs/TjZbwEIG_SI/AAAAAAAAGUI/jBASVTY0094/s1600-h/image%25255B23%25255D.png"&gt;&lt;img alt="image" src="http://lh4.ggpht.com/-aAh28-YTEnY/TjZbxBFpdGI/AAAAAAAAGUM/mpgaUy65aW8/image_thumb%25255B19%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="103" width="489" /&gt;&lt;/a&gt;&lt;br /&gt;I tried to capture a packet for &lt;b&gt;PING REQUEST&lt;/b&gt; to &lt;a href="http://www.google.com/"&gt;www.google.com&lt;/a&gt; and on capturing packets got this in packets. &lt;br /&gt;For compression, take an example of browser which uses HTTP Compression  to save transfer data volume and speeds ups Web page load time. Firefox  uses Gzip encoding to send data . &lt;br /&gt;&lt;ul&gt;&lt;li&gt;We proved that presentation layer also used by &amp;amp; within computer system . &lt;/li&gt;&lt;/ul&gt; &lt;b&gt;&lt;u&gt;Session Layer : &lt;/u&gt;&lt;/b&gt;Session layer establish, maintain and terminates sessions between end devices. We can check &lt;i&gt;current sessions &lt;/i&gt;in the system using &lt;b&gt;&lt;i&gt;netstat&lt;/i&gt;&lt;/b&gt; command and output will look like this : &lt;br /&gt;&lt;a href="http://lh3.ggpht.com/-2tRvx272mU4/TjZbyLBghKI/AAAAAAAAGUQ/4jJ4yPUNklQ/s1600-h/image%25255B28%25255D.png"&gt;&lt;img alt="image" src="http://lh3.ggpht.com/-1_IHNbSsbTI/TjZbzbiXxiI/AAAAAAAAGUU/Odqnc4d3OEg/image_thumb%25255B22%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="530" width="499" /&gt;&lt;/a&gt; &lt;br /&gt;This command is common for windows/Linux OS.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;Transport Layer&lt;/u&gt;&lt;/b&gt;&lt;b&gt; : This layer is concerned with reliability of data transfer .&lt;/b&gt;&lt;br /&gt;&lt;b&gt;It is of two types : &lt;/b&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;b&gt;Connection Oriented (TCP) &lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Connectionless (UDP) &lt;/b&gt;&lt;/li&gt;&lt;/ol&gt; It is easy to find if connection is establish is in TCP/UDP state. Look  at the above figure in which first column defines whether connection is  established as TCP/UDP. This process is Protocol dependent .&lt;br /&gt;&lt;br /&gt;It also take care of other responsibilities like : &lt;br /&gt;&lt;b&gt;Flow Control (windows) :&lt;/b&gt; Which find how much data should be send  in one packet during transfer to minimize the data loss due to buffer  overflow. It doesn’t send data but Segment into smaller pieces and size  of which is defined through windowing feature. To show this in practical  manner, I started to upload a file on &lt;i&gt;mediafire.com . &lt;/i&gt;&lt;br /&gt;&lt;a href="http://lh3.ggpht.com/-mW-Wq7uA1EA/TjZb1mU-L9I/AAAAAAAAGUY/u4awDBoWTMs/s1600-h/image%25255B32%25255D.png"&gt;&lt;img alt="image" src="http://lh3.ggpht.com/-43V7ItiL95I/TjZb2whBoyI/AAAAAAAAGUc/8f75-6caCXE/image_thumb%25255B24%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="142" width="483" /&gt;&lt;/a&gt; &lt;br /&gt;By ping , we got ip address of &lt;b&gt;mediafire.com .&lt;/b&gt;it’s 205.196.120.8 . &lt;br /&gt;And Now I started to sniff the packets using wireshark on my pc. So,  it’s easy to confirm that below captured packets are those during  transfer from mediafire. .&lt;br /&gt;&lt;a href="http://lh3.ggpht.com/-d7fx4g2Iv6o/TjZb3_SB-hI/AAAAAAAAGUg/rhkUocgTeSo/s1600-h/image%25255B36%25255D.png"&gt;&lt;img alt="image" src="http://lh5.ggpht.com/-8I-WcHkYH1Q/TjZb47KjbnI/AAAAAAAAGUk/C2O3Ek03YD8/image_thumb%25255B26%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="152" width="489" /&gt;&lt;/a&gt; &lt;br /&gt;So, what do we learn from above image ? &lt;br /&gt;&lt;b&gt;Source address: 205.196.120.8 &lt;/b&gt;&lt;br /&gt;&lt;b&gt;Destination address: 192.168.1.3 &lt;/b&gt;&lt;br /&gt;&lt;b&gt;Protocol type: TCP (connection oriented )&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size: 130%;"&gt;Win (window size ): 66240 bytes = 65 KB approx .&lt;/span&gt;&lt;/b&gt;&lt;b&gt; &lt;/b&gt;&lt;br /&gt;Source address is mediafire server as we are uploading data. &lt;br /&gt;So, what conclusion it makes ? Data is being split up into 66240 bytes  each and after reaching destination it being re-ordered. &lt;br /&gt;The segments which are delivered are acknowledged back to the sender upon their reception. &lt;br /&gt;&lt;b&gt;&lt;u&gt;Network Layer&lt;/u&gt;&lt;/b&gt;: Network layer works on Logical address  which is IP addresses. A computer system understand IP addresses and  communication and identification also takes place in computer system. &lt;br /&gt;&lt;a href="http://lh3.ggpht.com/-W4Ht-uTa_0Y/TjZb5qqmNwI/AAAAAAAAGUo/58m6BUOX0Wc/s1600-h/image%25255B40%25255D.png"&gt;&lt;img alt="image" src="http://lh5.ggpht.com/-im9bjETR5PU/TjZb7TVpxgI/AAAAAAAAGUs/w2gLzyRa5T0/image_thumb%25255B28%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="159" width="482" /&gt;&lt;/a&gt; &lt;br /&gt;Any device which use ip-address for communication &lt;br /&gt;&lt;b&gt;&lt;u&gt;Data Link Layer&lt;/u&gt;&lt;/b&gt;&lt;b&gt; :&lt;/b&gt; The main focus of data link layer  on use of MAC address. Whenever data flows through the LAN ,  communication takes place through MAC address . &lt;br /&gt;So, to find if MAC address is being used during data transfer in lan or not ? &lt;br /&gt;I start capturing again using wireshark . &lt;br /&gt;&lt;a href="http://lh4.ggpht.com/--pQc2dzX0n4/TjZb9nxHZ2I/AAAAAAAAGUw/rUJHZCSu698/s1600-h/image%25255B44%25255D.png"&gt;&lt;img alt="image" src="http://lh4.ggpht.com/-3KR5TzH7AY8/TjZb_mXbisI/AAAAAAAAGU0/fE_EML22dbY/image_thumb%25255B30%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="132" width="458" /&gt;&lt;/a&gt; &lt;br /&gt;&lt;strong&gt;Which shows Destination MAC address : 00:26:5e:ff:c5:fc for 192.168.1.3&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;Source MAC address: 00:26:5e:fc:10:Se for 192.168.1.2 .&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://lh4.ggpht.com/-yKFZqVzmKLI/TjZcA1-2bFI/AAAAAAAAGU4/MZS-IeN-8ro/s1600-h/image%25255B49%25255D.png"&gt;&lt;img alt="image" src="http://lh5.ggpht.com/-vzHRqpdVeyo/TjZcB7rv9II/AAAAAAAAGU8/l7RBEEfb8Oc/image_thumb%25255B33%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="700" width="412" /&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;u&gt;Physical Layer : &lt;/u&gt;&lt;/b&gt;&lt;br /&gt;This layer conveys the bit stream through the network at the electrical  and mechanical level. It provides the hardware means of sending and  receiving data on a carrier.&lt;br /&gt;The Physical Layer defines electrical and physical specifications for  devices. In particular, it defines the relationship between a device and  a transmission medium, such as a copper or optical cable.&lt;br /&gt;The major functions and services performed by the Physical Layer are:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Establishment and termination of a connection to a communications medium. &lt;/li&gt;&lt;li&gt;Participation in the process whereby the communication resources are  effectively shared among multiple users. For example, contention  resolution and flow control. &lt;/li&gt;&lt;li&gt;Modulation, or conversion between the representation of digital data  in user equipment and the corresponding signals transmitted over a  communications channel.&lt;/li&gt;&lt;/ul&gt; In short, Computer translates the signal and instructions into Binary  language (0 or 1). Hardware devices understand Binary language  (including computer device components , connecting cables)&lt;br /&gt;&lt;a href="http://lh4.ggpht.com/-tGn7Y2G2LGo/TjZcED_9HKI/AAAAAAAAGVA/KnogrG80R1k/s1600-h/image%25255B68%25255D.png"&gt;&lt;img alt="image" src="http://lh6.ggpht.com/-kApKbNrD0sI/TjZcGPDnYtI/AAAAAAAAGVE/5GcVEA47Qi4/image_thumb%25255B48%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="399" width="440" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://lh5.ggpht.com/-3KxcIua9Lkg/TjZcHGCeu9I/AAAAAAAAGVI/d8FT4uqblLY/s1600-h/image%25255B72%25255D.png"&gt;&lt;img alt="image" src="http://lh4.ggpht.com/-FhMZb7sOxv8/TjZcLXjcuQI/AAAAAAAAGVM/T_mIIyA8wdQ/image_thumb%25255B52%25255D.png?imgmax=800" style="border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: inline;" title="image" border="0" height="348" width="445" /&gt;&lt;/a&gt;&lt;br /&gt;So, during transfer of data, various instructions and signals executed  whichch converted into binary language . Similarly, when we transfer  data from our system to any other then transfer takes place through  various components and leave through cable.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/7378527395735651364/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-osi-7-layer-model-works.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/7378527395735651364" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/7378527395735651364" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-osi-7-layer-model-works.html" rel="alternate" title="How OSI 7 Layer Model Works? Understanding OSI Layers by Anuj Tyagi" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://lh3.ggpht.com/-UoRzGor1RnM/TjZbvEmUO3I/AAAAAAAAGUE/iAFpd_iz5yk/s72-c/image_thumb%25255B11%25255D.png?imgmax=800" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-1539635494931796360</id><published>2012-02-05T03:45:00.004-08:00</published><updated>2012-02-05T03:47:38.413-08:00</updated><title type="text">Yersinia: How to analyzing and testing Network Protocols</title><content type="html">&lt;span id="3682764986747523967"&gt;&lt;div&gt; &lt;div style="text-align: center;"&gt; &lt;span class="Apple-style-span" style="font-weight: 800;"&gt;Yersinia: How to analyzing and testing Network Protocols &lt;/span&gt;&lt;/div&gt; &lt;div style="font-weight: bold; text-align: center;"&gt; &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt; &lt;b&gt;&lt;span class="Apple-style-span" style="font-weight: normal;"&gt;&lt;b&gt;System: Linux/Solaris/All BSD Platforms &lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt; &lt;b&gt;&lt;div style="text-align: center;"&gt; &lt;span class="Apple-style-span" style="font-weight: normal;"&gt;&lt;b&gt;License: GNU General Public License (GPL) &lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;/b&gt;&lt;b&gt;&lt;div style="text-align: center;"&gt; &lt;span class="Apple-style-span" style="font-weight: normal;"&gt;&lt;b&gt;Purpose: Framework for analyzing and testing networks and systems &lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;/b&gt;&lt;b&gt;&lt;div style="text-align: center;"&gt; &lt;span class="Apple-style-span" style="font-weight: normal;"&gt;&lt;b&gt;Homepage: http://www.yersinia.net/ &lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt; &lt;span class="Apple-style-span" style="font-weight: normal;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt; &lt;span class="Apple-style-span"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div id="__ss_7995169" style="width: 477px;"&gt; &lt;span class="Apple-style-span"&gt;&lt;b&gt;&lt;strong style="display: block; margin: 12px 0 4px;"&gt;&lt;a href="http://www.slideshare.net/amarjitsingh1984/yersinia-research-work-amarjit-singh-rishabh-dangwal-yersinia-how-to-analyzing-and-testing-network-protocols" title="Yersinia: Research work Amarjit Singh &amp;amp; Rishabh Dangwal | Yersinia - How to analyzing and testing network protocols"&gt;Yersinia: Research work Amarjit Singh &amp;amp; Rishabh  Dangwal | Yersinia - How to analyzing and testing  network protocols&lt;/a&gt; &lt;/strong&gt;   &lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="padding: 5px 0 12px;"&gt; &lt;span class="Apple-style-span"&gt;&lt;b&gt;View more &lt;a href="http://www.slideshare.net/"&gt;documents&lt;/a&gt; from &lt;a href="http://www.slideshare.net/amarjitsingh1984"&gt;amarjitsingh1984&lt;/a&gt;. &lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/b&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt; &lt;div style="text-align: left;"&gt; &lt;b&gt;Brief Summary: &lt;/b&gt;&lt;/div&gt; &lt;/div&gt; &lt;div&gt; Yersinia is a free open source utility written entirely in C  which is great for security professionals, pen testers and hacker  enthusiasts alike. Yersinia is a solid framework for analyzing and  testing network protocols, and it is a great network tool designed to  take advantage of some weaknesses in different network protocols.  Yersinia allows you to send raw VTP (VLAN Trunking Protocol) packets and  also allows you add and delete VLAN’s from a centralized point of  origin.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Other Useful Features: &lt;/b&gt;&lt;br /&gt;&lt;div&gt; One of the useful features I like using with Yersinia is the DHCP  (Dynamic Host Configuration Protocol) attack. In this scenario a DHCP  starvation attack works by broadcasting DHCP requests with spoofed MAC  addresses. This is easily accomplished with Yersinia, if enough requests  are sent; the network attacker can exhaust the address space available  to the DHCP provider for a period of time. I have used this attack on my  Netgear router WGT624 v2 and every machine, regardless of whether it is  connected via a wired or wireless looses its network connection. Once  the attack is stopped the DHCP clients can reconnect and are able to use  the network again.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;a href="http://www.yersinia.net/img/networkclient-thumb.png"&gt;&lt;img alt="" src="http://www.yersinia.net/img/networkclient-thumb.png" style="cursor: hand; cursor: pointer; display: block; height: 200px; margin: 0px auto 10px; text-align: center; width: 272px;" border="0" /&gt;&lt;/a&gt;Yersinia  also runs as a network daemon (#yersinia –D) and allows you to setup a  server in each network segment so that network administrators can access  their networks. Yersinia listens to port 12000/tcp by default and  allows you to analyze the network packets traversing the network. This  is very useful because you can determine the mis-configurations on you  network segment and correct them before an attacker takes advantage of  them. With Yersinia you can also launch HSRP (Hot Standby Router  Protocol) attacks. The first option with sending raw HSRP packets is  simply sending custom HSRP packets; you can then test HSRP  implementations on the local network segment. Another option is becoming  the active router with a fake IP which results in a Denial of Service  (DOS). You can also can launch a MITM (Man in the Middle) attack by  becoming an active router by editing the HSRP packets fields in the  attacked routers, by enabling IP forwarding on the attackers machine and  providing a valid static route to the legitimate gateway the traffic  from the victim’s machine will go through the attacker’s platform and  will be subject to analysis and/or tampering.&lt;br /&gt;&lt;br /&gt;You can configure a CDP (Cisco Discovery Protocol) virtual device that  is fully automated by selecting the correct parameters frames in CDP. My  favorite attack vector is using the flooding CDP table attack. It also  allows for capturing editing and manipulating the frames in the Yersinia  GUI interface.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Disadvantages:&lt;/b&gt;&lt;br /&gt;Only two disadvantages within Yersinia are worthy of mention. The first  is that it was created solely for the *nix community and is not  available for the Windows Platform. The Yersina team has requested that  the community contribute to the Windows platform, so all the Windows  enthusiasts cross you fingers and let’s hope it will be available on  Windows in the near future. Secondly, the Yersinia output log is written  in Spanish words so have your translator of choice at the ready!&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; &lt;a href="http://www.yersinia.net/img/commandline-thumb.png"&gt;&lt;img alt="" src="http://www.yersinia.net/img/commandline-thumb.png" style="cursor: hand; cursor: pointer; display: block; height: 200px; margin: 0px auto 10px; text-align: center; width: 272px;" border="0" /&gt;&lt;/a&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt; &lt;b&gt;ATTACKS:&lt;/b&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt; &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div style="text-align: left;"&gt; &lt;b&gt;Spanning Tree Protocol&lt;/b&gt;&lt;/div&gt; Sending RAW Configuration BPDU&lt;br /&gt;Sending RAW TCN BPDU&lt;br /&gt;DoS sending RAW Configuration BPDU&lt;br /&gt;DoS sending RAW TCN BPDU&lt;br /&gt;Claiming Root Role&lt;br /&gt;Claiming Other Role&lt;br /&gt;Claiming Root Role dual home (MITM)&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;Cisco Discovery Protocol&lt;/b&gt;Sending RAW CDP packet&lt;br /&gt;DoS flooding CDP neighbors table&lt;br /&gt;Setting up a virtual device&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;Dynamic Host Configuration Protocol&lt;/b&gt;Sending RAW DHCP packet&lt;br /&gt;DoS sending DISCOVER packet (exhausting ip pool)&lt;br /&gt;Setting up rogue DHCP server&lt;br /&gt;DoS sending RELEASE packet (releasing assigned ip)&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;Hot Standby Router Protocol&lt;/b&gt;Sending RAW HSRP packet&lt;br /&gt;Becoming active router&lt;br /&gt;Becoming active router (MITM)&lt;br /&gt;&lt;br /&gt;&lt;div&gt; &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;&lt;a href="http://www.yersinia.net/img/gui-thumb.png"&gt;&lt;img alt="" src="http://www.yersinia.net/img/gui-thumb.png" style="cursor: hand; cursor: pointer; display: block; height: 200px; margin: 0px auto 10px; text-align: center; width: 272px;" border="0" /&gt;&lt;/a&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;/div&gt; &lt;div&gt; &lt;b&gt;Dynamic Trunking Protocol&lt;/b&gt;Sending RAW DTP packet&lt;br /&gt;Enabling trunking&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;802.1Q&lt;/b&gt;Sending RAW 802.1Q packet&lt;br /&gt;Sending double encapsulated 802.1Q packet&lt;br /&gt;Sending 802.1Q ARP Poisoning&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;802.1X&lt;/b&gt;Sending RAW 802.1X packet&lt;br /&gt;Mitm 802.1X with 2 interfaces&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt; &lt;div&gt; &lt;b&gt;VLAN Trunking Protocol&lt;/b&gt;Sending RAW VTP packet&lt;br /&gt;Deleting ALL VLANs&lt;br /&gt;Deleting selected VLAN&lt;br /&gt;Adding one VLAN&lt;br /&gt;Catalyst crash&lt;/div&gt; &lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt; &lt;a href="http://www.yersinia.net/download.htm"&gt;&lt;b&gt;DOWNLOAD HERE&lt;/b&gt;&lt;/a&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/1539635494931796360/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/yersinia-how-to-analyzing-and-testing.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1539635494931796360" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1539635494931796360" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/yersinia-how-to-analyzing-and-testing.html" rel="alternate" title="Yersinia: How to analyzing and testing Network Protocols" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-2952842686303334541</id><published>2012-02-05T03:45:00.003-08:00</published><updated>2012-02-05T03:45:53.915-08:00</updated><title type="text">How to Create Your Own Custom Search Engine Using Google CSE</title><content type="html">&lt;p&gt;Google has been drawing a lot of flak lately for the degradation in the quality of its &lt;a title="Guiding Tech For Beginners: Understanding Google Search Operators &amp;amp; Using Them to Search Faster" href="http://www.guidingtech.com/7687/faster-google-search-operators-guide/"&gt;search results&lt;/a&gt;.  A lot of times the sites that end up on the first page of Google are  nowhere relevant to your search query. That being said, Google still  remains the best way to search online. However, if you are someone whose  searches are usually limited to one or a few niches, and you do not  seem to locate meaningful information through the regular Google search  and instead end up &lt;a title="How To Keep Track of Your Top Sites with Web Slices In Internet Explorer 8" href="http://www.guidingtech.com/5835/web-slices-internet-explorer-8/"&gt;visiting your favorite sites directly&lt;/a&gt;, then you could consider &lt;strong&gt;creating your own custom search engine using Google CSE. &lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This  helps you create a search engine that only contains your preferred set  of trusted websites and hence you get clean and reliable results every  time you search for something. The service is free to use without any  limitation of any kind and comes with advantages such as:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;CSE allows to add specific domain names, hence add your favorite sites there and limit search around “quality” sites only.&lt;/li&gt;&lt;li&gt;Remove spam and “personal search suggestions” easily.&lt;/li&gt;&lt;li&gt;Add  your friends to contribute and use the custom search engine. Here,  “contribute” means that the invited users can add more domain names to  the search engine.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Here on Guiding Tech if you search  anything using the search box on the top right of the page, you will see  all the results that are specifically from Guiding Tech and that’s  because we are using CSE limited to just one domain name here.&lt;/p&gt;&lt;h2&gt;Steps to Create Custom Search Engine Using CSE&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Step 1:&lt;/strong&gt; To start, first login at Google and open &lt;a title="Google Custom Search" href="http://www.google.com/cse/" target="_blank"&gt;Google Custom Search&lt;/a&gt;. On the homepage, click on the blue button that reads &lt;em&gt;Create a Custom Search Engine&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="create CSE" src="http://cdn.guidingtech.com/assets/postimages/2012/02/create-CSE.png" alt="create CSE" border="0" height="120" width="357" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 2:&lt;/strong&gt;  You will now see the three-step wizard to guide you with the whole  creation process. The first step is all about the search description and  the sites you would like to limit the search to. Once you have  mentioned the necessary details, agree to the TOS (reading or skipping  is totally your decision) and proceed to the next step.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="research CSE" src="http://cdn.guidingtech.com/assets/postimages/2012/02/research-CSE.png" alt="research CSE" border="0" height="552" width="599" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Google offers two editions of custom search, the Standard Edition and the Site Search details of which are as follows.&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Standard edition&lt;/strong&gt;  gives you a tailored search experience using Google technology. You can  also customize the look of your search engine and integrate into your  site using an iframe. You must show ads alongside the search results,  unless you are creating your search engine for a nonprofit organization,  university, or government agency, in which case you can &lt;a href="http://www.google.com/support/customsearch/bin/answer.py?hl=en&amp;amp;answer=70354" target="_blank"&gt;disable ads&lt;/a&gt;. You can make money from these ads with the &lt;a href="http://www.google.com/adsense" target="_blank"&gt;AdSense For Search&lt;/a&gt; program.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Site Search&lt;/strong&gt;  starts at $100 per year and comes with additional options. You get  guaranteed support and greater results customization options via an XML  API. Ads are not shown next to search results.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;strong&gt;Step 3:&lt;/strong&gt;  Actually, the creation of your custom search engine is already  completed in the step above. This step is like a playing ground to test  if the stuff’s working as expected. Just select the theme you like and  test drive your custom search engine. If everything looks perfect,  proceed to the next step but if you are not getting the results you  expected, you can always go back a step and make changes.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="try" src="http://cdn.guidingtech.com/assets/postimages/2012/02/try.png" alt="try" border="0" height="425" width="595" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 4:&lt;/strong&gt; Finally, you will get the &lt;strong&gt;Custom Search element code&lt;/strong&gt;  which you can paste as HTML on your blog. You can also change the look  and feel of the search tool before you integrate it to your page. Those  of you who don’t have a blog or a forum, you can access your Custom  Search Engine right from Google. You can go to the &lt;a title="Google CSE admin page" href="http://www.google.com/cse/manage/all" target="_blank"&gt;Google CSE admin page&lt;/a&gt; and select the search engine you have created and start searching. You could also bookmark it for referencing later.&lt;/p&gt;&lt;p&gt;&lt;img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="manage" src="http://cdn.guidingtech.com/assets/postimages/2012/02/manage.png" alt="manage" border="0" height="272" width="599" /&gt;&lt;/p&gt;&lt;p&gt;You  can make more than one CSE and maintain all of them from the admin  panel. If you own a website and are an AdSense publisher, you can sign  up to make money with Google AdSense.&lt;/p&gt;&lt;h2&gt;Conclusion&lt;/h2&gt;&lt;p&gt;One caveat to the above process of creating your &lt;strong&gt;Google-powered personalized search engine&lt;/strong&gt; is that you need to know the names of the sites to include. For someone like me who subscribes to a &lt;a title="9 Power Tips To Keep Your RSS Reading List Under Control" href="http://www.guidingtech.com/6743/power-tips-keep-rss-reading-under-control/"&gt;huge number of sites in Google Reader&lt;/a&gt;,  it wasn’t difficult. But if you want to create a CSE in a niche that  you haven’t explored yet then you first need to invest time trying to  unearth the best sources of content which you’ll ultimately create a  search engine with.&lt;/p&gt;&lt;p&gt;Rest, it is a pretty cool way to efficiently and productively search the World Wide Web (or a small part of it).&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/2952842686303334541/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-to-create-your-own-custom-search.html#comment-form" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/2952842686303334541" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/2952842686303334541" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-to-create-your-own-custom-search.html" rel="alternate" title="How to Create Your Own Custom Search Engine Using Google CSE" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-9041292449111044311</id><published>2012-02-05T03:45:00.001-08:00</published><updated>2012-02-05T03:45:29.196-08:00</updated><title type="text">How to Stitch Two or More Photos Using Windows Live Photo Gallery</title><content type="html">&lt;p&gt;&lt;a title="How to Create Beautiful Panoramic Photos with Autostitch" href="http://www.guidingtech.com/4939/how-to-create-beautiful-panoramic-photos-with-autostitch/"&gt;Creating beautiful panoramic pictures&lt;/a&gt; by &lt;strong&gt;stitching two or more photos&lt;/strong&gt;  into one isn’t an easy task. It takes practice to first take those  pictures, then choose the right combination of photos, and finally  stitching them in a way that the person looking at the photo has a hard  time making out if it was a single panoramic shot or several photos  blended into one. We have talked about this stuff before and since it’s a  lot of fun, we’ll talk about it today too (the tool will be different  as you might have already guessed).&lt;/p&gt;&lt;p&gt;&lt;a title="Windows Live Photo Gallery" href="http://explore.live.com/windows-live-essentials-photo-gallery-get-started" target="_blank"&gt;Windows Live Photo Gallery&lt;/a&gt; is useful personal photo editor and organizer that helps you organize and edit your photos, &lt;a title="How to Recognize and Tag Faces in Photos Using Windows Live Photo Gallery" href="http://www.guidingtech.com/9500/7852/recognize-and-tag-faces-in-photos/"&gt;batch tag faces&lt;/a&gt;, share them online and &lt;a title="Combine Best of Two Photos In One Using Photo Fuse in Windows Live Photo Gallery" href="http://www.guidingtech.com/9500/7192/combine-best-of-two-photos-in-one-using-photo-fuse-in-windows-live-photo-gallery/"&gt;fuse multiple photos&lt;/a&gt;  to give them a better finish. In this article, we will see how to  stitch a series of photos to create beautiful panoramic pictures.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9506" title="Final-Stich-After-Crop" src="http://cdn.guidingtech.com/assets/postimages/2012/01/Final-Stich-After-Crop.jpg" alt="Final-Stich-After-Crop" height="186" width="550" /&gt;&lt;/p&gt;&lt;h2&gt;Five Easy Steps to Create your Panorama&lt;/h2&gt;&lt;p&gt;We’ll  leave the task of taking the pictures and identifying the right ones to  combine to you. That’s a significant part of the process mind you, so  you should invest time in that. Once you have lined up the photos,  stitching them can be as simple the steps below:-&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 1:&lt;/strong&gt; First and foremost, you will have to &lt;strong&gt;import your photos&lt;/strong&gt;  from your device by connecting it to your machine. If you have them  pre-saved, you may include the folder or create a new one. These options  are stacked under the &lt;em&gt;New&lt;/em&gt;  section of &lt;em&gt;Home&lt;/em&gt;  tab.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9501" title="Import-Photos" src="http://cdn.guidingtech.com/assets/postimages/2012/01/Import-Photos.png" alt="How-to-Import-Photos" height="116" width="266" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 2:&lt;/strong&gt;  Once you have your collection you need to select the series you want to  stitch together. Be careful to select photos with some overlap, failing  which you might be disappointed with the result.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9502" title="Selecting-Photos-to-Stitch" src="http://cdn.guidingtech.com/assets/postimages/2012/01/Selecting-Photos-to-Stitch.png" alt="Selecting-Photos-to-Stitch" height="406" width="538" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 3:&lt;/strong&gt; Next, move over to the &lt;em&gt;Create&lt;/em&gt;  tab and hit the &lt;em&gt;Panorama icon&lt;/em&gt; under the &lt;em&gt;Tools&lt;/em&gt;  section. Just a few minutes and you’ll find yourself rejoicing over your first panoramic image.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9503" title="Panaroma-Tool" src="http://cdn.guidingtech.com/assets/postimages/2012/01/Panaroma-Tool.png" alt="Panaroma-Tool" height="117" width="332" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 4:&lt;/strong&gt;  The result of Step 3 is pulled down to an editable interface. You will  be able to notice that the image has distorted edges. This happens in  the attempt to align all your images. Select the &lt;em&gt;crop&lt;/em&gt; option to cut out the required portion.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9504" title="Stitched-Result" src="http://cdn.guidingtech.com/assets/postimages/2012/01/Stitched-Result.jpg" alt="Stitched-Result-Ready-to-Crop" height="207" width="550" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 5:&lt;/strong&gt; On the image, drag the crop canvas and guide lines to set a perfect selection. Finally, apply crop and save your masterpiece.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9505" title="Crop-Image-to-Finetune" src="http://cdn.guidingtech.com/assets/postimages/2012/01/Crop-Image-to-Finetune.png" alt="Crop-Image-to-Finetune" height="177" width="136" /&gt;&lt;/p&gt;&lt;h2&gt;Conclusion&lt;/h2&gt;&lt;p&gt;I  think I re-discovered my love for creating panoramas when I tried out  this feature in Windows Live Photo Gallery in the process of writing  this post. I am actually going to do it a lot more over the weekend.&lt;/p&gt;&lt;p&gt;I  would advise that you get a feel of the tool and understand the type of  series and overlaps you need to click before you head out to your next  vacation.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/9041292449111044311/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-to-stitch-two-or-more-photos-using.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/9041292449111044311" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/9041292449111044311" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-to-stitch-two-or-more-photos-using.html" rel="alternate" title="How to Stitch Two or More Photos Using Windows Live Photo Gallery" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-2947582028973034150</id><published>2012-02-05T03:39:00.001-08:00</published><updated>2012-02-05T03:39:48.693-08:00</updated><title type="text">Best of Guiding Tech in Jan, 2012 and Cool Links From the Web</title><content type="html">&lt;p&gt;Following are our posts from last month that our readers appreciated  the most. We’ve also got some nice links from our friends that you’ll  find use for.&lt;/p&gt;&lt;h2&gt;Best of Guiding Tech in Jan, 2012&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;1. &lt;/strong&gt;&lt;a title="5 Very Neat Uses of Wolfram Alpha Search Engine" href="http://www.guidingtech.com/9201/5-neat-uses-wolfram-alpha-search-engine/" target="_blank"&gt;&lt;strong&gt;5 Very Neat Uses of Wolfram Alpha Search Engine&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Some really cool ways to use this unique search engine.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;2. &lt;/strong&gt;&lt;a title="How to Save Multiple Webpages As a Zip File in Chrome Using ZipTabs" href="http://www.guidingtech.com/9258/save-multiple-webpages-as-zip-file-chrome-ziptabs/" target="_blank"&gt;&lt;strong&gt;How to Save Multiple Webpages As a Zip File in Chrome Using ZipTabs&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A quick way to save entire webpages in bulk for offline usage.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;3. &lt;/strong&gt;&lt;a title="3 Useful Tools to See Who is Using Your Home Wi-Fi" href="http://www.guidingtech.com/9386/tools-to-see-who-is-using-your-home-wi-fi/" target="_blank"&gt;&lt;strong&gt;3 Useful Tools to See Who is Using Your Home Wi-Fi&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;If you’ve got Wi-Fi at your home then you ought to know about this. Better safe than sorry.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;4. &lt;/strong&gt;&lt;a title="An Overview of the New Facebook Timeline Apps" href="http://www.guidingtech.com/9380/overview-of-new-facebook-timeline-apps/" target="_blank"&gt;&lt;strong&gt;An Overview of the New Facebook Timeline Apps&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Facebook introduced new apps for its timeline feature last month. We check if they are worth the trouble of installing.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;5. &lt;/strong&gt;&lt;a title="A Useful Guide to Using Online Tools and Apps For Staying Fit" href="http://www.guidingtech.com/9178/using-online-tools-apps-for-staying-fit/" target="_blank"&gt;&lt;strong&gt;A Useful Guide to Using Online Tools and Apps For Staying Fit&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A no non-sense guide to using web apps for learning about and tracking your fitness.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;6. &lt;/strong&gt;&lt;a title="How to Quickly Disable (or Enable) Chrome Extensions without Going to the Extensions Page" href="http://www.guidingtech.com/9288/quickly-disable-or-enable-chrome-extensions-without-going-to-extensions-page/" target="_blank"&gt;&lt;strong&gt;How to Quickly Disable (or Enable) Chrome Extensions without Going to the Extensions Page&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A quick and easy way to disable and enable chrome extensions.&lt;/p&gt;&lt;h2&gt;Cool Links From Our Friends&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;1. &lt;/strong&gt;&lt;a title="What’s the Best Startup Manager for Windows?" href="http://www.7tutorials.com/whats-best-startup-manager-windows" target="_blank"&gt;&lt;strong&gt;What’s the Best Startup Manager for Windows?&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A very detailed comparison of different startup managers and which one you should use.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;2. &lt;/strong&gt;&lt;a title="Reviewing Trend Micro Titanium Internet Security 2012" href="http://www.7tutorials.com/security-everyone-trend-micro-titanium-internet-security-2012" target="_blank"&gt;&lt;strong&gt;Reviewing Trend Micro Titanium Internet Security 2012&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Another nice post from 7Tutorials on how good or bad Trend Micro’s latest internet security software really is.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;3. &lt;a title="How to Sync Your iPod With Another PC Without Losing Your Music" href="http://www.howtogeek.com/103754/how-to-sync-your-ipod-with-another-pc-without-losing-your-music/" target="_blank"&gt;How to Sync Your iPod With Another PC Without Losing Your Music&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;iPod users should bookmark this.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/2947582028973034150/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/best-of-guiding-tech-in-jan-2012-and.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/2947582028973034150" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/2947582028973034150" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/best-of-guiding-tech-in-jan-2012-and.html" rel="alternate" title="Best of Guiding Tech in Jan, 2012 and Cool Links From the Web" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-2446662453828918364</id><published>2012-02-04T09:51:00.003-08:00</published><updated>2012-02-04T09:51:48.922-08:00</updated><title type="text">Understanding Google Alerts and 7 Interesting Ways to Use It</title><content type="html">&lt;p&gt;From &lt;a title="Slice" href="http://www.guidingtech.com/9089/manage-online-shopping-get-price-drop-alerts-slice/"&gt;price drop alerts&lt;/a&gt; to &lt;a title="Track Movies" href="http://www.guidingtech.com/9032/track-movies-when-where-they-will-play-get-alerts-watch-it/"&gt;tracking movies&lt;/a&gt;,  we have covered a few alert and notification services which help you  stay on top of things. Alerts are just what they sound like – they are  messages that are sent to you when the alert service comes across a new  result. There are specialized alert services galore, but the Big Daddy  of them all is &lt;a title="Google Alerts" href="http://www.google.com/alerts" target="_blank"&gt;Google Alerts&lt;/a&gt; which has existed for quite some time.&lt;/p&gt;&lt;p&gt;Think  of Google Alerts as your own personal homing missile; or a Google  Search robot on automatic mode. Your ‘missile’ is armed with a keyword  (a search term you are looking for). When Google Alerts comes across the  keyword in web pages, newspaper articles, or blogs, it sends you the  results as an email. You can also subscribe to Google Alerts &lt;a title="How to Easily Create &amp;amp; Share Feed Bundles In Google Reader" href="http://www.guidingtech.com/1150/create-share-feed-bundle-google-reader/"&gt;via Google Reader&lt;/a&gt; or any other feed reader.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9486" title="google-alert01" src="http://cdn.guidingtech.com/assets/postimages/2012/01/google-alert01.png" alt="" height="368" width="511" /&gt;&lt;/p&gt;&lt;p&gt;As you can see, it’s easy to set up your keyword search with Google Alert. You can fine-tune it by choosing &lt;strong&gt;Result type&lt;/strong&gt; (search everything or optionally search – news, blogs, videos, discussions, or books); &lt;strong&gt;How often&lt;/strong&gt;; and &lt;strong&gt;How many&lt;/strong&gt; (all results or only the best results). To make Google Alerts more powerful, you can also use Google’s &lt;a href="http://support.google.com/websearch/bin/answer.py?hl=en&amp;amp;answer=136861" target="_blank"&gt;basic search options and also advanced search operators&lt;/a&gt;. Google Alerts lets you see a preview of the results and that alone helps you carefully work on creating the perfect alert.&lt;/p&gt;&lt;p&gt;But as the proof of the pudding lies in its eating, let’s go over the uses we can put Google Alerts to:&lt;/p&gt;&lt;h2&gt;Monitor your Favorite Topics&lt;/h2&gt;&lt;p&gt;&lt;img class="alignnone  wp-image-9487" title="google-alert02" src="http://cdn.guidingtech.com/assets/postimages/2012/01/google-alert02.png" alt="" height="166" width="595" /&gt;&lt;/p&gt;&lt;p&gt;With  just a keyword, you can let loose Google Alerts and allow it to pick up  mentions of your favorite topic as they break on the web.&lt;/p&gt;&lt;h2&gt;Track What the Web is Saying About You&lt;/h2&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9488" title="google-alert03" src="http://cdn.guidingtech.com/assets/postimages/2012/01/google-alert03.png" alt="" height="192" width="595" /&gt;&lt;/p&gt;&lt;p&gt;Reputation  tracking is not only limited to companies and brands but also  individuals. Google Alerts is a good enough tool for the job, as you can  turn ‘ego-Googling’ on its head and monitor where and when your name  appears.&lt;/p&gt;&lt;p&gt;You can watch out for identity theft by using personal  data as keywords. Examples could include – your address, your phone  number, your professional designation, your email address, your driver’s  license number. But avoid using – social security numbers, credit card  details, bank account numbers, and mother’s maiden name (as it is used  for verifications too).&lt;/p&gt;&lt;h2&gt;A Roving Plagiarism Checker&lt;/h2&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9493" title="google-alert04" src="http://cdn.guidingtech.com/assets/postimages/2012/01/google-alert04.png" alt="" height="156" width="595" /&gt;&lt;/p&gt;&lt;p&gt;Insert a line of unique text from any of your published works (within double quotes) in the &lt;strong&gt;Search query&lt;/strong&gt; field. Any mention of it on the web could catch the eye of Google and help you look into it further.&lt;/p&gt;&lt;h2&gt;Track Updates and Software releases&lt;/h2&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9489" title="google-alert05" src="http://cdn.guidingtech.com/assets/postimages/2012/01/google-alert05.png" alt="" height="163" width="595" /&gt;&lt;/p&gt;&lt;p&gt;With  Google Alerts you don’t have to go out looking for product launches and  update notifications. Set it up with the product name of your choice  and watch your inbox.&lt;/p&gt;&lt;h2&gt;Track Your Favorite Author&lt;/h2&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9490" title="google-alert06" src="http://cdn.guidingtech.com/assets/postimages/2012/01/google-alert06.png" alt="" height="184" width="595" /&gt;&lt;/p&gt;&lt;p&gt;If you follow someone’s writing, the &lt;strong&gt;inpostauthor:&lt;/strong&gt; operator can be a quick way to distill all the places where he is being talked and his latest writing.&lt;/p&gt;&lt;h2&gt;Break Your Own Writer’s Block&lt;/h2&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9492" title="google-alert08" src="http://cdn.guidingtech.com/assets/postimages/2012/01/google-alert08.png" alt="" height="192" width="595" /&gt;&lt;/p&gt;&lt;p&gt;Stumped  for ideas? Maybe Google Alerts can help with a combo of your favorite  keywords (could be the topics you like writing on) separated by the ‘OR’  operator.&lt;/p&gt;&lt;h2&gt;As a Career Tool&lt;/h2&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9491" title="google-alert07" src="http://cdn.guidingtech.com/assets/postimages/2012/01/google-alert07.png" alt="" height="175" width="595" /&gt;&lt;/p&gt;&lt;p&gt;Apart  from monitoring your reputation online, or monitoring the company where  you would like to work, Google Alert can also be set up to net you a  job that’s just breaking. Let’s say you are interested in a Quality  Analyst job in IBM and that too in your city. The above screenshot shows  you how it would look like.&lt;/p&gt;&lt;p&gt;These seven points serve to illustrate the &lt;a title="Understanding Google Search Operators &amp;amp; Using Them to Search Faster" href="http://www.guidingtech.com/7687/faster-google-search-operators-guide/"&gt;power of Google Search&lt;/a&gt;  and Google Alerts which catches them while you go to take your nap.  Experiment with Google Alerts and the entire range of Google search  operators. Tell us about the use you would want to put it to.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/2446662453828918364/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/understanding-google-alerts-and-7.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/2446662453828918364" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/2446662453828918364" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/understanding-google-alerts-and-7.html" rel="alternate" title="Understanding Google Alerts and 7 Interesting Ways to Use It" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-1041644246259130455</id><published>2012-02-04T09:51:00.001-08:00</published><updated>2012-02-04T09:51:19.454-08:00</updated><title type="text">Wallbase: A Fantastic Tool for Finding Fabulous Wallpapers</title><content type="html">&lt;p&gt;What do you stare at for obscene amounts of hours every single day?  Let’s face it, your computer has become an invaluable tool and asset.  You’ve grown accustomed to staring at your desktop and the icons on it,  thinking about what you need to get done or finding a tool you need to  use. Your wallpaper can help define you. Your exposure to it is so  frequent and lengthy that you can’t help but be affected by it. Ever &lt;a title="How to Hide Your Desktop Icons In Windows ( Including a Quick Way )" href="http://www.guidingtech.com/5416/quickly-hide-desktop-icons-windows/"&gt;clear your desktop icons&lt;/a&gt; and use a simple wallpaper and realize how much less stressed out you feel?&lt;/p&gt;&lt;p&gt;&lt;a title="Interfacelift: Get Free High Resolution Wallpapers" href="http://www.guidingtech.com/38/free-high-resolution-wallpapers-interfacelift/"&gt;InterfaceLIFT&lt;/a&gt;  can be a great tool, but it’s archives are mostly centered around  photography or graphics manipulation. What about the fantastic elements  that appeal to our more imaginative sides?&lt;/p&gt;&lt;p&gt;&lt;a title="Wallbase" href="http://wallbase.cc/" target="_blank"&gt;Wallbase&lt;/a&gt; is a collection of wallpapers that has something for &lt;em&gt;everyone&lt;/em&gt;.  Whether you’re an avid animé lover (there’s a whole lot of that), car  enthusiast, science geek, art lover, or zen minimalist, you’ll find  something that will draw your attention.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9475" title="Wallbase Overview" src="http://cdn.guidingtech.com/assets/postimages/2012/01/overview1.jpg" alt="Wallbase Overview" height="291" width="595" /&gt;&lt;/p&gt;&lt;p&gt;As  you can see, Wallbase has a very simple and clean interface. It doesn’t  have any unnecessary text, and features thumbnails of potential  wallpapers.&lt;/p&gt;&lt;p&gt;The main navigation is done all from the top of the screen. Here’s a closer look:&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9476" title="Wallbase Navigation" src="http://cdn.guidingtech.com/assets/postimages/2012/01/navigation.png" alt="Wallbase Navigation" height="105" width="595" /&gt;&lt;/p&gt;&lt;p&gt;You  can sort images according to a variety of filters. There are categories  (Wallpaper/General, Manga, and High Resolution) that you can turn on  and off. You can also choose to view NSFW or sketchy pictures, or sort  according to screen resolution or aspect ratio. These sorts of filters  set Wallbase apart from other archives. Wallbase also features a great  ever-scrolling script, which means you no longer have to move your  mouse. This makes it all the more addictive.&lt;/p&gt;&lt;p&gt;When you actually come upon a piece of wallpaper you like, you click on it. Here’s what a specific wallpaper page looks like:&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9477" title="Wallbase Image" src="http://cdn.guidingtech.com/assets/postimages/2012/01/image.jpg" alt="Wallbase Image" height="297" width="595" /&gt;&lt;/p&gt;&lt;p&gt;The  main focus of Wallbase is always the image, and this page is no  exception. There are also tags on the left-hand side that show how many  users have favorite-d this specific image, and the file format. You can  zoom into the image by clicking on it, and then &lt;strong&gt;Save&lt;/strong&gt; the image right onto your computer.&lt;/p&gt;&lt;p&gt;Users of &lt;strong&gt;Wallbase&lt;/strong&gt;  also choose to create their own collections of wallpapers. You can  discover people who have similar tastes to you, and find wallpapers that  they love! Even better: some people have organized them into very neat  categories. Depending on your mood, you can find still photography,  cartoons, or cars all from the same user.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9478" title="Wallbase Collections" src="http://cdn.guidingtech.com/assets/postimages/2012/01/collections.jpg" alt="Wallbase Collections" height="266" width="595" /&gt;&lt;/p&gt;&lt;p&gt;Wallbase  has a great archive of all types of wallpaper. It has a browsing  experience like few other websites dedicated to wallpapers, and has  something for everyone. You may find yourself on it for much more time  than you’d previously intended to spend (dear Lord, the last thing we  need is another &lt;a title="9gag" href="http://9gag.com/" target="_blank"&gt;9gag&lt;/a&gt;)! I hope it serves as a good source of renewal, energy, and &lt;a title="5 Sites that Inspire Creativity" href="http://www.guidingtech.com/8594/sites-that-inspire-creativity/"&gt;inspiration&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/1041644246259130455/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/wallbase-fantastic-tool-for-finding.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1041644246259130455" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/1041644246259130455" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/wallbase-fantastic-tool-for-finding.html" rel="alternate" title="Wallbase: A Fantastic Tool for Finding Fabulous Wallpapers" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-6822564620059828268</id><published>2012-02-04T09:50:00.003-08:00</published><updated>2012-02-04T09:50:58.255-08:00</updated><title type="text">How to Easily Migrate From Gmail to Windows Live Hotmail</title><content type="html">&lt;p&gt;The Internet continued to grow by leaps and bounds in the last decade  while spawning new applications and web services which cater to  different user requirements. Mail services, undoubtedly, hold the most  precious position on this list, and with time, has witnessed users &lt;a title="How To Import Yahoo/Hotmail Emails and Contacts Into Gmail" href="http://www.guidingtech.com/1552/import-yahoo-hotmail-contacts-gmail/"&gt;switching between various services&lt;/a&gt; and moving towards more complex and user friendly environments.&lt;/p&gt;&lt;p&gt;Gmail  of course has conquered user attention to quite a great extent but  older services like Hotmail (or Windows Live Hotmail as it is known now)  have also &lt;a title="16 Awesome New Features Of Windows Live Hotmail You Need To Know" href="http://www.guidingtech.com/3462/new-windows-live-hotmail-features/"&gt;matured in the background&lt;/a&gt;. This article is a simple guide on why and how you should migrate from Gmail to Hotmail.&lt;/p&gt;&lt;h2 style="text-align: justify;"&gt;Why Migrate from Gmail to Hotmail?&lt;/h2&gt;&lt;p&gt;The first and foremost reason to catalyze your navigation towards Hotmail could be the changes in Google’s recent privacy &lt;a title="google's new privacy policies" href="http://www.google.com/intl/en/policies/privacy/" target="_blank"&gt;privacy policies&lt;/a&gt;. Its reason to collect and compile user data for better customer service might be a matter of concern for many of us.&lt;/p&gt;&lt;p&gt;Other  than that, Hotmail might interest you because it has evolved over time  and now boasts of elegant interface and useful features. It allows you  to connect with friends on multiple social networks right through your  inbox, view photo albums with ease and much more.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9441" title="social-services" src="http://cdn.guidingtech.com/assets/postimages/2012/01/social-services.png" alt="Add Social Networks" height="162" width="471" /&gt;&lt;/p&gt;&lt;p&gt;Moreover, its integrated storage system lets you &lt;a title="How to Set Up Opera Unite To Easily Send Large Files From Your PC" href="http://www.guidingtech.com/5686/opera-unite-share-send-large-files/"&gt;share photos and files in quite some quantity&lt;/a&gt;  on a single message, a feature that Gmail lacks. The ability to edit  and view Office documents add to the cream of the service. Features, to  categorize messages based on customized rules and scheduling cleaning up  of folders using &lt;strong&gt;Sweep &lt;/strong&gt;are added advantages.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9442" title="options" src="http://cdn.guidingtech.com/assets/postimages/2012/01/options.png" alt="Feature Tabs" height="32" width="376" /&gt;&lt;/p&gt;&lt;p&gt;So  above are some of the reasons why you would want to switch to Hotmail.  Might not sound very convincing to a veteran Gmail user but if you are  considering jumping ship, here’s how you can do it.&lt;/p&gt;&lt;h2 style="text-align: justify;"&gt;How to Switch Over to Hotmail from Gmail&lt;/h2&gt;&lt;p&gt;To begin with you must have an account with either @hotmail.com or @live.com. If not, follow the &lt;a title="hotmail signup" href="https://signup.live.com/signup.aspx?id=64855&amp;amp;lic=1" target="_blank"&gt;link&lt;/a&gt; to make a fresh sign up.&lt;/p&gt;&lt;p&gt;You  would also want to import your old contacts, calendar details and  messages into the new inbox. This sounds a difficult task but we have  figured out simpler tasks to help you. Navigate to a solution provided  by &lt;a title="TrueSwitch" href="https://secure5.trueswitch.com/hotmail-demo/" target="_blank"&gt;TrueSwitch&lt;/a&gt; and accomplish all those migration tasks with a single click.&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9443" title="true-switch" src="http://cdn.guidingtech.com/assets/postimages/2012/01/true-switch.png" alt="Gmail to Hotmail" height="216" width="607" /&gt;&lt;/p&gt;&lt;p&gt;It generally takes up to 24 hours to ship in all data. Additionally, it sets your email as a forward to the new account.&lt;/p&gt;&lt;p&gt;In  case you wish to add another mail account as forward or ensure the  option for the one you migrated from, you need to do it manually. Hit  the settings icon next to your inbox and select option that says &lt;strong&gt;Get email from another account&lt;/strong&gt;. Fill in the details and enjoy your soup!&lt;/p&gt;&lt;p&gt;&lt;img class="alignnone size-full wp-image-9444" title="add-account" src="http://cdn.guidingtech.com/assets/postimages/2012/01/add-account.png" alt="" height="94" width="342" /&gt;&lt;/p&gt;&lt;h2 style="text-align: justify;"&gt;Conclusion&lt;/h2&gt;&lt;p&gt;The &lt;a title="Hotmail’s New Look Now Available to Everyone [ Quick Tip ]" href="http://www.guidingtech.com/4850/new-hotmail-available/"&gt;recent makeover&lt;/a&gt;  that Hotmail received garnered a lot of praise from many. On the other  hand, Gmail also changed its look and it was heavily criticized by most  of the longtime users of the service. This might signal that the Hotmail  is finally starting to gain weight in the beam balance in terms of  features and ease of use, but Gmail is brilliant in its own way and its  tight integration with Google account doesn’t make things easier for  Hotmail either.&lt;/p&gt;&lt;p&gt;Overall, the jury is still out on which is the  superior email service and this post only intended to present an option  to the Gmail users contemplating a change. I am sure we have both Gmail  and Hotmail fans as our readers so why not speak out in the comments  about what you like and dislike in your respective email tools. We’d  love to hear your 2 cents. &lt;img src="http://cdn.guidingtech.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/6822564620059828268/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-to-easily-migrate-from-gmail-to.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/6822564620059828268" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/6822564620059828268" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/how-to-easily-migrate-from-gmail-to.html" rel="alternate" title="How to Easily Migrate From Gmail to Windows Live Hotmail" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5172695185420846112.post-8051990175942335808</id><published>2012-02-04T09:50:00.001-08:00</published><updated>2012-02-04T09:50:29.889-08:00</updated><title type="text">Joomla RFI Remote File Inclusions Attack | Joomla LFI Local File Inclusions Attack</title><content type="html">&lt;div style="text-align: center;"&gt;&lt;b&gt;Joomla LFI Local File Inclusions Attack | Joomla RFI Remote File Inclusions Attack &lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;By &lt;a href="http://www.xenuser.org/"&gt;Valentin&lt;/a&gt; &lt;/b&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;Examples for Joomla local file inclusions &lt;/b&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Local file inclusions &lt;/b&gt;are  very funny. You tell the website what you want to see. Awesome! You  want to view the configuration file which contains the database login  credentials? No problem. &lt;div&gt;&lt;br /&gt;You want to view the /etc/passwd file if Joomla is hosted on a Linux box? You can do that.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Local file inclusions&lt;/b&gt;  are also a common problem in Joomla extensions. Many of them are  vulnerable for this type of attack and some of them never get fixed.  This may lead to a server hack, which is not funny any more - at least  for the system administrator.&lt;br /&gt;&lt;br /&gt;A typical URL being vulnerable to LFI looks like this:&lt;br /&gt;index.php?option=com_blablubb&amp;amp;Item=2&amp;amp;view=guestbookpage&lt;br /&gt;&lt;br /&gt;Typically most of the vulnerable parameters are this one:&lt;br /&gt;- controller&lt;br /&gt;- view&lt;br /&gt;- layout&lt;br /&gt;- page&lt;br /&gt;&lt;br /&gt;To give you some proper understanding of typical affected&lt;br /&gt;URLs I provide you with some examples I found earlier this year:&lt;br /&gt;&lt;br /&gt;URL: index.php?option=com_jejob&amp;amp;view=some_value&lt;br /&gt;Vulnerable Parameter: view&lt;br /&gt;&lt;br /&gt;URL: index.php?option=com_jeajaxeventcalendar&amp;amp;view=some_value&lt;br /&gt;Vulnerable Parameter: view&lt;br /&gt;&lt;br /&gt;URL: index.php?option=com_jradio&amp;amp;controller=some_value&lt;br /&gt;Vulnerable Parameter: controller&lt;br /&gt;((I didn't find this one.))&lt;br /&gt;&lt;br /&gt;Now let's see how we can use this:&lt;br /&gt;index.php?option=com_jradio&amp;amp;controller=../../../../etc/passwd&lt;br /&gt;&lt;br /&gt;In  this case we need to use the famous Nullbyte which helps us to bypass a  restriction which is set in the responsible PHP script of the  component.&lt;br /&gt;&lt;br /&gt;In the example above the controller parameter is used  to include a file from the local hard disk. This file contains useful  information for us.&lt;br /&gt;&lt;br /&gt;If you are not familiar with local file inclusions I recommend you look a tutorial up since I will not explain any details here.&lt;br /&gt;&lt;br /&gt;Now  with the knowledge about a LFI vulnerability within a Joomla component,  we can try to access the configuration.php of Joomla. This file  contains very very interesting information.&lt;br /&gt;&lt;br /&gt;Since many LFIs also reveal PHP source code, we try this one:&lt;br /&gt;index.php?option=com_blabla&amp;amp;view=../../../configuration.php&lt;br /&gt;&lt;br /&gt;The source code of the file is shown and we receive the login data for the current database user. Now find a &lt;b&gt;PHPMyAdmin login&lt;/b&gt; on the same server and try to login with this data.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;You now have access to all Joomla tables and can basically do what you want.&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;Examples for Joomla remote file inclusions&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;Some Joomla components are also known for containing &lt;b&gt;remote file inclusion vulnerabilities.&lt;/b&gt; RFIs allow us to include files from another server and to execure code on the target.&lt;br /&gt;&lt;br /&gt;A  typical RFI URL looks like a LFI URL. In order to give you a better  feeling of how to see a RFI vulner-ability within seconds, I show you  some examples&lt;br /&gt;&lt;br /&gt;URL: index.php?option=com_sef&amp;amp;Itemid=&amp;amp;mosConfig.absolute.path=.&lt;br /&gt;Vulnerable Parameter: &amp;amp;mosConfig.absolute.path&lt;br /&gt;&lt;br /&gt;URL: index.php?option=com_jomestate&amp;amp;task=.&lt;br /&gt;Vulnerable Parameter: task&lt;br /&gt;&lt;br /&gt;When  you found a RFI vulnerability, try to include your PHP shell which is  hosted on another box. Once you uploaded it, you are able to browse all  Joomla files and download them, change them, remove them...&lt;br /&gt;&lt;br /&gt;&lt;b&gt;No Joomla installation is safe when there is an exploited RFI.&lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;http://hire4rlogic.blogspot.com/&lt;/div&gt;</content><link href="http://hire4rlogic.blogspot.com/feeds/8051990175942335808/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/joomla-rfi-remote-file-inclusions.html#comment-form" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/8051990175942335808" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/5172695185420846112/posts/default/8051990175942335808" rel="self" type="application/atom+xml"/><link href="http://hire4rlogic.blogspot.com/2012/02/joomla-rfi-remote-file-inclusions.html" rel="alternate" title="Joomla RFI Remote File Inclusions Attack | Joomla LFI Local File Inclusions Attack" type="text/html"/><author><name>KING</name><uri>http://www.blogger.com/profile/11639895142907625972</uri><email>noreply@blogger.com</email><gd:image height="24" rel="http://schemas.google.com/g/2005#thumbnail" src="//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19PK91YNUkakmBkK9pKUtHQEgfK6Ekh_vyE5hRyoY4WxQme5AV2wjFC2Nj_F_A-f3GZZTBk3Z02Dklw-JI9SLU3OBYYADA3ERbEQrjqZwa2suQJCbaHcdRIaGAkP_nQ/s220/IMGP0257.JPG" width="32"/></author><thr:total>0</thr:total></entry></feed>