<?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>Uplifted</title>
	<atom:link href="http://www.uplifted.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.uplifted.net</link>
	<description></description>
	<lastBuildDate>Wed, 15 May 2013 17:53:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Debugging Rails Errors on Heroku</title>
		<link>http://www.uplifted.net/programming/debugging-rails-errors-on-heroku/</link>
		<comments>http://www.uplifted.net/programming/debugging-rails-errors-on-heroku/#comments</comments>
		<pubDate>Wed, 15 May 2013 17:49:38 +0000</pubDate>
		<dc:creator>Brian Knoles</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[500 error page]]></category>
		<category><![CDATA[Heroku]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=864</guid>
		<description><![CDATA[Production vs. Developement for Debugging Recently, we ran into an issue on a Rails application we are hosting on Heroku, which caused a dreaded 500 error. In the development environment, Rails spits out a helpful HTML page showing information about the error and the stack trace from the request. There are also many tools to [...]]]></description>
				<content:encoded><![CDATA[<h2></h2>
<p><a href="http://www.uplifted.net/wp-content/uploads/2013/05/debugging.jpg"><img class="aligncenter size-full wp-image-884" alt="debugging" src="http://www.uplifted.net/wp-content/uploads/2013/05/debugging.jpg" width="540" height="265" /></a></p>
<h2>Production vs. Developement for Debugging</h2>
<p>Recently, we ran into an issue on a Rails application we are hosting on Heroku, which caused a dreaded 500 error.</p>
<p>In the development environment, Rails spits out a helpful HTML page showing information about the error and the stack trace from the request. There are also <a title="Debugging Rails Applications" href="http://guides.rubyonrails.org/debugging_rails_applications.html" target="_blank">many tools</a> to help you debug your application, but normally I just use a combination of the stack trace HTML, the detailed server logs and the Rails console.</p>
<p>The production environment is different, though. It doesn’t make any sense to show all that information to a user, so Rails will serve a stack 500 error page in the event of an error. Also, since production code should be bug free, the server logs are much less detailed by default.</p>
<p>So how do we track down what is causing our error on our Heroku application?</p>
<h2>Heroku Setup</h2>
<p>Using some trickery in our environment files and the environment variables on Heroku, we made it easy to control the error behavior of our servers.</p>
<p>We have two separate applications running on different environments:</p>
<ul>
<li>Production environment (ruby-1.9.3, rails 3.2.12)</li>
<li>Staging environment, (ruby-1.9.3, rails 3.2.12), nearly identical to production*</li>
</ul>
<p>In order to get more verbose logging output, we added this line to both <code>config/environments/staging.rb</code> and <code>config/environments/production.rb</code></p>
<pre class="prettify" lang="ruby"><code># staging.rb, production.rb

# Log detail is configurable on the server
config.log_level = ENV['LOG_LEVEL'] ? ENV['LOG_LEVEL'].to_sym : ('info').to_sym
</code></pre>
<p>This checks our <a title="Heroku Configuration" href="https://devcenter.heroku.com/articles/config-vars" target="_blank">Heroku config</a> for a <code>LOG_LEVEL</code> variable. If it’s not set, we default to the ‘info’ log level. Now, to get more verbose output on our Heroku staging server logs I can do this:</p>
<pre class="prettify"><code>$ heroku config:set LOG_LEVEL=debug --remote staging
$ heroku logs --tail --remote staging
</code></pre>
<p>When I have figured out the error, I can switch the server back to its default logging by</p>
<pre class="prettify"><code>$ heroku config:unset LOG_LEVEL --remote staging
or
$ heroku config:set LOG_LEVEL=info --remote staging
</code></pre>
<h2>*BONUS POINTS:</h2>
<p>To make debugging even easier on the staging server, we changed a line in <code>config/environments/staging.rb</code></p>
<pre class="prettify"><code>#staging.rb
config.consider_all_requests_local = ENV['CONSIDER_REQUESTS_LOCAL']
</code></pre>
<p>Now I can set <code>CONSIDER_REQUESTS_LOCAL</code> on the server like this:</p>
<pre class="prettify">$ heroku config:set CONSIDER_REQUESTS_LOCAL=true --remote staging</pre>
<p>and the staging server will now serve the application trace as an HTML page when there is an error. We did NOT do this on the production server, as we never want to show that detail to a real user of the application.</p>
<p>With this setup, it was really easy to figure out that we had a configuration setting stored in the database that needed to be updated, and we were off to bigger, better problems!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/programming/debugging-rails-errors-on-heroku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eliminating Chaos using Scrum Methodology</title>
		<link>http://www.uplifted.net/culture/eliminating-chaos-using-scrum-methodology/</link>
		<comments>http://www.uplifted.net/culture/eliminating-chaos-using-scrum-methodology/#comments</comments>
		<pubDate>Wed, 08 May 2013 16:20:27 +0000</pubDate>
		<dc:creator>Anya Yershov</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=820</guid>
		<description><![CDATA[Here at Uplifted, we don&#8217;t love the word &#8216;scrum&#8217; but we love what it has done for our clients. Below is a case study of how we utilized scrum methodology in order to transform a one-time website creation into an ongoing website development project. After building a website for our client, we worked with them [...]]]></description>
				<content:encoded><![CDATA[<p dir="ltr" style="text-align: center;"><img class="aligncenter size-full wp-image-823" alt="rugby  pic for scrum methodology" src="http://www.uplifted.net/wp-content/uploads/2013/05/rugby-pic-for-scrum-methodology.jpg" width="413" height="295" /></p>
<p dir="ltr">Here at Uplifted, we don&#8217;t love the word &#8216;scrum&#8217; but we love what it has done for our clients. Below is a case study of how we utilized <a title="Learn About Scrum" href="http://www.scrumalliance.org/learn_about_scrum" target="_blank">scrum methodology</a> in order to transform a one-time website creation into an ongoing website development project.</p>
<p>After building a website for our client, we worked with them to continually optimize and grow the site. Without project framework in place, the process was chaotic and unpredictable. Changes were requested one by one and we were reacting rather than strategizing. After several months of this craziness, we decided to try out a simplified scrum method in order to stabilize the project.</p>
<p><strong>What is Scrum Methodology?</strong></p>
<p dir="ltr">On a basic level, scrum involves creating a running list of changes to be made which are then grouped together into shorter, ongoing projects known as sprints. At the end of each sprint of our project, a set of changes were deployed to the website and then you evaluate, prioritize, and start the next sprint cycle. The results had shown that the relationship had completely turned around and became one of our most dynamic, rapidly-growing projects.</p>
<p>This is how Scrum can work for your team:</p>
<p><strong>1. Create a project backlog</strong></p>
<p dir="ltr">Create a comprehensive wish-list of all the changes and updates needed to be made to the product.  This is called the &#8220;product backlog.&#8221;  This is a live document that the client can add to at any time. The items on the backlog can start off as very high-level, but when you&#8217;re ready to move them into a sprint, they need to be broken down into specific, testable changes that can be completed in a timely deadline (for our sprints we use three weeks time-frames).</p>
<p><strong>2. Set up the scrum calendar</strong></p>
<p dir="ltr">Plan ahead for several sprints. For our three week sprints, the timing is structured like this:</p>
<p dir="ltr">Day 1: Backlog planning meeting &#8211; meet with the client to evaluate the last sprint and define what to include in the next sprint.</p>
<p dir="ltr">Day 3: Start coding &#8211; developers have all the information they need to get started.</p>
<p dir="ltr">Day 17: Ready to test &#8211; all the requested changes are on the test environment, ready for the client to test.</p>
<p dir="ltr">Day 21: Deploy to production</p>
<p><strong>3. Measure and adjust</strong></p>
<p dir="ltr">Keep track of how much gets done within each sprint to make sure the pace is ideal for you and your client.  For us, three weeks was the ideal amount of time that allows us to complete significant changes to the product, while giving the client the flexibility to evaluate and re-prioritize frequently.</p>
<p>Overall, the benefits have been huge for both us and our client.  Our client is happy because of how quickly their site is evolving.  They know exactly what to expect at the end of each sprint and have the flexibility to re-prioritize every three weeks. Our developers are happy because they can plan their work instead of putting out fires and doing constant deployments. By using a core strategy for your development changes, not only are you strategizing, but you are in control of your projects.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/culture/eliminating-chaos-using-scrum-methodology/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Advantages and Disadvantages of Basing your Design on an Existing WordPress Theme</title>
		<link>http://www.uplifted.net/design/the-advantages-and-disadvantages-of-basing-your-design-on-an-existing-wordpress-theme/</link>
		<comments>http://www.uplifted.net/design/the-advantages-and-disadvantages-of-basing-your-design-on-an-existing-wordpress-theme/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 02:05:45 +0000</pubDate>
		<dc:creator>Jennie Keinard</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=761</guid>
		<description><![CDATA[WordPress is not only one of the most popular blogging platforms these days, but also a powerful and highly customizable CMS (content management system), making it a smart (and popular) choice for a very wide range of sites &#8211; from e-commerce and magazines to your typical personal blog. Both free and paid themes makes it [...]]]></description>
				<content:encoded><![CDATA[<p dir="ltr"><a href="http://www.uplifted.net/wp-content/uploads/2013/04/Wordpress_adv-disadv_header1.jpg"><img class="aligncenter size-full wp-image-773" alt="Wordpress_adv-disadv_header" src="http://www.uplifted.net/wp-content/uploads/2013/04/Wordpress_adv-disadv_header1.jpg" width="620" height="400" /></a></p>
<p dir="ltr">WordPress is not only one of the most popular blogging platforms these days, but also a powerful and highly customizable CMS (content management system), making it a smart (and popular) choice for a very wide range of sites &#8211; from e-commerce and magazines to your typical personal blog. Both free and paid themes makes it relatively simple for just about anyone to quickly launch a nice looking, fully functioning site. But, of course, clients want their website to stand out from the rest and express their unique personality, so we offer our clients an economical compromise which lies between the out-of-the-box template and the built-from-scratch one.</p>
<p><b> </b>We purchase a theme (or you can download a nice quality, free one) and make customized changes to the colors, fonts, layout, functionality, etc. The code and backend structure are determined primarily by the theme you choose, or even by the structure of WordPress itself, and have their own list of pros and cons; but, for the purpose of this post, we’ll just be focusing on the design perspective only.</p>
<p><strong>Advantages</strong></p>
<p dir="ltr"><strong>+</strong> In addition to the code, existing themes often come with a psd document that helps you quickly lay the groundwork for your layout, even if you plan to make a lot of changes. This leaves you more time to spend thinking about design and less time wasted, laying out your grid, lorem ipsuming in content blocks, etc.</p>
<p dir="ltr"><a href="http://www.uplifted.net/wp-content/uploads/2013/04/Wordpress_advantage.jpg"><img class="alignleft size-medium wp-image-770" alt="Wordpress_advantage" src="http://www.uplifted.net/wp-content/uploads/2013/04/Wordpress_advantage-300x193.jpg" width="300" height="193" /></a></p>
<p dir="ltr"><strong>+</strong> Many templates these days come already optimized for responsive design, which streamlines the design process. Even if you make tweaks, the basic layout is already structured to adapt well to other screen sizes, leaving you with prepared solutions to tweak or even improve.</p>
<p dir="ltr"><strong>+</strong> Many templates also include powerful plugins, such as slider banners and add-ons for specific types of sites (ie. e-commerce, classes, restaurants, etc). Although as designers we are primarily creators, it’s not always necessary to reinvent the wheel. These plugins can offer at least basic layout options, leaving you free to embellish as needed.</p>
<p dir="ltr"><strong>+</strong> There are thousands of themes to pick from. Not all themes are created equal, but with so many options, there are some really nice designs out there. You can think of this theme-tweaking process as a collaboration with another designer and can even add more variation to your portfolio.</p>
<p><b> </b><strong>Disadvantages</strong></p>
<p dir="ltr"><strong>-</strong> Many themes, even purchased ones, only provide the psd for the homepage. Although this is a great start, if you’re going to be customizing the theme in any level of depth, chances are you’ll be changing elements on the interior templates as well and will need to create your own templates more or less from scratch.</p>
<p dir="ltr"><a href="http://www.uplifted.net/wp-content/uploads/2013/04/Wordpress_disadvantage.jpg"><img class="alignleft size-medium wp-image-771" alt="Wordpress_disadvantage" src="http://www.uplifted.net/wp-content/uploads/2013/04/Wordpress_disadvantage-300x193.jpg" width="300" height="193" /></a></p>
<p><b> </b><strong>-</strong> Many themes don’t include the fonts used in the original design. So if this was one of the elements you were planning to keep, you will still need to find fonts yourself. Depending on the font, this could increase your cost dramatically, waste your time hunting for obscure fonts.</p>
<p dir="ltr"><strong>-</strong> Some elements and tools offered by WordPress are frequently built into themes and can later prove an impediment to the design on interior pages. For example, widgetized sidebars put restrictions on how you utilize those spaces and add unique content, such as banners, without creating another template.  It can also cause problems that make it difficult to manage content in the future.</p>
<p dir="ltr"><strong>-</strong> WordPress is not just a CMS &#8211; it’s a blog, which can be a negative for clients who want a simple brochure site and have no plans of blogging. Since the backend is structured for and uses the language of a blog, clients can get a bit confused when they go in to manage content on their own. Be sure to educate your clients early on in the project, so they know exactly what they can expect.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/design/the-advantages-and-disadvantages-of-basing-your-design-on-an-existing-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Chrome Browser Trick: Clear your Cache for a Single Page</title>
		<link>http://www.uplifted.net/programming/google-chrome-browser-trick-clear-your-cache-for-a-single-page-2/</link>
		<comments>http://www.uplifted.net/programming/google-chrome-browser-trick-clear-your-cache-for-a-single-page-2/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 18:21:25 +0000</pubDate>
		<dc:creator>Brian Knoles</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Google Chrome]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=749</guid>
		<description><![CDATA[The browser cache is a wonderful thing.  Automagically, large files such as images, media, CSS and javascript will download to your hard drive when you first visit a site.  What this means for you is that websites will load much faster the second time you visit them, because many of the files required to view [...]]]></description>
				<content:encoded><![CDATA[<p dir="ltr">The browser cache is a wonderful thing.  Automagically, large files such as images, media, CSS and javascript will download to your hard drive when you first visit a site.  What this means for you is that websites will load much faster the second time you visit them, because many of the files required to view the page will already be on your hard drive.</p>
<p> There are times, though, when you want to have the latest version of a file rather than the stored version on your computer.  Let’s say for example that your designer makes a change to the CSS file for a page, changing the background color from bright pink to a much more palatable soft gray.</p>
<p dir="ltr"><a href="http://www.uplifted.net/wp-content/uploads/2013/04/yikes.jpg"><img class=" wp-image-708 alignnone" alt="yikes" src="http://www.uplifted.net/wp-content/uploads/2013/04/yikes.jpg" width="465" height="203" /></a></p>
<div></div>
<div>Yikes, indeed.</div>
<div></div>
<div></div>
<div><a href="http://www.uplifted.net/wp-content/uploads/2013/04/not-yikes.jpg"><img class=" wp-image-709 alignnone" alt="not yikes" src="http://www.uplifted.net/wp-content/uploads/2013/04/not-yikes.jpg" width="466" height="194" /></a></p>
<div></div>
<div>Much better.</p>
<div></div>
<div>If this change is done and uploaded to the web server <strong>without changing the filename, you will be stuck with old file</strong>.</p>
<p dir="ltr">In this case, you need to get rid of the cache for this page.  Most browsers have an option in the settings to clear the entire cache, but this is overkill.  Chrome has in <a href="https://support.google.com/chrome/bin/answer.py?hl=en&amp;answer=157179&amp;topic=25799&amp;rd=2">its documentation</a> that Ctrl+F5 or shift+F5 should reload the page without the cache, but there are many users reporting that this doesn’t always work for them.</p>
<p dir="ltr">What does work is a little trick using the browser’s built in developer tools.  These are a set of tools that allow you to view the HTML structure of the page and do fun things like execute javascript on the page. For our purposes, we only want to adjust one option in the settings. There are keyboard shortcuts to open the developer tools, but it’s probably easier just to right-click anywhere on the page and select “Inspect Element.”</p>
</div>
<div><a href="http://www.uplifted.net/wp-content/uploads/2013/04/pic-3.jpg"><img class=" wp-image-710 alignnone" alt="pic 3" src="http://www.uplifted.net/wp-content/uploads/2013/04/pic-3.jpg" width="494" height="298" /></a></div>
<div>
<p dir="ltr">The next step is to disable the cache in the settings. By disabling the cache, chrome will reliably ignore cached material <strong>whenever the development tools window is open.</strong> This means your browser will function normally unless you open the dev tools.</p>
<p dir="ltr"><a href="http://www.uplifted.net/wp-content/uploads/2013/04/pic-4.jpg"><img class=" wp-image-711 alignnone" alt="pic 4" src="http://www.uplifted.net/wp-content/uploads/2013/04/pic-4.jpg" width="490" height="261" /></a></p>
<p dir="ltr">With that simple change, the process for ignoring your cached content is</p>
<ol>
<li dir="ltr">
<p dir="ltr">Right click anywhere on the page</p>
</li>
<li dir="ltr">
<p dir="ltr">Select “Inspect Element” to open the developer tools</p>
</li>
<li dir="ltr">
<p dir="ltr">Refresh the page</p>
</li>
</ol>
<p dir="ltr">Leave the developer tools closed to use your cache normally!  Happy developing/browsing!</p>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/programming/google-chrome-browser-trick-clear-your-cache-for-a-single-page-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Your Own &#8216;Red Team&#8217; to Test Your Processes</title>
		<link>http://www.uplifted.net/culture/create-your-own-red-team-to-test-your-processes/</link>
		<comments>http://www.uplifted.net/culture/create-your-own-red-team-to-test-your-processes/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 03:20:59 +0000</pubDate>
		<dc:creator>Withers Davis</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=584</guid>
		<description><![CDATA[We recently used the concept of a &#8216;red team&#8216; to perform a thorough review of our everyday work processes. It was super easy and the results have been incredible. What is a red team you ask? Traditionally the concept revolves around having a third-party team go through your processes in order to identify any potential weaknesses or gaps. [...]]]></description>
				<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-721" alt="redteam" src="http://www.uplifted.net/wp-content/uploads/2013/04/redteam.jpeg" width="500" height="286" /></p>
<p>We recently used the concept of a &#8216;<a href="http://en.wikipedia.org/wiki/Red_team">red team</a>&#8216; to perform a thorough review of our everyday work processes. It was super easy and the results have been incredible. What is a red team you ask? Traditionally the concept revolves around having a third-party team go through your processes in order to identify any potential weaknesses or gaps. <a href="https://www.youtube.com/watch?v=3obteqT0VJU">Remember Robert Redford in the movie Sneakers</a>? Yeah, that&#8217;s a red team.</p>
<p>Wikipedia defines a red team as an independent group that seeks to challenge an organization in order to improve its effectiveness.</p>
<p>Here&#8217;s a quick guide for how you can create your own red team.</p>
<p><strong>A) Commitment</strong>: The first (and most important) thing to do is to really commit to the idea of a red team. It is very tempting to cut corners, especially if you are busy with client-related work. A red team typically is an independent team, so it is important that you treat your red team exactly as if they were real clients. This includes doing the paperwork things like contracts and invoices. In order to seal the commitment, we had a brief team meeting to go over the concept and get buy-in from the team members.</p>
<p><strong>B) Select Red Team: </strong>You&#8217;ll need to select a team of people from your existing staff that will comprise the red team. These people should not be involved at all in the work that needs to be done (contracts, design, etc), as it is important that they are able to truly act independently of the actual team. Theoretically you could also solicit an external red team, but we think it is just as good to use existing team members.</p>
<p><strong>C) Identify the Scenario:  </strong>Every client is different, and this is equally true to your red team. You&#8217;ll need to identify who the fake client is and what it is they are looking for. The more detail you can put into this scenario definition the better. In our example, we pretended the &#8216;red team&#8217; was a development studio looking for a site design.</p>
<p><strong>D) Get Started!: </strong>Getting started is the easy part. Just have your red team send an inquiry through email and/or your contact form just as a normal customer would</p>
<p><strong>E) Define Processes Every Step of the Way: </strong>This could be the most critical and important part of the entire effort. As you go through the process, it is strongly recommended that you create repeatable processes for every aspect of your business. Be extremely critical of yourselves. If, as you go, you identify a part of your business that is especially sloppy, then stop, design the process, and start again. We use Lucid Charts to document process flows and we love it. Here is an example of a process flow that we came up with during our <a href="https://www.lucidchart.com/publicSegments/view/5170294c-2114-4790-a6ce-2db10a00136c/image.png" target="_blank">red team</a>. At the end of the process you should have clear process flows that define the different parts of your business (e.g. client acquisition, development, invoicing, etc).</p>
<p><strong>Random side note:</strong> Process definition can be extremely annoying for employees, especially if you are a nazi about it. It is critical that your employees have a certain amount of flexibility so they can be creative. So when you define processes we recommend finding your own &#8216;sweet spot&#8217; of specificity.</p>
<p><strong>F) Complete the Job: </strong>As you go through your red team exercise there will be a very real possibility that something more critical will come up. Maybe client X has yet another super duper emergency that you need to handle. That&#8217;s fine, the customer should always come first. Just don&#8217;t half-ass your red team. Finish the job!</p>
<p><strong>G) Wrap it All Up: </strong>We recommend holding a wrap-up meeting with all of the parties involved to go over what you have learned. Ideally this would start as a presentation from the leader of the team reviewing what happened and what was learned. Follow that by a team-wide discussion about both the red-team concept and about what changes will come out of the review.</p>
<p>We&#8217;ve found that a red team is incredibly useful for our business. In some ways it was like therapy for the business.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/culture/create-your-own-red-team-to-test-your-processes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>An Uplifted Review of TweetAdder: How to Easily Build Your Twitter Following</title>
		<link>http://www.uplifted.net/social-media/an-uplifted-review-of-tweetadder-how-to-easily-build-your-twitter-following/</link>
		<comments>http://www.uplifted.net/social-media/an-uplifted-review-of-tweetadder-how-to-easily-build-your-twitter-following/#comments</comments>
		<pubDate>Wed, 10 Apr 2013 23:12:17 +0000</pubDate>
		<dc:creator>Katie Griffing</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[marketing tools]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=692</guid>
		<description><![CDATA[Growing a community of followers on Twitter is a time-consuming task and can be difficult without the right tools. The well-known secret to freeing up your valuable time is by automating your tasks; however, there have been many cases in which Twitter has banned accounts who use automation services. So how can you automatically manage [...]]]></description>
				<content:encoded><![CDATA[<p>Growing a community of followers on Twitter is a time-consuming task and can be difficult without the right tools. The well-known secret to freeing up your valuable time is by automating your tasks; however, there have been many cases in which Twitter has banned accounts who use automation services. So how can you automatically manage your Twitter accounts so you focus on interactions and conversations? With just a few minutes a day on<a href="http://www.tweetadder.com/"> TweetAdder</a>, you can automatically increase your Twitter followers and unfollow people who aren’t following you back.</p>
<p><a href="http://www.uplifted.net/wp-content/uploads/2013/04/tweetadder.jpg"><img class="alignleft size-full wp-image-704" alt="tweetadder" src="http://www.uplifted.net/wp-content/uploads/2013/04/tweetadder.jpg" width="281" height="145" /></a></p>
<p>TweetAdder is a downloadable, automated software for Twitter that is loaded with useful management and search tools. The key to successfully using the software is to first find the most influential people in your market niche and then begin following their accounts and their followers. It is recommended not to follow more than 200 people a day when you start. After two or three days the people you followed will start following you back and then two or three days after thatTweetAdder will start unfollowing anyone who did not follow you back, and the process repeats. Simply put &#8211; it is one of the easiest ways to gain followers on Twitter in a short amount of time and the best part is your new followers are more likely to share the same interests as you.</p>
<p>Here are a few of the other advantages TweetAdder has over other automation services:</p>
<ul>
<li>Manage multiple accounts in one window without having to log-in and out of your Twitter profiles.</li>
<li>Complete control over what you want to automate and what you want to keep manual</li>
<li>Extensive search tools (tweet search, profile search, location search, profile data search, search by follower or following).</li>
<li>Automate tweets and direct messaging .</li>
</ul>
<p>A large increase in followings may still take some time to achieve; however with more followers and continually sharing your blog posts or website pages on Twitter, you can increase your social reach and drive more traffic to your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/social-media/an-uplifted-review-of-tweetadder-how-to-easily-build-your-twitter-following/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What NOT to Share on Social Media</title>
		<link>http://www.uplifted.net/social-media/what-not-to-share-on-social-media/</link>
		<comments>http://www.uplifted.net/social-media/what-not-to-share-on-social-media/#comments</comments>
		<pubDate>Fri, 15 Mar 2013 20:13:18 +0000</pubDate>
		<dc:creator>Nora Leary</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=543</guid>
		<description><![CDATA[We’re always talking about ‘shareability’ and what to do to make sure your content is read and passed along. However, sometimes you need to take a step back and look at what not to share. Though it is encouraged to show your personality on your social media outlets, there are some things that just belong [...]]]></description>
				<content:encoded><![CDATA[<p>We’re always talking about ‘shareability’ and what to do to make sure your content is read and passed along. However, sometimes you need to take a step back and look at what not to share. Though it is encouraged to show your personality on your social media outlets, there are some things that just belong offline.</p>
<p style="text-align: center;"><em>The Top 5 Things NOT to Share on Social Media</em></p>
<p><strong>1. Personal Data</strong><br />
This means your phone number (telemarketers will take it), your full address (city is OK), any credit card pictures (someone will steal that), and any passwords (we all reuse passwords, so someone can now access your bank account). Keep all of that information to yourself; you’ll be better off, trust me.</p>
<p><strong>2. “Personal” Photos</strong><br />
I love seeing new baby pictures, but the ‘baby peeing outside’ picture can stay on your computer album. This also goes for fall down drunk pictures (aren’t you applying for jobs?) and any obscenities. Keep it to yourself, maybe email it to friends, but don’t post that on social media.</p>
<p><strong>3. Something to Piss off your Boss</strong><br />
It’s online &#8211; we can all access it. Posting ‘too lazy to go to work’ on Facebook then calling in sick will come back to haunt you. Pictures of your chugging a beer on your boss’s desk is something that can get you fired. So before you hilariously post something about work, ask yourself: Would my boss be offended by this? If yes, delete immediately.</p>
<p><strong>4. Vacation Dates</strong><br />
Did you post ‘Greece July 10-August 2!!!’? Well now robbers know that they have almost a full month to check up on your house. Some people think this one is really a stretch, but if you aren&#8217;t careful about what you have on your social media profiles, you could put yourself and valuables at risk.</p>
<p><strong>5. Complaints</strong><br />
Are you that person complaining about the weather, your job, your horrible luck, etc? Then you have probably had a lot of people hiding your posts. That’s not so bad, until you really want to use social media and get the word out about something &#8212; you have no audience. Don’t be overly negative, even if you’re feeling down. Pick up the phone and call a friend instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/social-media/what-not-to-share-on-social-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bootstrapping Your New Business: 5 Strategies for Self-Funding Your Startup</title>
		<link>http://www.uplifted.net/startups/bootstrapping-your-new-business-5-strategies-for-self-funding-your-startup/</link>
		<comments>http://www.uplifted.net/startups/bootstrapping-your-new-business-5-strategies-for-self-funding-your-startup/#comments</comments>
		<pubDate>Wed, 16 Jan 2013 14:32:07 +0000</pubDate>
		<dc:creator>Withers Davis</dc:creator>
				<category><![CDATA[Startups]]></category>
		<category><![CDATA[investments]]></category>
		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=517</guid>
		<description><![CDATA[To put it simply, bootstrapping is finding any possible way to finance your startup business needs or grow your business by (almost) any means necessary. If you don’t have any outside funding yet it doesn’t matter! Bootstrapping is all about finding creative ways to finance your idea. Here are some bootstrapping tips if you are [...]]]></description>
				<content:encoded><![CDATA[<p>To put it simply, bootstrapping is finding any possible way to finance your startup business needs or grow your business by (almost) any means necessary. If you don’t have any outside funding yet it doesn’t matter! Bootstrapping is all about finding creative ways to finance your idea. Here are some bootstrapping tips if you are thinking about building your startup alone:</p>
<p><strong>Work Virtually.</strong> Office space can be one of the biggest expenses for any startup. Try working from a home office until you start making money, and always be on the lookout for ways to cut down on your operational costs. When the time does come for needing more space, try a shared workplace.</p>
<p><strong>DIY Networking.</strong> Networking and getting connected can be a tedious task, but doing it yourself at the beginning can save you tons. If you can, train yourself in basic marketing, sales pitches, and other work that can later be outsourced once your startup begins to grow. Keep an eye out for any free local networking events and be ready to pitch your idea and make connections at any given moment.</p>
<p><strong>Re-invest any Profit.</strong> It is not wise to start taking huge salaries the moment your startup starts generating money. Take out what is needed to cover the basics then re-invest the rest of your profit back into your business.</p>
<p><strong>Automate.</strong> Make note of the tasks you do repetitively and find ways to make them more automatic. You can save time and delay hiring outside help if you can pinpoint how to automate daily tasks.</p>
<p><strong>Social Media Marketing.</strong> The best way to market your startup for free is to utilize free social media. You can target your potential customers and stay connected with them without costing anything more than the time you put into it.</p>
<p><strong>Be Patient.</strong> The key to any bootstrapped startup is keeping with it and being patient. Remain consistent with your daily actions and keep focused on your long-term goals.</p>
<p>Growing a business can be slower with bootstrapping, but the best part is that it stays your business!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/startups/bootstrapping-your-new-business-5-strategies-for-self-funding-your-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Tips to Start Using Pinterest to Build Your Brand</title>
		<link>http://www.uplifted.net/social-media/5-tips-to-start-using-pinterest-to-build-your-brand/</link>
		<comments>http://www.uplifted.net/social-media/5-tips-to-start-using-pinterest-to-build-your-brand/#comments</comments>
		<pubDate>Wed, 19 Dec 2012 18:29:40 +0000</pubDate>
		<dc:creator>Withers Davis</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[Pinterest]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=512</guid>
		<description><![CDATA[Pinterest is rapidly evolving into a well-received social network that is capturing new users daily. It has already attracted a wide audience of influential users ranging from large media publications to major retail brands. So how can you utilize Pinterest to promote your brand and build a community of followers? Below are 5 tips to [...]]]></description>
				<content:encoded><![CDATA[<p>Pinterest is rapidly evolving into a well-received social network that is capturing new users daily. It has already attracted a wide audience of influential users ranging from large media publications to major retail brands. So how can you utilize Pinterest to promote your brand and build a community of followers? Below are 5 tips to help get you started.</p>
<p><a href="http://www.uplifted.net/wp-content/uploads/2013/03/Pinterest.png"><img class="size-full wp-image-513 aligncenter" alt="Pinterest" src="http://www.uplifted.net/wp-content/uploads/2013/03/Pinterest.png" width="259" height="112" /></a></p>
<p><strong>Pin Tip #1: Create pin-worthy content</strong><br />
Pinterest is an excellent tool to share your personality and view of the world, all while building relationships with potential and existing customers. Ideally you want to mix personal content while marketing your business, so it is best to try to incorporate your Pinterest content into your blog or website as well. You want people to find something on your board they can relate to and repin to their board. This will increase exposure to your board and ultimately your brand.</p>
<p><strong>Pin Tip #2: Optimize your website for pinning</strong><br />
Adding a “Pin it” icon to all the pages of your website will allow and encourage your visitors to re-pin any images on your website they might like. You should first test pinning images yourself to be sure that your site images are “pinnable.”</p>
<p><strong>Pin Tip #3: Start pinning</strong><br />
The more you can show your audience what a great source you are in your niche by pinning related content, the more you will establish yourself as an inspiring pinner. It is important to visit other websites and pin or re-pin quality content to avoid just pinning your own images (this can become spammy). By creating a good mix between sharing your own content, as well as inspiration from others, you can grow a loyal following.</p>
<p><strong>Pin Tip #4: Promotion</strong><br />
Once you have an active account and a decent following, be sure to place “Follow on Pinterest” buttons on your website, blog, email signature, and anywhere else so you can attract more followers. You can also link back to your website in Pinterest by adding your company’s website and other social media links to your Pinterest profile.</p>
<p><strong>Pin Tip #5: Keep at it</strong><br />
All social media sites require consistent attention in order to be successful and Pinterest is no different. Use free time to browse and add new pins daily or dedicate the job to someone else to keep your account updated so you can attract new followers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/social-media/5-tips-to-start-using-pinterest-to-build-your-brand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Join the Social Media Scene as a Startup</title>
		<link>http://www.uplifted.net/social-media/how-to-join-the-social-media-scene-as-a-startup/</link>
		<comments>http://www.uplifted.net/social-media/how-to-join-the-social-media-scene-as-a-startup/#comments</comments>
		<pubDate>Wed, 14 Nov 2012 20:43:51 +0000</pubDate>
		<dc:creator>Grace Morton</dc:creator>
				<category><![CDATA[PR]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.uplifted.net/?p=369</guid>
		<description><![CDATA[When launching a new startup, there are a lot of factors to deal with and prioritize in the first month. We know you’re building your team, trying to get more funding, but, one of the first things that we believe is important is establishing a presence in social media. Many social media tools will aid [...]]]></description>
				<content:encoded><![CDATA[<p>When launching a new startup, there are a lot of factors to deal with and prioritize in the first month. We know you’re building your team, trying to get more funding, but, one of the first things that we believe is important is establishing a presence in social media. Many social media tools will aid in the growth and strength of your business during your launch. Three main tools you should definitely utilize are Twitter, Facebook, and a company blog. Here&#8217;s an outline of some things to consider before you launch your social media campaigns…</p>
<p>Three main things to understand from the start:</p>
<p>1.) You need to create a voice for your company. What angle are you going to take when approaching your particular market? Funny, serious, informative, etc.?</p>
<p>2.) Once your social media pages are created, add linked buttons on your company website to these outlets in order to increase the number of people following your pages.</p>
<p>3.) Post regularly. Once launched, your social media pages need to stay up-to-date and continuously posted on and added to in order to keep your content interesting, but don’t spam us! Typically 1-2 posts per day in the beginning is just fine.</p>
<p style="text-align: center"><a href="http://www.uplifted.net/wp-content/uploads/2012/11/social-media.jpg"><img class="aligncenter  wp-image-371" src="http://www.uplifted.net/wp-content/uploads/2012/11/social-media.jpg" alt="" width="480" height="160" /></a></p>
<p style="text-align: center"><em>Now for some more outlet-specific tips!</em></p>
<p style="text-align: left"><span style="text-decoration: underline">Twitter</span></p>
<ul>
<li>Make sure to pick a name and handle that reflect your business and logo so it is easily recognizable.</li>
<li>When writing your page description, include only the most important information and add the web link to your company site.</li>
<li>Don&#8217;t post every two minutes. It is easy to go overboard on Twitter, so make sure you are not overloading or spamming your followers with information.</li>
<li>Be sure to follow other people of interest, tweet, re-tweet, and reply to tweets that are related to your business or industry.</li>
<li>Use Hootsuite or another scheduling service, so you don’t need to spend too much time on this.</li>
</ul>
<p><span style="text-decoration: underline">Facebook</span></p>
<ul>
<li>The face of your page is your picture, so pick something that is suitable, appropriate, and eye-catching.</li>
<li>Include your company overview and your mission in the page description, but keep it short and to the point to maintain viewers&#8217; interest.</li>
<li>Facebook is a great place for more involved conversations, so tailor your posts and tone to reflect your brand and the people you are attempting to reach out to.</li>
<li>Post at peak times. It has been seen that Facebook receives the most views between 1 and 4 pm, and Wednesdays at 3pm is the best time to post.</li>
</ul>
<p><span style="text-decoration: underline">Blog</span></p>
<ul>
<li>It is recommended that you post a minimum of 2-3 times a week. If you want to acquire loyal readers, you must be continually coming out with new blogs for them to stay informed and interested. But hey, we get it, you’re busy, so try for at least one per week when starting out.</li>
<li>Do not use your blog as another marketing tool for advertising or self-promoting. Focus your posts on experiences, recent news, insights, etc.</li>
<li>Remember to use the same voice throughout all of your posts. This allows readers to identify with your company and the writer while also giving a personality to your company.</li>
</ul>
<p>Now that you have this awesome and simple outline, get out there and join the world of social media!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uplifted.net/social-media/how-to-join-the-social-media-scene-as-a-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
