<?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>Nivosus</title>
	<atom:link href="http://nivos.us/feed/" rel="self" type="application/rss+xml" />
	<link>http://nivos.us</link>
	<description>resources, guides &#38; more</description>
	<lastBuildDate>Wed, 01 Feb 2012 01:56:48 +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>How To Capture (Multiple) Screencaps</title>
		<link>http://nivos.us/blog/how-to-capture-screencaps/</link>
		<comments>http://nivos.us/blog/how-to-capture-screencaps/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 00:06:20 +0000</pubDate>
		<dc:creator>Mary</dc:creator>
				<category><![CDATA[Tumblr-Related]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://nivos.us/?p=116</guid>
		<description><![CDATA[In this tutorial, I will show you how to capture multiple screencaps by using one single button through VLC Media Player, which can be downloaded for free from here. By having these screencaps, you are able to make GIFs through Photoshop, which I will post a tutorial later on. Step One: Once installed, the first [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial, I will show you how to capture multiple screencaps by using one single button through VLC Media Player, which can be downloaded for free from  <a href="http://download.cnet.com/VLC-Media-Player/3000-13632_4-10267151.html" title="VLC Media Player">here.</a> By having these screencaps, you are able to make GIFs through Photoshop, which I will post a tutorial later on. </p>
<p><span id="more-116"></span></p>
<h1>Step One:</h1>
<p>Once installed, the first step you&#8217;ll need to do is open the program, and change the prefrences by going to <strong>TOOLS > PREFERENCES </strong> or just by using the shortcut, <strong>CTRL+P</strong>. Click on video, change the directory and just match the rest of the settings like mine. <a href="http://nivos.us/wp-content/uploads/2012/02/Untitled1.png" rel="lightbox[116]"><img src="http://nivos.us/wp-content/uploads/2012/02/Untitled1-150x150.png" alt="" title="01" width="10" height="10" class="alignleft size-thumbnail wp-image-131" /></a></p>
<h1>Step Two:</h1>
<p>Go to <strong>HOTKEYS</strong> and find &#8216;Take Video Snapshot&#8217;, using the <strong>SEARCH FILTER.</strong> I&#8217;m going to leave mine as Shift+S, which is the default setting to use when capturing screenshot. Click apply, then save. <a href="http://nivos.us/wp-content/uploads/2012/02/021.png" rel="lightbox[116]"><img src="http://nivos.us/wp-content/uploads/2012/02/021-150x150.png" alt="" title="02" width="10" height="10" class="alignleft size-thumbnail wp-image-134" /></a></p>
<h1>Step Three:</h1>
<p>Open up the video you want to screencap. I&#8217;m going to choose a scene from &#8216;A Walk To Remember,&#8217; which I&#8217;ll be using as an example. While the scene plays, press Shift+S constantly. You will see a small image appear on the top left corner. This shows that the screencap is being saved into your preferred destination. <a href="http://nivos.us/wp-content/uploads/2012/02/03.png" rel="lightbox[116]"><img src="http://nivos.us/wp-content/uploads/2012/02/03-150x150.png" alt="" title="03" width="10" height="10" class="alignleft size-thumbnail wp-image-139" /></a></p>
<h1>Step Four:</h1>
<p>Once your done, you should find your screencaps in your chosen folder and there you have it! Easy and simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://nivos.us/blog/how-to-capture-screencaps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic PHP Includes</title>
		<link>http://nivos.us/blog/basic-php-includes/</link>
		<comments>http://nivos.us/blog/basic-php-includes/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 09:54:12 +0000</pubDate>
		<dc:creator>Meg</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web-Related]]></category>

		<guid isPermaLink="false">http://nivos.us/?p=111</guid>
		<description><![CDATA[Today I&#8217;ll be doing a quick tutorial on how to use PHP includes, why they&#8217;re better than iframes/frames, and, of course, what they are. What are PHP includes? PHP includes are a little snippet of code which basically &#8220;includes&#8221; another page onto the page where you place this code! It&#8217;s very useful for basic webdesign, [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;ll be doing a quick tutorial on <strong>how to use</strong> PHP includes, <strong>why they&#8217;re better than iframes/frames</strong>, and, of course, <strong>what they are</strong>.</p>
<h1>What are PHP includes?</h1>
<p>PHP includes are a little snippet of code which basically &#8220;includes&#8221; another page onto the page where you place this code!  It&#8217;s very useful for basic webdesign, because it allows you to easily change your layout without having to edit every single file on your website.<br />
<span id="more-111"></span><br />
For example, on Daydreamt, I use 2 php includes- a header and a footer.<br />
So my header is on a separate page called <i>header.php</i>, and my footer on <i>footer.php</i>.  I simply use the code below to include both files on my index page!  (and every other page on Daydreamt, obviously).</p>
<h1>How to Use PHP includes:</h1>
<p>Okay, first thing you need is a web host which allows PHP.  Most hosts nowadays should already allow it- so chances are you can use the code.  Make sure the page you use this on (and include) are <b>.php</b> files.  (eg. <i>index.php</i>)</p>
<p>Now simply create the page you want to include other pages on, and use this code:<br />
<code>&#60;? php include('PAGE.php'); ?&#62;</code></p>
<p>And you&#8217;re done!  Replace <i>PAGE.php</i> with the page you want to include, you can use the code as many times as you like.</p>
<h1>Better than Iframes?</h1>
<p>Generally, to include headers/footers/sidebars, PHP includes are a much better choice because IFrames weren&#8217;t made for this kind of thing- PHP includes are better in terms of compatibility with browsers, and also make your code (when people view source) look neater and more complete.</p>
]]></content:encoded>
			<wfw:commentRss>http://nivos.us/blog/basic-php-includes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Add Favicons</title>
		<link>http://nivos.us/blog/how-to-add-favicons/</link>
		<comments>http://nivos.us/blog/how-to-add-favicons/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 09:43:35 +0000</pubDate>
		<dc:creator>Meg</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web-Related]]></category>

		<guid isPermaLink="false">http://nivos.us/?p=108</guid>
		<description><![CDATA[A Favicon is the little icon displayed in the browser next to the URL of a website. You can add your own, but it has to be a particular image type, a favicon is a &#8217;16&#215;16&#8242; image, in &#8216;.ico&#8217; format. Your image editing program may or may not support this type of image, if it [...]]]></description>
			<content:encoded><![CDATA[<p>A Favicon is the little icon displayed in the browser next to the URL of a website.</p>
<p><center><img src="http://daydreamt.org/wp-content/uploads/2010/02/fb.png" alt="" title="fb" width="325" height="auto" class="alignnone size-full wp-image-54" /></center><br />
</p>
<p>You can add your own, but it has to be a particular image type, a favicon is a &#8217;16&#215;16&#8242; image, in &#8216;.ico&#8217; format.  Your image editing program may or may not support this type of image, if it doesn&#8217;t, you can just save it as another image type, and then convert it to &#8216;.ico&#8217;.  You can use the <a href="http://tools.dynamicdrive.com/favicon/">Dynamic Drive Favicon Generator</a> to convert your images into favicons.</p>
<p>Once you have your favicon icon, you need to upload it to your website, and the following bit of code to the <head> section of your website.</p>
<blockquote><link rel="shortcut icon" type="image/x-icon" href="favicon.ico"></blockquote>
<p>Now, you should see your image next to the URL of your website!</p>
]]></content:encoded>
			<wfw:commentRss>http://nivos.us/blog/how-to-add-favicons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Vs. Fanupdate Vs. Cutenews</title>
		<link>http://nivos.us/blog/wordpress-vs-fanupdate-vs-cutenews/</link>
		<comments>http://nivos.us/blog/wordpress-vs-fanupdate-vs-cutenews/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 09:42:41 +0000</pubDate>
		<dc:creator>Meg</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://nivos.us/?p=106</guid>
		<description><![CDATA[So, as promised, I&#8217;m going to do a quick review on 3 popular content management/blogging tools that can be installed on websites such as mine. For those that don&#8217;t know, blogging systems such as these are like control panels that help you easily update your website and blog- without worrying too much about HTML and [...]]]></description>
			<content:encoded><![CDATA[<p>So, as promised, I&#8217;m going to do a quick review on 3 popular content management/blogging tools that can be installed on websites such as mine.  For those that don&#8217;t know, blogging systems such as these are like control panels that help you easily update your website and blog- without worrying too much about HTML and formatting; all these systems allow users to comment on posts.  I&#8217;ve tried various publishing software, and have found downsides as well as upsides to each- so here are the pros and cons, and recommendations about each one.</p>
<p><span id="more-106"></span></p>
<p><a title="Wordpress" href="http://wordpress.org/" target="_blank"><br />
<h3>WordPress</h3>
<p></a><strong>Pros:</strong></p>
<ul>
<li>Stylish control panel.</li>
<li>Huge amount of features and plugins.</li>
<li>For less design-savvy people, there are plenty of user-made themes ready for use.</li>
<li>Very good spam filter.</li>
<li>Once installed, easy to use and update.  Can be used to create/edit entire website.</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>For beginners, it is quite difficult to learn how to make themes and integrate wordpress into existing websites without a tutorial.</li>
<li>It requires a MySQL database.</li>
<li>It is not as easy to install as the other two content management systems.</li>
</ul>
<p><strong>Recommendations:</strong></p>
<ul>
<li>I use wordpress because it is very rich in features, however for beginners I would recommend trying out one of the other two content management systems first to get used to the way they are set up.  Use wordpress if you have some experience with webdesign already.</li>
</ul>
<p><a title="Fanupdate" href="http://fanupdate.co.uk" target="_blank"><br />
<h3>Fanupdate</h3>
<p></a><strong>Pros:</strong></p>
<ul>
<li>Relatively easy to install and integrate into existing websites, with a similar setup to Cutenews.</li>
<li>Clean, simple control panel</li>
<li>Easy to update (however, I don&#8217;t know how good the spam filter on Fanupdate is)</li>
<li>Attractive blog set-up.</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Requires a MySQL database</li>
<li>Not as feature-rich as WordPress and relies on simplicity and minimalism.</li>
</ul>
<p><strong>Recommendations:</strong></p>
<ul>
<li>I do like Fanupdate&#8217;s easy-to-update interface, however it is still not quite up to par with WordPress.  I recommend Fanupdate for people who already have an existing site and wish to integrate a blogging system into it, and for people who have a basic knowledge of MySQL database set up.</li>
</ul>
<p><a title="Cutenews" href="http://cutephp.com/cutenews/" target="_blank"><br />
<h3>Cutenews</h3>
<p></a></p>
<p><strong>Pros:</strong></p>
<ul>
<li>Very easy to install.</li>
<li>Simple control panel.</li>
<li>Does not require a MySQL database.</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Not as attractive/professional looking as the other two blogging systems.</li>
<li>Bad spam filter.</li>
</ul>
<p><strong>Recommendations:</strong></p>
<ul>
<li>For the beginner, Cutenews is an excellent blog/publishing system because it is the simplest and easiest to install out of the 3 reviewed.  I recommend Cutenews as a starting point for those that have never created a website before but, like me, you are very likely to have to ugrade your content management system due to the poor spam filter.</li>
</ul>
<p>So that was my review of the 3 content management systems- hopefully that helped you decide which to use and goodluck!</p>
]]></content:encoded>
			<wfw:commentRss>http://nivos.us/blog/wordpress-vs-fanupdate-vs-cutenews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daydreamt Textures</title>
		<link>http://nivos.us/blog/daydreamt-textures-2/</link>
		<comments>http://nivos.us/blog/daydreamt-textures-2/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 05:02:55 +0000</pubDate>
		<dc:creator>Meg</dc:creator>
				<category><![CDATA[Textures]]></category>

		<guid isPermaLink="false">http://nivos.us/?p=85</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://nivos.us/blog/daydreamt-textures-2/01-2/' title='01'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/01-150x150.png" class="attachment-thumbnail" alt="01" title="01" /></a>
<a href='http://nivos.us/blog/daydreamt-textures-2/02-2/' title='02'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/02-150x150.png" class="attachment-thumbnail" alt="02" title="02" /></a>
<a href='http://nivos.us/blog/daydreamt-textures-2/03-2/' title='03'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/03-150x150.png" class="attachment-thumbnail" alt="03" title="03" /></a>
<a href='http://nivos.us/blog/daydreamt-textures-2/04-2/' title='04'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/04-150x150.png" class="attachment-thumbnail" alt="04" title="04" /></a>
<a href='http://nivos.us/blog/daydreamt-textures-2/05-2/' title='05'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/05-150x150.png" class="attachment-thumbnail" alt="05" title="05" /></a>
<a href='http://nivos.us/blog/daydreamt-textures-2/06-2/' title='06'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/06-150x150.png" class="attachment-thumbnail" alt="06" title="06" /></a>
<a href='http://nivos.us/blog/daydreamt-textures-2/07-2/' title='07'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/07-150x150.png" class="attachment-thumbnail" alt="07" title="07" /></a>
<a href='http://nivos.us/blog/daydreamt-textures-2/08-2/' title='08'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/08-150x150.png" class="attachment-thumbnail" alt="08" title="08" /></a>
<a href='http://nivos.us/blog/daydreamt-textures-2/09-2/' title='09'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/09-150x150.png" class="attachment-thumbnail" alt="09" title="09" /></a>
<a href='http://nivos.us/blog/daydreamt-textures-2/10-2/' title='10'><img width="150" height="150" src="http://nivos.us/wp-content/uploads/2012/01/10-150x150.png" class="attachment-thumbnail" alt="10" title="10" /></a>

]]></content:encoded>
			<wfw:commentRss>http://nivos.us/blog/daydreamt-textures-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grand Opening</title>
		<link>http://nivos.us/blog/hello-world/</link>
		<comments>http://nivos.us/blog/hello-world/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 05:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Updates & News]]></category>

		<guid isPermaLink="false">http://nivos.us/?p=1</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://nivos.us/blog/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

