<?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>Paintbits &#187; Resources</title>
	<atom:link href="http://www.paintbits.com/category/resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paintbits.com</link>
	<description>Life in Colors</description>
	<lastBuildDate>Sun, 15 Jan 2012 01:54:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Subtle Patterns</title>
		<link>http://www.paintbits.com/webdesign/subtle-patterns/</link>
		<comments>http://www.paintbits.com/webdesign/subtle-patterns/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 16:02:46 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Textures]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=4863</guid>
		<description><![CDATA[Sometime ago I&#8217;ve written a small post listing some of the websites I use for background patterns, it was a very successful post, even today I get a lot of hits on that page. I guess patterns for website backgrounds is one of those useful things that you just can&#8217;t have enough, be it for [...]]]></description>
			<content:encoded><![CDATA[<p>Sometime ago I&#8217;ve written a small post listing some of the websites I use for <a href="http://www.paintbits.com/webdesign/website-background-patterns/">background patterns</a>, it was a very successful post, even today I get a lot of hits on that page. I guess patterns for website backgrounds is one of those useful things that you just can&#8217;t have enough, be it for your own small personal page / blog or for your projects.<br />
<span id="more-4863"></span></p>
<p>There is another website I&#8217;ve been using for some time now and since I saw it mentioned in the Smashing Magazine newsletter I remembered to share it here also. <a href="http://subtlepatterns.com/">Subtle Patterns</a> is a website that contains a small collection of patterns, all of high quality.</p>
<p>Link: <a href="http://subtlepatterns.com/">Subtle Patterns</a><br />
<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/webdesign/subtle-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Fonts API</title>
		<link>http://www.paintbits.com/webdesign/google-fonts-api/</link>
		<comments>http://www.paintbits.com/webdesign/google-fonts-api/#comments</comments>
		<pubDate>Sat, 22 May 2010 06:02:37 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=4717</guid>
		<description><![CDATA[Google announced a couple of days ago the released of a new service called Google Font API. If you have designed a Website and tried to incorporate custom fonts into your design you know how tricky that can be. It&#8217;s true that after the emerging of @Fontface things started to get a lot easier for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wp.me/pdExi-1e5"><img src="http://www.paintbits.com/wp-content/uploads/2010/05/Google.jpg" alt="Google" title="Google" width="510" height="140" class="aligncenter size-full wp-image-4718" /><br />
</a><br />
Google <a href="http://googlecode.blogspot.com/2010/05/introducing-google-font-api-google-font.html">announced</a> a couple of days ago the released of a new service called <a href="http://code.google.com/apis/webfonts/docs/getting_started.html">Google Font API</a>. If you have designed a Website and tried to incorporate custom fonts into your design you know how tricky that can be.<br />
<span id="more-4717"></span></p>
<p>It&#8217;s true that after the emerging of <a href="http://www.css3.info/preview/web-fonts-with-font-face/">@Fontface</a> things started to get a lot easier for the designer, but even <em>Fontface</em> brings some bugs to the equation (specially in Old browsers). There are payed alternatives that work better than @Fontface but that&#8217;s a major downside to that, they are payed.</p>
<p>And then Google enters the scene with their own solution, the <a href="http://code.google.com/apis/webfonts/docs/getting_started.html">Google Fonts API</a> and the <a href="http://code.google.com/webfonts">Google Fonts Directory</a>, introducing an easy way to include custom fonts into any website design in a quick and easy way. The good news is that it&#8217;s coded in a way that will make it work even in ancient browsers like Internet Explorer 6 (why on earth is anyone even using this?).</p>
<p>The available font types available isn&#8217;t something to write home about, but the catalog will surely grow in the upcoming months / years.</p>
<p>The usage is very simple and it&#8217;s very well documented on Google&#8217;s font API website. All you need to do is add a stylesheet link to request the desired web font, after you just need to style an element with the requested web font like you would with any other <em>websafe</em> font.</p>
<pre class="brush: html">
&lt;html&gt;
  &lt;head&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://fonts.googleapis.com/css?family=Tangerine&quot;&gt;
    &lt;style&gt;
      body {
        font-family: &#039;Tangerine&#039;, serif;
        font-size: 48px;
      }
    &lt;/style&gt;
  &lt;/link&gt;&lt;/head&gt;
  &lt;body&gt;
    &lt;h1&gt;Making the Web Beautiful!&lt;/h1&gt;
  &lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Google reminds you:</p>
<blockquote><p>When specifying a web font in a CSS style, always list at least one fallback web-safe font in order to avoid unexpected behaviors. In particular, add a CSS generic font name like serif or sans-serif to the end of the list, so the browser can fall back to its default fonts if need be.</p></blockquote>
<p>Something you should always do anytime you insert a custom Font in your design no matter the method.<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/webdesign/google-fonts-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Icons: MediaLoot 3D Free Icons</title>
		<link>http://www.paintbits.com/resources/hot-icons-media-loot-3d-free-icons/</link>
		<comments>http://www.paintbits.com/resources/hot-icons-media-loot-3d-free-icons/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 14:55:39 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Desktop Customization]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Icons]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=4642</guid>
		<description><![CDATA[Media Loot 3D Icon set is a gorgeous collection of 3D like Icons with vibrant colors and an amazing attention to detail. The set contains 30 Icons (actually, 30 .PNG and 30 .PSD source files). The designer behind the Icons is Tanya from Artdesigner. We’ve been working with Tanya from ArtDesigner.lv to design this set, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wp.me/pdExi-1cS"><img src="http://www.paintbits.com/wp-content/uploads/2010/04/Media-Loot-3D-Icons.jpg" alt="Media Loot 3D Iconset" title="Media Loot 3D Icons" width="510" height="140" class="aligncenter size-full wp-image-4643" /></a></p>
<p>Media Loot 3D Icon set is a gorgeous collection of 3D like Icons with vibrant colors and an amazing attention to detail.<br />
<span id="more-4642"></span></p>
<p>The set contains <strong>30</strong> Icons (actually, 30 .PNG and 30 .PSD source files). The designer behind the Icons is <a href="http://artdesigner.lv/">Tanya from Artdesigner</a>.</p>
<p><img class="center" src="http://www.paintbits.com/wp-content/uploads/2010/04/MediaLoot-3D-Free-Icons-Preview.jpg" alt="MediaLoot 3D Free Icons Preview" title="MediaLoot 3D Free Icons Preview" width="429" height="176"></p>
<blockquote><p>We’ve been working with Tanya from ArtDesigner.lv to design this set, and today we’re giving away 30 of these incredibly detailed icons for free!</p>
<p class="download">Download: <a href="http://medialoot.com/blog/incredibly-detailed-free-icons-set/">MediaLoot 3D Icons</a></p>
</blockquote>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/resources/hot-icons-media-loot-3d-free-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improving Notepad++ into the perfect IDE</title>
		<link>http://www.paintbits.com/software/improving-notepad-into-the-perfect-ide/</link>
		<comments>http://www.paintbits.com/software/improving-notepad-into-the-perfect-ide/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 03:50:54 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[IDE]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=4569</guid>
		<description><![CDATA[Whether you you&#8217;re a programmer or simply an enthusiast having a good Integrated Development Environment (IDE) is fundamental. Why is that? Well if programming is part of your work as with any task on life you want it done quickly and painless, a good IDE helps you achieve exactly that. But a good IDE or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wp.me/pdExi-1bH"><img src="http://www.paintbits.com/wp-content/uploads/2010/03/Improving-Notepad++.jpg" alt="Improving Notepad++" title="Improving Notepad++" width="510" height="140" class="aligncenter size-full wp-image-4575" /></a></p>
<p>Whether you you&#8217;re a programmer or simply an enthusiast having a good Integrated Development Environment (<a href="http://en.wikipedia.org/wiki/Integrated_development_environment">IDE</a>) is fundamental. Why is that? Well if programming is part of your work as with any task on life you want it done quickly and painless, a good IDE helps you achieve exactly that.<br />
<span id="more-4569"></span><br />
<div id="google_ads_banner">
<script type="text/javascript"><!--
google_ad_client = "pub-2666880057538413";
/* Banner */
google_ad_slot = "2171406980";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</p>
<p>But a good <strong>IDE</strong> or in this context, a good text editor is helpful for anyone not just &#8220;professionals&#8221;. The default Notepad from Windows just doesn&#8217;t cut it for more than reading a <em>README</em> type of file.</p>
<h3>Notepad++</h3>
<p>There are lots of alternatives when choosing an IDE. But if the panoply of alternatives is huge the decision factors in my opinion are rather easy to follow: <strong>Price</strong> / <strong>Power </strong> ratio. Basically we want a <strong>powerful</strong> IDE <strong>and</strong> preferencially <strong>Free</strong>. I wouldn&#8217;t mind paying a just value for a good IDE, but not the absurd amount of money some Software costs like Dreamweaver (although Dreamweaver is a powerhouse). If you own a Mac there are some good options like <a href="http://macromates.com/">Textmate</a> or <a href="http://www.panic.com/coda/">Coda</a> for about 50-70€. If you use Windows like me, <a href="http://www.aptana.com/">Aptana</a> is a good choice, but I&#8217;ve never been a big fan of Java Plataform powered Software, so my vote goes for <a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a>.</p>
<h4>Why Notepad Plus?</h4>
<p>Remember the Ratio? Price / Power. Well, <strong>Notepad++</strong> it&#8217;s <strong>free</strong> and <strong>opensource</strong>. Regarding power, it&#8217;s very powerful, supports most probably every language you&#8217;ll ever need and it&#8217;s <strong>expandable</strong> with <strong>plugins</strong>. The only thing I don&#8217;t like in Notepad++ it&#8217;s its default look. But even that is perfectible changeable. So, why Notepad++?</p>
<ul class="lista">
<li><strong>1</strong>. <em>Free</em> &#8211; Because the best things in life are free!</li>
<li><strong>2</strong>. <em>Powerful</em> &#8211; Because we need features to improve our workflow.</li>
<li><strong>3</strong>. <em>Lightweight</em> &#8211; Resource hogs are never welcome.</li>
<li><strong>4</strong>. <em>Flexible</em> &#8211; Easily expandable by plugins to fit our needs.</li>
<li><strong>5</strong>. <em>Opensource</em> &#8211; Because the best things in life are opensource&#8230; oh wait..</li>
</ul>
<h4>Improving Notepad++</h4>
<p>So why should we change the appearance of Notepad++? There is nothing wrong with it but it feels too stock and white backgrounds make my eyes bleed. If you&#8217;ll spend countless hours in front of a program let&#8217;s at least make it more enjoyable and useful, that way our workflow will probably increase and if not at least our desktop will look prettier.</p>
<p>First think I always do when I reinstall Notepad Plus is to change the <strong>theme</strong>. I prefer darker  to light themes, as they are softer on the eyes (as I referred previously).</p>
<h4>Changing Notepad++ Theme</h4>
<p>The most recent versions of Notepad++ already bring some neat themes you can use. <strong>Monokai</strong> (in the picture) is one of them. </p>
<p><img src="http://www.paintbits.com/wp-content/uploads/2010/03/notepad-plus-Monokai-theme.jpg" alt="Monokai theme" title="notepad plus Monokai theme" width="500" height="150" class="aligncenter size-full wp-image-4573" /></p>
<p>To choose your theme open notepad++ and go to <em><strong>Settings > Style Configurator&#8230; > Select Theme</strong></em>. The rest is pretty much self explanatory. You can also change the font setting but make sure on the <em>Language</em> you are on <em>Global styles</em> and on the <em>Style</em> you are on <em>Global override</em>. In order for your font to apply to your theme you need to tick <em>Enable global font</em> option and also <em>Enable global font size</em>.</p>
<p>When I chose a different theme for some reasons it kept reseting back to default theme or not saving my font choices. But we can change our theme other way around making sure our options are saved. We replace the original <strong>stylers.xml </strong>. This way we even choose other themes available in the Internet. <a href="http://wiki.macromates.com/Themes/UserSubmittedThemes">Textmate</a> has a lot of nice themes that can be easily <a href="http://framework.lojcomm.com.br/tmTheme2nppStyler/">converted into notepad++</a>. Joyboner has a nice little tutorial on <a href="http://joyboner.com/60-free-textmate-notepad-styler-themes/">how to</a> do this easily.</p>
<h4>Changing Notepad++ Toolbar Icons</h4>
<p>The default toolbar Icon is <strong>ok</strong> I guess, but ok is the new&#8230; <strong>meh</strong>! Jokes aside, this is something we can improve just for eye candy happiness. <a href="http://notepad-plus.sourceforge.net/uk/download.php">Notepad++ website</a> tells you how you can change the default Toolbar Icons but for some unknown reason it didn&#8217;t work for me initially (it had to do with Windows7 Administrator permissions, so run your notepad++ as administrator). But I found a way to make it work. Right now I&#8217;m using <a href="http://duxii.deviantart.com/art/Notepad-Tango-Skin-0-9-158017213">Notepad++ Tango Skin</a> by duxii.</p>
<p><img src="http://www.paintbits.com/wp-content/uploads/2010/03/Notepad++-Tango-Skin.jpg" alt="Notepad++ Tango Skin" title="Notepad++ Tango Skin" width="500" height="150" class="aligncenter size-full wp-image-4574" /></p>
<p>It&#8217;s fairly simple to install, just follow duxii&#8217;s instructions:</p>
<blockquote><p>* First Extract the downloaded zip file!</p>
<p>	* Just open Notepad++ and go to settings and compare them with my settings (&#8220;01_settings.bmp&#8221;)</p>
<p>	[* Now choose one of the themes to make notepad looking more awesome. I have chosen "bespin".]</p>
<p>	* Now we will change the notepad++ icons</p>
<p>		- Go to your notepad++ installation path and change the file &#8220;NppShell_01.dll&#8221; to &#8220;old_NppShell_01.dll&#8221;.</p>
<p>		- Now start the sfx file (02_changeicons.sfx)<br />
			1. As destination folder chose the install path of notepad++ (for me this is &#8220;C:\Programme\Notepad++\&#8221;)<br />
			2. Overwrite all files<br />
			3. If an error appears that any file could not be overwritten you have to start windows in save mode an do this again</p>
<p>		- The sfx file has already done most of the things. You only have to do one more thing:<br />
			1. Rename the &#8220;03_toolbarIcons.xml&#8221;-file to &#8220;toolbarIcons.xml&#8221;<br />
			2. Press Windows-R<br />
			3. No a window will appear: write following into it:<br />
			   %APPDATA%\Notepad++<br />
			4. A folder will open. Copy the renamed &#8220;toolbarIcons.xml&#8221; into it.<br />
			5. Now open this file with notepad++<br />
			6. Look at the screenshot &#8220;04_finish.bmp&#8221; and do what on the screenshot is standing!</p>
<p>	* Restart your Computer and start Notepad++ &#038; voila your notepad++ is in beautiful tango style.</p></blockquote>
<h4>Plugins</h4>
<p>A way to know how flexibly and customizable a software program can be is by checking if it supports plugins and the amount of support given by the community. Notepad++ is one of this cases. There are enough plugins to make your notepad even more powerful. You can find the <em>&#8220;official&#8221;</em> plugins on <a href="http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_Central">Notepad++ Plugin Central Website</a> or even install them directly through the <em>Plugin Manager</em>. The Plugins I find the most useful from Plugin Central are these ones:</p>
<p><img src="http://www.paintbits.com/wp-content/uploads/2010/03/notepad++-plugins.jpg" alt="notepad++ plugins" title="notepad++ plugins" width="500" height="374" class="aligncenter size-full wp-image-4579" /></p>
<p><a href="http://sourceforge.net/projects/quicktext/">QuickText</a> is specially useful since is a <a href="http://en.wikipedia.org/wiki/Snippet_(programming)">Code Snippet</a> manager. You need to install it manually it can&#8217;t be installed directly by the Plugin Manager.</p>
<p>But the plugin I really advice you to install is one called <a href="http://code.google.com/p/zen-coding/downloads/list?q=label:Featured">Zen Coding</a>. Zen Coding is just amazing, words can&#8217;t describe it you have to <a href="http://vimeo.com/7405114">see for yourself</a>. With Zen Coding and QuickText you&#8217;ll find yourself writing doing repetitive tasks in php, html or anything you&#8217;re working on in a breeze. No other plugins will increase your efficiency and workflow as much as these two.</p>
<h3>Conclusion</h3>
<p>Be it notepad++, windows notepad, coda, aptana or anything else, you need to familiarize and be comfortable with your tools of the trade. The perfect IDE is the one that no only allows you to do the job but aids you in doing it &#8220;<em>faster, better, stronger</em>&#8220;. Notepad++ is an amazing piece of software. It&#8217;s very expandable and flexible as you&#8217;ve seen by now. It&#8217;s one of the few great options in Windows, at least in the <strong>Free</strong> price range. But you have to know that Notepad++ is not perfect, well it is for html, CSS or small projects, but for serious projects it lacks important features as error detection, if you really need a full featured IDE <strong>SmashingMagazine</strong> wrote a really nice post about <a href="http://www.smashingmagazine.com/2009/02/11/the-big-php-ides-test-why-use-oneand-which-to-choose/">IDE</a>s. But in the end the Pros are a lot more than the Cons so Notepad++ is a great option if you&#8217;re looking for a <strong>Free IDE</strong>. </p>
<p>The current look of my notepad++ it&#8217;s like this:</p>
<p><img src="http://www.paintbits.com/wp-content/uploads/2010/03/my-notepad++.jpg" alt="my notepad++" title="my notepad++" width="500" height="250" class="aligncenter size-full wp-image-4580" /></p>
<p>So, what&#8217;s your preferred text editor / IDE and why?</p>
<p class="download">Download: <a href="http://sourceforge.net/projects/notepad-plus/files/">Notepad++</a></p>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/software/improving-notepad-into-the-perfect-ide/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Vector Social Media Icons</title>
		<link>http://www.paintbits.com/resources/vector-social-media-icons/</link>
		<comments>http://www.paintbits.com/resources/vector-social-media-icons/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 04:26:21 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Icons]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=4463</guid>
		<description><![CDATA[IconDock released a new set of Social Media Icons in several formats, including a vector one. This free set includes 50 icons of the most popular social media networks on the internet. The icons are designed in 32px and 16px vector format. With the vector format, you can scale the icon to any size to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.paintbits.com/wp-content/uploads/2010/02/Vector-Social-Media-Icons.jpg" alt="" title="Vector Social Media Icons" width="510" height="140" class="aligncenter size-full wp-image-4464" /></p>
<p><a href="http://icondock.com/">IconDock</a> released a new set of <strong>Social Media <a href="http://www.paintbits.com/tag/icons/">Icons</a></strong> in several formats, including a vector one.<br />
<span id="more-4463"></span></p>
<blockquote><p>This free set includes 50 icons of the most popular social media networks on the internet. The icons are designed in 32px and 16px vector format. With the vector format, you can scale the icon to any size to fit with your design or use it in high quality print materials. What you will get from the zip package: 32px and 16px in three different file formats: vector EPS, PNG, and GIF.</p></blockquote>
<p><strong>Link</strong>: <a href="http://icondock.com/free/vector-social-media-icons">Vector Social Media Icons at Icon Dock</a></p>
<p class="download">Download: <a href="http://icondock.com/files/vector-social-media-icons.zip">Vector Social Media Icons</a></p>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/resources/vector-social-media-icons/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10+ Project Manager websites to increase your Group Workflow</title>
		<link>http://www.paintbits.com/software/12-project-manager-websites-to-increase-your-group-workflow/</link>
		<comments>http://www.paintbits.com/software/12-project-manager-websites-to-increase-your-group-workflow/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 03:30:37 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Groupware]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=4410</guid>
		<description><![CDATA[Project Managers (or Groupware) are online platforms to manage, plan, schedule and share you projects with others. Collaborative software helps groups of people focused on a common task, achieve their goal in a more effective way. This type of websites usually offer you boards (forum), calendars, task lists, SVN and other capabilities to help you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wp.me/pdExi-198"><img src="http://www.paintbits.com/wp-content/uploads/2010/01/Project-Manager-websites.jpg" alt="" title="Project Manager websites" width="510" height="140" class="aligncenter size-full wp-image-4411" /></a></p>
<p><strong>Project Managers</strong> (or <a href="http://en.wikipedia.org/wiki/Collaborative_software">Groupware</a>) are online platforms to <strong>manage</strong>, <strong>plan</strong>, <strong>schedule</strong> and <strong>share</strong> you <strong>projects</strong> with others. Collaborative software helps groups of people focused on a common task, achieve their goal in a more effective way.<br />
<span id="more-4410"></span></p>
<p>This type of websites usually offer you boards (forum), calendars, task lists, SVN and other capabilities to help you manage your group projects enabling a more effective <strong>team collaboration</strong>. I use a simple but powerful version of what you can call a SVN / Repository application, <a href="http://www.getdropbox.com/">DropBox</a> but for group work you will probably need something more powerful. The list below offer you some options that will probably meet your need.</p>
<ul class="lista">
<li><a href="http://www.getdropbox.com/" target="_blank">DropBox</a></li>
<li><a href="http://www.egroupware.org/" target="_blank">eGroupWare</a></li>
<li><a href="http://www.phprojekt.com/" target="_blank">PHP Projekt</a></li>
<li><a href="http://www.project.net/" target="_blank">Project.net</a></li>
<li><a href="http://www.codeplex.com/SharpForge" target="_blank">Codeplex</a></li>
<li><a href="http://wave.google.com/" target="_blank">Google Wave</a></li>
<li><a href="http://www.twproject.com/" target="_blank">TwProject</a></li>
<li><a href="http://www.horde.org/" target="_blank">Horde</a></li>
<li><a href="http://www.dotproject.net/" target="_blank">DotProject</a></li>
<li><a href="http://www.assembla.com/" target="_blank">Assembla</a></li>
<li><a href="http://code.google.com/hosting/" target="_blank">Google Code</a></li>
<li><a href="http://tortoisesvn.tigris.org/" target="_blank">Tortoise SVN</a></li>
<li><a href="http://www.devjavu.com/" target="_blank">DevJavu</a></li>
</ul>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/software/12-project-manager-websites-to-increase-your-group-workflow/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WoW Magazine</title>
		<link>http://www.paintbits.com/design/wow-magazine-07/</link>
		<comments>http://www.paintbits.com/design/wow-magazine-07/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 06:08:50 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Digital Art]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[eZines]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=4216</guid>
		<description><![CDATA[WoWmagz issue 7 was recently released and I&#8217;ve been reading it in the last couple of days. To be honest I hadn&#8217;t read more than one issue of this magazine (from when I posted a compilation of some great Digital Art eZines), but this issue is quite great. WoW Magazine features Indonesian artists, artwork showcase, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.paintbits.com/design/wow-magazine-07/"><img src="http://www.paintbits.com/wp-content/uploads/2009/10/WoW-Magazine.jpg" alt="WoW Magazine" title="WoW Magazine" width="495" height="150" class="aligncenter size-full wp-image-4217" /></a></p>
<p><a href="http://www.wowmagz.com/">WoWmagz issue 7</a> was recently released and I&#8217;ve been reading it in the last couple of days. To be honest I hadn&#8217;t read more than one issue of this magazine (from when I posted a compilation of some <a href="http://www.paintbits.com/design/digital-art-ezines/">great Digital Art eZines</a>), but this issue is quite great. WoW Magazine features Indonesian artists, artwork showcase, interviews, special guests and lot more stuff. The presentation is not the best I&#8217;ve been so far (<a href="http://www.bakmagazine.com/magazine">Bak</a> for example is sublime on that), but it comes in a simple but well designed pagination.<br />
<span id="more-4216"></span><br />
<img src="http://www.paintbits.com/wp-content/uploads/2009/10/WoW-Magazine-Ricard-Roberts.jpg" alt="WoW Magazine - Ricard Roberts" title="WoW Magazine - Ricard Roberts" width="500" height="100" class="aligncenter size-full wp-image-4218" /></p>
<p>Anyway, I think it&#8217;s a really worthwhile magazine to spend some of your time, specially if you are searching for new inspiration.</p>
<h3>More eZine releases</h3>
<p>If you&#8217;re looking for some more eZines, these magazines recently updated their issue number or check more eZines publications  <a href="http://www.paintbits.com/design/digital-art-ezines/">here</a>.</p>
<h4>Bak</h4>
<p><a href="http://www.bakmagazine.com/magazine"><img src="http://www.paintbits.com/wp-content/uploads/2009/10/Bak.jpg" alt="Bak" title="Bak" width="500" height="90" class="aligncenter size-full wp-image-4219" /></a></p>
<h4>Revolution Art</h4>
<p><a href="http://www.revolutionartmagazine.com/download.html"><img src="http://www.paintbits.com/wp-content/uploads/2009/10/Revolution-Art.jpg" alt="Revolution Art" title="Revolution Art" width="500" height="90" class="aligncenter size-full wp-image-4220" /></a></p>
<h4>Moloko+</h4>
<p><a href="http://moloko-plus.ru/english-version/"><img src="http://www.paintbits.com/wp-content/uploads/2009/10/Moloko.jpg" alt="Moloko" title="Moloko" width="500" height="90" class="aligncenter size-full wp-image-4221" /></a></p>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/design/wow-magazine-07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Icons Icons Icons&#8230;</title>
		<link>http://www.paintbits.com/design/icons-icons-icons/</link>
		<comments>http://www.paintbits.com/design/icons-icons-icons/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 20:57:59 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Web Resources]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=2851</guid>
		<description><![CDATA[Smashing Magazine published yesterday a great list of Icon Sets for projects use. Some time ago on one of the first posts I&#8217;ve written on my blog, I&#8217;ve publish a list of Icons for Web use, but this post from Smashing Magazine hits the nail, it&#8217;s very complete and full of packs I didn&#8217;t know [...]]]></description>
			<content:encoded><![CDATA[<p><img class="cframe" src="http://i26.tinypic.com/9i4e2b.jpg" alt="Icons Web" /></p>
<p><a href="http://www.smashingmagazine.com/">Smashing Magazine</a> published yesterday a great list of Icon <a href="http://www.smashingmagazine.com/2009/06/07/50-fresh-useful-icon-sets-for-your-next-design/">Sets for projects use</a>. Some time ago on one of the first posts I&#8217;ve written on my blog, I&#8217;ve publish a list of <a href="http://www.paintbits.com/2008/03/27/free-icon-sets/">Icons for Web use</a>, but this post from Smashing Magazine hits the nail, it&#8217;s very complete and full of packs I didn&#8217;t know before. It even includes <a href="http://www.paintbits.com/2008/06/01/blog-icons/">some Icons</a> I&#8217;ve done&#8230; that&#8217;s nice. </p>
<p class="download"><strong>Link</strong>: <a href="http://www.smashingmagazine.com/2009/06/07/50-fresh-useful-icon-sets-for-your-next-design/">50 Fresh Useful Icon Sets For Your Next Design<strong></strong></a></p>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/design/icons-icons-icons/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>15+ Free File Hosting Websites</title>
		<link>http://www.paintbits.com/resources/15-free-file-hosting-websites/</link>
		<comments>http://www.paintbits.com/resources/15-free-file-hosting-websites/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 08:04:04 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[File Hosting]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=2046</guid>
		<description><![CDATA[Sooner or later we all end up searching for some file hosting service to host that big file we need to share with our colleagues or friends. Be it for professional reasons or for recreational use, File Hosting Websites are a useful tool in the common day of any web user. By compiling this list [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.paintbits.com/2009/03/11/15-free-file-hosting-websites/"><img class="cframe" src="http://paintbits.com/Imagens/Posts/15freefilehostingwebsites.jpg" alt="Free File Hosting Websites" /></a></p>
<p>Sooner or later we all end up searching for some file hosting service to host that big file we need to share with our colleagues or friends. Be it for professional reasons or for recreational use, File Hosting Websites are a useful tool in the common day of any web user.<br />
By compiling this list of some of the top free file hosting providers I hope to help those of you searching for this type of service&#8230; that and will server as future reference for myself!<br />
<span id="more-2046"></span></p>
<h3>File Hosting</h3>
<p><center></p>
<table>
<tr>
<th>Service Name</th>
<th>Page Rank</th>
<th>File Size Limit</th>
<th>Space</th>
</tr>
<tr>
<td><a href="http://www.mediafire.com/" target="_blank">Mediafire</a></td>
<td>6</td>
<td>100 MB</td>
<td>Unlimited</td>
</tr>
<tr>
<td><a href="http://box.net/" target="_blank">Box</a></td>
<td>7</td>
<td>25 MB</td>
<td>1 GB</td>
</tr>
<tr>
<td><a href="http://www.dropsend.com/" target="_blank">Dropsend</a></td>
<td>6</td>
<td>250 MB</td>
<td>1 GB</td>
</tr>
<tr>
<td><a href="http://upload.divshare.com/" target="_blank">Divshare</a></td>
<td>6</td>
<td>&#8211;</td>
<td>5 GB</td>
</tr>
<tr>
<td><a href="http://www.rapidshare.com/" target="_blank">Rapidshare</a></td>
<td>6</td>
<td>200 MB</td>
<td>Unlimited</td>
</tr>
<tr>
<td><a href="http://www.4shared.com/" target="_blank">4Shared</a></td>
<td>6</td>
<td>100 MB</td>
<td>5 GB</td>
</tr>
<tr>
<td><a href="http://www.badongo.com/" target="_blank">Badongo</a></td>
<td>5</td>
<td>&#8211;</td>
<td>Unlimited</td>
</tr>
<tr>
<td><a href="http://www.megaupload.com/" target="_blank">Megaupload</a></td>
<td>6</td>
<td>&#8211;</td>
<td>200 GB</td>
</tr>
<tr>
<td><a href="http://www.fileden.com/" target="_blank">File Den</a></td>
<td>5</td>
<td>50 MB</td>
<td>1 GB</td>
</tr>
<tr>
<td><a href="http://www.filefactory.com/" target="_blank">Filefactory</a></td>
<td>5</td>
<td>300 MB</td>
<td>Unlimited</td>
</tr>
<tr>
<td><a href="http://www.upload-drive.com/" target="_blank">Upload Drive</a></td>
<td>3</td>
<td>450 MB</td>
<td>Unlimited</td>
</tr>
<tr>
<td><a href="http://ww.blazeload.com/" target="_blank">Blazeload</a></td>
<td>3</td>
<td>100 MB</td>
<td>Unlimited</td>
</tr>
<tr>
<td><a href="http://www.filesavr.com/" target="_blank">Filesavr</a></td>
<td>5</td>
<td>10 GB</td>
<td>&#8211;</td>
</tr>
<tr>
<td><a href="http://www.fileqube.com/" target="_blank">Fileqube</a></td>
<td>4</td>
<td>150 MB</td>
<td>2 GB</td>
</tr>
<tr>
<td><a href="http://www.filedropper.com/" target="_blank">File Dropper</a></td>
<td>4</td>
<td>5 GB</td>
<td>-</td>
</tr>
<tr>
<td><a href="http://www.filefront.com/" target="_blank">Filefront</a></td>
<td>5</td>
<td>600 MB</td>
<td>-</td>
</tr>
</table>
<p></center></p>
<h4>Related Content</h4>
<ul class="lista">
<li><a href="http://www.paintbits.com/2008/11/06/top-10-free-fonts-websites/">Top 10+ Free Fonts Websites</a></li>
<li><a href="http://www.paintbits.com/2008/10/25/the-best-of-the-web-20/">The Best of the Web 2.0</a></li>
<li><a href="http://www.paintbits.com/2008/10/09/website-background-patterns/">Website Background Patterns</a></li>
<li><a href="http://www.paintbits.com/2008/09/03/25-free-stock-images-websites/">25+ Free Stock Images Websites</a></li>
<li><a href="http://www.paintbits.com/2008/08/12/digital-art-ezines/">10+ Great Digital Art eZines</a></li>
<li><a href="http://www.paintbits.com/2008/07/29/paintbits-resources-links-directory/">Paintbits Resources Links Directory</a></li>
<li><a href="http://www.paintbits.com/2008/06/27/photoshop-tutorials-you-should-see/">Photoshop Tutorials you should see…</a></li>
<li><a href="http://www.paintbits.com/2008/03/27/free-icon-sets/">Free Icon Sets for the Web</a></li>
</ul>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/resources/15-free-file-hosting-websites/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Top 10+ Free Fonts Websites</title>
		<link>http://www.paintbits.com/resources/top-10-free-fonts-websites/</link>
		<comments>http://www.paintbits.com/resources/top-10-free-fonts-websites/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 09:44:39 +0000</pubDate>
		<dc:creator>greven</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Top 10]]></category>

		<guid isPermaLink="false">http://www.paintbits.com/?p=2095</guid>
		<description><![CDATA[If you are like me, you&#8217;re constantly searching for new Font Types. Most of the times we will never use all the fonts we&#8217;ve download, but variety is never a bad thing. We never know when we&#8217;ll need that specific font for that special work&#8230; or to just for that design rambling. So prepare your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.paintbits.com/2008/11/06/top-10-free-fonts-websites/"><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/0.jpg" alt="Free Fonts Websites" /></a></p>
<p>If you are like me, you&#8217;re constantly searching for new <strong>Font Types</strong>. Most of the times we will never use all the fonts we&#8217;ve download, but variety is never a bad thing. We never know when we&#8217;ll need that specific font for that special work&#8230; or to just for that design rambling. So prepare your bookmarks because today is all about <strong>fonts</strong>&#8230;</p>
<p><span id="more-2095"></span></p>
<p class="titulo"><strong>Free Fonts Websites</strong></p>
<p><a class="pitems">1.</a> <span class="psubtitulo">daFont</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/1.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://www.dafont.com/" target="_blank">daFont</a></p>
<p></p>
<p><a class="pitems">2.</a> <span class="psubtitulo">1001 Free Fonts</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/2.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://www.1001freefonts.com/" target="_blank">1001 Free Fonts</a></p>
<p></p>
<p><a class="pitems">3.</a> <span class="psubtitulo">Abstract Fonts</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/3.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://www.abstractfonts.com/" target="_blank">Abstract Fonts</a></p>
<p></p>
<p><a class="pitems">4.</a> <span class="psubtitulo">1001 Fonts</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/4.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://www.1001fonts.com/" target="_blank">1001 Fonts</a></p>
<p></p>
<p><a class="pitems">5.</a> <span class="psubtitulo">Search Free Fonts</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/5.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://www.searchfreefonts.com/" target="_blank">Search Free Fonts</a></p>
<p></p>
<p><a class="pitems">6.</a> <span class="psubtitulo">Urban Fonts</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/6.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://www.urbanfonts.com/" target="_blank">Urban Fonts</a></p>
<p></p>
<p><a class="pitems">7.</a> <span class="psubtitulo">Spoonloads Fonts</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/7.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://spoonloads.com/" target="_blank">Spoonloads Fonts</a></p>
<p></p>
<p><a class="pitems">8.</a> <span class="psubtitulo">Font space</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/8.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://www.fontspace.com/" target="_blank">Font space</a></p>
<p></p>
<p><a class="pitems">9.</a> <span class="psubtitulo">Font Stock</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/9.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://www.fontstock.net/" target="_blank">Font Stock</a></p>
<p></p>
<p><a class="pitems">10.</a> <span class="psubtitulo">Fonts 500</span></p>
<p><img class="cframe" src="http://www.paintbits.com/Imagens/Posts/Top10FontSites/10.jpg" alt="Free Fonts Websites" /></p>
<p><strong>Link</strong>: <a href="http://www.fonts500.com/" target="_blank">Fonts 500</a></p>
<p></p>
<p class="resources">More&#8230;</p>
<ul class="lista">
<li><a href="http://www.acidfonts.com/" target="_blank">Acid Fonts</a></li>
<li><a href="http://www.flashkit.com/fonts/" target="_blank">Flash Kit</a></li>
<li><a href="http://www.font-o-rama.com/" target="_blank">Font-o-rama</a></li>
<li><a href="http://www.bvfonts.com/" target="_blank">BV Fonts</a></li>
<li><a href="http://fonts.tom7.com/" target="_blank">Devide by Zero Fonts</a></li>
<li><a href="http://www.fontfile.com/" target="_blank">FontFile</a></li>
<li><a href="http://www.fontpool.com/" target="_blank">The Font Pool</a></li>
<li><a href="http://www.bluevertigo.com.ar/" target="_blank">Bluevertigo Fonts</a></li>
<li><a href="http://www.fontpool.com/" target="_blank">Font Pool</a></li>
<li><a href="http://www.fontasy.de/" target="_blank">Fantasy</a></li>
<li><a href="http://www.fontfoundry.com/" target="_blank">Font Foundry</a></li>
<li><a href="http://www.fuelfonts.com/" target="_blank">Fuel Fonts</a></li>
</ul>
<p><strong>Any more suggestions?</strong><br />
<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.paintbits.com/resources/top-10-free-fonts-websites/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

