<?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>Dynasty Web Solutions - 949.212.1057 &#187; Uncategorized</title>
	<atom:link href="http://orangecountycustomwebsitedesign.com/tag/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://orangecountycustomwebsitedesign.com</link>
	<description></description>
	<lastBuildDate>Wed, 16 May 2012 22:53:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	

<!-- Debugging help, do not remove -->
<meta name="Framework" content="Kpress" />
<meta name="Theme Version" content="1.1" />
<meta name="Framework Version" content="1.1" />


		<item>
		<title>Stream Your YouTube Channel On A Page Inside Your WordPress Website</title>
		<link>http://orangecountycustomwebsitedesign.com/stream-your-youtube-channel-on-a-page-inside-your-wordpress-website/</link>
		<comments>http://orangecountycustomwebsitedesign.com/stream-your-youtube-channel-on-a-page-inside-your-wordpress-website/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 05:19:07 +0000</pubDate>
		<dc:creator>Jarrett Gucci</dc:creator>
				<category><![CDATA[How to YouTube]]></category>
		<category><![CDATA[Video Gallery]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mrinternettips.com/?p=537</guid>
		<description><![CDATA[WordPress shortcodes are great. They let you perform complex operations or display dynamic content with just a tiny bit of text in any page or post. I recently needed a way to embed the most recent videos from a Youtube channel (very dynamic information) in a WordPress page, so I decided to write a shortcode [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 38px 0 0 63px; margin: 0 auto; width: 610px; height: 335px; background: url('http://orangecountycustomwebsitedesign.com/wp-content/uploads/2011/08/skin7.png') no-repeat top left; text-align: left;"><object width="467" height="262" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/UJGDp5Q8ysM?modestbranding=1;version=3&amp;hl=en_US&amp;rel=0&amp;hd=1&amp;autohide=1&amp;showinfo=0&amp;controls=0" /><param name="allowfullscreen" value="true" /><param name="wmode" value="opaque" /><embed width="467" height="262" type="application/x-shockwave-flash" src="http://www.youtube.com/v/UJGDp5Q8ysM?modestbranding=1;version=3&amp;hl=en_US&amp;rel=0&amp;hd=1&amp;autohide=1&amp;showinfo=0&amp;controls=0" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" wmode="opaque" /></object></div>
<table style="text-align: left; width: 0;" border="0" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<td style="vertical-align: top;"></td>
<td style="vertical-align: top;"><img style="width: 203px; height: 56px;" src="http://orangecountycustomwebsitedesign.com/wp-content/uploads/2011/03/Cast-Vote.jpg" alt="" /></td>
</tr>
</tbody>
</table>
<p>WordPress shortcodes are great. They let you perform complex operations or display dynamic content with just a tiny bit of text in any page or post.</p>
<p>I recently needed a way to embed the most recent videos from a Youtube channel (very dynamic information) in a WordPress page, so I decided to write a shortcode for it.</p>
<div class="su-divider"></div>
<p>The code is actually pretty simple. Just add the following to your theme’s functions.php file:</p>
<h2><span style="color: #ff0000;">COPY CODE BELOW</span></h2>
<pre class="wp-code-highlight prettyprint">function youtube_feed_shortcode($atts)
{
// Defaults:
extract(shortcode_atts(array(
'user' =&amp;gt; 'mrinternettips', // youtube user
'limit' =&amp;gt; 5, // maximum number of videos
'height' =&amp;gt; 385, // video height
'width' =&amp;gt; 480 // video width
), $atts));
$data = @json_decode(file_get_contents('http://gdata.youtube.com/feeds/api/users/'.$user.'/uploads?alt=json'), TRUE);
$counter = 0;
$content = '&lt;/code&gt;
&lt;div class=&quot;youtubefeed&quot;&gt;';
foreach($data['feed']['entry'] as $vid)
{
$url = $vid['media$group']['media$content'][0]['url'];
$title = $vid['title']['$t'];
$ycontent = $vid['content']['$t'];
$content.= '&lt;object width=&quot;'.$width.'&quot; height=&quot;'.$height.'&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot; /&gt;&lt;param name=&quot;src&quot; value=&quot;'.$url.'&quot; /&gt;&lt;param name=&quot;wmode&quot; value=&quot;opaque&quot; /&gt;&lt;param name=&quot;allowfullscreen&quot; value=&quot;true&quot; /&gt;&lt;embed width=&quot;'.$width.'&quot; height=&quot;'.$height.'&quot; type=&quot;application/x-shockwave-flash&quot; src=&quot;'.$url.'&quot; allowFullScreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; wmode=&quot;opaque&quot; allowfullscreen=&quot;true&quot; /&gt;'.''.''.''.'&lt;/object&gt;'.
'
&lt;div class=&quot;youtubetitle&quot;&gt;'.$title.'&lt;/div&gt;
'.
'
&lt;div class=&quot;youtubecontent&quot;&gt;'.$ycontent.'&lt;/div&gt;
'.&quot;n&quot;;
$counter++;
if($counter == $limit)
{
break;
}
}
$content .= '

&lt;/div&gt;
';
return $content;
}
add_shortcode('youtubefeed', 'youtube_feed_shortcode');
</pre>
<p>The shortcode below is completely configurable. </p>
<pre class="wp-code-highlight prettyprint">[youtubefeed user=&quot;YourChannel Name Here&quot; limit=&quot;3&quot; height=&quot;385&quot; width=&quot;560&quot;]</pre>
<p>You can change any option as needed.</p>
<p>You might have noticed the code gives each element a particular class to make it CSS friendly. All you have to do is add CSS rules for three classes: .youtubefeed, .youtubetitle, and .youtubecontent.</p>
<div class="su-divider"></div>
<p>My stylesheet looks like this: (this will be your style.css file)</p>
<h2><span style="color: #ff0000;">COPY CODE BELOW</span></h2>
<pre class="wp-code-highlight prettyprint">.youtubefeed {
margin: 10px;
text-align: center;
}
.youtubetitle {
font-size: 1.6em;
font-weight: bold;
margin: 3px;
}
.youtubecontent {
margin-bottom: 30px;
text-align: left;
}</pre>
<h2>Other Plugin That Will Do This:</h2>
<p><a href="http://wordpress.org/extend/plugins/tubepress/" rel="nofollow" target="_blank">TubePress</a></p>
<p><a href="http://wordpress.org/extend/plugins/tubematic/" rel="nofollow" target="_blank">TubeMatic</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orangecountycustomwebsitedesign.com/stream-your-youtube-channel-on-a-page-inside-your-wordpress-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Produce HD Movies With Windows Movie Maker 2.6</title>
		<link>http://orangecountycustomwebsitedesign.com/produce-hd-movies-with-windows-movie-maker-2-6/</link>
		<comments>http://orangecountycustomwebsitedesign.com/produce-hd-movies-with-windows-movie-maker-2-6/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 07:38:38 +0000</pubDate>
		<dc:creator>Jarrett Gucci</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Video Gallery]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mrinternettips.com/?p=504</guid>
		<description><![CDATA[Windows movie maker is great software, for it allows you to edit and make videos easily for free. However, Windowsmovie maker 2.6 cannot render videos in HD. High definition (HD) videos enhance quality and captivate the audience more. The primary purpose of this tutorial is to show you how to make HD videos on windows [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/I9uqU2GEeSg" /><embed type="application/x-shockwave-flash" width="560" height="350" src="http://www.youtube.com/v/I9uqU2GEeSg"></embed></object></p>
<p>Windows movie maker is great software, for it  allows you to edit and make videos easily for free.  However,</p>
<p><img class="alignright" title="Windows" src="http://i.ehow.com/images/a05/h7/or/make-videos-windows-movie-maker-200X200.jpg" alt="Windows" width="112" height="112" /></p>
<p>Windowsmovie maker 2.6 cannot render videos in HD.  High definition (HD) videos  <a href="http://www.ehow.com/how_5807899_make-videos-windows-movie-maker.html#" target="_blank">enhance</a> quality and captivate the audience more.  The primary purpose of this  tutorial is to show you how to make HD videos on windows movie maker.</p>
<div style="text-align: left;">
<div>
<h2>Instructions</h2>
</div>
<ol id="intelliTxt">
<li id="jsArticleStep1">
<div>1</div>
<p>Step 1- Go to <a href="http://www.papajohn.org/" target="_blank">http://www.papajohn.org/</a></p>
<p>Once in  Papajohn.org, look on the left side corner. Click on where it says &#8220;WMV  HD&#8221;. Subsequently, click on &#8220;Introduction&#8221;. Then you will see the  download links to all the HD resolutions.<br />
After downloading the plug-ins, copy them, go to C:Program FilesMovie Maker 2.6Shared</p>
<p>Next create a folder called &#8220;Profile&#8221;.  Click on the folder and past the plug-ins</li>
<li id="jsArticleStep2">
<div>2</div>
<p>Step 2- Open <a href="http://www.ehow.com/how_5807899_make-videos-windows-movie-maker.html#" target="_blank">Windows</a> movie maker</p>
<p>If you do not have windows movie maker, go to this site to download it:<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=D6BA5972-328E-4DF7-8F9D-068FC0F80CFC&amp;displaylang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=D6BA5972-328E-4DF7-8F9D-068FC0F80CFC&amp;displaylang=en</a><br />
Open windows movie maker and start editing your video.</li>
<li id="jsArticleStep3">
<div>3</div>
<p>Step 3- Render videos in HD</p>
<p>After you have finished  editing, you will now be able to render videos in HD.  On the movie  settings page, select &#8220;other settings&#8221;. Select the HD resolutions to  render in HD.</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://orangecountycustomwebsitedesign.com/produce-hd-movies-with-windows-movie-maker-2-6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simple Explination (Social Web)</title>
		<link>http://orangecountycustomwebsitedesign.com/simple-explination/</link>
		<comments>http://orangecountycustomwebsitedesign.com/simple-explination/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 13:19:37 +0000</pubDate>
		<dc:creator>Jarrett Gucci</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://brainlessweb.com/?p=3</guid>
		<description><![CDATA[The Social Web is currently used to describe how people socialize or interact with each other throughout the World Wide Web. Such people are brought together through a variety of shared interests. There are different ways in which people want to socialize on the Web today. The first kind of socializing is typified by &#8220;people [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>Social Web</strong> is currently used to describe how people socialize or interact with each other throughout the World Wide Web. Such people are brought together through a variety of shared interests. There are different ways in which people want to socialize on the Web today. The first kind of socializing is typified by &#8220;people focus&#8221; websites such as <a title="Bebo" href="http://en.wikipedia.org/wiki/Bebo">Bebo</a>, <a title="Facebook" href="http://en.wikipedia.org/wiki/Facebook">Facebook</a>, and <a title="Myspace" href="http://en.wikipedia.org/wiki/Myspace">Myspace</a>. Such sites promote the person as focus of social interaction. To do this a profile is constructed by each user. In many ways the profile is similar to a passport.</p>
<p>The second kind of socializing is typified by a sort of &#8220;hobby focus&#8221; websites. For example, if one is interested in photography and wants to share this with like-minded people, then there are photography websites such as <a title="Flickr" href="http://en.wikipedia.org/wiki/Flickr">Flickr</a>, <a title="Kodak Gallery" href="http://en.wikipedia.org/wiki/Kodak_Gallery">Kodak Gallery</a> and <a title="Photobucket" href="http://en.wikipedia.org/wiki/Photobucket">Photobucket</a>.</p>
<p>There are also two ways in which people socialize with each other in the Social Web. The most general and most common type is always at a distance and only on the World Wide Web. In such socializing there is never face to face personal contact. Much of the socializing on Flickr is sharing of photos and making comments on the photos of others. However, where Flickr members come from a common local geographical area, then they are inclined to get together physically for a common photoshoot. This exemplifies the second type of socializing through the World Wide Web: that which leads to real physical contact. Typical examples of the latter arose historically from social networking both within and outside schools and colleges. Facebook&#8217;s origins are in the facebook of college students from Harvard University.</p>
<p>The <strong>Social Web</strong> may also be used to refer to two different, yet related concepts. The first is as a description of <a title="Web 2.0" href="http://en.wikipedia.org/wiki/Web_2.0">web 2.0</a> technologies that are focused on social interaction and community before anything else. The second is a proposal for a future network similar to the <a title="World Wide Web" href="http://en.wikipedia.org/wiki/World_Wide_Web">World Wide Web</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://orangecountycustomwebsitedesign.com/simple-explination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  orangecountycustomwebsitedesign.com/tag/uncategorized/feed/ ) in 0.41124 seconds, on May 21st, 2012 at 8:41 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 21st, 2012 at 9:41 pm UTC -->
