<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>detangled.com (BETA)</title>
	<atom:link href="http://www.detangled.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.detangled.com</link>
	<description></description>
	<lastBuildDate>Wed, 25 Apr 2012 05:15:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Controlling Anger Before It Controls You</title>
		<link>http://www.detangled.com/self-improvement/controlling-anger-before-it-controls-you/</link>
		<comments>http://www.detangled.com/self-improvement/controlling-anger-before-it-controls-you/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 07:47:10 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Self Improvement]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=926</guid>
		<description><![CDATA[Are you feeling angry most of the time? Do you know of some methods to control anger? Is it normal to feel angry? These are some of the questions that may have gone through your mind but don&#8217;t fret because anger is generally healthy and an absolutely normal human emotion. So there is nothing wrong [...]]]></description>
			<content:encoded><![CDATA[<p>Are you feeling angry most of the time? Do you know of some methods to control anger? Is it normal to feel angry? These are some of the questions that may have gone through your mind but don&#8217;t fret because anger is generally healthy and an absolutely normal human emotion. <span id="more-926"></span>So there is nothing wrong with you; however unmanaged anger can become very destructive and cause a lot of problems especially in your work place, in your relationships with other people and can degenerate  into a general low quality of life. In addition it makes you feel like you are being controlled by a powerful unpredictable force.</p>
<p>Anger is normally triggered by either internal or external events and can be expressed in many different ways. So what are some of the tips of controlling anger before it takes control of your life?</p>
<p>The basic principle of anger management is reducing both psychological and emotional feelings that normally triggers anger. You can always avoid people, things and situations that make your blood boil or you can try to change them but  in general learning to control your responses and your impulses is far more important and much more rewarding. Before reacting to the situation, take some time and take deep breaths while counting to ten. This will help you slow down this emotion and greatly neutralize your temper. After calming down, communicate your aggravation straight and clearly in a confident yet non-confrontational manner but still being careful not to hurt other people or appearing to control them.</p>
<p>Doing some physical exercises can also greatly help you in letting go of emotions particularly if you are about to lose your temper. Doing some physical activity, like going out for a fast walk or running ,  is usually a good idea when you find that your anger is rising.</p>
<p>The other way of controlling your anger before it controls your life is taking your time and thinking before speaking because it can be very easy to utter something that you may regret later when you&#8217;re in the heat of the moment.</p>
<p>Your main focus should be how to resolve the current issue. Keep reminding yourself that anger will not help you in solving the problem but instead it will make it even worse. Avoid blaming or criticizing and hold yourself responsible for making the right decisions. It&#8217;s also important to forgive other people as negative emotions, anger included, may make you become engraved in bitterness and make you become a seriously unbalanced person. Forgiveness also helps both of you to learn from the circumstance.</p>
<p>Humor can also help in controlling anger. Other great methods include, writing in a journal, listening to music, practicing exercises that involve deep breathing, calming yourself down by repeating phrases like &#8216;take it easy&#8217; or even doing yoga. Always try to do anything that makes you feel relaxed and in control.</p>
<p>Finally, seek help if you feel controlling your anger is a big challenge especially if it is really making an impact negatively in your relationships or any other significant elements of your life. A professional who is licensed in mental health matters or a psychologist can help and work closely with you in identifying different techniques that help you change how you think, behave and respond to situations that upsets you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/self-improvement/controlling-anger-before-it-controls-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Dump Isn&#8217;t A Mystery</title>
		<link>http://www.detangled.com/mysql/sql-dump-isnt-a-mystery/</link>
		<comments>http://www.detangled.com/mysql/sql-dump-isnt-a-mystery/#comments</comments>
		<pubDate>Sun, 18 Mar 2012 07:09:27 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=913</guid>
		<description><![CDATA[The SQL dump method works to create a text file containing SQL commands that specifically designed for execution by the server, resulting in the corresponding database returning to the same state the database was in whenever the MySQL dump command executes. Using PostgreSQL, a utility program referred to as pg_dump may be used to execute [...]]]></description>
			<content:encoded><![CDATA[<p>The SQL dump method works to create a text file containing SQL commands that specifically designed for execution by the server, resulting in the corresponding database returning to the same state the database was in whenever the MySQL dump command executes. Using PostgreSQL, a utility program referred to as pg_dump may be used to execute the SQL dump. <span id="more-913"></span>The basic syntax for the pg_dump command is:</p>
<p>pg_dump dbname &gt; outfile</p>
<p>The pg_dump command writes the result of the dump to the standard output, which provides users with some useful options. Being that the pg_dump is one of the regular PostgreSQL client applications, one may perform this type of backup through any remote host that may access the target database. It is important to remember that the pg_dump application must always be ran as a database superuser in order for the program to backup all the tables and information that make up the database. Running the pg_dump file as a database superuser is required because the application is unable to operate with special permissions, which also means that failure to run pg_dump as a superuser may result in the output of the dump being incomplete or corrupted in some manner.</p>
<p><strong>SQL Dump Variables</strong></p>
<p><strong> </strong>First, one must specify the database server that the pg_dump application is contacting by inserting the appropriate values for the host and port variables. In the command line is where the variables for the host, or –h, and the port, or –p. The value for the –h host setting in the command line is either the local host or the variable that the PGHOST environment specifies. For the –p port value in the command line, one inserts the value that is defined by the PGPORT environment variable or the value defined by the compiled-in default. For the PostgreSQL client applications, including the pg_dump application, the default setting is to connect to using a database user name that is identical to the user’s operating system user name. This default connection setting may be bypassed by a user specifying the –U option, or by setting the environment variable for the PGUSER. Another important fact to take note of is the pg_dump’s subjection to standard mechanisms for client authentication. Pg_dump has many advantages over other backup methods available in that the output of the pg_dump may be loaded to newer versions of PostgreSQL and one may use the output file to transfer a database from one machine architecture to another. In addition to that, the dumps are always internally consistent and create an exact replica of the database whenever the command for pg_dump executes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/mysql/sql-dump-isnt-a-mystery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress and bbPress Working Together</title>
		<link>http://www.detangled.com/wordpress/wordpress-and-bbpress-working-together/</link>
		<comments>http://www.detangled.com/wordpress/wordpress-and-bbpress-working-together/#comments</comments>
		<pubDate>Sat, 17 Mar 2012 07:01:54 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=906</guid>
		<description><![CDATA[bbPress is forum software that is designed by WordPress and may be integrated with your WordPress blog. It is designed to be lightweight and efficient, as well as being safe and easy to use. The only requirement for using bbPress is an updated version of WordPress, though you may choose to use just bbPress and [...]]]></description>
			<content:encoded><![CDATA[<p>bbPress is forum software that is designed by WordPress and may be integrated with your WordPress blog. It is designed to be lightweight and efficient, as well as being safe and easy to use. The only requirement for using bbPress is an updated version of WordPress, though you may choose to use just bbPress and not the two together. WordPress may easily be integrated with bbPress through the bbPress administration section settings area. Information stored in the bbPress database and WordPress database may be shared between the two as long as the location of the database is specified in the administration section of bbPress.<span id="more-906"></span><br />
<strong>bbPress Cookies</strong><strong> </strong></p>
<p>By integrating cookies for WordPress and bbPress you may allow visitors to effectively log into both at the same time, instead of having to login in separately for the WordPress blog and bbPress forum. The only requirement of this feature is that the WordPress blog and bbPress forum be installed on either the same domain or in sub-directories of the same domain name. The WordPress information should be added to the bbPress software and some setting must be changed. Under the WordPress Integration section of the bbPress administration section you may find the settings for the WordPress configuration file for the integration of cookies between the two to successfully work.</p>
<p><strong>Visitor Registration for bbPress Integration</strong><strong> </strong></p>
<p>Whenever a user registers with either WordPress or bbPress, the opposite software is unaware of the user registering. A little confused? Basically, if someone registers with WordPress then bbPress is unaware of the user registering. To correct this one may set up what is known as a user role map. The user role map may be used to assign roles to the users that register, which allows the software to know the role of the person registering with the site. For example, if someone is registered with WordPress they will be assigned an appropriate role whenever they register with bbPress. If one does not install a role map then the software will be unable to assign users the appropriate roles, which in turn limits the integration between WordPress and bbPress.</p>
<p><strong>Optional Functions of bbPress</strong><strong> </strong></p>
<p><strong> b</strong>bPress may be given access to the WordPress functions upon one manually setting up bbPress to load WordPress first. This is a deep form of integration between WordPress and bbPress and is completely optional. This meaning that one does not have to complete this form of integration in order to integrate the cookies and logins of the two.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/wordpress/wordpress-and-bbpress-working-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Stop Being Socially Awkward</title>
		<link>http://www.detangled.com/self-improvement/how-to-stop-being-socially-awkward/</link>
		<comments>http://www.detangled.com/self-improvement/how-to-stop-being-socially-awkward/#comments</comments>
		<pubDate>Sat, 17 Mar 2012 06:50:40 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Self Improvement]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=897</guid>
		<description><![CDATA[As serious as it may sound to be, some people tend to be so socially awkward it can be painful to be around them. This can be attributed to some reasons such as spotlight effect, low self esteem, social exposure, fear, among many others. Spotlight effect is primarily defined as a phenomenon that is psychological [...]]]></description>
			<content:encoded><![CDATA[<p>As serious as it may sound to be, some people tend to be so socially awkward it can be painful to be around them. This can be attributed to some reasons such as spotlight effect, low self esteem, social exposure, fear, among many others. Spotlight effect is primarily defined as a phenomenon that is psychological and causes the affected individuals to think that the people around their environments are looking at them and are judging them when in the real sense, they are not.<span id="more-897"></span></p>
<p>In reality, chances are that: these people do not care or even notice that you have some kind of nervousness, be it in a conversation or a speech that you are giving. If you are suffering from such a problem, you need to understand that at one time or the other, everyone tends to experience some little nervousness. The people listening to you will hardly take note of the awkward pauses in such a speech hence one should learn to relax. This is arguably the only way that they you can learn to make your conversations way smoother.</p>
<p>The formula on how to stop being so socially awkward is pretty much simple, all you need to do is make sure that you are involved in what everyone else is doing. Don&#8217;t be dull and withdrawn. Rather than spending the whole day watching the latest movies, get involved in as many social events as you can. This way, you will have more and more friends who will help you overcome the fear of interacting. This is the only way that you will feel at ease and start having fun like the rest of the group members. Though it might be hard at first, it gets easier over time, and as one continues to practice. Sooner or later, you are going to realize that you are equally good as the rest of the people or probably even better.</p>
<p>The other good way to counter such a problem is avoiding negativity. As the saying goes, &#8220;whatever a man thinks so is he&#8221;. Don&#8217;t fill your mind with thoughts that make you believe that you are awkward or boring. The sooner you start fighting such thoughts and believing in yourself, the easier it will be for you to deal with such a problem. Such a positive attitude will help you take some small steps that will help you learn how to effectively initiate conversations. One should also learn to be observant and keen. This helps one to take note on which direction a given conversation is headed, therefore giving you a chance to make some meaningful contributions to it. Being observant on the other hand ensures that, you have something interesting to share about from the observations you have made.</p>
<p>As a rule of thumb, one should make sure that everyone has a fair chance to air their stores. Don&#8217;t talk too much, neither should you keep quiet. Let everyone have their chance to talk and when yours comes by, don&#8217;t let it pass. As a matter of fact, confidence is an attractive virtue. Get to learn some tips to help you improve on confidence as this will greatly help you stop being so socially awkward altogether!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/self-improvement/how-to-stop-being-socially-awkward/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best 10 Ways to Become a Better Speaker &#8211; Some Incredible Tips</title>
		<link>http://www.detangled.com/self-improvement/best-10-ways-to-become-a-better-speaker-some-incredible-tips/</link>
		<comments>http://www.detangled.com/self-improvement/best-10-ways-to-become-a-better-speaker-some-incredible-tips/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 06:43:58 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Self Improvement]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=891</guid>
		<description><![CDATA[If you are striving hard to depict an idea in the exact way you want it or finding it very difficult to explain a specific subject in front of a group of people, here you can find the best 10 ways to become a better speaker. An efficient speaker does not only speak well about [...]]]></description>
			<content:encoded><![CDATA[<p>If you are striving hard to depict an idea in the exact way you want it or finding it very difficult to explain a specific subject in front of a group of people, here you can find the best 10 ways to become a better speaker. An efficient speaker does not only speak well about a particular subject, but also succeeds in communicating with his audience effectively and interactively. So it can be said that you will be able to become a successful speaker when your audience will enjoy and understand the message you want to convey.<span id="more-891"></span></p>
<p><strong>10 Ways to Become a Better Speaker</strong></p>
<p>Whether it is our workplace or personal life, most of us definitely have faced a time at least once in our life when we either had to deliver a convincing speech during a client meeting or had to dedicate a speech to a close friend. If you are not confident enough about your speaking ability, you probably hesitate a lot in such situations. But rather instead of holding yourself back try embracing and practising these methods, which will help to minimize your hesitation regarding public speaking.</p>
<p>First, if you know that you are expected to deliver a persuading speech about a particular subject, always try to acquaint yourself with the subject well in advance. This way you will get a clear idea about the point of discussion. Furthermore, imagine yourself as an audience and try to identify the best aspects of your favourite speakers which you like most.</p>
<p>Second, when you start to speak, first introduce yourself and then introduce the subject you are going to talk about. Always keep in mind that confidence is the solution of almost every problem. So work hard towards boosting your self-esteem.</p>
<p>Third, while speaking, your body language should reflect that you are enjoying discussing the subject. Your listeners should not feel that you are speaking just for the sake of speaking. Otherwise they will easily lose their interest in the topic.</p>
<p>Fourth, address the entire crowd and try to engage them while talking. Rather than staring awkwardly, emphasize upon making occasional eye contact with them. Interact with them and encourage them to ask questions to you too. Remember nobody is perfect on this earth and the audience also do not expect you to know everything. What really matters is how well you manage an unexpected situation.</p>
<p>Fifth, do not get nervous if you have made any mistake, like wrongly pronounced of a word. Ignore it as if it never happened. Simply repeat the right pronunciation and move on.</p>
<p>Sixth, listening to a specific subject becomes more interesting when you elaborate a topic with live examples. Which means if you are discussing a problem, try to support the main point with common examples. In this way the crowd can relate themselves to the topic.</p>
<p>Seventh, listeners will get bored after a certain point of time if you just continue speaking. Therefore, try to bring fresh ideas and add little humour to your speech if possible. Tell them interesting stories related to your subject.</p>
<p>Eighth, keeping in mind the strength of the crowd, always speak loud and clear. If you are not loud enough, the audience will fail to catch your point.</p>
<p>Ninth, keep the tone of your speech highly inspiring.</p>
<p>Tenth and lastly, the list of 10 ways to become a better speaker never completes without incorporating practise as a major element in it. Practise has great contribution toward perfection. If you practise more, you will be able to increase your level of confidence and reduce your hesitation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/self-improvement/best-10-ways-to-become-a-better-speaker-some-incredible-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Driving Free Traffic To Your Website</title>
		<link>http://www.detangled.com/traffic/driving-free-traffic-to-your-website/</link>
		<comments>http://www.detangled.com/traffic/driving-free-traffic-to-your-website/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 06:41:13 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Traffic Generation]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=887</guid>
		<description><![CDATA[One of the biggest obstacles for beginning Internet marketers is getting enough traffic to their websites. Obviously, you have to have a good product or service to offer your potential customers, but without traffic no one is going to see your sales offers in the first place. In that sense, traffic is absolutely crucial to [...]]]></description>
			<content:encoded><![CDATA[<p>One of the biggest obstacles for beginning Internet marketers is getting enough traffic to their websites. Obviously, you have to have a good product or service to offer your potential customers, but without traffic no one is going to see your sales offers in the first place. In that sense, traffic is absolutely crucial to your online business success just as it would be for a brick-and-mortar store. Customers need to be exposed to what you have to offer.<span id="more-887"></span></p>
<p>For marketers on a tight budget, however, paid advertising methods like pay per click are probably out of the question, at least in the short-term. Here are a few free traffic methods for you to consider if you&#8217;re on a tight budget.</p>
<p><strong>Guest Blogging</strong></p>
<p>You simply write high quality articles that would be interesting to your niche audience, but instead of submitting them to traditional article directories you go straight to popular blogs in your niche. This can be a great source of backlinks to help your website improve its search engine rankings, but you can also get a lot of direct traffic if the blog is a popular one.</p>
<p><strong>Article Marketing</strong></p>
<p>A lot of people have declared the death of article marketing in the past year, but this is still an effective method as long as you understand that it is a long-term strategy. Volume is usually important. In other words, you need to write a lot of articles on an ongoing basis in order to get lots of traffic your website.</p>
<p><strong>Search Engine Optimization</strong></p>
<p>Ultimately, you want your own website to rank well in Google and other search engines so you can get ongoing traffic that requires a minimum amount of work to maintain.</p>
<p>Remember that these strategies, to some extent, require ongoing work to keep the traffic coming in, although you can eventually outsource it if you wish.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/traffic/driving-free-traffic-to-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tricks To Email Marketing</title>
		<link>http://www.detangled.com/email-marketing/tricks-to-email-marketing/</link>
		<comments>http://www.detangled.com/email-marketing/tricks-to-email-marketing/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 06:39:40 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=879</guid>
		<description><![CDATA[Affiliate marketers are always looking for new means to promote their products and given the level of competition in this field, standing out from the crowd can be pretty difficult. Especially since the product that you are offering is being marketed by a dozen other people and potential customers have no particular reason to buy [...]]]></description>
			<content:encoded><![CDATA[<p>Affiliate marketers are always looking for new means to promote their products and given the level of competition in this field, standing out from the crowd can be pretty difficult. Especially since the product that you are offering is being marketed by a dozen other people and potential customers have no particular reason to buy from you.</p>
<p>This is why you give them reasons. E-mail marketing is great means of turning prospects into customers since you have a greater opportunity to market your products. <span id="more-879"></span>But most beginners are baffled by how to build a profitable opt-in list. You can only build your mailing list as long as people are willing to sign up for it. So you have to work up a system where you give the visitors to your site something and in return you get their email addresses.</p>
<p>You can offer them a free report or an EBook that is related to your website. Make sure that what you are offering for free has some value to it so that people cannot resist getting access to it. You could write your own report or EBook or can buy <a href="http://www.detangled.com/mrrights" style=""  rel="nofollow" onmouseover="self.status='http://www.detangled.com/mrrights';return true;" onmouseout="self.status=''">PLR</a> content and rewrite it to suit your needs. <a href="http://www.detangled.com/mrrights" style=""  rel="nofollow" onmouseover="self.status='http://www.detangled.com/mrrights';return true;" onmouseout="self.status=''">PLR</a> content is basically content that you have the rights to modify as you wish.</p>
<p>You could also give away a free software or free membership to your site. Remember to emphasize on the &#8220;free&#8221; part. At first, that visitor might not be interested in buying anything but as you continue to send them more reports and sales pitches via email, each linking to your product, you will find them turning into potential customers in no time.</p>
<p>Another great advantage of learning how to build a profitable opt in list is that when you have another product to sell, you do not have to spend time generating new leads. Your mailing list is already full of potential customers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/email-marketing/tricks-to-email-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Self-Esteem &#8211; The Key To Be A Winner</title>
		<link>http://www.detangled.com/self-improvement/self-esteem-the-key-to-be-a-winner/</link>
		<comments>http://www.detangled.com/self-improvement/self-esteem-the-key-to-be-a-winner/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 16:17:42 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[Self Improvement]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=860</guid>
		<description><![CDATA[Self Esteem/Self-image is everything. If you don&#8217;t have the right confidence needed to go about in the world, you won&#8217;t be able to achieve any of your biggest dreams. Those who lack self esteem and a good self image believe that they don&#8217;t deserve any of their dreams. Even if they think that they do [...]]]></description>
			<content:encoded><![CDATA[<p>Self Esteem/Self-image is everything. If you don&#8217;t have the right confidence needed to go about in the world, you won&#8217;t be able to achieve any of your biggest dreams. Those who lack self esteem and a good self image believe that they don&#8217;t deserve any of their dreams. <span id="more-860"></span>Even if they think that they do deserve it, they still think bad thoughts towards themselves; Without even knowing that their lack of  self esteem is keeping them away from achieving what it is that they truly want.</p>
<p><strong>Why A Positive Self Image Is Important</strong></p>
<p>If you don&#8217;t think of yourself as good looking or deserving, you keep yourself away from all the good. Your own thoughts of yourself determine what others will see in yourself. What&#8217;s nice is that once you start seeing yourself in a healthy way and you develop a good mental picture of yourself, you&#8217;ll come to realize how strong and powerful you really are. You&#8217;ll find yourself being more social, outgoing, and more goal oriented. Somebody who creates a good mental picture of himself is someone who can make himself become what he wants to be.</p>
<p><strong>Tips For Developing A Good Self Image</strong></p>
<p>A great tip worth remembering is to constantly keep praising yourself on the inside throughout your day. If you find yourself feeling bad because of a few bad situations, why not look on the inside of yourself and think of all the things you have achieved. This could be something nice you did recently, or it can even be liking other parts of your face and body. Gratitude can help you create a good mental picture of yoursef and develop a better self image.</p>
<p><strong>Why You Need Self Esteem</strong></p>
<p>Self esteem is the opinion of what you have for yourself on the inside. If you feel like you&#8217;re a horrible person, you need to change that frown and put it upside down. &lt;/lame plug&gt; In all seriousness.. you need self esteem just as you would need a good self image, because how you feel about your inner identity is just as important as what you feel about your outer identity.</p>
<p><strong>An Idea For Getting Plenty Of Self Esteem</strong></p>
<p>One of the best ideas that you need to start using is to start looking at how far you&#8217;ve gone. When you look at how far you&#8217;ve come, you&#8217;ll come to realize how many big changes that you&#8217;ve made in your life. You need to know that you are a wonderful human being, and that nobody&#8217;s views of you is more than important than your own views. So, remember that it&#8217;s only your view that matters, and as long as you know that on the inside you&#8217;re a wonderful person, you&#8217;ll never feel the need to please others.</p>
<p>Self esteem and having a good self image is extremely important. When you feel better about yourself in all areas, you&#8217;ll feel more pushed to being your ultimate best. You&#8217;ll experience feelings of success and fulfillment, and you won&#8217;t need to undergo any feelings of failure or rejection by others because you can stand firm on what you say about yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/self-improvement/self-esteem-the-key-to-be-a-winner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding HTML5 Video</title>
		<link>http://www.detangled.com/html/embedding-html5-video/</link>
		<comments>http://www.detangled.com/html/embedding-html5-video/#comments</comments>
		<pubDate>Sun, 11 Mar 2012 15:19:44 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=857</guid>
		<description><![CDATA[Until HTML5 was developed there was not a standard for embedding and playing a video clip in a web page, with the HTML5 video element one may successfully embed a video file into their web page for visitors to view. As of now, most videos are played using a browser specific plug-in like flash player. [...]]]></description>
			<content:encoded><![CDATA[<p>Until HTML5 was developed there was not a standard for embedding and playing a video clip in a web page, with the HTML5 video element one may successfully embed a video file into their web page for visitors to view. As of now, most videos are played using a browser specific plug-in like flash player.<span id="more-857"></span> HTML5 video replaces the need for an additional plug-in to be installed for videos to play; the plug-in method is replaced by the HTML5 video element and offers more options than the plug-ins currently being used. An example of the code used to embed and play video files using HTML5 is;</p>
<p>&lt;video width=&#8221;320&#8243; height=&#8221;240&#8243; controls=&#8221;controls&#8221;&gt;<br />
&lt;source src=&#8221;movie.mp4&#8243; type=&#8221;video/mp4&#8243; /&gt;<br />
&lt;source src=&#8221;movie.ogg&#8221; type=&#8221;video/ogg&#8221; /&gt;<br />
Your browser does not support the video tag.<br />
&lt;/video&gt;</p>
<p><strong>The Code</strong></p>
<p><strong> </strong>In this code the controls attribute adds the user controls to the video file to allow visitors to play, pause and adjust the volume of the video. One may choose the width and height of the video files playing area by adjusting the video width and video height properties. In the event that one does not define the width and height of the space to be reserved for videos the browser will be unable to determine the amount of space to reserve, which in turn causes the layout of the web page to change while the video is loading. Text may be entered between the &lt;video&gt; and &lt;/video&gt; tags to display an error message to visitors using an unsupported internet browser. For maximum support from browsers one may add sources to the script to link the video file to one of the three formats Mp4, WebM or OGG; the browsers will read the script and play the video in the first recognized format. Currently, Google Chrome is the only browser that supports all three video file formats that may be used in HTML5 video.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/html/embedding-html5-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defining Font With CSS</title>
		<link>http://www.detangled.com/css/defining-font-with-css/</link>
		<comments>http://www.detangled.com/css/defining-font-with-css/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 16:16:16 +0000</pubDate>
		<dc:creator>Editorial Staff</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.detangled.com/?p=851</guid>
		<description><![CDATA[In CSS, font properties are used to define the type of font to be presented, the style of the font and the font size. There are two types of font families used to define the types of font, which are generic family and font family. The generic family of fonts broadly defines the font to [...]]]></description>
			<content:encoded><![CDATA[<p>In CSS, font properties are used to define the type of font to be presented, the style of the font and the font size. There are two types of font families used to define the types of font, which are generic family and font family. The generic family of fonts broadly defines the font to be used; the generic font family consists of Serif, Sans-Serif or Monospace font types. <span id="more-851"></span>The font family is the individual font types that belong to one of the three generic font families, such as Arial or Verdana. The styles of the fonts are also based on the generic font family and generally match the following characteristics:</p>
<p><strong>&#8211;Serif;</strong> Many of the characters in the Serif font family have small lines extending from certain parts of the character, which may make the font harder to read for people viewing the site in a web browser.</p>
<p><strong>&#8211;Sans-Serif;</strong> The Sans-Serif font does not contain any of the lines that the Serif fonts do, making the font somewhat simpler than the Serif style fonts. The Sans-Serif fonts are proven to be easier to read for viewers reading text displayed by a web site.</p>
<p><strong>&#8211;Monospace;</strong> The Monospace fonts are simple fonts, with characters that are the same width throughout a specific font type.</p>
<p>For CSS font, there are several properties that may be used to modify the style and type of text being displayed. The type of font is set using the font-family property, which should contain several font types just in case the browser does not support the first font type. This is known as the “fallback” system, allowing for a browser to choose a supported font in the event that the given font is not supported by the web browser. The font-style property, commonly used for italics, may be used to change the text to italics or bold face in some cases. There are three settings for the font-style property and they are normal, italics and oblique. Normal style and italics are the most commonly used and supported; the oblique style is similar to the italics and is not commonly supported by most browsers. For font size in CSS, one should decide whether the text size will be specified in pixels or Em. The standard size for text is 16 pixels, which equals 1 Em; it is recommended to use Em due to subtle inconveniences in defining text size in pixels.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.detangled.com/css/defining-font-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

