<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Here You Go!</title>
	<atom:link href="http://justlearningtoblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://justlearningtoblog.wordpress.com</link>
	<description>Learning, Sharing, Collaborating</description>
	<lastBuildDate>Thu, 27 Oct 2011 15:46:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='justlearningtoblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Here You Go!</title>
		<link>http://justlearningtoblog.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://justlearningtoblog.wordpress.com/osd.xml" title="Here You Go!" />
	<atom:link rel='hub' href='http://justlearningtoblog.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Software Source Code Browsing Using Doxygen</title>
		<link>http://justlearningtoblog.wordpress.com/2010/09/29/software-source-code-browsing-using-doxygen/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/09/29/software-source-code-browsing-using-doxygen/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 04:54:59 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=153</guid>
		<description><![CDATA[(Please visit new location of this post here at http://binaryjunction.com/.) Frequently, software developers need to walk through software source codes, they are working on, for various reasons, such as for understanding the code flow or for debugging a particular problem. There are several tools available for this purpose though. However, I will describe here how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=153&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>(Please visit new location of this post <a title="binaryjunction" href="http://binaryjunction.com/2010/09/29/software-source-code-browsing-using-doxygen/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com/" target="_blank">http://binaryjunction.com/</a>.)</p>
<p>Frequently, software developers need to walk through software source codes, they are working on, for various reasons, such as for understanding the code flow or for debugging a particular problem. There are several tools available for this purpose though. However, I will describe here how to use a similar tool, called Doxygen, which can be used to create documentation from the source codes. The source code documentation can be created in the form of html files, and these html files can then be later used for source code browsing. One of the main advantages of Doxygen documentation is that the functional call references can be viewed in the form of graphs, which make code walk through very easy to understand. According to the Doxygen manual, it can be used to create documentation for several languages, such as C, C++, JAVA and many other languages. However, I have only used with C language code as this is the language I mostly use for my work. However, it does not make any difference as the instructions are same for creating documentation for all supported language. The first thing for creating Doxygen documentation is to create a configuration file with the extension &#8220;.cfg&#8221;. I have provided a sample configuration file below, and I have always used this configuration file for all of my projects. The instruction (provided below) of using Doxygen is also based on this configuration file. I have verified these instruction on Fedora 13 Linux distribution using Doxygen-1.7.1.</p>
<p>For full post, please click <a title="binaryjunction" href="http://binaryjunction.com/2010/09/29/software-source-code-browsing-using-doxygen/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com/" target="_blank">http://binaryjunction.com/</a>.</p>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:4475px;width:1px;height:1px;overflow:hidden;">Frequently, software developers need to walk through software source codes, they are working on, for various reasons, such as for understanding the code flow or for debugging a particular problem. There are several tools available for this purpose though. However, I will describe here how to use a similar tool, called Doxygen, which can be used to create documentation from the source codes. The source code documentation can be created in the form of html files, and these html files can then be later used for source code browsing. One of the main advantages of Doxygen documentation is that the functional call references can be viewed in the form of graphs, which make code walk through very easy to understand. According to the Doxygen manual, it can be used to create documentation for several languages, such as C, C++, JAVA and many other languages. However, I have only used with C language code as this is the language I mostly use for my work. However, it does not make any difference as the instructions are same for creating documentation for all supported language. The first thing for creating Doxygen documentation is to create a configuration file with the extension &#8220;.cfg&#8221;. I have provided a sample configuration file below, and I have always used this configuration file for all of my projects. The instruction (provided below) of using Doxygen is also based on this configuration file. I have verified these instruction on Fedora 13 Linux distribution using Doxygen-1.7.1.1.Before using the provided configuration file, first verify that your system has &#8220;doxygen&#8221;, &#8220;dot&#8221; and &#8220;perl&#8221; commands installed. Depending upon your configuration, you may not need &#8220;dot&#8221; program, but the sample configuration file below creates graphs, and &#8220;dot&#8221; command is required for creating graphs.&nbsp;</p>
<p>2.Now assume that the source code, you are working on, is available in the &#8220;myproject&#8221; directory, &#8220;cd&#8221; to this directory.</p>
<p>$cd /path/to/myproject</p>
<p>3.Copy the sample file provided below as &#8220;doxygen-configuration.cfg&#8221; in the &#8220;myproject&#8221; directory. You can give any name for this configuration file as far as the extension is &#8220;.cfg&#8221;.</p>
<p>4.Run Doxygen with the configuration file as follows:</p>
<p>$doxygen doxygen-configuration.cfg</p>
<p>After this, it may take a few minutes to complete the documentation creation depending upon your system speed. Once this process is complete, the documentation will be created in the directory &#8220;myproject-doxygen/html/&#8221; directory inside your &#8220;myproject&#8221;. You can always change this as you want to in your configuration file by changing &#8220;OUTPUT_DIRECTORY&#8221; parameter. Generally the naming format of created html files is as follows:</p>
<p>4a) If the name of a source code file is &#8220;xy.c&#8221;, then its created documentation will be &#8220;xy_8c.html&#8221;, and its source code will be &#8220;xy_8c_source.html&#8221;. Same is true for the header files (*.h).<br />
4b) If the name of a source code file is &#8220;xy_wz.c&#8221;, then its created documentation will be &#8220;xy__wz_8c.html&#8221; (note double underscores &#8220;__&#8221;), and its source code will be &#8220;xy__wz_8c_source.html&#8221;. Same is true for the header files (*.h).</p>
<p>In addition to these files, Doxygen creates several other files too. The size of the complete documentation may be very large, sometimes in 100s of megabytes (Mbs), and even in gigabytes (Gbs) depending upon your configuration parameters.</p>
<p>5. You can start browsing the html documentation files in your favorite web browser. For a starting point for browsing the source code, assume that the &#8220;main()&#8221; function is in file &#8220;xy.c&#8221;, then you can open &#8220;/path/to/myproject/myproject-doxygen/html/xy_8c.html&#8221; in your web browser.</p>
<p>&#8212;&#8211;doxygen-configuration.cfg&#8212;&#8212;&#8212;&#8212;&#8212;<br />
ABBREVIATE_BRIEF       =<br />
ALIASES                =<br />
ALLEXTERNALS           = NO<br />
ALPHABETICAL_INDEX     = YES<br />
ALWAYS_DETAILED_SEC    = YES<br />
BINARY_TOC             = NO<br />
BRIEF_MEMBER_DESC      = YES<br />
BUILTIN_STL_SUPPORT    = NO<br />
CALLER_GRAPH           = YES<br />
CALL_GRAPH             = YES<br />
CASE_SENSE_NAMES       = YES<br />
CHM_FILE               =<br />
CHM_INDEX_ENCODING     =<br />
CLASS_DIAGRAMS         = YES<br />
CLASS_GRAPH            = YES<br />
COLLABORATION_GRAPH    = YES<br />
COLS_IN_ALPHA_INDEX    = 5<br />
COMPACT_LATEX          = NO<br />
COMPACT_RTF            = NO<br />
CPP_CLI_SUPPORT        = NO<br />
CREATE_SUBDIRS         = NO<br />
DIRECTORY_GRAPH        = YES<br />
DISABLE_INDEX          = NO<br />
DISTRIBUTE_GROUP_DOC   = NO<br />
DOCSET_BUNDLE_ID       = org.doxygen.Project<br />
DOCSET_FEEDNAME        = &#8220;Doxygen generated docs&#8221;<br />
DOT_CLEANUP            = YES<br />
DOTFILE_DIRS           =<br />
DOT_FONTNAME           = FreeSans<br />
DOT_FONTPATH           =<br />
DOT_FONTSIZE           = 10<br />
DOT_GRAPH_MAX_NODES    = 50<br />
DOT_IMAGE_FORMAT       = png<br />
DOT_MULTI_TARGETS      = YES<br />
DOT_PATH               =<br />
DOT_TRANSPARENT        = NO<br />
DOXYFILE_ENCODING      = UTF-8<br />
ENABLED_SECTIONS       =<br />
ENABLE_PREPROCESSING   = YES<br />
ENUM_VALUES_PER_LINE   = 4<br />
EXAMPLE_PATH           =<br />
EXAMPLE_PATTERNS       =<br />
EXAMPLE_RECURSIVE      = NO<br />
EXCLUDE                =<br />
EXCLUDE_PATTERNS       =<br />
EXCLUDE_SYMBOLS        =<br />
EXCLUDE_SYMLINKS       = NO<br />
EXPAND_AS_DEFINED      =<br />
EXPAND_ONLY_PREDEF     = NO<br />
EXTERNAL_GROUPS        = YES<br />
EXTRACT_ALL            = YES<br />
EXTRACT_ANON_NSPACES   = NO<br />
EXTRACT_LOCAL_CLASSES  = YES<br />
EXTRACT_LOCAL_METHODS  = NO<br />
EXTRACT_PRIVATE        = YES<br />
EXTRACT_STATIC         = YES<br />
EXTRA_PACKAGES         =<br />
FILE_PATTERNS          =<br />
FILE_VERSION_FILTER    =<br />
FILTER_PATTERNS        =<br />
FILTER_SOURCE_FILES    = NO<br />
FORMULA_FONTSIZE       = 10<br />
FULL_PATH_NAMES        = YES<br />
GENERATE_AUTOGEN_DEF   = NO<br />
GENERATE_BUGLIST       = YES<br />
GENERATE_CHI           = NO<br />
GENERATE_DOCSET        = NO<br />
GENERATE_HTMLHELP      = NO<br />
GENERATE_HTML          = YES<br />
GENERATE_LATEX         = NO<br />
GENERATE_LEGEND        = YES<br />
GENERATE_MAN           = NO<br />
GENERATE_PERLMOD       = NO<br />
GENERATE_QHP           = NO<br />
GENERATE_RTF           = NO<br />
GENERATE_TAGFILE       =<br />
GENERATE_TESTLIST      = YES<br />
GENERATE_TODOLIST      = YES<br />
GENERATE_TREEVIEW      = ALL<br />
GENERATE_XML           = NO<br />
GRAPHICAL_HIERARCHY    = YES<br />
GROUP_GRAPHS           = YES<br />
HAVE_DOT               = YES<br />
HHC_LOCATION           =<br />
HIDE_FRIEND_COMPOUNDS  = NO<br />
HIDE_IN_BODY_DOCS      = NO<br />
HIDE_SCOPE_NAMES       = NO<br />
HIDE_UNDOC_CLASSES     = NO<br />
HIDE_UNDOC_MEMBERS     = NO<br />
HIDE_UNDOC_RELATIONS   = NO<br />
HTML_ALIGN_MEMBERS     = YES<br />
HTML_DYNAMIC_SECTIONS  = YES<br />
HTML_FILE_EXTENSION    = .html<br />
HTML_FOOTER            =<br />
HTML_HEADER            =<br />
HTML_OUTPUT            = html<br />
HTML_STYLESHEET        =<br />
IDL_PROPERTY_SUPPORT   = YES<br />
IGNORE_PREFIX          =<br />
IMAGE_PATH             =<br />
INCLUDED_BY_GRAPH      = YES<br />
INCLUDE_FILE_PATTERNS  =<br />
INCLUDE_GRAPH          = YES<br />
INCLUDE_PATH           =<br />
INHERIT_DOCS           = YES<br />
INLINE_INFO            = YES<br />
INLINE_INHERITED_MEMB  = NO<br />
INLINE_SOURCES         = YES<br />
INPUT                  =<br />
INPUT_ENCODING         = UTF-8<br />
INPUT_FILTER           =<br />
INTERNAL_DOCS          = NO<br />
JAVADOC_AUTOBRIEF      = NO<br />
LATEX_BATCHMODE        = NO<br />
LATEX_CMD_NAME         = latex<br />
LATEX_HEADER           =<br />
LATEX_HIDE_INDICES     = NO<br />
LATEX_OUTPUT           = latex<br />
LAYOUT_FILE            =<br />
MACRO_EXPANSION        = YES<br />
MAKEINDEX_CMD_NAME     = makeindex<br />
MAN_EXTENSION          = .3 .5 .8<br />
MAN_LINKS              = YES<br />
MAN_OUTPUT             = man<br />
MAX_DOT_GRAPH_DEPTH    = 0<br />
MAX_INITIALIZER_LINES  = 30<br />
MSCGEN_PATH            =<br />
MULTILINE_CPP_IS_BRIEF = NO<br />
OPTIMIZE_FOR_FORTRAN   = NO<br />
OPTIMIZE_OUTPUT_FOR_C  = YES<br />
OPTIMIZE_OUTPUT_JAVA   = NO<br />
OPTIMIZE_OUTPUT_VHDL   = NO<br />
OUTPUT_DIRECTORY       = myproject-doxygen<br />
OUTPUT_LANGUAGE        = English<br />
PAPER_TYPE             = a4wide<br />
PDF_HYPERLINKS         = YES<br />
PERLMOD_LATEX          = NO<br />
PERLMOD_MAKEVAR_PREFIX =<br />
PERLMOD_PRETTY         = YES<br />
PERL_PATH              = /usr/bin/perl<br />
PREDEFINED             =<br />
PROJECT_NAME           = myproject<br />
PROJECT_NUMBER         =<br />
QCH_FILE               =<br />
QHG_LOCATION           =<br />
QHP_NAMESPACE          = org.doxygen.Project<br />
QHP_VIRTUAL_FOLDER     = doc<br />
QT_AUTOBRIEF           = NO<br />
QUIET                  = NO<br />
RECURSIVE              = YES<br />
REFERENCED_BY_RELATION = YES<br />
REFERENCES_LINK_SOURCE = YES<br />
REFERENCES_RELATION    = YES<br />
REPEAT_BRIEF           = YES<br />
RTF_EXTENSIONS_FILE    =<br />
RTF_HYPERLINKS         = NO<br />
RTF_OUTPUT             = rtf<br />
RTF_STYLESHEET_FILE    =<br />
SEARCHENGINE           = YES<br />
SEARCH_INCLUDES        = YES<br />
SEPARATE_MEMBER_PAGES  = NO<br />
SHORT_NAMES            = NO<br />
SHOW_DIRECTORIES       = YES<br />
SHOW_FILES             = YES<br />
SHOW_INCLUDE_FILES     = YES<br />
SHOW_NAMESPACES        = YES<br />
SHOW_USED_FILES        = YES<br />
SIP_SUPPORT            = NO<br />
SKIP_FUNCTION_MACROS   = YES<br />
SORT_BRIEF_DOCS        = NO<br />
SORT_BY_SCOPE_NAME     = NO<br />
SORT_GROUP_NAMES       = NO<br />
SORT_MEMBER_DOCS       = NO<br />
SOURCE_BROWSER         = YES<br />
STRIP_CODE_COMMENTS    = YES<br />
STRIP_FROM_INC_PATH    =<br />
STRIP_FROM_PATH        =<br />
SUBGROUPING            = YES<br />
SYMBOL_CACHE_SIZE      = 0<br />
TAB_SIZE               = 8<br />
TAGFILES               =<br />
TEMPLATE_RELATIONS     = YES<br />
TOC_EXPAND             = NO<br />
TREEVIEW_WIDTH         = 250<br />
TYPEDEF_HIDES_STRUCT   = NO<br />
UML_LOOK               = NO<br />
USE_HTAGS              = NO<br />
USE_PDFLATEX           = NO<br />
VERBATIM_HEADERS       = YES<br />
WARN_FORMAT            = &#8220;$file:$line: $text&#8221;<br />
WARN_IF_DOC_ERROR      = YES<br />
WARN_IF_UNDOCUMENTED   = YES<br />
WARNINGS               = YES<br />
WARN_LOGFILE           =<br />
WARN_NO_PARAMDOC       = NO<br />
XML_DTD                =<br />
XML_OUTPUT             = xml<br />
XML_PROGRAMLISTING     = YES<br />
XML_SCHEMA             =<br />
&#8212;&#8211;doxygen-configuration.cfg&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Customization of the Doxygen configuration file:</p>
<p>It is possible that you may not like the name of the Doxygen documentation directory &#8220;myproject-doxygen&#8221; as in the sample file above, and you want to give some other name to it, and also you want to store in some other location. Similarly, depending upon your project requirement, you may also want to change some or all of the configuration parameters according to your needs. I am only going to describe some of the configuration parameters here, you can follow the link http://www.stack.nl/~dimitri/doxygen/configuration.html to go through the complete description of each parameters. It is also possible that some of these parameters may get obsoleted in future. While running doxygen (as in step 4 above), it will output warnings about the obsoleted parameters and then you can modify the configuration file accordingly. Some of the Doxygen&#8217;s configuration parameters work in group, and if you modify one parameter, it may affect all other parameters in the group, so be careful about it.</p>
<p>1)GENERATE_HTML:  If you want to generate html files or not and I set it to YES.<br />
2)GENERATE_LATEX: If you want to generate the documentation output in the latex file format. Latex files can be converted to pdf files. I did not want this so I set it to NO.<br />
3)HTML_FILE_EXTENSION: I assume that this parameter is self-explanatory and allows to set the extension of html files. I set it to &#8220;.html&#8221;.<br />
4)INCLUDE_GRAPH: If you want to generate the call graphs, I set it to YES.<br />
5)The following parameters are language specific. As I am only using C, so I just set it for C, you can set it according to your language.<br />
OPTIMIZE_FOR_FORTRAN   = NO<br />
OPTIMIZE_OUTPUT_FOR_C  = YES<br />
OPTIMIZE_OUTPUT_JAVA   = NO<br />
OPTIMIZE_OUTPUT_VHDL   = NO</p>
<p>6)OUTPUT_DIRECTORY: where you want to store the Doxygen documentation.<br />
7)OUTPUT_LANGUAGE: By default, it is English, but you can set it to the other supported language as per your requirements.<br />
8)PROJECT_NAME: Name of the project, you are working on.<br />
9)PROJECT_NUMBER: Version of the project, you are are working on.<br />
10)SOURCE_BROWSER: If you want the Doxygen to create source code files in html format or not (*.source.html, as explained above in step 4).</p>
<p>Important Links:<br />
http://www.stack.nl/~dimitri/doxygen/ : Main Doxygen website<br />
http://www.stack.nl/~dimitri/doxygen/configuration.html : Here, you can find explanation to each of the configurations parameters, and can customize accordingly.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=153&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/09/29/software-source-code-browsing-using-doxygen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
		<item>
		<title>OlivePad: India&#8217;s Answer to iPAD</title>
		<link>http://justlearningtoblog.wordpress.com/2010/07/24/olivepad-india-ipad/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/07/24/olivepad-india-ipad/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 06:15:19 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[techsamachaar]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=133</guid>
		<description><![CDATA[(Please visit new location of this post here at http://binaryjunction.com/.) Olive Telecom, an Indian-based multinational company, launched India&#8217;s first 3.5G Pad, named OlivePad-VT100. The main features of OlivePad are: For full post, please visit here at http://binaryjunction.com/.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=133&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>(Please visit new location of this post <a title="binaryjunction" href="http://binaryjunction.com/2010/07/24/olivepad-india-ipad/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com/" target="_blank">http://binaryjunction.com/</a>.)</p>
<p>Olive Telecom, an Indian-based multinational company, launched India&#8217;s first 3.5G Pad, named OlivePad-VT100. The main features of OlivePad are:</p>
<p>For full post, please visit <a title="binaryjunction" href="http://binaryjunction.com/2010/07/24/olivepad-india-ipad/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com/" target="_blank">http://binaryjunction.com/</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=133&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/07/24/olivepad-india-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Enable Creation of Core Dump Files Due to Crashed Applications in Fedora Linux Distribution</title>
		<link>http://justlearningtoblog.wordpress.com/2010/07/23/enable-core-dump-files-in-fedora/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/07/23/enable-core-dump-files-in-fedora/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 00:49:49 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=127</guid>
		<description><![CDATA[It is needed frequently to analyze the cause of a crashed application. One way to do it is through the creating of core dump files that can be later analyzed to debug the issue. Core dump files are a snapshot of the memory area being used by the application at the time the crash occurred. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=127&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is needed frequently to analyze the cause of a crashed application. One way to do it is through the creating of core dump files that can be later analyzed to debug the issue. Core dump files are a snapshot of the memory area being used by the application at the time the crash occurred. Creation of core dump files may not be enabled by default, and may require some configuration. The instructions to enable the core dump files, I am going to describe here, are tested on Fedora Linux Distribution.</p>
<p>Enter following line at the command prompt:</p>
<p><em>$ulimit -c unlimited</em></p>
<p>Now check the output of the command &#8220;ulimit -c&#8221;, and it should show &#8220;unlimited&#8221; as follows.</p>
<p><em>$ulimit -c</em><br />
<strong>unlimited</strong></p>
<p>The above change, done in the way, will not be permanent. To make them permanent, edit file &#8220;/etc/security/limits.conf&#8221; (You must either be root user or must have &#8220;sudo&#8221; permission to edit this file.) and type the following line.</p>
<p><em>*      soft     core         unlimited<br />
</em><br />
&#8220;*&#8221; means that this change is applicable for all users. However, to make this change for only a specific user, you should enter as follows:</p>
<p><em>&lt;user-login-id&gt;      soft     core         unlimited<br />
</em><br />
The core dump files, generated after an application crashes, are stored in the directory from where the application was run. To place the core dump files in another location, the &#8220;sysctl&#8221; variable, named &#8220;kernel.core_pattern&#8221;, is used. The value of this variable can be checked as follows:</p>
<p><em>$sysctl -a|grep core_pattern</em> #(if you are root user.)<br />
<strong>kernel.core_pattern = core</strong> #(assuming &#8220;abrtd&#8221; is not running. The explanation about &#8220;abrtd&#8221; is discussed below.)</p>
<p>or</p>
<p><em>$sudo sysctl -a|grep core_pattern</em> #(if you are non-root user with sudo permissions.)<br />
<strong>kernel.core_pattern = core</strong></p>
<p>The value of kernel.core_pattern is &#8220;core&#8221; currently. Two ways to change the value of this variable are as follows:</p>
<p><em>sysctl -w kernel.core_pattern=/tmp/core.%p<br />
</em><br />
Now if you check the value of &#8220;kernel.core_pattern&#8221;, it will be &#8220;/tmp/core.%p&#8221;.</p>
<p><em>$sysctl -a|grep core_pattern<br />
</em><strong>kernel.core_pattern = /tmp/core.%p</strong></p>
<p>This means that the core dump files will be generated in the &#8220;/tmp&#8221; directory. &#8220;%p&#8221; extension to core dump files is used to append the process id of the application that crashed. This way, the variable kernel.core_pattern is also used to format the name of core dump files.</p>
<p><span style="text-decoration:underline;"><strong>ABRT (Automated Bug Reporting Tool) Daemon:</strong></span></p>
<p>ABRT is an application, included in Fedora Linux Distribution, that is used to report bugs in the software packages whenever crash occurs. Due to this, ABRT also helps in creation of core dump files. Multiple packages may be needed to run various features of ABRT daemon, and their listing is as follows.</p>
<p>abrt<br />
abrt-plugin-bugzilla<br />
abrt-plugin-runapp<br />
abrt-desktop<br />
abrt-addon-ccpp<br />
abrt-addon-kerneloops<br />
abrt-plugin-logger<br />
abrt-libs<br />
abrt-addon-python<br />
abrt-gui</p>
<p>To install these packages in Fedora, one can do:</p>
<p><em>$yum install &lt;package-name&gt;</em> #(if root user.)</p>
<p>or</p>
<p><em>$sudo yum install &lt;package-name&gt;</em> #(if non-root user with sudo permissions.)</p>
<p>To check whether ABRT daemon is running on your system, execute:</p>
<p><em>$service abrtd status</em> or #sudo service abrtd status<br />
<strong>abrt is stopped</strong></p>
<p>If it is stopped as shown above, &#8220;abrtd&#8221; can be started as follows:</p>
<p><em>$service abrtd start</em> or #sudo service abrtd start<br />
<strong>Starting abrt daemon:                                      [  OK  ]</strong></p>
<p>And, now the status should show as follows:<br />
<em>$service abrtd status</em> or #sudo service abrtd status<br />
<strong>abrt (pid  5678) is running&#8230;</strong></p>
<p>When &#8220;abrtd&#8221; is running, the value of sysctl variable &#8220;kernel.core_pattern&#8221; is different from the above as shown below:</p>
<p><em>$sysctl -a|grep core_pattern</em><br />
<strong>kernel.core_pattern = |/usr/libexec/abrt-hook-ccpp /var/cache/abrt %p %s %u %c</strong></p>
<p>&#8220;abrtd&#8221; creates a sub-directory (named something like &#8220;ccpp-1279914365-14618&#8243;) in the directory &#8220;/var/cache/abrt&#8221; as shown in the value of the variable. This also means that the core files will also be stored in that sub-directory in the &#8220;/var/cache/abrt&#8221; directory (in addition to the current directory where application was run). ABRT daemon also creates other files in addition to the core dump files in the sub-directory to further help users in debugging the crash issue.</p>
<p>By default, &#8220;abrtd&#8221; created core dump files only for those executable (or packages) that are managed by &#8220;rpm&#8221; (red hat package manager) utility. To enable &#8220;abrtd&#8221; for non-rpm application (something you compiled locally and are not managed through rpm), you need to edit the file cat &#8220;/etc/abrt/abrt.conf&#8221; , and change the value of the field &#8220;ProcessUnpackaged&#8221; to &#8220;yes&#8221; as follows:</p>
<p>ProcessUnpackaged = no   #(before editing the file)</p>
<p>ProcessUnpackaged = yes  #(after editing the file)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=127&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/07/23/enable-core-dump-files-in-fedora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
		<item>
		<title>India Makes World&#8217;s Cheapest Laptop, Sakshat, based on Open Souce Linux Operating System</title>
		<link>http://justlearningtoblog.wordpress.com/2010/07/23/india-launches-world-cheapest-laptop/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/07/23/india-launches-world-cheapest-laptop/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 14:53:12 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[techsamachaar]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=116</guid>
		<description><![CDATA[For full post, please visit here at http://binaryjunction.com/.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=116&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For full post, please visit <a title="binaryjunction" href="http://binaryjunction.com/2010/07/23/india-launches-world-cheapest-laptop/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com/" target="_blank">http://binaryjunction.com/</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=116&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/07/23/india-launches-world-cheapest-laptop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
		<item>
		<title>10 Amazing iPhone 4 Features</title>
		<link>http://justlearningtoblog.wordpress.com/2010/07/22/10-amazing-iphone4-features/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/07/22/10-amazing-iphone4-features/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 02:39:19 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[techsamachaar]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=111</guid>
		<description><![CDATA[For full post, visit here at http://binaryjunction.com .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=111&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For full post, visit <a title="binaryjunction" href="http://binaryjunction.com/2010/07/22/10-amazing-iphone4-features/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com" target="_blank">http://binaryjunction.com</a> .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=111&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/07/22/10-amazing-iphone4-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
		<item>
		<title>Mozilla Firefox Does Not Connect To Internet When Network Connection Is Up</title>
		<link>http://justlearningtoblog.wordpress.com/2010/07/20/mozilla-firefox-does-not-connect-to-internet/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/07/20/mozilla-firefox-does-not-connect-to-internet/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 16:07:42 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=102</guid>
		<description><![CDATA[For full post, please visit  here at http://binaryjunction.com/ .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=102&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For full post, please visit  <a title="binaryjunction" href="http://binaryjunction.com/2010/07/20/mozilla-firefox-does-not-connect-to-internet/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com" target="_blank">http://binaryjunction.com/</a> .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=102&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/07/20/mozilla-firefox-does-not-connect-to-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
		<item>
		<title>Steve Jobs’ 2 Steps Solution to IPhone 4 Call Drop (Reception and Antenna) Issues</title>
		<link>http://justlearningtoblog.wordpress.com/2010/07/17/steve-jobs-2-steps-solution-to-iphone4-call-drop-issues/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/07/17/steve-jobs-2-steps-solution-to-iphone4-call-drop-issues/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 08:07:33 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[techsamachaar]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=90</guid>
		<description><![CDATA[For full post, please visit  here at http://binaryjunction.com/ .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=90&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For full post, please visit  <a title="binaryjunction" href="http://binaryjunction.com/2010/07/17/steve-jobs-2-steps-solution-to-iphone4-call-drop-issues/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com" target="_blank">http://binaryjunction.com/</a> .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=90&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/07/17/steve-jobs-2-steps-solution-to-iphone4-call-drop-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
		<item>
		<title>Steve Jobs Says IPhone 4 Call Drop (Reception and Antenna) Issue Affects Only 0.55% Users</title>
		<link>http://justlearningtoblog.wordpress.com/2010/07/17/steve-jobs-iphone4s-call-drop-affects-less-users/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/07/17/steve-jobs-iphone4s-call-drop-affects-less-users/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 08:04:39 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[techsamachaar]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=86</guid>
		<description><![CDATA[For full post, please visit here at http://binaryjunction.com/ .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=86&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For full post, please visit <a title="binaryjunction" href="http://binaryjunction.com/2010/07/17/steve-jobs-iphone4s-call-drop-affects-less-users/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com" target="_blank">http://binaryjunction.com/</a> .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=86&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/07/17/steve-jobs-iphone4s-call-drop-affects-less-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
		<item>
		<title>Steve Jobs Admits Call Drop (Reception and Antenna) Issues with iPhone 4</title>
		<link>http://justlearningtoblog.wordpress.com/2010/07/17/steve-jobs-admits-call-drop-issues-with-iphone4/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/07/17/steve-jobs-admits-call-drop-issues-with-iphone4/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 08:01:23 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[techsamachaar]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=84</guid>
		<description><![CDATA[For full post, please visit here at http://binaryjunction.com/ .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=84&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For full post, please visit <a title="binaryjunction" href="http://binaryjunction.com/2010/07/17/steve-jobs-admits-call-drop-issues-with-iphone4/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com" target="_blank">http://binaryjunction.com/</a> .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=84&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/07/17/steve-jobs-admits-call-drop-issues-with-iphone4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
		<item>
		<title>Apple Provides IOS 4.0.1 and a Free Case to Address iPhone 4 Call Drop (Reception and Antenna) Issues</title>
		<link>http://justlearningtoblog.wordpress.com/2010/07/17/apple-provides-ios-and-a-free-case/</link>
		<comments>http://justlearningtoblog.wordpress.com/2010/07/17/apple-provides-ios-and-a-free-case/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 07:57:26 +0000</pubDate>
		<dc:creator>Lucky</dc:creator>
				<category><![CDATA[TechCorner]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[techsamachaar]]></category>

		<guid isPermaLink="false">http://justlearningtoblog.wordpress.com/?p=80</guid>
		<description><![CDATA[For full post, please visit here at http://binaryjunction.com/ .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=80&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For full post, please visit <a title="binaryjunction" href="http://binaryjunction.com/2010/07/17/apple-provides-ios-and-a-free-case/" target="_blank">here</a> at <a title="binaryjunction" href="http://binaryjunction.com" target="_blank">http://binaryjunction.com/</a> .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justlearningtoblog.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justlearningtoblog.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justlearningtoblog.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justlearningtoblog.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justlearningtoblog.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justlearningtoblog.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justlearningtoblog.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justlearningtoblog.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justlearningtoblog.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justlearningtoblog.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justlearningtoblog.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justlearningtoblog.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justlearningtoblog.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justlearningtoblog.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justlearningtoblog.wordpress.com&amp;blog=12723481&amp;post=80&amp;subd=justlearningtoblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justlearningtoblog.wordpress.com/2010/07/17/apple-provides-ios-and-a-free-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/60801c3b1d35807de8dd4e7883501ae5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>
	</item>
	</channel>
</rss>
