<?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>KnowledgeSHARE</title>
	<atom:link href="http://balatech.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://balatech.wordpress.com</link>
	<description>Information is Wealth</description>
	<lastBuildDate>Sun, 19 Jun 2011 01:12:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='balatech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/4db0fe1275dd4ff780ec64e657b2de4a?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>KnowledgeSHARE</title>
		<link>http://balatech.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://balatech.wordpress.com/osd.xml" title="KnowledgeSHARE" />
	<atom:link rel='hub' href='http://balatech.wordpress.com/?pushpress=hub'/>
		<item>
		<title>What is MVC?</title>
		<link>http://balatech.wordpress.com/2011/06/03/what-is-mvc/</link>
		<comments>http://balatech.wordpress.com/2011/06/03/what-is-mvc/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 03:31:09 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[mvc]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=218</guid>
		<description><![CDATA[Model–View–Controller (MVC) is an architectural pattern used in software engineering. Successful use of the pattern isolates business logic from user interface considerations, resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other. In MVC, the model represents the information [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=218&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Model–View–Controller (MVC) is an architectural pattern used in software engineering. Successful use of the pattern isolates business logic from user interface considerations, resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other. In MVC, the model represents the information (the data) of the application; the view corresponds to elements of the user interface such as text, checkbox items, and so forth; and the controller manages the communication of data and the business rules used to manipulate the data to and from the model.</p>
<p>In simpler words-</p>
<p>1. Model handles all our database logic. Using the model we connect to our database and provide an abstraction layer.<br />
2. Controller represents all our business logic i.e. all our ifs and else.<br />
3. View represents our presentation logic i.e our HTML/XML/JSON code.</p>
<p><strong>Why should I write my own framework?</strong></p>
<p>This tutorial is by no means a comprehensive/definitive solution to your framework needs. There are a <a href="http://cakephp.org/">lot</a> <a href="http://codeigniter.com/">of</a> <a href="http://zend.com/">good</a> <a href="http://symfony-project.org/">php</a> <a href="http://xisc.com/">frameworks</a> out there.</p>
<p>So why should you write your own framework? Firstly, it is a great learning experience. You will get to learn PHP inside-out. You will get to learn object-oriented programming, design patterns and considerations.</p>
<p>More importantly, you have complete control over your framework. Your ideas can be built right into your framework. Although always not beneficial, you can write coding conventions/functions/modules the way you like.</p>
<p><strong>Lets dive right in</strong></p>
<p>The Directory Structure</p>
<p><img title="Directory Structure" src="http://anantgarg.com/wp-content/uploads/2009/03/picture-16.png" alt="Directory Structure" width="219" height="325" /></p>
<p>Although we will not be a couple of directories mentioned above for this tutorial, we should have them in place for future expansion. Let me explain the purpose of each directory:</p>
<p>application &#8211; <em>application specific code </em><br />
config &#8211; <em>database/server configuration</em><br />
db &#8211; <em>database backups</em><br />
library &#8211; <em>framework code</em><br />
public &#8211; <em>application specific js/css/images</em><br />
scripts &#8211; <em>command-line utilities</em><br />
tmp &#8211; <em>temporary data </em></p>
<p>Once we have our directory structure ready, let us understand a few coding conventions.</p>
<p>Coding Conventions</p>
<p>1. mySQL tables will always be lowercase and plural e.g. items, cars<br />
2. Models will always be singular and first letter capital e.g. Item, Car<br />
3. Controllers will always have “Controller” appended to them. e.g. ItemsController, CarsController<br />
4. Views will have plural name followed by action name as the file. e.g. items/view.php, cars/buy.php</p>
<p>&nbsp;</p>
<p>Read more: http://anantgarg.com/2009/03/13/write-your-own-php-mvc-framework-part-1/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/218/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=218&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2011/06/03/what-is-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>

		<media:content url="http://anantgarg.com/wp-content/uploads/2009/03/picture-16.png" medium="image">
			<media:title type="html">Directory Structure</media:title>
		</media:content>
	</item>
		<item>
		<title>The Challenge of Change</title>
		<link>http://balatech.wordpress.com/2011/05/31/the-challenge-of-change/</link>
		<comments>http://balatech.wordpress.com/2011/05/31/the-challenge-of-change/#comments</comments>
		<pubDate>Tue, 31 May 2011 06:26:03 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[Attitude]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=214</guid>
		<description><![CDATA[We need to stop thinking like mechanics and to start acting like gardeners. Challenges of Initiating These challenges are often sufficient to prevent growth from occurring, almost before it starts. They are consistently encountered at the early stages of significant organizational change. The capabilities to deal with them must be developed under high pressure; but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=214&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We need to stop thinking like mechanics and to start acting like gardeners.</p>
<p>Challenges of Initiating</p>
<p>These challenges are often sufficient to prevent growth from occurring, almost before it starts. They are consistently encountered at the early stages of significant organizational change. The capabilities to deal with them must be developed under high pressure; but in managing these challenges effectively, organizations develop capabilities much sooner than otherwise for dealing with challenges down the road.</p>
<p>1 Not Enough Time:&#8221;We don&#8217;t have time for this stuff!&#8221;</p>
<p>This is the challenge of control over one&#8217;s time. This challenge is represents a valuable opportunity for reframing the way that workplaces are organized, to provide flexibility and time for reflection and innovation.</p>
<p>2 No Help: &#8220;We&#8217;re like the blind leading the blind!&#8221;</p>
<p>Some managers believe that asking for help is a sign of incompetence; others are unaware of the coaching and support they need. Meeting this challenge means building the capabilities for finding the right help, and for mentoring each other to develop successful innovations.</p>
<p>3 Not Relevant: &#8220;Why are we doing this stuff?&#8221;</p>
<p>A top priority for pilot groups is a clear, compelling case for learning and change. If people are not sufficiently committed to an initiative&#8217;s goals, a &#8220;commitment gap&#8221; develops and they will not take part wholeheartedly. Building relevance depends on candid conversations about the reasons for change and the commitments people can make.</p>
<p>4 &#8220;Walking the Talk&#8221; &#8211; Leadership values</p>
<p>What happens when there is a mismatch between the things the boss says and his or her actual behavior? People do not expect perfection, but they recognize when leaders are not sincere or open. If executive and line leaders do not provide an atmosphere of trust and authenticity, then genuine change cannot move forward.</p>
<p>Challenges of Sustaining Momentum</p>
<p>These challenges occur sometime during the first year or two, when the group has clear goals and has discovered that new methods save more than enough time to put them into practice. Now the pilot group&#8217;s real troubles begin. Sustained activity confronts boundaries &#8211; between the work of the pilot group and &#8220;internal&#8221; attitudes and beliefs, and between the pilot group&#8217;s needs and the larger-scale company&#8217;s values and ways of measuring success.</p>
<p>5 Fear and Anxiety: &#8220;This suff is &#8212;-&#8221;</p>
<p>The blanks represent the fact that everyone expresses their fear and anxiety with a different form of defensiveness. ) How do you deal with the concerns of team members about exposure, vulnerability and inadequacy, triggered by the conflicts between increasing levels of candor and openness and low levels of trust? This is one of the most frequently faced challenges and the most difficult to overcome.</p>
<p>6 Assessment and Measurement: &#8220;This stuff isn&#8217;t working&#8221;</p>
<p>How do you deal with the disconnect between the tangible (but unfamiliar) achievements of a pilot group and the organization&#8217; s traditional ways of measuring success?</p>
<p>7 Believers and Nonbelievers:</p>
<p>&#8220;We have the right way!&#8221; say pilot group members. &#8220;They&#8217;re acting like a cult!&#8221; say their other colleagues and peers.Riding on a wave of early success, speaking their own language, the pilot group becomes increasingly isolated from the rest of the organization. Outsiders, meanwhile, are put off and then turned off by the new, unfamiliar approaches and behavior. These misunderstandings easily accelerate into unnecessary, but nearly unavoidable, opposition.</p>
<p>Challenges of Systemwide Redesgin and Rethinking</p>
<p>These challenges appear as a pilot group&#8217;s work gains broader credibility and confronts the established internal infrastructure and practices of the organization.</p>
<p>8 Governance: &#8220;They won&#8217;t give up the power.&#8221;</p>
<p>As the pilot group&#8217;s capabilities and activities increase, it runs into the priorities and established processes of the rest of the organization. This leads to conflicts over power and autonomy and to a destructive, &#8220;us-versus-them&#8221; dynamic that nobody wants &#8211; and that could be avoided if the capabilities are in place for organizational redesign.</p>
<p>9 Diffusion: &#8220;We keep reinventig the wheel!&#8221;</p>
<p>Unless organizations learn to recognize and deal with their mysterious, almost unnoticed inability to transfer knowledge across organizational boundaries, people around the system will not build upon each other&#8217;s successes.</p>
<p>10 Strategy and Purpose: &#8220;Where are we going? and &#8220;What are we here for?&#8221;</p>
<p>How do you revitalize and rethink the organization&#8217; s intended direction for success, its&#8217; contribution to its community and its future identity? How do you improve the processes of conversation that lead people to articulate and refine their aspirations and goals for achieving them?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/214/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=214&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2011/05/31/the-challenge-of-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>
	</item>
		<item>
		<title>“How to Be an Entrepreneur”</title>
		<link>http://balatech.wordpress.com/2011/05/31/%e2%80%9chow-to-be-an-entrepreneur%e2%80%9d/</link>
		<comments>http://balatech.wordpress.com/2011/05/31/%e2%80%9chow-to-be-an-entrepreneur%e2%80%9d/#comments</comments>
		<pubDate>Tue, 31 May 2011 06:24:58 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[Attitude]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=212</guid>
		<description><![CDATA[The Five Step Program Identify the problem Become an expert Work Hard Work Hard Work Hard Identifying a problem is the first step. Care should be taken to distinguish between problems and symptoms. You are better off addressing the problem rather than futzing around with the symptoms. You have to be an expert for that. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=212&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Five Step Program</p>
<p>Identify the problem<br />
Become an expert<br />
Work Hard<br />
Work Hard<br />
Work Hard</p>
<p>Identifying a problem is the first step. Care should be taken to distinguish between problems and symptoms. You are better off addressing the problem rather than futzing around with the symptoms. You have to be an expert for that.</p>
<p>You become an expert by learning, some of which comes from experience, and which in turn comes from trying out different things and learning from the inevitable failures. Failing fast and failing frequently is a good thing if you learn from them. But to my mind the most important thing of all is to THINK DIFFERENT.</p>
<p>How does one think differently? At the very least it requires a big vocabulary. Not the GRE word list, of course, but concepts. You need to understand the world from a wide variety of perspectives. And that requires at the very least reading widely outside your domain of expertise.</p>
<p>For people who have a technology and business background, I would suggest history, anthropology, economics, science, literature, etc. This will help you understand and appreciate the connections that link everything around you and you will be able to figure out how to build stuff that will be useful and thus people will pay to get the stuff and you will be a successful entrepreneur.<br />
Oh yes, the bit about working hard. Without the hard work, you’d have to be very lucky to be successful. And I believe that luck does not fully explain the most successful ones. Unfortunately, the capacity to work hard is, I think, built sometime in one’s formative years. So in a sense, your basic nature determines if you can be an entrepreneur.</p>
<p>What I have described above is not exactly verbatim but faithful in spirit. I ended my talk with that favorite quote from the architect Daniel Burnham (1864-1912) who said:</p>
<p>Make no little plans. They have no magic to stir men’s blood and probably themselves will not be realized. Make big plans; aim high in hope and work, remembering that a noble, logical diagram once recorded will never die, but long after we are gone will be a living thing, asserting itself with ever-growing insistency. Remember that our sons and grandsons are going to do things that would stagger us. Let your watchword be order and your beacon beauty. Think big.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=212&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2011/05/31/%e2%80%9chow-to-be-an-entrepreneur%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>
	</item>
		<item>
		<title>Skills of Smart People</title>
		<link>http://balatech.wordpress.com/2011/05/31/skills-of-smart-people/</link>
		<comments>http://balatech.wordpress.com/2011/05/31/skills-of-smart-people/#comments</comments>
		<pubDate>Tue, 31 May 2011 06:23:17 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[Attitude]]></category>
		<category><![CDATA[skillsneed]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=210</guid>
		<description><![CDATA[In today&#8217;s competitive world, it pays to be smart. No matter how smart you are, I am sure there is something you could get smarter about. Below are some qualities of smart people. As you read the list, ask yourself: Am I as smart as I could be in this area? How could I get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=210&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In today&#8217;s competitive world, it pays to be smart. No matter how smart you are, I am sure there is something you could get smarter about. Below are some qualities of smart people. As you read the list, ask yourself: Am I as smart as I could be in this area? How could I get smarter?</p>
<p>1. Make Decisions Intuitively</p>
<p>Smart people listen to and follow their intuition. They know how intuitions and insights come to them and are tuned-in internally to make wise decisions.</p>
<p>2. Be Self-Aware</p>
<p>Smart people are aware of who they are&#8212; strengths, weaknesses, personality, values, etc. As Confucious once said, ?He who knows others is wise, he who knows himself is enlightened,? they know that the most important (and interesting) thing to know about is ?self.?</p>
<p>3. Use Active Reflection</p>
<p>Smart people reflect on and learn from past experiences, finding out what works and what doesn?t, and then adjusts their course of action as needed. They think about things before jumping in, and also take the time after-the-fact to actively reflect to fully understand what happened or didn?t happen.</p>
<p>4. Think Out-of-Box</p>
<p>Smart people can easily entertain new ideas, thoughts, and ways of doing things. They crave progressive and forward thinking information, concepts, and people. They often come up with new and radical ideas on a regular basis.</p>
<p>5. Have An Open-Mind</p>
<p>Smart people are open to different perspectives and see potential where most people don?t. They would agree with what the quote, ?A mind is like a parachute, it only functions when it is open.? They are comfortable with paradoxes and can relate to many sides of an issue or opinion.</p>
<p>6. Be Responsive</p>
<p>Smart people recognize and respond quickly to opportunities and people. They act and react fast, and take care of what needs to be taken care-of, well ahead of schedule.</p>
<p>7. Be Resourceful</p>
<p>Smart people don?t have to know it all, but they do know where to go to get whatever information, resources, training, education that they need. They are well-networked and have people to call on for resource referrals.</p>
<p>8. Question Yourself</p>
<p>Smart people think for themselves. They do not blindly believe things so-called experts say, in fact, they ask deep questions to discover their own truth.</p>
<p>9. Upgrade Your Brain</p>
<p>Smart people stay smart because they are committed to being a lifelong learner. They continuously learn new things, and stay current with their skills, attitudes, and beliefs.</p>
<p>10. Have a Sense of Humor</p>
<p>Smart people do not take themselves or life too seriously. They recognize the importance of finding the fun in the irony and the comedy of everyday life.</p>
<p>11. Take Risks</p>
<p>Smart people are willing to try out new things, knowing that if it doesn?t work out as intended, failure is often cleverly disguised as a learning opportunity. They ?swing out there? often, and it usually pays off.</p>
<p>12. Trust Yourself</p>
<p>Smart people believe and trust themselves first and foremost. They don?t have to check with others to make decisions, they instinctively know what is right for them and they go for it!</p>
<p>13. Write and List Things on Paper</p>
<p>Smart people have a well-developed life strategy that includes a written life vision/mission, purpose, and goals statement. They also write lists&#8212;one for ?have to?s? and one for ?want to?s.?</p>
<p>14. Be Productive</p>
<p>Smart people get things done, through whatever organizational/ time management system that works for them. They make the most of each day and take action on important life tasks each and everyday.</p>
<p>15. Use Discernment</p>
<p>Smart people are able to discern (see clearly) other?s reasons and motives, so they selectively choose who and what to align themselves with. They surround themselves with only the highest quality people, programs, and places.</p>
<p>16. Read, Read, Read</p>
<p>Smart people tap into the collective brain power of others by reading books, magazines, articles&#8212;anything that is helpful for their own development. They are also able to filter out the information that fits for them and let the rest go.</p>
<p>17. Value Learning</p>
<p>Smart people value the process of learning for learning?s sake. They do not just learn for a specific end&#8212;to get a certificate, degree, title, etc. They learn because it is intrinsically rewarding for them.</p>
<p>18. Teach Others</p>
<p>Smart people are the teachers of the world, who share their knowledge with other people. They put themselves out there so the rest of us can benefit, and in exchange, their own learning grows and develops because they are actively talking about, researching, and understanding their subject.</p>
<p>19. Reinvent Yourself</p>
<p>Smart people do not like to stay the same, they love to grow and develop. They often play with their image, brand, company name, and expand or change it entirely. To stay ahead of the game, they often reinvent themselves time and time again.</p>
<p>20. Be Student of Life</p>
<p>Smart people not only know about specific subjects and topics, but also about what it means to be a human being at this time in our evolution. They are insatiably curious and want to know more about becoming bigger and brighter, as a result they naturally evolve.</p>
<p>As Lao Tzu said, ?To gain knowledge, add things everyday. To gain wisdom, remove things everyday.? This is so true, our brain is like a computer and in order for it to function at a higher level, we must always be adding, while simultaneously taking away information that no longer serves us. Think about it, what do you want to remove from your database? And, what new software program will you replace it with?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=210&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2011/05/31/skills-of-smart-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>
	</item>
		<item>
		<title>Ask the Right Question &#8211; story</title>
		<link>http://balatech.wordpress.com/2011/05/31/ask-the-right-question-story/</link>
		<comments>http://balatech.wordpress.com/2011/05/31/ask-the-right-question-story/#comments</comments>
		<pubDate>Tue, 31 May 2011 06:21:53 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[Attitude]]></category>
		<category><![CDATA[skillsneed]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=208</guid>
		<description><![CDATA[Jack and Max are walking from religious service. Jack wonders whether it would be all right to smoke while praying. Max replies, &#8220;Why don&#8217;t you ask the Priest?&#8221; So Jack goes up to the Priest and asks, &#8221; Father, may I smoke while I pray?&#8221; The Priest replies, &#8220;No, my son, you may not! That&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=208&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Jack and Max are walking from religious service. Jack wonders whether it would be all right to smoke while praying.</p>
<p>Max replies, &#8220;Why don&#8217;t you ask the Priest?&#8221;</p>
<p>So Jack goes up to the Priest and asks, &#8221; Father, may I smoke while I pray?&#8221;</p>
<p>The Priest replies, &#8220;No, my son, you may not! That&#8217;s utter disrespect to our religion.&#8221;</p>
<p>Jack goes back to his friend and tells him what the good Priest told him.</p>
<p>Max says, &#8220;I&#8217;m not surprised. You asked the wrong question. Let me try.&#8221;</p>
<p>And so Max goes up to the Priest and asks, &#8220;Father, may I pray while I smoke ?&#8221;</p>
<p>To which the Priest eagerly replies, &#8220;By all means, my son. By all means. You can always pray whenever you want to.&#8221;</p>
<p>**********</p>
<p>Moral of the story is &#8230; The reply you get depends on the question you ask.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=208&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2011/05/31/ask-the-right-question-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>
	</item>
		<item>
		<title>delayed automatic redirect</title>
		<link>http://balatech.wordpress.com/2010/11/18/delayed-automatic-redirect/</link>
		<comments>http://balatech.wordpress.com/2010/11/18/delayed-automatic-redirect/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 06:02:51 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=205</guid>
		<description><![CDATA[&#8212;&#8212;&#8212;- delayed automatic redirect to another page &#8212;&#8211; include following meta tag within the &#60;head&#62; &#60;meta http-equiv=&#8221;refresh&#8221; content=&#8221;15;  url=http://w3school.com/&#8221; /&#62; It means the home page of your site is automatically redirected to another page(w3schools.com) in next 15sec &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=205&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8212;&#8212;&#8212;- delayed automatic redirect to another page &#8212;&#8211;</p>
<p>include following meta tag within the <span style="color:#0000ff;">&lt;head&gt;</span></p>
<p><span style="color:#0000ff;">&lt;meta http-equiv=&#8221;<span style="color:#800000;">refresh</span>&#8221; content=&#8221;<span style="color:#800000;">15;  url=http://w3school.com/</span>&#8221; /&gt;</span></p>
<p>It means the home page of your site is automatically redirected to another page(w3schools.com) in next 15sec</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=205&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2010/11/18/delayed-automatic-redirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>
	</item>
		<item>
		<title>wordpress &#8211; Display child category seperate from current Parent category</title>
		<link>http://balatech.wordpress.com/2010/11/02/wordpress-display-child-category-seperate-from-current-parent-category/</link>
		<comments>http://balatech.wordpress.com/2010/11/02/wordpress-display-child-category-seperate-from-current-parent-category/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 08:54:06 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=199</guid>
		<description><![CDATA[&#60;div&#62; &#60;?php if ( is_category() ) { $cate = get_query_var(&#8216;cat&#8217;);  // get current category wp_list_cats(&#8216;sort_column=ID&#38;depth=1&#38;child_of=&#8217;.$cate.&#8217;&#38;title_li=&#8217;); // lists sub-categories }?&#62; &#60;/div&#62; for eg: if you click on the menu 1 parent category , it lists its sub-category in seperate container whereever you want&#8230; as well as you can select level hierarchy using &#8220;depth &#8220;attribute. use the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=199&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&lt;div&gt;</p>
<p>&lt;?php if ( is_category() ) {<br />
$cate = get_query_var(&#8216;cat&#8217;);  // get current category</p>
<p>wp_list_cats(&#8216;sort_column=ID&amp;depth=1&amp;child_of=&#8217;.$cate.&#8217;&amp;title_li=&#8217;); // lists sub-categories<br />
}?&gt;<br />
&lt;/div&gt;</p>
<p><span style="text-decoration:underline;"><em>for eg:</em></span><em> if you click on the <span style="text-decoration:underline;">menu 1 </span> parent category , it lists its sub-category in seperate container whereever you want&#8230; as well as you can select level hierarchy using &#8220;depth &#8220;attribute. use the above code where you want to display the child category. it dynamically changes its sub-category when you switch between the parent category.<br />
</em></p>
<p><span style="color:#0000ff;">menu 1</span></p>
<p>menu 2</p>
<p>menu 3</p>
<p><span style="text-decoration:underline;"><em>output:</em></span></p>
<p><span style="color:#0000ff;">menu 1</span></p>
<p>menu 2</p>
<p>menu 3</p>
<p>__________________</p>
<p>&#8212;- <span style="color:#0000ff;">menu 1 A</span></p>
<p>&#8212;-<span style="color:#0000ff;"> menu 1 B</span></p>
<p>&#8212;- <span style="color:#0000ff;">menu 1 C</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/199/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=199&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2010/11/02/wordpress-display-child-category-seperate-from-current-parent-category/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>
	</item>
		<item>
		<title>India GDP 2010</title>
		<link>http://balatech.wordpress.com/2010/10/07/india-gdp-2010/</link>
		<comments>http://balatech.wordpress.com/2010/10/07/india-gdp-2010/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 06:19:55 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Asia Market]]></category>
		<category><![CDATA[india and china]]></category>
		<category><![CDATA[India GDP 2010]]></category>
		<category><![CDATA[indian economy 2010]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=194</guid>
		<description><![CDATA[oct 6,2010 : India&#8217;s GDP would expand by 9.7 percent in 2010 and 8.4 percent next year, the fund said. The forecast issued in July saw 9.4 percent growth this year and 8.4 percent in 2011. India, China lead robust Asian recovery &#8211; IMF Asia&#8217;s emerging economies, powered by China and India, are leading the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=194&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h4>oct 6,2010 : India&#8217;s GDP would expand by 9.7 percent in 2010  and 8.4 percent next year, the fund said. The forecast issued in July  saw 9.4 percent growth this year and 8.4 percent in 2011.</h4>
<h1>India, China lead robust Asian recovery &#8211; IMF</h1>
<p>Asia&#8217;s emerging  economies, powered by China and India, are leading the global recovery  after faring well during crisis, but need to allow currency appreciation  and undergo structural reforms to ensure long-term growth, the  International Monetary Fund said on Wednesday.</p>
<p>The IMF&#8217;s World Economic  Outlook said developing Asia is projected to grow by about 9.4 percent  in 2010 and 8.4 percent in 2011. IMF projections for those countries in  July were 9.2 percent this year and 8.5 percent in 2011.</p>
<p>&#8220;The handoff from public sector-driven to private-sector-driven  growth is well under way in most Asian countries,&#8221; the fund said, noting  that a tapering off of stimulus measures had been met by private  demand.</p>
<p>China and India&#8217;s  industrial production and retail sales remained strong and &#8220;robust  activity in these countries in turn is helping power growth in the rest  of Asia,&#8221; said the IMF.</p>
<p>China&#8217;s  strong and sustained expansion has been a &#8220;linchpin for global trade&#8221;  that helped its commodity-exporting neighbours, including Australia,  Indonesia and New Zealand, as well as capital goods exporters in Japan,  Germany and Korea, it said.</p>
<p>The  IMF forecast that China would grow 10.5 percent this year and 9.6  percent in 2011, driven by domestic demand &#8212; projections that were  unchanged from the July outlook.</p>
<p>&#8220;On average over 2010-11, private domestic demand is poised to  contribute two-thirds of near-term growth, and government activity about  one-third, whereas the contribution from net exports will be close to  zero,&#8221; the fund said.</p>
<p>India&#8217;s  GDP would expand by 9.7 percent in 2010 and 8.4 percent next year, the  fund said. The forecast issued in July saw 9.4 percent growth this year  and 8.4 percent in 2011.</p>
<p>&#8220;In  India, low reliance on exports, accommodative policies, and strong  capital inflows have supported domestic activity and growth,&#8221; the IMF  said.</p>
<p>&#8220;Robust corporate profits and favourable external financing will encourage investment,&#8221; it added.</p>
<p>Asia&#8217;s newly industrialized economies &#8212; Hong Kong, Singapore, South  Korea and Taiwan &#8212; saw a rapid recovery driven by a rebounding  inventory cycle, strong domestic activity and regional demand for their  exports, it said.</p>
<p>The  economies of the 10-member Association of Southeast Asian Nations,  particularly the exporters of commodities and electronics, benefited  from strong regional growth.</p>
<p>&#8220;Overall, near-term growth for the region is projected to be underpinned  both by exports and domestic demand,&#8221; the IMF said of ASEAN.</p>
<p>The Asian region&#8217;s recovery faced downside risk from outside, the IMF warned.</p>
<p>&#8220;A slower recovery in the United States and the euro area, a  greater-than-anticipated slowdown in China, or negative spillovers from  unanticipated financial shocks abroad could interrupt the pace of  recovery,&#8221; said the outlook.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/194/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=194&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2010/10/07/india-gdp-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>
	</item>
		<item>
		<title>how to add/use font in webpage &#8211; Font embed</title>
		<link>http://balatech.wordpress.com/2010/10/07/how-to-adduse-font-in-webpage-font-embed/</link>
		<comments>http://balatech.wordpress.com/2010/10/07/how-to-adduse-font-in-webpage-font-embed/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 06:01:59 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[add new font]]></category>
		<category><![CDATA[customized font]]></category>
		<category><![CDATA[font embed]]></category>
		<category><![CDATA[style webpage with fonts]]></category>
		<category><![CDATA[stylish webpage]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=189</guid>
		<description><![CDATA[.css Add the below code in your css file or add it within the &#60;style type=&#8221;text/css&#8221;&#62;&#8230;. &#60;/style&#62; @font-face { font-family:alien ; src: url(http://&#8230;/font/alien.ttf)  format(&#8220;truetype&#8221;); } .alien { font-family:alien,verdana,helvetica,sans-serif; } &#60;?php &#60;div class=alien&#62; echo &#8221; This is alien font style&#8221;; &#60;/div&#62; ?&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=189&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration:underline;">.css</span></p>
<p>Add the below code in your css file or add it within the &lt;style type=&#8221;text/css&#8221;&gt;&#8230;. &lt;/style&gt;</p>
<p>@font-face {<br />
font-family:alien ;<br />
src: url(http://&#8230;/font/alien.ttf)  format(&#8220;truetype&#8221;);<br />
}</p>
<p>.alien { font-family:alien,verdana,helvetica,sans-serif;<br />
}</p>
<p>&lt;?php</p>
<p>&lt;div class=alien&gt;</p>
<p>echo &#8221; This is alien font style&#8221;;</p>
<p>&lt;/div&gt;</p>
<p>?&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/189/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=189&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2010/10/07/how-to-adduse-font-in-webpage-font-embed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>
	</item>
		<item>
		<title>Fade script &#8211; jquery CSS</title>
		<link>http://balatech.wordpress.com/2010/10/07/fade-script-jquery-css/</link>
		<comments>http://balatech.wordpress.com/2010/10/07/fade-script-jquery-css/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 05:51:03 +0000</pubDate>
		<dc:creator>Bala S</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://balatech.wordpress.com/?p=187</guid>
		<description><![CDATA[&#60;script src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#8221;&#62;&#60;/script&#62; &#60;script type=&#8221;text/javascript&#8221;&#62; $(document).ready(function () { setInterval( &#8220;banner()&#8221;, 5000 ); }); function banner() { var $active = $(&#8216;#slideshow img.active&#8217;); if ( $active.length == 0 ) $active = $(&#8216;#slideshow img:last&#8217;); var $next =  $active.next().length ? $active.next() : $(&#8216;#slideshow img:first&#8217;); $active.addClass(&#8216;last-active&#8217;); $next.css({opacity: 0.0}) .addClass(&#8216;active&#8217;) .animate({opacity: 1.0}, 3000, function() { $active.removeClass(&#8216;active last-active&#8217;); }); } &#60;/script&#62; &#60;div id=slideshow&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=187&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&lt;script src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
$(document).ready(function () {<br />
setInterval( &#8220;banner()&#8221;, 5000 );<br />
});<br />
function banner() {<br />
var $active = $(&#8216;#slideshow img.active&#8217;);<br />
if ( $active.length == 0 ) $active = $(&#8216;#slideshow img:last&#8217;);<br />
var $next =  $active.next().length ? $active.next()<br />
: $(&#8216;#slideshow img:first&#8217;);<br />
$active.addClass(&#8216;last-active&#8217;);<br />
$next.css({opacity: 0.0})<br />
.addClass(&#8216;active&#8217;)<br />
.animate({opacity: 1.0}, 3000, function() {<br />
$active.removeClass(&#8216;active last-active&#8217;);<br />
});<br />
}<br />
&lt;/script&gt;</p>
<p>&lt;div id=slideshow&gt;<br />
&lt;img src=&#8221;http://&#8230;/bannerk1.jpg&#8221; /&gt;<br />
&lt;img src=&#8221;http://&#8230;/bannerk2.jpg&#8221; /&gt;<br />
&lt;img src=&#8221;http://&#8230;/bannerk3.jpg&#8221; /&gt;<br />
&lt;img src=&#8221;http://&#8230;/bannerk4.jpg&#8221; /&gt;</p>
<p>&lt;/div&gt;</p>
<p>.css<br />
#slideshow{position:relative;height:130px;background:#fff;overflow:visible}#slideshow IMG{position:absolute;top:0;left:0;z-index:8;opacity:.0}#slideshow IMG.active{z-index:10;opacity:1.0}#slideshow IMG.last-active{z-index:9}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/balatech.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/balatech.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/balatech.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/balatech.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/balatech.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/balatech.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/balatech.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/balatech.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/balatech.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/balatech.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/balatech.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/balatech.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/balatech.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/balatech.wordpress.com/187/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=balatech.wordpress.com&amp;blog=13487335&amp;post=187&amp;subd=balatech&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://balatech.wordpress.com/2010/10/07/fade-script-jquery-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d92dc837fa1f1e6dd47e1c6231c5dad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amybala</media:title>
		</media:content>
	</item>
	</channel>
</rss>
