<?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>Propeople Blog</title>
	<atom:link href="http://blog.wearepropeople.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wearepropeople.com</link>
	<description>Blogging about web design and development</description>
	<lastBuildDate>Wed, 16 May 2012 23:56:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Django Framework: Tools &amp; Resources</title>
		<link>http://blog.wearepropeople.com/django-framework-tools-resources/</link>
		<comments>http://blog.wearepropeople.com/django-framework-tools-resources/#comments</comments>
		<pubDate>Wed, 16 May 2012 16:08:24 +0000</pubDate>
		<dc:creator>Stefan Nistor</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[web framework]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=4274</guid>
		<description><![CDATA[This round-up covers some of the most useful resources for Django lovers and those of you who are not yet familiar with this framework, but are interested to learn about it.]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.djangoproject.com/" target="_blank">Django</a> is a high-level open-source web framework written in <a href="http://blog.wearepropeople.com/the-ultimate-python-resources-roundup/" target="_blank">Python</a>. Django is brilliant because it gives you the possibility to develop high-performing web application quickly and effectively. </p>
<p>This round-up covers some of the most useful resources for Django lovers and those of you who are not yet familiar with this framework, but are interested to learn about it. The list includes good Django related material such as great tutorials, books, applications, videos, and so on. Enjoy!</p>
<div class="separator"></div>
<h2>Articles &amp; Tutorials</h2>
<div class="separator"></div>
<h3>Django documentation</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django1a.png" alt="" width="690" height="190" /><br />
Covers pretty much everything you need to know about Django in order to use it in your development projects, from the first steps to advanced development process.<br />
<a class="gray" href="https://docs.djangoproject.com/en/1.4/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Choosing an API framework for Django</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django2a.png" alt="" width="690" height="190" /><br />
“This works pretty well in a number of simple cases, but doing things like pagination, posting of data, metadata, API discovery, and other important things ends up being a bit more work. This is where the resource oriented API frameworks come in&#8230;”<br />
<a class="gray" href="http://pydanny.com/choosing-an-api-framework-for-django.html" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Building a Higher-Level Query API: The Right Way to Use Django&#8217;s ORM</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django3a.png" alt="" width="690" height="190" /><br />
“In this article, I&#8217;m going to argue that using Django&#8217;s low-level ORM query methods (filter, order_by etc) directly in a view is (usually) an anti-pattern. Instead, we should be building custom domain-specific query APIs at the level of the model layer, where our business logic belongs. Django doesn&#8217;t make this particularly easy, but by taking a deep-dive into the internals of the ORM, I&#8217;ll show you some neat ways to accomplish it&#8230;”<br />
<a class="gray" href="http://dabapps.com/blog/higher-level-query-api-django-orm/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>A Guide to Testing in Django</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django4a.png" alt="" width="690" height="190" /><br />
“For many people, testing their Django applications is a mystery. They hear that they should be testing their code but often have no clue how to get started. And when they hit the testing docs, they find a deep dive on what functionality is available, but no guidance on how to implement&#8230;”<br />
<a class="gray" href="http://toastdriven.com/blog/2011/apr/10/guide-to-testing-in-django/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Deploying Django on Heroku</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django5a.png" alt="" width="690" height="190" /><br />
“The following assumes you’re fairly proficient with Django and these steps are only useful for getting a barebones proof of concept site up and running. I do provide the database and caching bits for you, so you can use this as a stepping stone for trying out more full-featured projects on Heroku&#8230;”<br />
<a class="gray" href="http://v3.mike.tig.as/blog/2012/02/13/deploying-django-on-heroku/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Using Signals in your Django App</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django6a.png" alt="" width="690" height="190" /><br />
“Django includes a “signal dispatcher” which helps allow decoupled applications get notified when actions occur elsewhere in the framework. In a nutshell, signals allow certain senders to notify a set of receivers that some action has taken place&#8230;”<br />
<a class="gray" href="http://paltman.com/2012/01/01/using-signals-your-django-app/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>A Django setup using Nginx and Gunicorn</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django7a.png" alt="" width="690" height="190" /><br />
“This is a howto on setting up Django on a Linux (Ubuntu) system using Nginx as a reverse proxy and Gunicorn as a Django service. The conventional way to run Django in production these days is usingApache2 and mod_wsgi. While there’s nothing wrong with that approach, I prefer Nginx. I also like to be able to control Django server separately from the web server&#8230;”<br />
<a class="gray" href="http://senko.net/en/django-nginx-gunicorn/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Behind the Scenes: From HTML Form to Storage</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django8a.png" alt="" width="690" height="190" /><br />
“In this post, we are going to see what happens behind the scenes when a file is uploaded to a django powered web application&#8230;”<br />
<a class="gray" href="http://agiliq.com/blog/2011/09/behind-the-scenes-from-html-form-to-storage/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Backbone.js and Django</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django9a.png" alt="" width="690" height="190" /><br />
“The main task is to develop a RESTful handler to support the Backbone.js RESTful JSON interface. In the case of Django there&#8217;s no way to directly implement a function to handle the corresponding HTTP method (or perhaps I couldn&#8217;t find one). So in order to avoid too many if&#8217;s I&#8217;ve created a dictionary (methods) with the HTTP methods (key) and the corresponding function (value). When the restful function is called it returns the corresponding function by getting one of the dictionary values with request.method as the key&#8230;”<br />
<a class="gray" href="https://github.com/ccarpenterg/djangotodos/wiki" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Django Requirements for a project</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/django10a.png" alt="" width="690" height="190" /><br />
“An article about required Django applications packages when starting new django project.”<br />
<a class="gray" href="http://pydanny.com/django-requirements-for-a-project.html" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h2>Tools &#038; Applications</h2>
<div class="separator"></div>
<h3>South</h3>
<p>“South is a tool to provide consistent, easy-to-use and database-agnostic migrations for Django applications.”<br />
<a class="gray" href="http://south.aeracode.org/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Django Debug Toolbar</h3>
<p>“The Django Debug Toolbar is a configurable set of panels that display various debug information about the current request/response and when clicked, display more details about the panel&#8217;s content.”<br />
<a class="gray" href="https://github.com/robhudson/django-debug-toolbar" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Haystack</h3>
<p>“Haystack lets you write your search code once and choose the search engine you want it to run on. With a familiar API that should make any Djangonaut feel right at home and an architecture that allows you to swap things in and out as you need to, it&#8217;s how search ought to be.”<br />
<a class="gray" href="http://haystacksearch.org/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Sentry</h3>
<p>“Sentry is a realtime event logging and aggregation platform. It specializes in monitoring errors and extracting all the information needed to do a proper post-mortem without any of the hassle of the standard user feedback loop.”<br />
<a class="gray" href="https://github.com/dcramer/sentry" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Django Extensions</h3>
<p>“Django Extensions is a collection of custom extensions for the Django Framework.”<br />
<a class="gray" href="https://github.com/django-extensions/django-extensions" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Django ImageKit</h3>
<p>“ImageKit is a Django app that helps you to add variations of uploaded images to your models. These variations are called &#8220;specs&#8221; and can include things like different sizes (e.g. thumbnails) and black and white versions.”<br />
<a class="gray" href="http://pypi.python.org/pypi/django-imagekit" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Django Easy Maps</h3>
<p>“This app makes it easy to display a map for given address in django templates. No API keys, manual geocoding, html/js copy-pasting or django model changes is needed.”<br />
<a class="gray" href="https://bitbucket.org/kmike/django-easy-maps" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Pinax</h3>
<p>“Pinax is an MIT-licensed, open-source platform built on the Django Web<br />
Framework. By integrating numerous reusable Django apps and providing starter projects and infrastructure tools, Pinax takes care of the things that many sites<br />
have in common so you can focus on what makes your site different.”<br />
<a class="gray" href="https://github.com/pinax/pinax" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Django CMS</h3>
<p>“A Django application for managing hierarchical pages of content, possibly in multiple languages and/or on multiple sites. Django CMS handles the navigation rendering for you with clean, slug based URLs, and this navigation can be extended by custom Django applications”<br />
<a class="gray" href="https://github.com/divio/django-cms" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Django Notification</h3>
<p>“Many sites need to notify users when certain events have occurred and to allow configurable options as to how those notifications are to be received.”<br />
<a class="gray" href="https://github.com/jtauber/django-notification" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h2>Books</h2>
<div class="separator"></div>
<h3>The Definitive Guide to Django: Web Development Done Right</h3>
<p style="height: 250px;"><img class="framed" style="float: right; margin-left: 20px;" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/djbook1.jpg" alt="" width="244" /><br />
“Django, the Python–based equivalent to Ruby’s Rails web development framework, is one of the hottest topics in web development today. The Definitive Guide to Django is broken into three parts, with the first introducing Django fundamentals such as installation and configuration, and creating the components that together power a Django–driven web site. The second part delves into the more sophisticated features of Django, including outputting non–HTML content such as RSS feeds and PDFs, caching, and user management. The appendixes serve as a detailed reference to Django’s many configuration options and commands.”</p>
<p><a class="gray" href="http://www.amazon.com/The-Definitive-Guide-Django-Development/dp/143021936X/ref=pd_sim_b_2" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h3>Beginning Django E-Commerce</h3>
<p style="height: 250px;"><img class="framed" style="float: right; margin-left: 20px;" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/djbook2.jpg" alt="" width="244" /><br />
“Beginning Django E-Commerce guides you through producing an e-commerce site using Django, the most popular Python web development framework. Topics covered include how to make a shopping cart, a checkout, and a payment processor; how to make the most of Ajax; and search engine optimization best practices. Throughout the book, you&#8217;ll take each topic and apply it to build a single example site, and all the while you&#8217;ll learn the theory behind what you&#8217;re architecting.”</p>
<p><a class="gray" href="http://www.amazon.com/Beginning-Django-E-Commerce-James-McGaw/dp/1430225351/" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h3>Django JavaScript Integration: AJAX and jQuery</h3>
<p style="height: 250px;"><img class="framed" style="float: right; margin-left: 20px;" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/djbook3.jpg" alt="" width="244" /><br />
“This book will teach you how to enrich your AJAX applications with Django and jQuery in a practical manner with minimum fuss. It introduces AJAX basics, gets a little deeper, and then goes chapter-by-chapter through a carefully chosen case study. It demonstrates how different pieces of a Django AJAX application work in themselves and are put together and specifically leads you through building an intranet employee photo directory with social networking features. This book is for people looking to integrate AJAX / JavaScript functionality into their web applications. It is for Django users who are looking to easily integrate AJAX features into their applications.”</p>
<p><a class="gray" href="http://www.amazon.com/Django-JavaScript-Integration-AJAX-jQuery/dp/1849510342/ref=sr_1_13?s=books&#038;ie=UTF8&#038;qid=1337176272&#038;sr=1-13" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h3>Django Design Patterns</h3>
<p style="height: 250px;"><img class="framed" style="float: right; margin-left: 20px;" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/djbook4.jpg" alt="" width="244" height="310" /><br />
“Django design patterns is an ebook to help you with writing better Django code. It collects Django design patterns classified in views, urls and logical areas, and contains more than 50 tips.”</p>
<p><a class="gray" href="http://www.amazon.com/Django-Design-Patterns-ebook/dp/B006OYO9SK/ref=sr_1_2?s=books&#038;ie=UTF8&#038;qid=1337176210&#038;sr=1-2" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h3>The Djen of Django</h3>
<p style="height: 250px;"><img class="framed" style="float: right; margin-left: 20px;" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/djbook5.jpg" alt="" width="244" height="310" /><br />
“You already know a bit of Django but you would like to take your skills to next level. This book is for you. Through real, live projects this book allows you to improve your Django skills. Build a blog, build a wiki, build a project management system to put your skills to work.”</p>
<p><a class="gray" href="http://www.amazon.com/The-Djen-of-Django-ebook/dp/B006P1K0YY/ref=sr_1_5?s=books&#038;ie=UTF8&#038;qid=1337176210&#038;sr=1-5" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h2>Videos &#038; Podcasts</h2>
<div class="separator"></div>
<h3>Advanced Django Tutorial</h3>
<p><iframe src="http://blip.tv/play/g4Vigcv7RQI.html?p=1" width="480" height="350" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#g4Vigcv7RQI" style="display:none"></embed></p>
<div class="separator"></div>
<h3>Hacked Existence &#8211; Django Tutorial</h3>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/yAyWM-iEIos" frameborder="0" allowfullscreen></iframe></p>
<div class="separator"></div>
<h3>Getting Started with Django &#8211; Best Practices</h3>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/EcY1HBK9hf4" frameborder="0" allowfullscreen></iframe></p>
<div class="separator"></div>
<h3>Building a blog in 30 mins with Django</h3>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/srHZoj3ASmk" frameborder="0" allowfullscreen></iframe></p>
<div class="separator"></div>
<h3>A Django Podcast</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/pod1.png" alt="" width="690" height="190" /><br />
Greg and Bryan work the Django beat with a weekly podcast that covers everything that is new in the world of Django. With regular guests and topics on a variety of subjects that matter most to the discerning Django developer.<br />
<a class="gray" href="http://3rdaverad.io/shows/django-podcast/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Django Screencasts</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/pod2.png" alt="" width="690" height="190" /><br />
Django Screencasts delivers periodic screencasts that help beginning to intermediate programmers get the most out of the Django Framework, a web framework built on top of the Python programming language. Each episode will either feature short focused tips and tricks that you can apply to your own project immediately, or longer tutorial pieces that help guide you in new subject areas.<br />
<a class="gray" href="http://itunes.apple.com/us/podcast/django-screencasts-mp4-edition/id272940183" target="_blank">check it out</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/django-framework-tools-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infographics: overview and best practices</title>
		<link>http://blog.wearepropeople.com/infographics-overview-and-best-practices/</link>
		<comments>http://blog.wearepropeople.com/infographics-overview-and-best-practices/#comments</comments>
		<pubDate>Mon, 14 May 2012 19:16:12 +0000</pubDate>
		<dc:creator>Corina Ciripitca</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[infographics]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[roundup]]></category>
		<category><![CDATA[visuals]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=4209</guid>
		<description><![CDATA[The use of infographics also known as information graphics in web design is a quite new trend in the designer community. They are mostly used in order to represent complicated information or workflows that need to be easily understood. ]]></description>
			<content:encoded><![CDATA[<p>The use of infographics also known as information graphics in web design is a quite new trend in the designer community. They are mostly used in order to represent complicated information or workflows that need to be easily understood. </p>
<p>Complicated maps, technical writing, mathematics, science and other fields usually go for infographics in order to represent the information clearly and as simple as possible. Infographics are meant to represent conceptual information without intimidating the end user. </p>
<p>Designers should definitely pay more attention to representing information easier because in some cases using infographics is more than necessary in order for the big flow of information to be pleasant for the eye as well as understood. Once you opt for minimalism in infographics, there is a bigger chance the end user will be able to understand what you are trying to say much easier. If the flow of information is too big, you can simply split it up into logical categories or chunks of information and try to represent it by using graphics and numbers. </p>
<p>Even from the beginning of humankind, people used to represent what they were trying to say through simple drawings and shapes on the walls, this happened before languages appeared. It is definitely much easier to communicate something visually if you don’t find the right words at the moment. </p>
<p>Infographics split up into categories as well depending on the type of information and the way it is more convenient to represent it. These are some of the categories that are the most popular and that are mostly used when thinking about graphic representations of data. </p>
<h2>Representation of Maps</h2>
<p>These are the most popular infographics and they are highly used when representing geographic elements like oceans, continents, countries, their development or other factors that affect them. </p>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_map-of-earths-minerals-science-infographic1.jpg" alt="" title="resampled_map-of-earths-minerals-science-infographic1" width="690" height="690" class="aligncenter size-full wp-image-4220" /></p>
<h2>Statistics</h2>
<p>Whether it is about charts, graphs or other visual elements, infographics are the most popular and easy way to represent data through visuals.  </p>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_PPC-Jobs-Salary-Guide-600x1143.png" alt="" title="resampled_PPC-Jobs-Salary-Guide-600x1143" width="690" height="190" class="aligncenter size-full wp-image-4223" /></p>
<h2>Timeline</h2>
<p>When you would like to represent the evolution of a certain phenomenon, then timeline infographics come into power. </p>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_tech-innovation-timeline-infographic-15-years-600x493.gif" alt="" title="resampled_tech-innovation-timeline-infographic-15-years-600x493" width="690" height="190" class="aligncenter size-full wp-image-4225" /></p>
<p>We would like to showcase some cool infographics we found on the net. We hope you will find them interesting and helpful in order to get inspired for future data representation. Let us know if you have some other interesting designs in the comments below. </p>
<h4>Pet Insurance company stats</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_PetInsurance101-1024x884-600x517.jpg" alt="" title="resampled_PetInsurance101-1024x884-600x517" width="690" height="190" class="aligncenter size-full wp-image-4240" /></p>
<h4>Drupal stats</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_drupal-technology-infographic2.jpg" alt="" title="resampled_drupal-technology-infographic2" width="690" height="690" class="aligncenter size-full wp-image-4244" /></p>
<h4>Pinterest social stats</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_A-Marketers-guide-to-pinterest-pin-it-to-win-it-infographic-600x2064.png" alt="" title="resampled_A-Marketers-guide-to-pinterest-pin-it-to-win-it-infographic-600x2064" width="690" height="190" class="aligncenter size-full wp-image-4249" /></p>
<h4>Corporate branding</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_infographic-design-portfolio-131-600x1675.jpg" alt="" title="resampled_infographic-design-portfolio-131-600x1675" width="690" height="190" class="aligncenter size-full wp-image-4251" /></p>
<h4>&#8220;How to&#8221; guide infographics</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_how-to-tie-a-tie-how-to-guides-infographics-600x518.jpg" alt="" title="resampled_how-to-tie-a-tie-how-to-guides-infographics-600x518" width="690" height="190" class="aligncenter size-full wp-image-4257" /></p>
<h4>Years From Slavery To Black American President</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_389-years-ago-maps-infographics.jpg" alt="" title="resampled_389-years-ago-maps-infographics" width="690" height="190" class="aligncenter size-full wp-image-4259" /></p>
<h4>Misunderstood English Words</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_misunderstood-english-words-education-infographic1-600x987.jpg" alt="" title="resampled_misunderstood-english-words-education-infographic1-600x987" width="690" height="190" class="aligncenter size-full wp-image-4261" /></p>
<h4>Travel Industry stats</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_travel-industry-funny-infographic1-600x2990.jpg" alt="" title="resampled_travel-industry-funny-infographic1-600x2990" width="690" height="388" class="aligncenter size-full wp-image-4263" /></p>
<p>image sources: <a href="http://www.loveinfographics.com">loveinfographics.com</a></p>
<h4>Trash longevity chart</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/26051202.jpg" alt="" title="26051202" width="690" height="422" class="aligncenter size-full wp-image-4267" /></p>
<p>source:<a href="http://www.coolinfographics.com"> coolinfographics.com</a></p>
<h4>Travelling Information</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_rei-backpacking-infographic.jpg" alt="" title="resampled_rei-backpacking-infographic" width="690" height="399" class="aligncenter size-full wp-image-4270" /></p>
<p>image source: <a href="http://www.loveinfographics.com">loveinfographics.com</a></p>
<h4>SMO Periodic Table Infographic</h4>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/SMO-Periodic-Table-600x412.png" alt="" title="SMO-Periodic-Table-600x412" width="690" height="473" class="aligncenter size-full wp-image-4272" /></p>
<p>image source: <a href="http://www.loveinfographics.com">loveinfographics.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/infographics-overview-and-best-practices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Drupal 7 Themes Collection</title>
		<link>http://blog.wearepropeople.com/free-drupal-7-themes-collection/</link>
		<comments>http://blog.wearepropeople.com/free-drupal-7-themes-collection/#comments</comments>
		<pubDate>Mon, 07 May 2012 06:34:04 +0000</pubDate>
		<dc:creator>Corina Ciripitca</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Drupal 7]]></category>
		<category><![CDATA[drupal free themes]]></category>
		<category><![CDATA[free download themes]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=4170</guid>
		<description><![CDATA[Whenever you are in need of some inspiration the Internet comes along to help you. This time it’s about Drupal themes that you can find for free on the Internet if you can't really afford professional design for your Drupal website.]]></description>
			<content:encoded><![CDATA[<p> Whenever you are in need of some inspiration the Internet comes along to help you. This time it’s about Drupal themes that you can find for free on the Internet if you can&#8217;t really afford professional design for your Drupal website.</p>
<div class="separator"></div>
<p>We have decided to find some free themes that you can preview and download whenever you feel like it. Drupal is a steadily growing content management system preferred both by freelance developers and big web development companies. It is also a great solution for every type of websites &#8211; from personal blogs to big corporate websites. It is up to you what design you choose to use and the good thing is that there are already premium and free themes that are compatible with the latest version of Drupal 7. </p>
<p>When choosing a theme for your website, no matter the CMS, it is important to find something that would suit your needs and tastes, regarding the information you would like to display and the website architecture you would like to use in the future. There are plenty themes on the Big Web that you can choose from that would suit your needs and expectations. </p>
<p>This post aims to showcase a variety of Drupal 7 free themes available on the net that would probably suit personal websites and blogs, rather than big company websites but still it might work as an inspiration source for web designers. We hope you will find them as interesting choices and even end up downloading and using one of them. You can as well leave comments with the Drupal 7 free themes you like best or something you might also suggest to our readers. Most of these themes were taken from the Drupal.org official website. You can find more themes to get inspired there. </p>
<h3>Mega Drupal</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_Untitled.png" alt="" title="resampled_Untitled" width="695" height="191" class="aligncenter size-full wp-image-4173" /></p>
<p>&#8220;<b>Features</b>: 6 colors: blue (default), brown, green, orange, pink, purple; Cross-browser tested in IE6+, Safari, Firefox and Chrome; You can change logo, favicon&#8230;&#8221;<br />
<a class="gray" href="http://drupal.org/project/md_construction" target="_blank">download it here</a></p>
<h3>Busy</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_busy_scrsht.preview.png" alt="" title="resampled_busy_scrsht.preview" width="690" height="190" class="aligncenter size-full wp-image-4179" /></p>
<p>Simple, minimalist yet elegant Drupal 7 theme targeted mainly at corporate sites. </p>
<p><a class="gray" href="http://drupal.org/project/busy" target="_blank">get &#8220;Busy&#8221; theme here</a></p>
<h3>Drupalace</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_drupalace_screenshot.preview.jpg" alt="" title="resampled_drupalace_screenshot.preview" width="690" height="190" class="aligncenter size-full wp-image-4183" /></p>
<p>&#8220;&#8221;Drupalace Theme is an ideal bright theme for the blogging site. Here is basic features:11 regions for blocks (including node top and node bottom!); Configurable layout; Social sharing of nodes; Nodes navigation&#8230;&#8221;</p>
<p><a class="gray" href="http://drupal.org/project/drupalace" target="_blank">find out more about Drupalace</a></p>
<h3>Acquia Prosper theme &#8211; Ubercart catalog page</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_Acquia_Prosper-catalog.preview.png" alt="" title="resampled_Acquia_Prosper-catalog.preview" width="690" height="190" class="aligncenter size-full wp-image-4187" /></p>
<p>&#8220;Acquia Prosper is an advanced Drupal theme by TopNotchThemes, with a monochromatic look and clean lines. It is designed as an Ubercart e-commerce theme that is easy to customize, but is extremely flexible for any type of site.&#8221;</p>
<p><a class="gray" href="http://drupal.org/project/acquia_prosper" target="_blank">check it out</a></p>
<h3>Blue Masters</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_5408491960_066a48b7f2_b.jpg" alt="" title="resampled_5408491960_066a48b7f2_b" width="690" height="726" class="aligncenter size-full wp-image-4191" /></p>
<p>&#8220;BlueMasters for Drupal by More than (just) Themes is based on the homonymous PSD template, which was designed by Wendell Fernandes and released for Smashing Magazine and its readers&#8230;&#8221;</p>
<p><a class="gray" href="http://drupal.org/project/bluemasters" target="_blank">read more info on this</a></p>
<h3>Elements</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_3058532714_ff7a2776ca.jpg.jpg" alt="" title="resampled_3058532714_ff7a2776ca.jpg" width="690" height="190" class="aligncenter size-full wp-image-4194" /></p>
<p>&#8220;Revolution Elements is a dark, two-column theme with unique style that showcases images alongside the text of recent posts on the homepage.</p>
<p>The theme is based on the old site of well-known WordPress designer Jason Schuller for&#8230;&#8221;</p>
<p><a class="gray" href="http://drupal.org/project/elements_theme" target="_blank">check it out</a></p>
<h3>Journal Crunch</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_5336820304_8f4ebee0d6_b.jpg" alt="" title="resampled_5336820304_8f4ebee0d6_b" width="690" height="690" class="aligncenter size-full wp-image-4198" /></p>
<p>&#8220;<b>Features</b>: Front page with:One column layout, Special rendering for sticky posts, 2-column layout&#8230;&#8221;</p>
<p><a class="gray" href="http://drupal.org/project/journalcrunch" target="_blank">see more about this theme here</a></p>
<h3>Photogenic</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_photogenic-2.preview.jpg" alt="" title="resampled_photogenic-2.preview" width="690" height="190" class="aligncenter size-full wp-image-4202" /></p>
<p>A simple theme designed to display photo galleries. It is great for personal photo blogs as it has a dark background which emphasizes the importance of your photos. </p>
<p><a class="gray" href="http://drupal.org/project/photogenic" target="_blank">download theme</a></p>
<h3>Soft Technology Theme</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_Untitled1.png" alt="" title="resampled_Untitled" width="690" height="690" class="aligncenter size-full wp-image-4204" /></p>
<p>&#8220;Here we are introducing you a eyes catching professional free drupal theme from our drupal theme designers. It is mainly developed for company profiles.It is a powerful base theme, with only single layout options. Its having&#8230;&#8221;</p>
<p><a class="gray" href="http://www.drupalove.com/drupal-theme/drupal-7-free-soft-technology-business-theme" target="_blank">read more about this theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/free-drupal-7-themes-collection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tips on Hiring a Good Web Designer</title>
		<link>http://blog.wearepropeople.com/tips-on-hiring-a-good-web-designer/</link>
		<comments>http://blog.wearepropeople.com/tips-on-hiring-a-good-web-designer/#comments</comments>
		<pubDate>Fri, 04 May 2012 10:35:09 +0000</pubDate>
		<dc:creator>Corina Ciripitca</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Interviews]]></category>
		<category><![CDATA[freelance design. web services]]></category>
		<category><![CDATA[hire web designer]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=4110</guid>
		<description><![CDATA[Having a web presence nowadays is just as important as any other big business strategies. You can assure a good web presence by having a neat looking website, hence finding a good web designer that will understand your needs is vital. 
]]></description>
			<content:encoded><![CDATA[<p>Having a web presence nowadays is just as important as any other big business strategies. You can assure a good web presence by having a neat looking website, hence finding a good web designer that will understand your needs is vital. </p>
<p>The question is: what do you choose from a variety of specialists offering web services. Should it be a freelancer? or maybe a web design company? </p>
<p>Before asking yourself these questions, you might want to make up a list with all the features you would like to see on your website. </p>
<p>Having a website that would be user friendly and present all the important information you would like to deliver is essential. Simple and clean design is sometimes the perfect solution, but it all depends on what the client wants. That’s why put all the questions you would like to be answered before agreeing on a certain design and development in order to get a clear definition of what the website is going to represent right from the start. </p>
<p>Clients and service providers often get into conflicts if things aren’t clear from the beginning. You might want to add or remove some tweaks on the design you have for your website during the development process and having someone to help you with that would be great. </p>
<h3>Research</h3>
<p>Research is obviously one of the most important things you should consider doing in the first place. You should already know that it is practically impossible to find a person who is a good web designer and a brilliant developer at the same time. It is usually a misconception that a person can do both of the jobs perfectly and be up to date to the latest updates. </p>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/resampled_research.jpg" alt="" title="resampled_research" width="690" height="190" class="alignleft size-full wp-image-4165" /></p>
<p>So if you would like a good websdesign, the proper lookup for good web designers should be implemented. You can start with job boards. These are the most traditional ways of finding work and usually these websites are categorized by industry so that it will be easy for job hunters to interact with hirers according to their interests. </p>
<p>You can either choose from local web designers and web developing companies that offer web design services or opt for freelancers that might agree to come on site if it will be needed. It depends on your interests and what you would like the final result to look like. </p>
<p>Don’t forget about the list of predefined question you will have to make before you complete your research. You can also compile one for the prospective web designers you like. Making lists will make you more organized and will definitely be more efficient. </p>
<h3>Look for Visuals</h3>
<p>A good web designer will definitely have a portfolio for you to see before you decide hiring one. Check out his previous projects and start analyzing what you like and what doesn’t really fit in to your needs: like navigation for instance – is it user friendly? Is it easy to find information in his design and does it look pleasant for the eye. </p>
<p>Some designers like to have their own style while designing their projects, this is why by seeing something common in all of his projects you can see what are their default traits that they would usually put into practice. </p>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/GSP37261-StGSP-Ldg-Pg_01-27_03.gif" alt="" title="GSP37261-StGSP-Ldg-Pg_01-27_03" width="690" height="190" class="alignleft size-full wp-image-4166" /></p>
<p>It is also advisable to look for testimonials and referrals concerning your future candidates. They can usually help and can give you real feedback from people that have already worked with these people or the web agencies providing design services. </p>
<h3>How Good is your Match?</h3>
<p>Before hiring a web design professional, make sure you have studied his portfolio and ask for references. You can learn from the mistakes of others by just asking for advice and hopefully find the best match for you and your business. </p>
<p>Web design companies usually offer professional services, references, a wide portfolio to choose from and support during your collaboration, but they might turn out to be pretty expensive and you will often have to pass through bureaucracy. </p>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/tumblr_lnl1fq2PQa1qbci4ko1_500.jpg" alt="" title="tumblr_lnl1fq2PQa1qbci4ko1_500" width="300" height="300" class="align center size-full wp-image-4167" /><br />
source: tumblr.com</p>
<p>Freelancers are much cheaper when it comes to providing web services, and they can also easier agree on meeting you on site if you need them. However you will need good references for these, making sure he will provide what quality work in time. </p>
<p>It is definitely up to you to choose someone that matches your business needs and good research is needed beforehand. We would love for you to share more tips with us in the comments so that they will be helpful for people in need of good web designers. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/tips-on-hiring-a-good-web-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Current Design Projects: Sneak Peeks</title>
		<link>http://blog.wearepropeople.com/current-projects-sneak-peaks-msf/</link>
		<comments>http://blog.wearepropeople.com/current-projects-sneak-peaks-msf/#comments</comments>
		<pubDate>Wed, 02 May 2012 14:16:06 +0000</pubDate>
		<dc:creator>Signe Vium</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[ProPeople]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=4142</guid>
		<description><![CDATA[Simple, identity building, focus. These are the buzz words for a project we are currently working on. ]]></description>
			<content:encoded><![CDATA[<p>Simple, identity building, focus. These are the buzz words for a project we are currently working on. </p>
<p>The goal is to get as many permanent contributors as possible and we wanted to create a solution that was simple, new and innovative. </p>
<div class="separator"></div>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/Image-1.jpg" alt="" width="690" /><br />
We use bright colors, large images and typography and we focus on keeping the message as simple as possible. The donation option should allways be present as a button or a link.</p>
<div class="separator"></div>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/Image-2.jpg" alt="" width="690" /><br />
We use different free Google fonts to help create an online identity, something that you could recognize and link with the organisation without looking at the logo.</p>
<div class="separator"></div>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/Image-3.jpg" alt="" width="690" /><br />
In order to create awareness we made a round donation button wich is present on every page. We also made a more discrete option, where you can write numbers (bullet points) and change the text.</p>
<div class="separator"></div>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/Image-4.jpg" alt="" width="690" /><br />
In order to help the viewer to stay focused on the organisational goals, we made a number of “badges” in blue and yellow, where you can write different messages. </p>
<div class="separator"></div>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/Images-5.jpg" alt="" width="690" /><br />
We have nice looking icons to make it easier to searh through categories and find exactly what you are looking for. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/current-projects-sneak-peaks-msf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Web Design and Web Development Articles of April 2012</title>
		<link>http://blog.wearepropeople.com/best-web-design-and-web-development-articles-of-april-2012/</link>
		<comments>http://blog.wearepropeople.com/best-web-design-and-web-development-articles-of-april-2012/#comments</comments>
		<pubDate>Tue, 01 May 2012 05:55:32 +0000</pubDate>
		<dc:creator>Stefan Nistor</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=4111</guid>
		<description><![CDATA[Here is the list of articles written in April 2012 we found interesting and useful. Get the most of them.]]></description>
			<content:encoded><![CDATA[<p>This post covers a roundup of 20 great articles written by various Web Designers and Web Developers in April 2012.</p>
<p>Here is the list of articles written in April 2012 we found interesting and useful. Get the most of them. Enjoy!</p>
<div class="separator"></div>
<h2>Web Design</h2>
<div class="separator"></div>
<h3>Content Modelling: A Master Skill</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes1.png" alt="" width="690" height="190" /><br />
“The content model both influences and is influenced by the work of several other disciplines. A content model helps clarify requirements and encourages collaboration between the designers, the developers creating the CMS, and the content creators&#8230;”<br />
<a class="gray" href="http://www.alistapart.com/articles/content-modelling-a-master-skill/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>5 Ways to Learn Web Design: Which Is Right for You?</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes2.png" alt="" width="690" height="190" /><br />
“The web design education industry has exploded from a small niche to a powerful, continually expanding force. Countless people all over the planet are interested in learning about how to build and design websites, and tons of companies are cropping up promising the ultimate solution&#8230;”<br />
<a class="gray" href="http://designshack.net/articles/css/5-ways-to-learn-web-design-which-is-right-for-you/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>9 Tricks To Design The Perfect HTML Newsletter</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes3.png" alt="" width="690" height="190" /><br />
“An e-mail newsletter is the perfect way to stay in touch with your clients or followers. Often your company or website will have numerous product updates, or possibly upcoming events you’d like to share. It’s always possible to post new information to your blog or social media streams, but your audience can only go so far to reach you. In this case, e-mail is certainly not dead technology, merely untapped potential&#8230;”<br />
<a class="gray" href="http://www.hongkiat.com/blog/design-perfect-newsletter/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Designing type systems</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes4.png" alt="" width="690" height="190" /><br />
“I remember a conversation from back in my student days where my typophile friends and I debated what the ultimate typeface of the twentieth century was, a typeface that summed up all of the era’s advancements and knowledge into a coherent whole, one that would be a reference for years to come. Helvetica was one of the candidates for its sheer ubiquity, proof of its overall acceptance. Another, more subtle proposal was Jan van Krimpen’s Romulus, one of the first typefaces to have related Sans and Serif versions. And another, my personal pick, was Univers by Adrian Frutiger&#8230;”<br />
<a class="gray" href="http://ilovetypography.com/2012/04/11/designing-type-systems/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Free Calligraphy Fonts for Designers</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes5.png" alt="" width="690" height="190" /><br />
“Calligraphy is a form of visual art. It’s frequently known as the skill of fancy lettering. A modern day meaning of calligraphic practice is “the art of giving form to signs in an expressive, harmonious and skillful manner”. Today i have collected the best collection of calligraphy fonts. These fonts are ideal for classy web and graphic design&#8230;”<br />
<a class="gray" href="http://pelfusion.com/fonts/free-calligraphy-fonts/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>How Companies can Save Time and Money Using UI Kits</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes6.png" alt="" width="690" height="190" /><br />
“Here we’ll see how they can be great for companies, designers, developers. It’s not just about saving time (I know, nice title, huh?) but also how to work smarter, common uses, best practices, how to get the most out of them&#8230;”<br />
<a class="gray" href="http://designmodo.com/save-time-money-using-ui-kits/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Retro Web Design Inspiration For Designers</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes7.png" alt="" width="690" height="190" /><br />
“I really like the vintage/retro design of design within regardless of what design it takes, from posters not to mention adverts to web designs. The actual classic typographic ingredients and then the attention to be able to detail provided to many of these truly stand out in order to me, the actual subtle employ of background textures in many of these Web designs also appeals to be able to me then I am already thinking how I could certainly incorporate them throughout inside several future projects&#8230;”<br />
<a class="gray" href="http://www.downgraf.com/inspiration/25-retro-web-design-inspiration-for-designers/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Five responsive web design pitfalls to avoid</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes8.png" alt="" width="690" height="190" /><br />
“Creating great responsive experiences requires a hell of a lot more than media queries. If you think creating squishy layouts is all this responsive thing is about, you’re missing the point. The fact is we need to deliver a solid user experience to a growing number of web-enabled devices, and creating entirely separate device experiences simply isn’t scalable in the long run. Creating adaptive experiences is a smarter way forward, but that doesn’t mean this approach isn’t without its challenges&#8230;”<br />
<a class="gray" href="http://www.netmagazine.com/features/five-responsive-web-design-pitfalls-avoid" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Time management for web designers</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes9.png" alt="" width="690" height="190" /><br />
“As a web designer working mostly on your computer, distractions are only a click away. Who has not spent his afternoon browsing stupid Youtube videos instead of creating those wireframes your client is waiting on? In this article, we will take a look at how to get away from distractions, but also how to make better use of your working time&#8230;”<br />
<a class="gray" href="http://www.designer-daily.com/time-management-for-web-designers-25229" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>The Future of Web Typography</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdes10.png" alt="" width="690" height="190" /><br />
“When a computer displays text, it uses fonts to display different styles of typeface. There are standard fonts such as Arial and Verdana, however, there are huge lists of fonts available to web developers and designers which don’t come pre-installed onto your computer, these are non-standard fonts&#8230;<br />
<a class="gray" href="http://www.crazyleafdesign.com/blog/future-of-web-typography/" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h2>Web Development</h2>
<div class="separator"></div>
<h3>What’s New in HTML6</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev1.png" alt="" width="690" height="190" /><br />
“Even though everyone is getting around to supporting all of the standards being set forth in the HTML5 specification, the WHATWG has been hard at work with HTML6. If you haven&#8217;t been keeping up with the forums, IRC channel, and meetings, this post will fill you in on what&#8217;s been happening and what you should start to expect out of HTML6&#8230;”<br />
<a class="gray" href="http://thinkvitamin.com/code/html-xhtml/whats-new-in-html6/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Super useful WordPress action hooks and filters </h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev2.png" alt="" width="690" height="190" /><br />
“Action hooks and filters are very useful in WordPress. They allow you to “hook” a custom function to an existing function, which allows you to modify WordPress functionality without editing core files. Today, here are 10 super usefull action hooks and filters to supercharge your WordPress install&#8230;”<br />
<a class="gray" href="http://www.catswhocode.com/blog/super-useful-wordpress-action-hooks-and-filters" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>20 Awesome Resources for Twitter Bootstrap Lovers</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev3.png" alt="" width="690" height="190" /><br />
“Twitter Bootstrap has simply exploded in the web development community. There will always be skeptics and haters but on the whole the project has been a smashing success and can constantly be seen at the top of the Forked and Watched charts at GitHub&#8230;”<br />
<a class="gray" href="http://designshack.net/articles/css/20-awesome-resources-for-twitter-bootstrap-lovers/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>LESS CSS Tutorial: Designing A Slick Menu Navigation Bar</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev4.png" alt="" width="690" height="190" /><br />
“In this tutorial we will try to design a slick menu navigation bar that is inspired from the one inApple.com. As it is only ‘inspired’ by the original product, take note that our final tutorial product will not be precisely the same as the original&#8230;”<br />
<a class="gray" href="http://www.hongkiat.com/blog/less-css-tutorial-design-slick-menu-nav-bar/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>The Essentials of Zepto.js</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev5.png" alt="" width="690" height="190" /><br />
“Modern JavaScript libraries are quite the behemoths — just take a look at jQuery. When you’re creating a mobile app, or even just targeting modern browsers, a library that’s much more svelte and nimble becomes a tastier proposition&#8230;”<br />
<a class="gray" href="http://net.tutsplus.com/tutorials/javascript-ajax/the-essentials-of-zepto-js/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Advanced CodeIgniter Profiling With XHProf</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev6.png" alt="" width="690" height="190" /><br />
“There are a number of ways to profile and monitor the performance of PHP code in a development environment, but once it’s been let loose on a production server its extremely difficult to know what’s going on when your app is getting accessed by your users&#8230;”<br />
<a class="gray" href="http://net.tutsplus.com/tutorials/php/advanced-codeigniter-profiling-with-xhprof/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>How To Optimize Images And Boost Traffic </h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev7.png" alt="" width="690" height="190" /><br />
“To get more traffic from search engines you have to optimize the content of your site accordingly. Other than text optimization you should go for image optimization to get traffic from Google Image Search. The basic things you should consider in optimizing images are &#8220;alt&#8221; attribute and image names&#8230;”<br />
<a class="gray" href="http://pelfusion.com/know-how/image-optimization/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Useful Firefox Addon Extensions for Web Development</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev8.png" alt="" width="690" height="190" /><br />
“Firefox is one of the famous browsers in web development industry mainly because of its wide array of web development tools such as Firebug. Before Chrome, Firefox has gained most of the attention and considered as the best alternative against its rival &#8211; Internet Explorer because it renders DOM and layout quite consistently despite of different releases. Personally, I&#8217;m toggling between Firefox and Chrome because I way too used to Firebug&#8217;s interface&#8230;”<br />
<a class="gray" href="http://www.queness.com/post/11383/28-useful-firefox-addon-extensions-for-web-development" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Essential CSS Frameworks For Web Developer</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev9.png" alt="" width="690" height="190" /><br />
“The CSS framework we choose to use shouldn’t ideally be based only on a private preference, because a lot of web developers tend to do.But Ideally you need to choose a framework  that match up on your own present internet projects aspects such as complexity then functionality requirements.<br />
In this informative article you see the ideal CSS frameworks such as a few of generators that you may consider for your individual next venture&#8230;”<br />
<a class="gray" href="http://www.downgraf.com/all-articles/essential-css-frameworks-for-web-developer/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Parse URL Querystring Into Array In PHP</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/05/aprdev10.png" alt="" width="690" height="190" /><br />
“Using query strings in PHP is a good way of transferring data from one file to another.<br />
This is done by using the $_GET variable. This variable is a global variable that is used to get the content of the query string and allow you to get at this data as an array. Getting at data in a query string can be used in other places in your application for example using Ajax requests you may need to get the contents of a query string&#8230;”<br />
<a class="gray" href="http://www.paulund.co.uk/parse-url-querystring-into-array-in-php" target="_blank">check it out</a></p>
<div class="separator"></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/best-web-design-and-web-development-articles-of-april-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essential Android Apps for Designers and Developers</title>
		<link>http://blog.wearepropeople.com/essential-android-apps-for-designers-and-developers/</link>
		<comments>http://blog.wearepropeople.com/essential-android-apps-for-designers-and-developers/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 00:06:01 +0000</pubDate>
		<dc:creator>Stefan Nistor</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=4081</guid>
		<description><![CDATA[This post is a compilation of twenty useful application for web developers and web designers, built for Android devices.]]></description>
			<content:encoded><![CDATA[<p>Android is one of the most popular operating systems built for mobile devices. According to the latest data Google is activating over 850,000 Android smartphones and tablets daily.</p>
<p>This post is a compilation of twenty useful application for web developers and web designers, built for Android devices. This list is a sequel of the first <a href="http://blog.wearepropeople.com/android-applications/" target="_blank">article</a> we made on this topic. Enjoy! </p>
<div class="separator-double"></div>
<h2>Web Design</h2>
<div class="separator"></div>
<h3>Color Dictionary</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_1.png" alt="" width="690" height="190" /><br />
“10+ dictionaries and 2300+ colors included! Still updating! Color Dictionary makes it very easy for you to reference any traditional colors all over the world. Provides RGB/HEX/CMYK/Lab values and detailed color analysis.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.siyusong.android.color.dictionary" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>SketchBook Mobile</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_2.png" alt="" width="690" height="190" /><br />
“A professional-grade paint and drawing application offering a set of sketching tools and a streamlined and intuitive user interface. Requires a multi-touch device running Android 2.1 or above. ”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.sketchbookexpress" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>HTML Color</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_3.png" alt="" width="690" height="190" /><br />
“A Quick Reference of HTML Color for the Web Designer including HTML Color Name, RGB and Hex color codes. HTML Color can work offline so that you can check your favorite color at any time any where. ”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=am.app.htmlcolor" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>SilverEdit</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_4.png" alt="" width="690" height="190" /><br />
“SilverEdit is the ultimate web designer tool for Android devices. With SilverEdit you can Create, Edit, Preview your pages offline or online. Manage, upload and download files through the FTP as well as managing your local files and folders.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.dictatordesigns.silveredit" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>WhatTheFont</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_5.png" alt="" width="690" height="190" /><br />
“Ever seen a great font in a magazine ad, poster, or on the web and wondered what the font used is? Whip out your phone and snap a photo, and WhatTheFont will identify that font in seconds!”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.myfonts.whatthefont" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>OI Color Picker</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_6.png" alt="" width="690" height="190" /><br />
“This is an extension for OI Flashlight and other compatible applications that lets you pick a color.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=org.openintents.colorpicker" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>Woo Sketch</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_7.png" alt="" width="690" height="190" /><br />
“Layered picture editing comes to android. An application to bridge the gap between photos on your phone and the graphics editor on your desktop.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.thewoo.sketch" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>Magic Canvas</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_8.png" alt="" width="690" height="190" /><br />
“Magic Canvas allows you to create beautiful images by changing color into selected areas. Features includes:  use photo gallery or camera images;  use zoom two fingers or alternative zoom for devices that not support multitouch;  scalable brush size, etc.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.andbyte.magiccanvas" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>HS Image Cut</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_9.png" alt="" width="690" height="190" /><br />
“HS image cut create images that makes your phone more unique. You can easily cut, slice a image and you can make a widget like DVR(Desktop Visualizer).”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.heavystone.hsimagecut" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>Color Snap</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_10.png" alt="" width="690" height="190" /><br />
“Capture real world colors for free. With ColorSnap®, it&#8217;s easy to take color inspiration from a photo in your library or one you just snapped. “<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.colorsnap" target="_blank">grab the app</a></p>
<div class="separator-double"></div>
<h2>Web Development</h2>
<div class="separator"></div>
<h3>Drupal Editor</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_101.png" alt="" width="690" height="190" /><br />
“An editor for Drupal powered websites. Allows you to post and edit articles on sites that use Drupal. You (or your Admin) have to enable the Blog API for this to work. This is very unofficial, my only ties to Drupal is me using it for my webpage.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=ch.dissem.android.drupal" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>ConnectBot</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_71.png" alt="" width="690" height="190" /><br />
“ConnectBot is a powerful open-source Secure Shell (SSH) client. It can manage simultaneous SSH sessions, create secure tunnels, and copy/paste between other applications.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=org.connectbot" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>View Web Source</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_81.png" alt="" width="690" height="190" /><br />
“With this application you will be able to view the source of any website. You will also be able to select text, search for text as well as copy and paste the HTML. To get the source from the page you are currently viewing in the browser, you can now use the share feature from the menu and select View Web Source.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.jamesob.vwsource" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>Wordpress for Android</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_11.png" alt="" width="690" height="190" /><br />
“Write new posts, edit content, and manage comments on your WordPress blog. WordPress for Android is an Open Source app that empowers you to write new posts, edit content, view stats, and manage comments with built-in notifications.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=org.wordpress.android" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>Google Drive</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_21.png" alt="" width="690" height="190" /><br />
“With Google Drive, you can store all your files in one place, so you can access them from anywhere and share them with others.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.google.android.apps.docs" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>Google Analytics for Andorid</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_31.png" alt="" width="690" height="190" /><br />
“Mobile GA for Android is a secure, fast and lightweight application for accessing your Google Analytics data. The app is intended to help you keep an eye on your key summary statistics while you&#8217;re on the move. Please visit the Android Marketplace from your Android mobile phone to purchase Mobile GA.”<br />
<a class="gray" href="http://www.analyticsmarket.com/mobileapps/mobile-ga/android" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>Dropbox for Android</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_41.png" alt="" width="690" height="190" /><br />
“Dropbox lets you bring all your photos, docs, and videos anywhere. Dropbox is a free service that lets you bring all your photos, docs, and videos anywhere. After you install Dropbox on your computer, any file you save to your Dropbox will automatically save to all your computers, your Android device, and even the Dropbox website!”<br />
<a class="gray" href="https://www.dropbox.com/android" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>PHP reference</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_51.png" alt="" width="690" height="190" /><br />
“You will find complete references of all PHP functions and constants. At PHP Reference you will find complete references of all PHP functions and constants.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.whawhawhat.referencephp&#038;hl=en" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>HTML5 Reference</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_61.png" alt="" width="690" height="190" /><br />
“This HTML5 reference lists all tags supported in the HTML5 specification. Tags, tag attributes and a listing of tags removed in HTML5 (valid in HTML4) are listed in a convenient cheatsheet format. This is the most complete, and up-to-date, HTML5 cheatsheet (reference) around.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=com.whawhawhat.referencehtml5&#038;hl=en" target="_blank">grab the app</a></p>
<div class="separator"></div>
<h3>W3C Cheasheet </h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/Screenshot_91.png" alt="" width="690" height="190" /><br />
“The W3C Cheatsheet provides quick access to useful information from specifications (incl HTML5, CSS, SVG, XPath) published by W3C, the leading international Web standards community.”<br />
<a class="gray" href="https://play.google.com/store/apps/details?id=org.w3c.mwi.cheatsheet" target="_blank">grab the app</a></p>
<div class="separator"></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/essential-android-apps-for-designers-and-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inspiration: Textures in Web Design</title>
		<link>http://blog.wearepropeople.com/inspiration-textures-in-web-design/</link>
		<comments>http://blog.wearepropeople.com/inspiration-textures-in-web-design/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 08:10:45 +0000</pubDate>
		<dc:creator>Corina Ciripitca</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[free textures]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[premium textures]]></category>
		<category><![CDATA[texture best practices]]></category>
		<category><![CDATA[textures]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=4016</guid>
		<description><![CDATA[Spring is all about changes and new perspectives. We decided to pump up your imagination with a great showcase featuring textures used in web design. 
]]></description>
			<content:encoded><![CDATA[<p>Spring is all about changes and new perspectives. We decided to pump up your imagination with a great showcase featuring textures used in web design. </p>
<p>Designing a texture whether it is about background, menus or different buttons and design elements might be difficult for people that are not in good terms with their imagination or are having a harsh time in finding it. </p>
<p>There is no need to reinvent the wheel in some cases, because the wheel is right there before you and in this case we mean all kinds of textures that are easily reachable on the Internet. Whether you want premium textures that you are ready to pay for, or more common ones that can be found for free, the Big Web can offer anything for any taste available. </p>
<h3>&#8220;Starry Night&#8221; Texture</h3>
<p><img class="framed" target="blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_starry-nights.png" alt="" title="resampled_starry nights" width="695" height="191" class="alignleft size-full wp-image-4020" /></p>
<p>This Set includes 7 Textures at 3888&#215;2592 , all were made from photographs and then processed in CS5. </p>
<p>Type: Freebie<br />
Credit to: <a href="http://www.22pixels.com/download/starry_night_textures">22pixels.com</a></p>
<h3>Monoprint Texture Brushes</h3>
<p><img class="framed" target="blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_monoporint-brushes.png" alt="" title="resampled_monoporint brushes" width="695" height="191" class="alignleft size-full wp-image-4027" /></p>
<p>* 23 textures made using monoprint techniques.<br />
* Varying patterns and paint coverage.<br />
* All brushes are in 72 ppi quality (A3). </p>
<p>Type: Freebie<br />
Source: <a href=target="_blank" "http://www.brusheezy.com/brushes/1286-monoprint-texture-brushes-">brusheezy.com</a></p>
<h3>The Thriller Cinematic Background</h3>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_The-thriller-Promo-2.jpg" alt="" title="resampled_The thriller - Promo 2" width="690" height="190" class="alignleft size-full wp-image-4031" /></p>
<p>“Thriller Background textures” is a pack of 8 images edited to give a cinematic look and ready to use. High res jpg 3872×2592 px.<br />
Perfect for book covers, motion graphics &#038; web backgrounds.</p>
<p>Type: Paid<br />
Source: <a href="http://graphicriver.net/item/the-thriller-cinematic-background-textures/159471?ref=lifeobject&#038;ref=lifeobject&#038;clickthrough_id=53904598&#038;redirect_back=true">graphicriver.net</a></p>
<h3>Bokeh Textures</h3>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_bokeh-backgrounds.jpg" alt="" title="resampled_bokeh backgrounds" width="690" height="190" class="alignleft size-full wp-image-4037" /><br />
This set comes with seven colorful and quality bokeh textures.</p>
<p>Type: Paid<br />
Source: <a href="http://graphicriver.net/item/7-bokeh-textures/67136?ref=lifeobject">graphicrivier.net</a></p>
<h3>Paper and Canvas</h3>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_canvas.jpg" alt="" title="resampled_canvas" width="690" height="190" class="alignleft size-full wp-image-4041" /><br />
A set of 14 high resolution paper and canvas textures – a highly versatile set! Grab them while they’re hot.</p>
<p>Type: Freebie<br />
Source: <a href="http://www.premiumpixels.com/freebies/14-high-res-paper-canvas-textures/">premiumpixels.com</a></p>
<h3>Rusty Metal</h3>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_preview2.jpg" alt="" title="resampled_preview2" width="690" height="190" class="alignleft size-full wp-image-4046" /><br />
A set of high resolution rusty metal textures. Each texture is 2500px x 1600px giving you plenty of working space. </p>
<p>Type: Freebie<br />
Source: <a href="http://www.premiumpixels.com/freebies/10-high-resolution-rusty-metal-textures/">premiumpixels.com</a></p>
<h3>Wood</h3>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_prev-21.jpg" alt="" title="resampled_prev-21" width="691" height="190" class="alignleft size-full wp-image-4049" /><br />
Everybody loves wood textures and that’s handy as today’s free resource is a pack of 10! If you’re looking to make something especially ‘woody’ then this is for you.</p>
<p>Type: Freebie<br />
Source: <a href="http://www.premiumpixels.com/freebies/10-free-high-resolution-wood-textures/">premiumpixels.com</a></p>
<h3>Paper</h3>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_photo_1138_20120406_1.jpg" alt="" title="resampled_photo_1138_20120406_1" width="690" height="190" class="alignleft size-full wp-image-4052" /></p>
<p>Type: Freebie &#038; Paid<br />
Source: <a href="http://grungetextures.com/gallery/60/paper/page1.html">grungetextures.com</a></p>
<h3>Seamless Backgrounds</h3>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_seamless-backgrounds.png" alt="" title="resampled_seamless backgrounds" width="690" height="190" class="alignleft size-full wp-image-4055" /><br />
The zip file includes each texture in both 1200px and 500px sizes as well as a Photoshop .PAT file for easy integration.</p>
<p>Type: Freebie<br />
Source:<a href="http://lostandtaken.com/blog/2012/1/4/30-free-seamless-background-textures.html"> lostandtaken.com</a></p>
<h3>Vintage Book Textures</h3>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_book-textures1.png" alt="" title="resampled_book textures" width="693" height="190" class="alignleft size-full wp-image-4060" /></p>
<p>These textures can be used in nearly every type of design and are perfect for adding just a hint of texture to your work.</p>
<p>Type: Freebie<br />
Source:<a href="http://lostandtaken.com/blog/2011/10/28/25-deconstructed-vintage-book-textures.html"> lostandtaken.com</a></p>
<p>These are just some of the thousands of textures you can find on the net, as we presented some categories you might be interested in using. Research is important when putting something artsy together so all you have to do is search and be patient until you find something suitable for your design. </p>
<p>We have also find some inspirational websites that might serve as examples of good texture use. </p>
<h2>Sample Practices</h2>
<p><img class="framed"src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_james-childers.png" alt=""  width="690" height="190" class="alignleft size-full wp-image-4063" /></p>
<p>This is a <a href="http://www.jchilders.com/">website</a> that is minimalist in using colors and graphics, but the great combination of using 2 types of textures has inspired me to post it. </p>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_wbe-sample.png" alt=""  width="690" height="190" class="alignleft size-full wp-image-4068" /></p>
<p>I really liked the colors used on this <a href="http://www.bahur78.com/">website</a>. The textures reminded me of vintage notebooks or some kind of old papers that perfectly match all the website and the way that content is presented on it. </p>
<p><img class="framed" target="_blank" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_Untitled.png" alt=""width="691" height="190" class="alignleft size-full wp-image-4072" /></p>
<p>The <a href="http://www.jimmymelrose.com/">website</a> dedicated to a successful South Australian aviator is a really good choice of textures and graphics, concentrating on vintage elements that simply blend greatly together. </p>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/resampled_human-jukebox.png" alt="" title="resampled_human jukebox" width="690" height="190" class="alignleft size-full wp-image-4076" /></p>
<p>The sandy textured background is a good choice for the color palette used on the <a href="http://www.kezjukebox.com/">Kez</a> website. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/inspiration-textures-in-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Bootstrap: The Ultimate Resources Roundup</title>
		<link>http://blog.wearepropeople.com/twitter-bootstrap-the-ultimate-resources-roundup/</link>
		<comments>http://blog.wearepropeople.com/twitter-bootstrap-the-ultimate-resources-roundup/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 13:24:55 +0000</pubDate>
		<dc:creator>Stefan Nistor</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=3999</guid>
		<description><![CDATA[A list of tutorials, tools and other brilliant resources that you may find useful in order to find out more about Twitter Bootstrap and how to use it for your own applications and websites.]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a> is a front-end toolkit released by Twitter for rapid developing of web applications. It contains HTML and CSS-based design templates for typography and, according to <a href="http://en.wikipedia.org/wiki/Twitter_Bootstrap" target="_blank">Wikipedia</a>, it is the most popular project in GitHub and is used by NASA and MSNBC.</p>
<p>We came up with a list of tutorials, tools and other brilliant resources that you may find useful in order to find out more about Twitter Bootstrap and how to use it for your own applications and websites. Enjoy! </p>
<div class="separator"></div>
<h2>Articles &amp; Tutorials</h2>
<div class="separator"></div>
<h3>Building Twitter Bootstrap</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot1.png" alt="" width="690" height="190" /><br />
“The decision to create Bootstrap as a style guide came naturally out of our design and development process. Bootstrap helps us document components with live examples as we build them, while serving as a living document powered by itself, the very components and templates it prescribes. It gave us a single point of reference to share guidance from designers and created a set of documentation for each living component&#8230;”<br />
<a class="gray" href="http://www.alistapart.com/articles/building-twitter-bootstrap/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Twitter Bootstrap 101: Introduction</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot2.png" alt="" width="690" height="190" /><br />
“Twitter’s Bootstrap is an excellent set of carefully crafted user interface elements, layouts, and javascript tools, freely available to use in your next web design project. This video series aims to introduce you to Bootstrap; taking you all the way from downloading the resources, to building a complete Bootstrap-based website&#8230;”<br />
<a class="gray" href="http://webdesign.tutsplus.com/tutorials/complete-websites/twitter-bootstrap-101-introduction/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Bootstrap from Twitter</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot3.png" alt="" width="690" height="190" /><br />
“At its core, Bootstrap is just CSS, but it&#8217;s built with Less, a flexible pre-processor that offers much more power and flexibility than regular CSS. With Less, we gain a range of features like nested declarations, variables, mixins, operations, and color functions. Additionally, since Bootstrap is purely CSS when compiled via Less, we gain two important benefits&#8230;”<br />
<a class="gray" href="https://dev.twitter.com/blog/bootstrap-twitter" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Sample App with Backbone.js and Twitter Bootstrap</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot4.png" alt="" width="690" height="190" /><br />
“To give this combination a try, I put together a new sample application that uses Backbone.js to organize the code, and Twitter Bootstrap to organize the UI. The application is an Employee Directory that allows you to look for employees by name, view the details of an employee, and navigate up and down the Org Chart by clicking the employee’s manager or any of his/her direct reports&#8230;”<br />
<a class="gray" href="http://coenraets.org/blog/2012/02/sample-app-with-backbone-js-and-twitter-bootstrap/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Twitter Bootstrap tutorial</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot5.png" alt="" width="690" height="190" /><br />
“In this and consequent pages, w3resource covers Twitter Bootstrap tool in detail, which will equip you to build web apps and sites using the tool. Twitter Bootstrap is created with modern browsers in mind. So, you will find it working perfectly with all the modern versions of Chrome, Firefox, Safari, Opera and Internet Explorer. In &#8220;Twitter Bootstrap Tutorial&#8221; you will learn the following&#8230;”<br />
<a class="gray" href="http://www.w3resource.com/twitter-bootstrap/tutorial.php" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Adding Twitter&#8217;s Bootstrap CSS to your Rails app</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot6.png" alt="" width="690" height="190" /><br />
“Twitter’s new CSS toolkit, Bootstrap, is all the rage these days. I explain how to get the CSS, and optionally the mixins and the JavaScript, into your Rails app&#8230;”<br />
<a class="gray" href="http://www.opinionatedprogrammer.com/2011/11/twitter-bootstrap-on-rails/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Why We Love Twitter’s Bootstrap</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot7.png" alt="" width="690" height="190" /><br />
“One of the reasons we landed with Bootstrap is that it was most simply a great place to start. With things like a intuitive grid system, responsive layout design, and CSS3/HTML5 readiness we knew that it would be the best foundation for us as a development team and for the end-user at large&#8230;”<br />
<a class="gray" href="http://8bit.io/blog/twitter-bootstrap/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Bootstrap From Twitter Is A New Web Designer’s Dream</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot8.png" alt="" width="690" height="190" /><br />
“Especially as a newbie without the necessary skills to write it first hand, it’s very tempting to use different snippets of code for different tasks, but Bootstrap merges these all together into one, easy-to-use library. As a bonus, it’s written by developers of one of the world’s most popular websites, offering some security into making sure your site works with these elements&#8230;”<br />
<a class="gray" href="http://web.appstorm.net/general/app-news/bootstrap-from-twitter-is-a-new-web-designers-dream/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Using Twitter Bootstrap with Jekyll</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot9.png" alt="" width="690" height="190" /><br />
“While you’re getting your feet wet, use the Twitter Bootstrap Customize and download page to build and customize a Bootstrap package. From there, you can generate a zip file containing the Bootstrap images, compiled CSS files, and bundled Javascript (including minified and unminified versions).<br />
To make it easy to update, unpack the resulting zip file in a bootstrap directory, underneath your Jekyll source directory. Then, drop it into your HTML layout(s). For instance&#8230;”<br />
<a class="gray" href="http://brizzled.clapper.org/blog/2012/03/05/using-twitter-bootstrap-with-jekyll/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Develop quickly with Twitter Bootstrap</h3>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/boot10.png" alt="" width="690" height="190" /><br />
“Bootstrap provides various elements for developers to use, ranging from scaffolding to jQuery components. The scaffolding gives developers an easy way to build complex layouts based on a 12-grid system. This is all based on a system of various div tags with classes that associate the width of said div. For example, if you want a 3-column layout in a 12-column grid system, you could use three div tags with the class span4&#8230;”<br />
<a class="gray" href="http://saforian.com/blog/2012/03/develop-quickly-with-twitter-bootstrap/" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h2>Bootstrap Tools</h2>
<div class="separator"></div>
<h3>jQuery UI Bootstrap</h3>
<p>“With this theme, not only do you get the ability to use Bootstrap-themed widgets, but you can now also use (most) of Twitter Bootstrap side-by-wide with it without components breaking visually.”<br />
<a class="gray" href="http://addyosmani.github.com/jquery-ui-bootstrap/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Twitter Bootstrap jQuery Mobile Theme</h3>
<p>“This theme overrides the existing jQuery Mobile A &#8211; E swatches (and adds an F swatch as well) with colors and styles found in Twitter Bootstrap. It&#8217;s meant to be used with A as the primary swatch for the page, and B &#8211; F as accents as needed.”<br />
<a class="gray" href="https://github.com/commadelimited/jQuery-Mobile-Bootstrap-Theme" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Colorpicker and Datepicker for Twitter Bootstrap</h3>
<p>“Add color picker to field or to any other element. Can be used as a component, alpha picker and multiple formats: hex, rgb, rgba, hsl, hsla.  Also includes a datepicker picker to field or to any other element. Can be used as a component, formats: dd, d, mm, m, yyyy, yy; separators: -, /, . ”<br />
<a class="gray" href="http://www.eyecon.ro/colorpicker-and-datepicker-for-twitter-bootstrap.htm" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Bootswatch</h3>
<p>“Bootswatch includes a comprehensive list of free themes for Twitter Bootstrap and they can be used by simply downloading and replacing the CSS file.”<br />
<a class="gray" href="http://bootswatch.com/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Django Toolkit for integration with Twitter&#8217;s Bootstrap</h3>
<p>“The title says it all. A great toolkit meant to integrate django with twitter Bootstrap.”<br />
<a class="gray" href="https://github.com/dyve/django-bootstrap-toolkit" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Twitter bootstrap UI (drupal module)</h3>
<p>“This is an enhancement module for the Twitter Bootstrap theme. Currently it provides the following functionality: Libraries API support for the Twitter Bootstrap library.”<br />
<a class="gray" href="http://drupal.org/project/twitter_bootstrap_ui" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Twitter Bootstrap Generator Tool </h3>
<p>“Bootstrap Generator is twitter bootstrap generator tool created by martinbean for use in kick-starting your app/projects that use Twitter Bootstrap CSS framework. Simply configure the options, click “Generate” and receive your own, compiled Bootstrap CSS file ready to work with!”<br />
<a class="gray" href="http://blogupstairs.com/twitter-bootstrap-generator-tool/" target="_blank">check it out</a></p>
<div class="separator"></div>
<h3>Fbootstrapp</h3>
<p>“Fbootstrapp is a facebook gui toolkit, designed to kickstart development of facebook iframe apps in both relevant sizes. It’s created by Clemens Krack, based on Twitter’s Bootstrap.”<br />
<a class="gray" href="http://blogupstairs.com/facebook-gui-toolkit-based-on-bootstrap-from-twitter-fbootstrapp/" target="_blank">check it out</a></p>
<div class="separator-double"></div>
<h2>Videos</h2>
<div class="separator"></div>
<h3>How to use Twitter Bootstrap</h3>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/_Wo9JxLIQYg" frameborder="0" allowfullscreen></iframe></p>
<div class="separator"></div>
<h3>Twitter Bootstrap 101: Introducing 2.0</h3>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/DgwtRpf60xI" frameborder="0" allowfullscreen></iframe></p>
<div class="separator"></div>
<h3>Setting up Twitter Bootstrap Tutorial</h3>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/hy5PGJuBHIg" frameborder="0" allowfullscreen></iframe></p>
<div class="separator"></div>
<h3>Twitter Bootstrap 101: Tabs and Pills</h3>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/vWX39R8jAMI" frameborder="0" allowfullscreen></iframe></p>
<div class="separator"></div>
<h3>Twitter Bootstrap 101: Navbar Markup</h3>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/cdetolfplHU" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/twitter-bootstrap-the-ultimate-resources-roundup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Symfony 2 Meets Drupal 8</title>
		<link>http://blog.wearepropeople.com/symfony-2-meets-drupal-8/</link>
		<comments>http://blog.wearepropeople.com/symfony-2-meets-drupal-8/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 07:32:04 +0000</pubDate>
		<dc:creator>Corina Ciripitca</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[drupal 8]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP components]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://blog.wearepropeople.com/?p=3940</guid>
		<description><![CDATA[Drupal has evolved into a powerful content management system over the years, becoming more and more complex. Luckily there is always a chance to improve it and here Symfony 2 comes into the picture. 
]]></description>
			<content:encoded><![CDATA[<p>Drupal has evolved into a powerful content management system over the years, becoming more and more complex. Luckily there is always a chance to improve it and here Symfony 2 comes into the picture. </p>
<p>Because of Drupal becoming more complicated since its beginnings, it has become a little bit of a challenge for people that just started using it. Complexity is often feared by big software projects, as well as by developers that use it. </p>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/web-services.jpg" alt="" title="web-services" width="680" height="180" class="aligncenter size-full wp-image-3961" /><br />
image: <a href="http://webserviceguide.com">webserviceguide.com</a></p>
<p>There is too much custom code that can be found in the core of Drupal, and due to the fact that standardized patterns and components are rarely used, it is often hard for both experienced PHP developers and novices in the subject to understand it at its full. Dries Buytaert – the inventor of Drupal states that one good approach is by using standardized patterns and components.</p>
<p>The Internet is mostly heading towards web services lately, going mobile. This sets new rules and expectations for Drupal and all the other content management systems, bringing out the need for more flexible page and layout capabilities.  Luckily the Drupal community of developers has thought about this, coming up with ideas on how to improve it. One of them is by collaborating with fellow developers, in this case we are talking about Symfony 2. </p>
<p>Symfony 2.0 is a company that provides web services which is MIT licensed and GPL compatible. It offers a reusable set of standalone PHP components that solve big web development issues when it comes to coding. Drupal 8 is adapting some of Symfony 2’s components that will definitely help the Drupal community build a more powerful and flexible system that would be less complicated to master. </p>
<p><img class="framed" src="http://blog.wearepropeople.com/wp-content/uploads/2012/04/phpcode-287392.jpg" alt="" title="phpcode-287392" width="690" height="190" class="aligncenter size-full wp-image-3969" /><br />
image:<a href="http://www.freecodesource.com"> freecodesource</a></p>
<p>You can find the full list of components provided by Symfony 2 in Drupal 8 in the presentations at Drupalcon events, but here is just some of them: </p>
<ul>
<li>
drupal_set_message() could be replaced by Symfony 2 “flash message” which is a feature that passes messages to the very next request. This is done quicker than the older version in Drupal. Although this component is not yet fully compatible with Drupal 8, they are seriously working on it on order to make it happen until its launch. </li>
<p></p>
<li>
The ClassLoader Component is another potential component to be found in Drupal 8. It loads your project classes automatically if they follow some standard PHP conventions which will be adopted by Drupal soon.<br />
Whenever you use an undefined class, PHP uses the auto loading mechanism to delegate the loading of a file defining the class. Symfony2 provides a &#8220;universal&#8221; autoloader, which is able to load classes from files that implement a set of conventions. You can find more information about this component on Symfony 2 website. </li>
<p></p>
<li>HTTP Foundation is another very important Symfony 2 component to be interated with Drupal 8. The HttpFoundation Component defines an object-oriented layer for the HTTP specification. In PHP, the request is represented by some global variables ($_GET, $_POST, $_FILE, $_COOKIE, $_SESSION&#8230;) and the response is generated by some functions (echo, header, setcookie, &#8230;). The Symfony2 HttpFoundation component replaces these default PHP global variables and functions by an Object-Oriented layer. </li>
<p></p>
<li>Routes will be a component used by Drupal 8, but with several modifications for it to be compatible. </li>
<p></p>
<li>Event Dispacher </li>
<p></p>
<li>HTTP Caching</li>
<p></p>
<li>and more to come</li>
</ul>
<p>There is still much place for discussions about this collaboration and many others to come, so that you are more then welcome to join the discussion. We will keep you posted with other fresh news as we find out about them. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wearepropeople.com/symfony-2-meets-drupal-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

