<?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>Laz Creative</title>
	<atom:link href="https://lazcreative.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://lazcreative.com/</link>
	<description></description>
	<lastBuildDate>Thu, 19 Mar 2020 17:38:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>

<image>
	<url>https://lazcreative.com/images/cropped-laz-icon-512x512-1-32x32.png</url>
	<title>Laz Creative</title>
	<link>https://lazcreative.com/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Adding swipe support to Bootstrap Carousel 3.0</title>
		<link>https://lazcreative.com/blog/adding-swipe-support-to-bootstrap-carousel-3-0/</link>
					<comments>https://lazcreative.com/blog/adding-swipe-support-to-bootstrap-carousel-3-0/#respond</comments>
		
		<dc:creator><![CDATA[Justin Lazanowski]]></dc:creator>
		<pubDate>Wed, 21 Aug 2013 18:10:10 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Carousel]]></category>
		<category><![CDATA[Hammer.js]]></category>
		<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Swipe]]></category>
		<category><![CDATA[TouchSwipe]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=1956</guid>

					<description><![CDATA[<p>With the release of bootstrap version 3, I thought it would be a good time to review my previous post on adding swipe support to bootstraps carousel and verify that everything still works as expected.&#8230;</p>
<p>The post <a href="https://lazcreative.com/blog/adding-swipe-support-to-bootstrap-carousel-3-0/">Adding swipe support to Bootstrap Carousel 3.0</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>With the release of<a title="Bootstrap version 3" href="http://getbootstrap.com/" target="_blank" rel="noopener noreferrer"> bootstrap version 3</a>, I thought it would be a good time to review my previous post on adding swipe support to bootstraps carousel and verify that everything still works as expected. After a quick wire up with a custom jQuery mobile and downloading all of the new bootstrap components I was pleased to see that nothing from my previous example was broken.</p>
<p>Things have changed a bit however in the year since my previous post. Newer libraries are available, different plugins, the carousel itself has some additional features such as indicators. Instead of simply updating my previous post with the new info, I thought I might delve into some of the more common questions that were asked in my previous posts and show how to do the wireups in a few of the other common touch libraries.</p>
<p>If you’re looking for code explanation, this post isn’t for you, refer to my<a title="How To: Adding swipe support to Bootstrap’s Carousel" href="https://lazcreative.com/blog/how-to/how-to-adding-swipe-support-to-bootstraps-carousel/"> previous post</a> on this subject.</p>
<p>Without any further ado here are some other examples of adding swipe support to bootstraps carousel.</p>
<h2>Adding swipe support with jQuery Mobile.</h2>
<p>Unless you need the entire library I recommend that you build a custom version available <a title="jQuery Mobile Download Builder" href="http://jquerymobile.com/download-builder/" target="_blank" rel="noopener noreferrer">here</a> select the “touch” checkbox under events, the current minified version of that for version 1.3.2 is below (jquery.mobile.custom.min.js)<br />
<script src="https://gist.github.com/jlazanowski/6302448.js"></script></p>
<p>Include this as a separate file in your document source and then add the following script to enable touch support within carousel (note that #myCarousel should match the ID or class of the carousel you’re attempting to bind to).</p>
<p><script src="https://gist.github.com/jlazanowski/6302491.js"></script></p>
<h2>Adding with TouchSwipe plugin</h2>
<p>If you don’t want to use jQuery Mobile or are having issues with it, TouchSwipe is another jQuery option for you <a title="TouchSwipe Plugin" href="http://labs.rampinteractive.co.uk/touchSwipe/demos/" target="_blank" rel="noopener noreferrer">TouchSwipe Plugin</a> download this and include it in your project. To wire up support for carousel add the following script. *Thanks to Eric for the slide indicator fix here.*</p>
<p><script src="https://gist.github.com/jlazanowski/6302501.js"></script></p>
<h2>Adding support with Hammer.js</h2>
<p>Hammer.js is designed to be a straight Javascript alternative, however Bootstrap’s carousel uses jQuery so you’ll be loading that library anyway. Hammer does work with jQuery through. <a title="Hammer.js" href="http://eightmedia.github.io/hammer.js/" target="_blank" rel="noopener noreferrer">Grab a copy of it Hammer.js</a> then add the following script to your page.</p>
<p><script src="https://gist.github.com/jlazanowski/6302505.js"></script></p>
<h2>Which one should I use?</h2>
<p>That’s easy, use the one that fits your project requirements the best. Seriously. Each and every one of these libraries is under 5k minified and gzipped (unless you’re going with the full jQuery.Mobile library). Choose the one that’s the easiest for you to work with.</p>
<h2>How do I add swipe support for more than one carousel on a page?</h2>
<p>Adding more swipe support for more than one slider is very simple. Change your script to include additional targets. The script below is for jQuery mobile just modify it to fit the library you need.</p>
<p><script src="https://gist.github.com/jlazanowski/6302508.js"></script></p>
<p>Have something to add? Feel free to leave a comment below.</p>
<p>Happy Coding.</p>
<p>The post <a href="https://lazcreative.com/blog/adding-swipe-support-to-bootstrap-carousel-3-0/">Adding swipe support to Bootstrap Carousel 3.0</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/adding-swipe-support-to-bootstrap-carousel-3-0/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The Not-So-Glamorous Side of Design</title>
		<link>https://lazcreative.com/blog/design/the-not-so-glamorous-side-of-design/</link>
					<comments>https://lazcreative.com/blog/design/the-not-so-glamorous-side-of-design/#respond</comments>
		
		<dc:creator><![CDATA[Jeremy Lazanowski]]></dc:creator>
		<pubDate>Mon, 24 Jun 2013 10:00:53 +0000</pubDate>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Commitment]]></category>
		<category><![CDATA[Determination]]></category>
		<category><![CDATA[Success]]></category>
		<category><![CDATA[TED Talk]]></category>
		<category><![CDATA[Thomas Edison]]></category>
		<category><![CDATA[Winston Churchill]]></category>
		<category><![CDATA[Work]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=1931</guid>

					<description><![CDATA[<p>When you think of a successful designer, what image is formed in your mind? Maybe it’s an image similar to the one used by Tim Brown in his TED talk about design thinking: “A priesthood&#8230;</p>
<p>The post <a href="https://lazcreative.com/blog/design/the-not-so-glamorous-side-of-design/">The Not-So-Glamorous Side of Design</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="intro">When you think of a successful designer, what image is formed in your mind?</p>
<p>Maybe it’s an image similar to the one used by Tim Brown in his <a href="http://www.ted.com/talks/tim_brown_urges_designers_to_think_big.html">TED talk</a> about design thinking:</p>
<p style="text-align: center;"><img fetchpriority="high" decoding="async" class="aligncenter  wp-image-1949" title="Photo Credit: Ted Conferences, LLC" alt="" src="https://lazcreative.com/images/portraitofadesigner1-960x540.jpg" width="960" height="540" srcset="https://lazcreative.com/images/portraitofadesigner1-960x540.jpg 960w, https://lazcreative.com/images/portraitofadesigner1-468x263.jpg 468w" sizes="(max-width: 960px) 100vw, 960px" /></p>
<blockquote><p>“A priesthood of folk in black turtlenecks and designer glasses working on small things.”</p></blockquote>
<p>Perhaps he lives here&#8230;</p>
<p style="text-align: center;"><img decoding="async" class="aligncenter  wp-image-1936" title="Photo Credit: Bohlin Cywinski Jackson" alt="" src="https://lazcreative.com/images/Bohlin-Cywinski-Jackson.jpg" width="960" height="640" srcset="https://lazcreative.com/images/Bohlin-Cywinski-Jackson.jpg 1200w, https://lazcreative.com/images/Bohlin-Cywinski-Jackson-468x312.jpg 468w, https://lazcreative.com/images/Bohlin-Cywinski-Jackson-960x640.jpg 960w" sizes="(max-width: 960px) 100vw, 960px" /></p>
<p>and occasionally makes his way back to civilization to collect one of these:</p>
<p style="text-align: center;"><img decoding="async" class="aligncenter  wp-image-1937" title="Photo Credit: The Webby Awards" alt="" src="https://lazcreative.com/images/The-13th-Annual-Webby-Awards.jpg" width="960" height="625" srcset="https://lazcreative.com/images/The-13th-Annual-Webby-Awards.jpg 1024w, https://lazcreative.com/images/The-13th-Annual-Webby-Awards-468x304.jpg 468w, https://lazcreative.com/images/The-13th-Annual-Webby-Awards-960x625.jpg 960w" sizes="(max-width: 960px) 100vw, 960px" /></p>
<p>And while these images are rooted in reality for some, for every designer they will only, by necessity, represent snapshots in time &#8212; fragments of a much less glamorous truth that is disconnected from the fashionable image design has come to represent in our maturing industrial society.</p>
<p>What you probably won’t see featured in a mainstream design magazine or blog is this image:</p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter  wp-image-1938" title="Photo Credit: Troublemakers, Inc." alt="" src="https://lazcreative.com/images/Troublemakers-Inc.jpg" width="960" height="642" srcset="https://lazcreative.com/images/Troublemakers-Inc.jpg 1024w, https://lazcreative.com/images/Troublemakers-Inc-468x313.jpg 468w, https://lazcreative.com/images/Troublemakers-Inc-960x642.jpg 960w" sizes="auto, (max-width: 960px) 100vw, 960px" /></p>
<p>After all, design is not art. It has to function in a practical world for the benefit of those using its object.</p>
<p>As Mike Monteiro in his book “<a href="http://www.abookapart.com/products/design-is-a-job"><em>Design is a Job</em></a>” said,</p>
<blockquote><p>&#8220;A Designer solves problems within a set of constraints. Those constraints often come in the form of available materials (…), the audience for whom the solution is intended (…), and business requirements(…). What kind of problems? Well that determines the kind of designer you are. If you&#8217;re solving the problem of creating a chair that doesn&#8217;t&#8217; hurt your ass if you sit in it for eight hours, you&#8217;re a furniture designer.&#8221;</p></blockquote>
<p>Design requires careful planning and consideration &#8212; terms professionals use to describe the wailing and gnashing of teeth that occurs before the fun, visual side of design happens.</p>
<p>Think of the <a href="http://www.youtube.com/watch?v=pOcsBiCaEJ8">montage sequence</a> in a movie that condenses months of labor into a five-minute musical short. The real work of design, the non-glamorous part, happens in the “montage.” It is the preceding months of hard work and sweat that produces these familiar &#8220;midnight moments&#8221; of paparazzi fodder.</p>
<p>Aesthetics and beauty, the visually gratifying finishings of our trade, which ARE important to marketing and branding efforts, take second place, by necessity, to the practicality of design.</p>
<p>Take for instance the chair analogy. Of what use is a beautiful chair that will not support the weight of the person for whom it has been designed? It would, in fact and by definition, be no chair at all, and the person who created the resulting pretty pile of rubble, no serious designer.</p>
<p><strong>Design is a job &#8212; and jobs require work.</strong></p>
<p>If you doubt it, take into consideration just a few quotes from one of the most revered and influential designers in history who invented the phonograph, motion picture camera, and the lowly, little light bulb:</p>
<ul>
<li><em>Genius is one percent inspiration and ninety-nine percent perspiration. </em></li>
<li><em>I have not failed. I&#8217;ve just found 10,000 ways that won&#8217;t work. </em></li>
<li><em>Opportunity is missed by most people because it is dressed in overalls and looks like work. </em></li>
<li><em>Many of life&#8217;s failures are people who did not realize how close they were to success when they gave up. </em></li>
<li><em>Our greatest weakness lies in giving up. </em></li>
<li><em>The most certain way to succeed is always to try just one more time.</em></li>
</ul>
<p>These are the resolute sentiments of a <a href="http://en.wikipedia.org/wiki/Thomas_Edison">Thomas Alva Edison</a>, a man whose work-ethic-fueled design innovations greatly influenced life around the world and, both figuratively and literally, helped light the way to the modern technological era.</p>
<p>So what keeps this designer going in the heart of the montage, at 3am (besides some serious caffeine intake) when the pressure is on and the solution to the design problem at hand seems elusive? A similar sentiment by another great man, <a href="http://en.wikipedia.org/wiki/Winston_Churchill">Winston Churchill</a>, given to me as a graduation gift by my father, Anatol Lazanowski:</p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter  wp-image-1939" title="Never, Never Quit." alt="" src="https://lazcreative.com/images/never-never-quit.jpg" width="960" height="577" srcset="https://lazcreative.com/images/never-never-quit.jpg 1500w, https://lazcreative.com/images/never-never-quit-468x281.jpg 468w, https://lazcreative.com/images/never-never-quit-960x577.jpg 960w" sizes="auto, (max-width: 960px) 100vw, 960px" /></p>
<p>It sits in front of me as a constant reminder, through the work day and night, of what success in the face of difficulty and adversity requires. It is something my father knows more than a little about as someone who is a first generation American &#8212; born from the peril of World War II, migrated to the U.S. at the age of 7 (poor and not speaking a word of English), served in the U.S. Air Force in Vietnam, was university educated and is now an accomplished engineer &#8212; the kind that solves complex industrial problems for a living.</p>
<p>This rock that sits on my desk, a simple paperweight, is one of the most important, influential gifts I have ever received &#8212; a true reflection of my father’s spirit and ethos. One day I hope to pass it on to my son, but most importantly I hope to pass on the priceless legacy behind the sentiment.</p>
<p>So you want to succeed at your endeavors and you are not quite sure what it will take? The answer is painfully and profoundly simple: Never, never quit.</p>
<p>Easier said by a paperweight than done, I know, but consider the following:</p>
<p>It has been <a href="http://www.forbes.com/sites/quora/2013/02/08/if-willpower-is-like-a-muscle-how-does-this-actually-work-in-the-brain/">scientifically validated</a> that with each expression of determination and stick-to-it-ness, your willpower increases, working like a growing muscle of focused fortitude, making future challenges in life easier as you exercise the discipline of resolve.</p>
<p>So when the challenges of life, design or otherwise, seem insurmountable, and you are tempted to “throw in the towel,” take a second to think about the not-so-glamorous work of a designer who endured 10,000 failures so you could have brighter light in the darkness. Think about the words of a man who’s steel-like determination in the face of uncertain outcome helped defeat a dreadful Nazi military machine, so millions of people and generations to follow, probably yours, enjoy the right to live and the freedom to pursue their dreams.</p>
<p>Consider all of this, and more, and make a simple life-altering commitment:</p>
<blockquote><p>“I will never, never quit.”</p></blockquote>
<p>Photo credit in order of appearance:</p>
<ul>
<li>TED Conferences, LLC</li>
<li>Bohlin Cywinski Jackson</li>
<li>The Webby Awards</li>
<li>Troublemakers Inc.</li>
</ul>
<p>The post <a href="https://lazcreative.com/blog/design/the-not-so-glamorous-side-of-design/">The Not-So-Glamorous Side of Design</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/design/the-not-so-glamorous-side-of-design/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Website Analytics &#8211; Google and other measurement tools</title>
		<link>https://lazcreative.com/blog/technology/website-analytics-google-and-other-measurement-tools/</link>
					<comments>https://lazcreative.com/blog/technology/website-analytics-google-and-other-measurement-tools/#respond</comments>
		
		<dc:creator><![CDATA[Justin Lazanowski]]></dc:creator>
		<pubDate>Mon, 10 Jun 2013 22:27:26 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[chartbeat]]></category>
		<category><![CDATA[Clicky]]></category>
		<category><![CDATA[event driven anayltics]]></category>
		<category><![CDATA[Gaug.es]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[kissmetrics]]></category>
		<category><![CDATA[mixpanel]]></category>
		<category><![CDATA[Piwik]]></category>
		<category><![CDATA[Real Time analytics]]></category>
		<category><![CDATA[Woopera]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=1896</guid>

					<description><![CDATA[<p>This is our second post in the Website Analytics series which is designed as an introduction to using web anayltics. You can read the first post &#8220;The importance of measurement&#8221; by clicking the preceding link.&#8230;</p>
<p>The post <a href="https://lazcreative.com/blog/technology/website-analytics-google-and-other-measurement-tools/">Website Analytics &#8211; Google and other measurement tools</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="intro">This is our second post in the <a title="Web Analytics" href="https://lazcreative.com/web-analytics/">Website Analytics</a> series which is designed as an introduction to using web anayltics. You can read the first post <a title="Website Analytics – The importance of measurement" href="https://lazcreative.com/blog/business/web-analytics-the-importance-of-measurement/" target="_blank">&#8220;The importance of measurement&#8221;</a> by clicking the preceding link.</p>
<p>There are a lot of website measurement tools out there. Finding the right fit for your website’s goals is important. Each of the packages below are tools to help you find out what is going on with your website. Using the wrong tool for the job will just lead to frustration. Some of the tools below are designed to work with a wide range of sites, while others have specific niches where they excel.</p>
<p>In the end, the best tool for the job is the one that you’re able to use effectively. If you like the layout, look and feel, report generation, etc., of a specific solution, and it provides you with relevant and actionable metrics, then it’s the right tool for the job.</p>
<h3><strong><a title="Google Analytics" href="http://www.google.com/analytics/" target="_blank">Google Analytics</a></strong> &#8212; Free</h3>
<p>The 800 pound gorilla of the web measurement space. Google Analytics has a very broad reach, designed to give actionable metrics to just about everyone. Installing it is a snap. Simply insert a small javascript snippet on the page(s) you want to measure, and you’re done. It’s widely used, and therefore has very broad support. You can find lots of help with this product on numerous blogs or from consultants. It collects a lot of data points and can give you an enormous amount of information about how visitors interact with your website.</p>
<h3><img loading="lazy" decoding="async" alt="GA_Home_Hero_01_dashboard" src="https://lazcreative.com/images/GA_Home_Hero_01_dashboard.png" width="914" height="317" /></h3>
<p>On the flip-side, it gives you enormous amounts of information, so much so that it can easily overwhelm people, or get them focused on the wrong metric. It’s also yet another<a title="Criticism_of_Google" href="http://en.wikipedia.org/wiki/Criticism_of_Google" target="_blank"> web property controlled by Google</a>, which can be a pro for some and a con for others, depending on your privacy point of view. While GA does have goal tracking and “event” tracking, it’s not as robust as more specialized solutions.</p>
<p><strong>Pros:</strong></p>
<ul>
<li>Easy to install</li>
<li>Wide support</li>
<li>Free</li>
<li>Lots of data</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Information Overload</li>
<li>Event tracking isn&#8217;t as strong as it could be</li>
<li>Another Google Web property</li>
</ul>
<h3><strong><a title="Clicky" href="http://clicky.com/" target="_blank">Clicky</a> </strong> &#8212; Free to $50+/mo.</h3>
<p>Click has been around for a long time, and it shows a bit in their interface. The pages and reports lack the polish of some of the other platforms. Visual appearance and navigation systems aside, the service does provide a lot of very good information. The amount of data coming at you can feel a bit overwhelming (much like Google Analytics) but the dashboards do have most of the important information available in a click or two.</p>
<p><img loading="lazy" decoding="async" alt="clicky dashboard" src="https://lazcreative.com/images/dashboard.jpg" width="900" height="494" /></p>
<p>One of Clicky’s “big” differences is in how <a title="Bounce rate" href="http://en.wikipedia.org/wiki/Bounce_rate" target="_blank">bounce rate</a> is calculated. Most other analytics packages track based on the next page event. Measuring bounce rate in this way can be a bit misleading especially for content providers. With Clicky, if a visitor lands on a page on your site and does not leave the site within thirty seconds, the traffic is not considered a bounce.</p>
<p>The bigger the package you get with Clicky, the more features you get, but the base (free up to 3000 page views per day) will get you the basics.</p>
<p><strong>Pros:</strong></p>
<ul>
<li>Free &#8212; Low cost</li>
<li>Twitter integration</li>
<li>Better bounce rate</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Navigation systems and reports lack polish</li>
<li>Information overload</li>
</ul>
<h3><strong><a title="Piwik" href="http://piwik.org/" target="_blank">Piwik</a></strong>&#8212; Free</h3>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-1919" alt="front_page" src="https://lazcreative.com/images/front_page-960x495.png" width="960" height="495" srcset="https://lazcreative.com/images/front_page-960x495.png 960w, https://lazcreative.com/images/front_page-468x241.png 468w, https://lazcreative.com/images/front_page.png 1181w" sizes="auto, (max-width: 960px) 100vw, 960px" /></p>
<p>Piwik is an <a title="Open source" href="http://en.wikipedia.org/wiki/Open_source" target="_blank">open source</a> analytics software. It is also the only one on our list that is self hosted. Piwik was introduced in 2007 as a replacement for <a title="phpmyvisites.us" href="http://www.phpmyvisites.us/" target="_blank">PhpMyVisites</a>. It offers the standard line offering out of the box. Piwik was created with expandability in mind and has a reasonable library of plugins that extend the base product. Development of Piwik remains active with version 2.0 on the horizon.</p>
<p>Since the product is self hosted there is no cost for the product itself. Being self hosted can be a benefit and a curse. It’s a bit more difficult to set up than your hosted methods. You’ll need to get a little bit dirty in your hosting control panel and transfer some files to your web host. There are some good <a title="Piwik How to Videos" href="http://piwik.org/blog/2012/12/piwik-how-to-videos/" target="_blank">tutorials</a> on how to do this.</p>
<p>A big benefit here is you completely own the data, and you can, in theory, keep it forever if you have enough available space. You don’t have to worry about someone deleting or turning off access to your analytics data. On the other hand, being self hosted results in a little bit more overhead on your server. For most sites this isn&#8217;t an issue, but as your site scales up with traffic you might want to consider server load and perhaps move the package to its own host.</p>
<p><strong>Pros:</strong></p>
<ul>
<li>Open Source</li>
<li>No Cost</li>
<li>Active plugin development</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Installation is a bit more difficult</li>
<li>Self hosted can create performance issues.</li>
</ul>
<h3><strong><a title="Get Gauge.es" href="http://get.gaug.es/" target="_blank">Gaug.es</a></strong> &#8212; $6/mo &#8212; $48+/mo</h3>
<p>Gauges is a newer player in the analytics space, but it’s got the weight of <a title="GitHub" href="https://github.com/" target="_blank">GitHub</a> behind it, so longevity issues shouldn&#8217;t be a concern here.</p>
<p><img loading="lazy" decoding="async" alt="gauges overview" src="https://lazcreative.com/images/overview.jpg" width="612" height="330" /></p>
<p>Gauges is dedicated to getting the basics done right. The interface is very well done, with information streamlined and handsomely presented. Information is clear and concise, and you’ll never be in danger of drowning in data.</p>
<p>If you’re looking for goal analysis, funnel tracking, etc., this is not the platform for you. In fact, if you sell anything on your site, you’re not likely to find much value in Gaug.es. If you’re looking for simple, easy-to-understand reports and your core metric is site visitors, then this is a great alternative for you.</p>
<p>Front end developers will especially love some of the report features. Want to know what percentage of your site’s visitors support flex-box? Two clicks and you’re there.</p>
<p><strong>Pros:</strong></p>
<ul>
<li>Simple/Polished interface</li>
<li>No data overload</li>
<li>REST API and top-notch developer features</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>No Goal/Event tracking</li>
<li>Not enough data</li>
</ul>
<h2>Real Time Analytics</h2>
<p>I&#8217;ve separated out a couple of “Real Time Analytics” packages here, although all of the analytics packages listed thus far have real time information. The packages listed in this section are more focused on this niche. If you’re a content publisher that lives on the news jacking cycle, these packages may be of more interest to you.</p>
<h3><strong><a title="Woopra" href="http://www.woopra.com/" target="_blank">Woopera</a></strong> FREE &#8212; $499+/mo</h3>
<p>Woopera has been around for a long time. If you&#8217;ve seen some earlier views of this package, I’d advise you to give it a second look. The UI is polished clean and easy to navigate. Features abound in the package from run-of-the-mill analytics to its real time integrations.</p>
<p><img loading="lazy" decoding="async" alt="woopra-dashboard" src="https://lazcreative.com/images/woopra-dashboard.png" width="540" height="390" /></p>
<p>One of Woopera’s neat features is direct engagement with visitors. Once identified, the user retains a name (e.g. “visitor 1” will remain “visitor 1” on subsequent visits).  You can rename these visitors to personalize each engagement. Woopera also allows you to open a chat window directly with a site visitor.</p>
<p>Site funnels are supported and user metrics are oriented more toward action items than toward page views making Woopera a strong contender in the action/event space</p>
<p><strong>Pros:</strong></p>
<ul>
<li>Clean easy to use interface</li>
<li>Real time customer interaction</li>
<li>Funnel Support</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Price (though it’s consistent for the niche)</li>
<li>Reports are a bit underwhelming</li>
</ul>
<h3><strong><a title="Charbeat " href="https://chartbeat.com" target="_blank">Chartbeat</a></strong> &#8212; $10/mo &#8212; N/A</h3>
<p>Chartbeat is all about the here and now, and it does this beautifully. Chartbeat was designed for content publishers. All of its measurement metrics are based on what is happening on your site in real time. See social engagement, shares/likes as well as which articles are currently hot on your site. It does this in a very easy-to-read, big dashboard way. For a simpler website, I don’t see this platform providing much value. However, if you’re heavy into content with multiple posts per day and want a platform to help you react to the now, Chartbeat may be what you’re looking for.</p>
<p><img loading="lazy" decoding="async" alt="chartbeat-dashboard" src="https://lazcreative.com/images/chartbeat-dashboard-960x467.png" width="960" height="467" /></p>
<p>At the time of this writing Charbeat is working on a product for people who sell items through their website, but it’s not currently available. If you sell items on your website, the current Chartbeat platform isn&#8217;t going to provide you with much value.</p>
<p><strong>Pros:</strong></p>
<ul>
<li>Beautiful clean user interface</li>
<li>Social integration</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Lack of historical reporting</li>
<li>No funnel concepts</li>
<li>Not for eCommerce sites</li>
</ul>
<h2>Event Driven Analytics</h2>
<p>Much like the real time analytics category, some (but not all) of the aforementioned packages offer event driven analytics. The packages listed here focus specifically on this space and do it very well. If you sell products online or offer software as a service, you would do well to take a look at one of these packages.</p>
<h3> <strong><a title="Mixpanel" href="https://mixpanel.com" target="_blank">Mixpanel </a></strong>&#8212; Free &#8211; $2,000+/mo.</h3>
<p>Mixpanel excels at giving you tools to slice and dice your customer events into meaningful data for your site or app. If, for instance, you wanted to understand which Google AdWord campaign is currently yielding the highest number of converted sales, it’s very easy to segment the data that way. Full funnel tracking, customer engagement, and retention are also available.</p>
<p><img loading="lazy" decoding="async" alt="case-study-2" src="https://lazcreative.com/images/case-study-2-960x561.png" width="960" height="561" /></p>
<p>Mixpanel tracks events that you configure. This differs a bit from standard analytics packages that track all page views on a site. With events you can measure what you’re really interested in, such as a step in the sales funnel, a video download, a song play, or a contact form submission. Mix panel is also not limited to a website.  Event tracking can also be done in iOS or Android apps, or other web apps.</p>
<p>Mixpanel also supports people plans which can be used to track behavior of specific users or groups of like users. In the same way you would slice and dice an AdWords stat, you could easily find out the lifetime revenue of a specific customer, or customer class.</p>
<p>Setup is going to be a bit more in depth than a typical analytics package. You can’t just add a javascript snippet to a site footer and forget it. You do need to tell Mixpanel when to track an event. Their documentation is good, and this isn&#8217;t overly difficult, but it is more in depth than a typical package.</p>
<p>Mixpanel has a lot to offer. It can get expensive if you’re a very high volume site and are tracking hundreds of events, but there is overwhelming value in the data provided.</p>
<p><strong>Pros:</strong></p>
<ul>
<li>Easy to use interface</li>
<li>Very specific and actionable event metrics</li>
<li>App integration</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Setup is slightly more difficult</li>
</ul>
<h3><strong><a title="Kissmetrics" href="https://www.kissmetrics.com/" target="_blank">Kissmetrics</a></strong> &#8211;$150/mo &#8212; $500+/mo</h3>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-1921" alt="kissmetrics_revenue_screenshot" src="https://lazcreative.com/images/revenue_screenshot-960x692.png" width="960" height="692" srcset="https://lazcreative.com/images/revenue_screenshot-960x692.png 960w, https://lazcreative.com/images/revenue_screenshot-468x337.png 468w, https://lazcreative.com/images/revenue_screenshot.png 1062w" sizes="auto, (max-width: 960px) 100vw, 960px" /></p>
<p>Kissmetrics is the “more mature” player in the space, having been around a little longer than Mixpanel. Where Mixpanel focuses a little bit more on the event space, Kiss focuses a bit more on the people space. Where “people” seems to be an afterthought with Mixpanel, it’s front and center in the Kissmetrics platform.</p>
<p>The interface in Kissmetrics feels a bit clunky as compared to the Mixpanel interface, which is clean and modern.</p>
<p><strong>Pros:</strong></p>
<ul>
<li>Very specific and actionable event metric</li>
<li>Focus on customer</li>
<li>App integration</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Setup is slightly more difficult</li>
<li>Interface needs a bit more work.</li>
</ul>
<p>Both Kissmetrics and Mixpanel are excellent platforms if you’re a SasS (software as a service) provider or eCommerce site.  Both will provide you with great data. These platforms are under constant development and are rapidly adding features, so check out both offerings before you make a decision and see which works best for your situation.</p>
<h2>Final Thoughts&#8230;</h2>
<p>I should note here that we are not affiliated in any way with any of the providers on this list. The opinions expressed about each platform are based on our experience with using each of them.  This list is also not exhaustive.  There are plenty of other solutions out there as well, some free and some that are cost prohibitive to all but the largest of enterprises.  As we stated at the start, the real tool for the job is the one that you are able to use most effectively.</p>
<p>Stay tuned for the next article in our series when we discuss analytic terms and what they mean to your business.</p>
<p>Have something to add to the conversation? Feel free to comment below.</p>
<p>The post <a href="https://lazcreative.com/blog/technology/website-analytics-google-and-other-measurement-tools/">Website Analytics &#8211; Google and other measurement tools</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/technology/website-analytics-google-and-other-measurement-tools/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Design like Snowflakes</title>
		<link>https://lazcreative.com/blog/business/design-like-snowflakes/</link>
					<comments>https://lazcreative.com/blog/business/design-like-snowflakes/#respond</comments>
		
		<dc:creator><![CDATA[Jeremy Lazanowski]]></dc:creator>
		<pubDate>Thu, 30 May 2013 20:21:17 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Ethics]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=1847</guid>

					<description><![CDATA[<p>Is it possible that no two snowflakes are alike? If it is true, as it is beyond all human ability to measure, it is a marvel of nature. Imagine the ability to create ceaseless variation&#8230;</p>
<p>The post <a href="https://lazcreative.com/blog/business/design-like-snowflakes/">Design like Snowflakes</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="intro">Is it possible that no two snowflakes are alike? If it is true, as it is beyond all human ability to measure, it is a marvel of nature.</p>
<p dir="ltr">Imagine the ability to create ceaseless variation in the small space of .1cm &#8211; 7.62cm  (the speculative range of a snowflake&#8217;s size in diameter). It is both wonderful and incalculable. It also points to the human potential for creativity and originality.  After all, most of us are designing in much larger spaces, albeit shrinking viewports with expanding pixel densities for interactive designers.</p>
<p><a href="https://lazcreative.com/images/snowflake-construction-infographic.jpg"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1848" alt="The construction of a snowflake. (Infographic by LOV)" src="https://lazcreative.com/images/snowflake-construction-infographic-960x960.jpg" width="960" height="960" srcset="https://lazcreative.com/images/snowflake-construction-infographic-960x960.jpg 960w, https://lazcreative.com/images/snowflake-construction-infographic-200x200.jpg 200w, https://lazcreative.com/images/snowflake-construction-infographic-468x468.jpg 468w, https://lazcreative.com/images/snowflake-construction-infographic.jpg 1498w" sizes="auto, (max-width: 960px) 100vw, 960px" /></a></p>
<p dir="ltr">On the subject of originality, Ravi Zacharias, a renown Christian apologist observed that, in complete ignorance, one might gaze at the night moon and believe it to be a source of light, when in actuality the moon simply reflects the original light of the sun.</p>
<p dir="ltr">Ravi used this illustration to contrast the concept of original truth to competing claims that borrow, or reflect, the &#8220;light&#8221; of original truth — making them easily mistaken for sources of truth.  I will use this analogy to broach a difficult subject in the creative profession.</p>
<p dir="ltr">We walk a fine line as designers. We are receptive beings by nature, drawing inspiration from innumerable sources. With so many publications and interactive forums dedicated to showcasing, instructing and inspiring designers, the line between the illuminated and the “impostor&#8221; work becomes, at best, a bleeding one.</p>
<p dir="ltr">Most designers are not perched in high, windowed towers looking down on a serene valley while creating master-works in a zen-like state. The brutal reality is, many creatives work in the trenches under extreme pressure to perform creative miracles with severe budget and/or time constraints. Let’s not forget the occasional client turned self-appointed creative director.  The reality is enough to make the staunchest design purist want to cut corners and compromise.</p>
<p dir="ltr">So why write this post? Initially, because I saw this ad</p>
<p><iframe src="http://www.youtube.com/embed/jlKn9rcT490?rel=0&amp;end=25" height="315" width="560" allowfullscreen="" frameborder="0"></iframe></p>
<p dir="ltr">and I remembered the original campaign:</p>
<p><iframe width="560" height="315" src="//www.youtube.com/embed/5v-JuG6YMqI?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p dir="ltr">Secondly, and more importantly, I believe we can all do better. If you doubt my sincerity, know I am writing this post having been both on the giving and receiving end of this issue more than once.</p>
<p dir="ltr">As creative professionals, we owe it to our clients and ourselves not to cross the line that divides inspiration from imitation. Not in the interest of preventing the potential humiliation of being caught with our &#8220;smocks down,&#8221; but because we are cheating ourselves, our clients, and denying our audiences the chance to experience something unique — the mark of something genuine that only you could offer: your snowflake-like fingerprint.</p>
<p dir="ltr">After all, your genetic code is speculated to be as unique as, and infinitely more complex than, a snowflake. Add to this your frame of reference: the structure of concepts, values, customs, views, etc., by which you evaluate data, communicate ideas, and regulate your behavior. More simply put, your frame of reference equals the sum of your life&#8217;s experiences and emotions, resulting in a genuinely unique perspective.</p>
<p dir="ltr">The possibilities for originality are endless.</p>
<p>Every day and every project is a new opportunity for creativity and originality. Under design duress, will you choose to have the courage to create, or will you cheat opportunity and cross the line by copying the works of others?</p>
<p dir="ltr">Take the time and have the faith to create.  If your design must be similar, let it be unique —  like a snowflake.</p>
<p dir="ltr">Infographic Credit: LOV</p>
<p>The post <a href="https://lazcreative.com/blog/business/design-like-snowflakes/">Design like Snowflakes</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/business/design-like-snowflakes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Website Analytics &#8211; The importance of measurement</title>
		<link>https://lazcreative.com/blog/business/web-analytics-the-importance-of-measurement/</link>
					<comments>https://lazcreative.com/blog/business/web-analytics-the-importance-of-measurement/#respond</comments>
		
		<dc:creator><![CDATA[Justin Lazanowski]]></dc:creator>
		<pubDate>Thu, 23 May 2013 17:01:40 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[measurement]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web analytics]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=1821</guid>

					<description><![CDATA[<p>Quick. How many visitors are coming to your website a month? What is the top landing page? How many leads does your website generate? If the answer to any of these questions was “I don’t&#8230;</p>
<p>The post <a href="https://lazcreative.com/blog/business/web-analytics-the-importance-of-measurement/">Website Analytics &#8211; The importance of measurement</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Quick. How many visitors are coming to your website a month? What is the top landing page? How many leads does your website generate? If the answer to any of these questions was “I don’t know,” then chances are pretty good that you’re either not measuring, or not effectively measuring your website.</p>
<p><a href="https://lazcreative.com/images/flight-gages-controls.jpg"><img loading="lazy" decoding="async" class="alignnone size-large wp-image-1825" alt="flight-gages-controls" src="https://lazcreative.com/images/flight-gages-controls-960x638.jpg" width="960" height="638" srcset="https://lazcreative.com/images/flight-gages-controls-960x638.jpg 960w, https://lazcreative.com/images/flight-gages-controls-468x311.jpg 468w, https://lazcreative.com/images/flight-gages-controls.jpg 1282w" sizes="auto, (max-width: 960px) 100vw, 960px" /></a></p>
<p>This blog series will help you understand the importance of website analytics, how to effectively use these tools and give you some general guidance on marketing campaign management. This series is intended to serve as introductory information. If you’re an expert in web measurement and analytics, this series isn&#8217;t for you.</p>
<h3>Goals</h3>
<p>If you&#8217;ve spent time and money on your website, chances are pretty good that you have a specific goal in mind for your site. Depending on the type of site and its function, these goals will vary. However, in order to effectively measure how your website is performing, it is essential that site goals be clearly defined.</p>
<p>If you use your website to sell sprockets, your goal may be to increase the number of e-commerce transactions your site generates per month. If your site is a blog, perhaps your goal is to increase the number of return visitors to your blog, or the number of people subscribing to your RSS feed.</p>
<p>If you don’t already have a defined goal, you should get started now. Take some time and figure out what mission your website should accomplish. Measurement without a goal is meaningless measurement. In order to know that we&#8217;ve achieved something we must measure it against some sort of standard we wish to reach (i.e. a goal).</p>
<h3>Measurement</h3>
<p>Prior to digital marketing, measuring ROI on marketing dollars was not an exact science. Measurement tools were difficult and in some cases completely impossible to implement. Measuring the increase in business was the typical “success” metric, but it was a bit arbitrary since multiple outlets were often used to spread the word. Knowing exactly what part of the campaign was working and where money was being wasted was too often a mystery.</p>
<p>In the digital age, it’s extraordinarily easy to know exactly what is working. Information can be obtained with tools that are free, and are very easy to implement. Adding a quick snippet of code to all the pages on your website gets you a veritable gold mine of data. This data can be leveraged to generate priceless insights into how your visitors are engaging and interacting with your website.</p>
<p>Getting the data is a great start, but simply gathering information isn&#8217;t going to affect your bottom line. We need to use the data to apply measurement to our site goals. We’ll need to ask ourselves some questions about the data we see, how it applies to our site and what (if any) changes we should consider in order to improve on our websites goals.</p>
<p>We all know the five <strong>W’s</strong> and the one <strong>H</strong>. These apply just as well to improving our sites goals.</p>
<ul>
<li><strong style="line-height: 2em;">Who</strong><span style="line-height: 2em;"> &#8212; What do we understand about the people who are interacting with the site?</span></li>
<li><strong style="line-height: 2em;">Where</strong><span style="line-height: 2em;"> &#8212; Both physical location and more importantly, where did they find our site?</span></li>
<li><strong style="line-height: 2em;">What</strong><span style="line-height: 2em;"> &#8212; What are they doing on our site? What pages are they visiting? What actions are they completing?</span></li>
<li><strong style="line-height: 2em;">When</strong><span style="line-height: 2em;"> &#8212; What time of day are the majority of the people coming to your site? What day of the week has the most frequent return visitor?</span></li>
<li><strong style="line-height: 2em;">Why</strong><span style="line-height: 2em;"> &#8211;This one requires some educated guesses. Since we’re not talking with a customer directly we can’t ask them why they came looking for a specific item or piece of content. We can make some pretty good guesses though, based on behavior patterns.</span></li>
<li><strong style="line-height: 2em;">How</strong><span style="line-height: 2em;"> &#8212; How is the visitor using the site? Are they browsing on a mobile phone or tablet? Are they coming back at specific times of day or night. Do they avoid filling out forms?</span></li>
</ul>
<p>These are just a few examples of some questions we can ask to quantify how customers are using our site, and how that relates to our overall website goals. Because online marketing changes at a rapid pace, constant measurement is essential to ensure your website’s success.</p>
<p>There are lots of tools to help you measure your site. Find the one that works the best for your website and goals. Stay tuned for our next article in our series when we discuss some of the most <a href="https://lazcreative.com/blog/website-analytics-google-and-other-measurement-tools/" title="Website Analytics – Google and other measurement tools">popular measurement tools</a> and their pros and cons.</p>
<p><a href="https://lazcreative.com/blog/website-analytics-google-and-other-measurement-tools/" title="Website Analytics – Google and other measurement tools">Continue to the next article. </a></p>
<p>As always if you have something to add to the conversation, feel free to comment below.</p>
<p>The post <a href="https://lazcreative.com/blog/business/web-analytics-the-importance-of-measurement/">Website Analytics &#8211; The importance of measurement</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/business/web-analytics-the-importance-of-measurement/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To: Adding swipe support to Bootstrap&#8217;s Carousel</title>
		<link>https://lazcreative.com/blog/how-to/how-to-adding-swipe-support-to-bootstraps-carousel/</link>
					<comments>https://lazcreative.com/blog/how-to/how-to-adding-swipe-support-to-bootstraps-carousel/#comments</comments>
		
		<dc:creator><![CDATA[Justin Lazanowski]]></dc:creator>
		<pubDate>Thu, 04 Oct 2012 17:40:17 +0000</pubDate>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=1733</guid>

					<description><![CDATA[<p>** Update with Bootstrap 3 released, I&#8217;ve created a new post. The code below still works, the new post just updates libraries and goes over using different gesture libraries. ** While working on a recent&#8230;</p>
<p>The post <a href="https://lazcreative.com/blog/how-to/how-to-adding-swipe-support-to-bootstraps-carousel/">How To: Adding swipe support to Bootstrap&#8217;s Carousel</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>** Update with Bootstrap 3 released, I&#8217;ve created a <a href="https://lazcreative.com/blog/adding-swipe-support-to-bootstrap-carousel-3-0/" title="Adding swipe support to Bootstrap Carousel 3.0">new post</a>. The code below still works, the new post just updates libraries and goes over using different gesture libraries. ** </h3>
<p>While working on a recent <a title="Laz Creative Projects" href="https://lazcreative.com/work/" target="_blank">project</a>, I was asked to add swipe support to the image slider being used on the site. This particular site was using <a title="Bootstrap" href="http://twitter.github.io/bootstrap/" target="_blank">Bootstrap</a> as its foundation and I was using the bootstrap carousel component for the slider.</p>
<p>So I did what any self respecting coder does and googled “Adding swipe support to Bootstrap Carousel”, not because I am lazy (well maybe just a bit), but because I prefer not to reinvent the wheel. This got me some results, but ultimately nothing that was currently functional.</p>
<p>Here is the solution. It’s actually very simple and it’s not at all limited to the <a title="Bootstrap Carousel" href="http://twitter.github.io/bootstrap/javascript.html#carousel" target="_blank">boostrap carousel plugin</a>, using another slider? No problem, this solution will work just as well on it.</p>
<p>The how to part:</p>
<p>First and foremost we need to support touch events and there is already a solid library for that <a title="jQuery Mobile" href="http://jquerymobile.com/" target="_blank">jQuery Mobile</a>. What we don’t need though is all of the weight that jQuery mobile has with all of the forms widgets and other items.</p>
<p>Here is a minified version of the core components that are needed to support basic touch events:</p>
<pre name="code" class="javascript">/*! jQuery Mobile v1.2.0 jquerymobile.com | jquery.org/license */
(function(a,b,c){typeof define=="function"&amp;&amp;define.amd?define(["jquery"],function(d){return c(d,a,b),d.mobile}):c(a.jQuery,a,b)})(this,document,function(a,b,c,d){(function(a,b){var d={touch:"ontouchend"in c};a.mobile=a.mobile||{},a.mobile.support=a.mobile.support||{},a.extend(a.support,d),a.extend(a.mobile.support,d)})(a),function(a,b,c,d){function x(a){while(a&amp;&amp;typeof a.originalEvent!="undefined")a=a.originalEvent;return a}function y(b,c){var e=b.type,f,g,i,k,l,m,n,o,p;b=a.Event(b),b.type=c,f=b.originalEvent,g=a.event.props,e.search(/^(mouse|click)/)&gt;-1&amp;&amp;(g=j);if(f)for(n=g.length,k;n;)k=g[--n],b[k]=f[k];e.search(/mouse(down|up)|click/)&gt;-1&amp;&amp;!b.which&amp;&amp;(b.which=1);if(e.search(/^touch/)!==-1){i=x(f),e=i.touches,l=i.changedTouches,m=e&amp;&amp;e.length?e[0]:l&amp;&amp;l.length?l[0]:d;if(m)for(o=0,p=h.length;oe||Math.abs(c.pageY-n)&gt;e,o&amp;&amp;!d&amp;&amp;H("vmousecancel",b,f),H("vmousemove",b,f),F()}function M(a){if(r)return;C();var b=z(a.target),c;H("vmouseup",a,b);if(!o){var d=H("vclick",a,b);d&amp;&amp;d.isDefaultPrevented()&amp;&amp;(c=x(a).changedTouches[0],p.push({touchID:v,x:c.clientX,y:c.clientY}),q=!0)}H("vmouseout",a,b),o=!1,F()}function N(b){var c=a.data(b,e),d;if(c)for(d in c)if(c[d])return!0;return!1}function O(){}function P(b){var c=b.substr(1);return{setup:function(d,f){N(this)||a.data(this,e,{});var g=a.data(this,e);g[b]=!0,k[b]=(k[b]||0)+1,k[b]===1&amp;&amp;t.bind(c,I),a(this).bind(c,O),s&amp;&amp;(k.touchstart=(k.touchstart||0)+1,k.touchstart===1&amp;&amp;t.bind("touchstart",J).bind("touchend",M).bind("touchmove",L).bind("scroll",K))},teardown:function(d,f){--k[b],k[b]||t.unbind(c,I),s&amp;&amp;(--k.touchstart,k.touchstart||t.unbind("touchstart",J).unbind("touchmove",L).unbind("touchend",M).unbind("scroll",K));var g=a(this),h=a.data(this,e);h&amp;&amp;(h[b]=!1),g.unbind(c,O),N(this)||g.removeData(e)}}}var e="virtualMouseBindings",f="virtualTouchID",g="vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split(" "),h="clientX clientY pageX pageY screenX screenY".split(" "),i=a.event.mouseHooks?a.event.mouseHooks.props:[],j=a.event.props.concat(i),k={},l=0,m=0,n=0,o=!1,p=[],q=!1,r=!1,s="addEventListener"in c,t=a(c),u=1,v=0,w;a.vmouse={moveDistanceThreshold:10,clickDistanceThreshold:10,resetTimerDuration:1500};for(var Q=0;Qa.event.special.swipe.scrollSupressionThreshold&amp;&amp;b.preventDefault()}var e=b.originalEvent.touches?b.originalEvent.touches[0]:b,f={time:(new Date).getTime(),coords:[e.pageX,e.pageY],origin:a(b.target)},g;c.bind(i,j).one(h,function(b){c.unbind(i,j),f&amp;&amp;g&amp;&amp;g.time-f.timea.event.special.swipe.horizontalDistanceThreshold&amp;&amp;Math.abs(f.coords[1]-g.coords[1])g.coords[0]?"swipeleft":"swiperight"),f=g=d})})}},a.each({scrollstop:"scrollstart",taphold:"tap",swipeleft:"swipe",swiperight:"swipe"},function(b,c){a.event.special[b]={setup:function(){a(this).bind(c,a.noop)}}})}(a,this)})</pre>
<p></code><br />
Or build you own custom version <a href="http://jquerymobile.com/download-builder/">here</a> (just select the touch event and it will include everything you need)</p>
<p>Take this and include it in your site script, or simply create a new script and add it into the document.</p>
<pre name="code" class="javascript">&lt;script src=”jquery.mobile.custom.min.js”&gt;&lt;/script&gt;</pre>
<p>Now that we have touch support we simply need to hook that up to our image slider. That my friends is a pretty simple task:</p>
<pre name="code" class="javascript">&lt;script&gt;
$(document).ready(function() {
   $("#myCarousel").swiperight(function() {
      $("#myCarousel").carousel('prev');
    });
   $("#myCarousel").swipeleft(function() {
      $("#myCarousel").carousel('next');
   });
});
&lt;/script&gt;</pre>
<p>Taking a quick look at the code above, we’re attaching the jQuery mobile swipe right/left events to the carousel next and previous options. If you’re using another slider, simply hook to their next/previous handlers.</p>
<p>I’ve placed a demo online <a href="https://lazcreative.com/slider-swipe">here</a> for review.</p>
<p>Happy Coding.</p>
<p>The post <a href="https://lazcreative.com/blog/how-to/how-to-adding-swipe-support-to-bootstraps-carousel/">How To: Adding swipe support to Bootstrap&#8217;s Carousel</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/how-to/how-to-adding-swipe-support-to-bootstraps-carousel/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>What is good content anyway?</title>
		<link>https://lazcreative.com/blog/strategy/what-is-good-content-anyway/</link>
					<comments>https://lazcreative.com/blog/strategy/what-is-good-content-anyway/#respond</comments>
		
		<dc:creator><![CDATA[Justin Lazanowski]]></dc:creator>
		<pubDate>Sun, 09 Sep 2012 02:39:57 +0000</pubDate>
				<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Content Strategy]]></category>
		<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=1660</guid>

					<description><![CDATA[<p>If you&#8217;ve just started a blog, or if you&#8217;ve been blogging since Al Gore invented the internet, you have probably read time and time again that in order to be successful at it there is&#8230;</p>
<p>The post <a href="https://lazcreative.com/blog/strategy/what-is-good-content-anyway/">What is good content anyway?</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you&#8217;ve just started a blog, or if you&#8217;ve been blogging since <a href="http://en.wikipedia.org/wiki/Al_Gore_invented_the_Internet#1999_CNN_interview_controversy" target="_blank">Al Gore invented the internet</a>, you have probably read time and time again that in order to be successful at it there is one fundamental requirement: <strong>Write good content</strong>.</p>
<p>If you’re like me, you think to yourself:</p>
<blockquote><p>Awesome, I can write good content!   &#8230;  What is good content anyway?</p></blockquote>
<p>With that question in mind, you head to Google. &#8220;What is good content,&#8221; you ask. What you get back is a cacophony of ideas. Most often I see:</p>
<ul>
<li>Get your title right.</li>
<li>Pepper your keywords into your post.</li>
<li>Write lists. People love lists.</li>
<li>Make your post scannable.</li>
<li>Continue the conversation.</li>
<li>Make a call to action.</li>
</ul>
<p>I’m not telling you anything that you don’t already know here; you&#8217;ve seen it all.  After all, you probably found this post because you Googled &#8220;what makes good content?&#8221; The problem with all of those bulleted items is that they are junk. It’s all internet noise.  This is not to say there aren&#8217;t good articles, lists and the like that fit those criteria. However, when everyone follows the same “this is good” formula, you end up with the unfortunate scenario where the gem is hard to distinguish from the junk — which begs the question: What is good content, honestly good content?</p>
<p>In my opinion, defining good content in a practical manner is pretty straightforward: Provide the content consumer with new and useful information. This can be a point of view about an existing subject matter or something that forays into entirely new territory. The content itself, however, should be created by you and help the reader solve some sort of problem, or provide a useful insight. The short definition of good content: Give the end user something useful. Herein lies the real challenge.</p>
<p>Everyone has a different point of view which is informed by a unique, fingerprint-like frame of reference.   These differences, wonderful and terrible, are what make the world go round.  However, with a full spectrum of inherent differences of opinion and definitions of what is considered useful, the content creator may, understandably, tremble a bit before clicking &#8220;publish.&#8221;  </p>
<p>While it is impossible to land on useful 100% of the time, there IS a synergy in what we find to be useless, regardless of individual opinion or point of view. Keyword stuffed articles, the same top ten lists we&#8217;ve seen on hundreds of other sites that shows up on yours — the list goes on. Noise, the natural enemy of good communication, is unfortunately abundant on the Web. If you find yourself contributing to the noise, it is fair to assume people will generally find your information useless.</p>
<p>Do not despair.</p>
<p><strong>Here are a few rules that should apply to writing good content:</strong></p>
<ol>
<li>Stop writing for SEO (Search Engine Optimization). Seriously just stop it.
<p>	Understand that SEO is a side effect of good content. Good content gets shared. Good content gets backlinks. Good content enjoys discussion. Why? Because, by its nature, good content is interesting and people share and talk about things they find interesting. How many times have you looked for something on the Web only to stumble onto drivel of awkwardly worded sentences in order that the author could meet some sort of keyword goal? It’s frustrating, it’s almost always useless and, as <a href="http://en.wikipedia.org/wiki/PageRank" target="_blank">search engine algorithms</a> continue to improve, it will be buried. According to Google’s Matt Cutts:</p>
<blockquote><p>“Good content trumps SEO.”</p></blockquote>
<p>If you don’t believe me, you should believe the <a href="http://www.mattcutts.com/" target="_blank">head of Google’s webspam team</a>.  If you don&#8217;t believe him, then you may want to peruse the details of <a href="http://en.wikipedia.org/wiki/Google_Panda">Google Panda</a> and more recent Penguin update, a change to Google&#8217;s search results ranking algorithm. The new reality, and what has always been the truth, is <strong>good content is SEO</strong>.</li>
<li>Don’t write the same opinion piece that’s been published half a million times before unless you have something new and insightful and useful to add to the discussion. Anything else is just noise.</li>
<li>Keep it brief. If you’re writing a ten thousand word dissertation on why the Internet Explorer is the mark of the beast, your content consumers are going to get tired and leave. Every Web standards compliance-minded developer already knows IE is the devil.  Get to your point so that we can comment on how much we agree (can anyone disagree?) with your assessment.</li>
<li> Grammar doesn&#8217;t matter. Ok, well maybe a little bit. If you’re writing a blog on the English language, then worry about MLA. For everyone else though, most of your readers aren’t going to care that you missed an <a href="http://www.youtube.com/watch?v=P_i1xk07o4g&#038;feature=share&#038;list=AL94UKMTqg-9B7ZRxcrJSJq9IgYA82NRMI" target="_blank">oxford comma</a>. You should go back and proof your work to make sure your idea comes across in a clear and concise manner, but don’t obsess over grammar. As Seth Godin has said:<br />
<blockquote><p>“Just say it”.</p></blockquote>
</li>
</ol>
<p>There are many more items that play into authoring quality content on the Web, but continuing would violate rule #3 &#8230; Plus we want to save room for Part 2.</p>
<p>What do you think makes good content? Be sure to weigh in below.</p>
<p>The post <a href="https://lazcreative.com/blog/strategy/what-is-good-content-anyway/">What is good content anyway?</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/strategy/what-is-good-content-anyway/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Keeping The Soda Money On The Field</title>
		<link>https://lazcreative.com/blog/business/keeping-the-soda-money-on-the-field/</link>
					<comments>https://lazcreative.com/blog/business/keeping-the-soda-money-on-the-field/#respond</comments>
		
		<dc:creator><![CDATA[Jeremy Lazanowski]]></dc:creator>
		<pubDate>Wed, 15 Aug 2012 07:12:07 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Baseball]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[Prudence]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=1452</guid>

					<description><![CDATA[<p>Someone once speculated they could tell how fast a silicon valley startup would file for bankruptcy by the number of Herman Miller Aeron Chairs they had in their expansive offices. Now, I&#8217;m not going to&#8230;</p>
<p>The post <a href="https://lazcreative.com/blog/business/keeping-the-soda-money-on-the-field/">Keeping The Soda Money On The Field</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Someone once speculated they could tell how fast a silicon valley startup would file for bankruptcy by the number of <a href="http://www.hermanmiller.com/products/seating/work-chairs/aeron-chairs.html" target="_blank">Herman Miller Aeron Chairs</a> they had in their expansive offices. </p>
<p><img loading="lazy" decoding="async" src="https://lazcreative.com/images/soda-money.jpg" alt="" title="soda-money" width="1282" height="723" class="alignright size-full wp-image-1771" srcset="https://lazcreative.com/images/soda-money.jpg 1282w, https://lazcreative.com/images/soda-money-468x263.jpg 468w, https://lazcreative.com/images/soda-money-960x541.jpg 960w" sizes="auto, (max-width: 1282px) 100vw, 1282px" /></p>
<p>Now, I&#8217;m not going to take part in disparaging one of the world&#8217;s finest chairs that once, very comfortably, supported the hindquarters of <a href="https://lazcreative.com/about/jeremy-lazanowski/" title="Jeremy Lazanowski">yours truly</a>. What I will say is that by using this line of reasoning we should be in business long after Justin Beiber has 20 grandchildren (okay, bad example). It&#8217;s true, fancy pants we ain&#8217;t. Think of us as Billy Beane&#8217;s 2002 Oakland Athletics competing in an industry that has been conditioned to expect the &#8220;Yankee fineness.&#8221;</p>
<p>Allow me to paraphrase for those who aren&#8217;t sports fanatics and/or haven&#8217;t seen the movie <a href="http://www.imdb.com/title/tt1210166/" target="_blank">Moneyball</a>: </p>
<blockquote><p>&#8220;There are rich agencies and there are poor agencies, then there&#8217;s fifty feet of crap, and then there&#8217;s us.&#8221;</p></blockquote>
<p>We do not come from money. We do not have investors. Shiny offices with glass plated conference rooms? Yet to be built. Aeron Chairs? Nada. What little we have we are proud to say we own, and have earned by the sweat of our rapidly mouse clicking index fingers. The &#8220;soda money,&#8221; my friends, is &#8220;on the field.&#8221;</p>
<p>Now don&#8217;t get me wrong &#8211; we like nice things and would like to take our clients on long, leisurely tours of our immaculate facilities. We would like them to see their beautiful reflections in our stainless steel conference room table as they sit comfortably in a fleet of (that&#8217;s right) Herman Miller Aeron chairs. These things would be nice &#8211; a wonderful expression of our <a href="https://lazcreative.com/clients/" title="experience">exceptional talent and capabilities</a>. But if prematurely, at what expense?</p>
<p>The lesson behind the Aeron chair theory? Perhaps we are all too eager to portray financial success long before we have learned to properly respect a dollar? We are caught up in seeming, rather than being. We expect success without sacrifice.</p>
<p>Call me old-fashioned, but I believe we owe our clients a greater level of stability. After all, we would like to think they will continue to remain in business for many years to come, able to pay our invoices by making prudent financial decisions. Would we not be nervous if they were feverishly spending money they didn&#8217;t have as though they were trying to keep up with the United States federal government? Where do we expect this &#8220;keeping up with the Joneses&#8221; will lead?</p>
<p>In the cogent words of Lane Pryce, &#8220;Pennies make pounds and pounds make profits.&#8221; As long as this holds true, we will keep a careful watch over our pocketbooks. Not because we are greedy and want David Justice to suffer the indignity of purchasing his own soda, but because our talent will best serve our clients by staying in business. For now that means keeping the soda money on the field while our butts dream of Aeron chairs. Pardon the crude mixed metaphor. </p>
<p>Do you have an alternate point of view or an &#8220;Amen?&#8221; Please share your thoughts with us. We&#8217;d love to hear from you.</p>
<p>The post <a href="https://lazcreative.com/blog/business/keeping-the-soda-money-on-the-field/">Keeping The Soda Money On The Field</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/business/keeping-the-soda-money-on-the-field/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>You Don&#8217;t Become a Hero by Being Normal, or a LAIKA Feature Length Animated Film For That Matter</title>
		<link>https://lazcreative.com/blog/technology/paranorman/</link>
					<comments>https://lazcreative.com/blog/technology/paranorman/#respond</comments>
		
		<dc:creator><![CDATA[Jeremy Lazanowski]]></dc:creator>
		<pubDate>Sat, 11 Aug 2012 01:31:32 +0000</pubDate>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Retro Technique]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=423</guid>

					<description><![CDATA[<p>From the makers of Coraline, a unique 3D feature animation &#8220;creeps&#8221; into theaters on August 17th. Along with the social buzz on Facebook, Twitter, YouTube, and Instagram you may have seen ads for Paranorman while&#8230;</p>
<p>The post <a href="https://lazcreative.com/blog/technology/paranorman/">You Don&#8217;t Become a Hero by Being Normal, or a LAIKA Feature Length Animated Film For That Matter</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class=" wp-image-1383 alignnone" src="https://lazcreative.com/images/paranorman-960x408.jpg" alt="© 2012 LAIKA-Focus Features" width="672" height="286" srcset="https://lazcreative.com/images/paranorman-960x408.jpg 960w, https://lazcreative.com/images/paranorman-468x198.jpg 468w, https://lazcreative.com/images/paranorman.jpg 1920w" sizes="auto, (max-width: 672px) 100vw, 672px" /></p>
<p>From the makers of Coraline, a unique 3D feature animation &#8220;creeps&#8221; into theaters on August 17th. Along with the social buzz on Facebook, Twitter, YouTube, and Instagram you may have seen ads for Paranorman while watching the London Olympic games. The following <a href="http://www.youtube.com/watch?v=qctRKfl7FS0&amp;feature=plcp" target="_blank">spot</a> was cleverly placed in the women&#8217;s gymnastics team final, and I will admit it produced a chuckle. Most noteworthy, to date Paranorman is the biggest <a href="http://en.wikipedia.org/wiki/Stop_motion" target="_blank">stop motion</a> movie ever made.</p>
<div class="alignright"><img decoding="async" title="faces1" src="https://lazcreative.com/images/faces1-468x284.jpg" alt="" width="300" /><br />
<img decoding="async" title="faces2" src="https://lazcreative.com/images/faces2-468x284.jpg" alt="" width="300" /><br />
<img decoding="async" title="faces3" src="https://lazcreative.com/images/faces3-468x284.jpg" alt="" width="300" /></div>
<p>For those of you who appreciate the painstaking retro techniques of the artistic craft, specifically stop motion animation, you will appreciate the genius, if not insanity, of the masochistic effort undertaken by the Portland based animation studio <a href="http://laika.com/" target="_blank">LAIKA</a>.</p>
<p>The specific technique used to generate the unique look of Paranorman is referred to as replacement animation where each new character sequence is created by removing and replacing a facial component or mask on the character puppet &#8211; sort of like the world&#8217;s most elaborate Mr. Potato Head. To generate just one second of feature animation required approximately 24 mask replacements. Each mask was individually made by utilizing <a href="http://zcorp.com/en/Press-Room/3D-Systems-Full-Color-Printers-Bring-LAIKAs-ParaNorman-To-Life/news.aspx" target="_blank">3D Systems ZPrinter® 650</a>, a full color 3D printer that overlays many tiny layers of powder until you have a three dimensional object. The face is then dipped into a super glue to seal and strengthen the mask.</p>
<p>The creation of the the feature&#8217;s puppets were no slouching effort either:</p>
<p>http://www.youtube.com/watch?v=mcESvy3XRis</p>
<p>To give you a better feel for the painful scope of this project, let&#8217;s look at a few numbers:</p>
<ul>
<li>66,400 rare earth magnets</li>
<li>31,000 &#8211; The ballpark number of individual face parts printed for the production</li>
<li>25,000 purple gloves</li>
<li>9,000 &#8211; The number of different faces it took to animate Norman</li>
<li>8,000 &#8211; the number of pounds of printing powder required to make the components for the feature</li>
<li>5,000 exacto blades</li>
<li>729 sheets of sandpaper</li>
<li>427 human years</li>
<li>300 puppets</li>
<li>77 &#8211; The number of gallons of super glue required</li>
<li>50 stages</li>
<li>2 gallons of white resin</li>
<li>1 massive warehouse</li>
</ul>
<p>Photo Credit: <a href="http://laika.com/" target="_blank">LAIKA</a>.</p>
<p>The post <a href="https://lazcreative.com/blog/technology/paranorman/">You Don&#8217;t Become a Hero by Being Normal, or a LAIKA Feature Length Animated Film For That Matter</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/technology/paranorman/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Hello, World?</title>
		<link>https://lazcreative.com/blog/announcements/hello-world/</link>
					<comments>https://lazcreative.com/blog/announcements/hello-world/#respond</comments>
		
		<dc:creator><![CDATA[Jeremy Lazanowski]]></dc:creator>
		<pubDate>Thu, 14 Jun 2012 01:32:03 +0000</pubDate>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://lazcreative.com/?p=425</guid>

					<description><![CDATA[<p>So we caved into the pressure and started a blog ... You’re welcome.</p>
<p>The post <a href="https://lazcreative.com/blog/announcements/hello-world/">Hello, World?</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="intro">So we caved into the pressure and started a blog …<br />
You’re welcome.</p>
<blockquote><p>“So, you design blog interfaces for some of the worlds largest corporations but you don’t have your own blog?”</p></blockquote>
<p>The sheer embarrassment of our trademark answer “The shoemaker’s children go barefoot” became too much. So here we are. We have a blog. So much to say, so little time.</p>
<p>Or is it:</p>
<p><a href="http://www.despair.com/blogging.html"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1371" title="Blogging Demotivator © Despair.com" src="https://lazcreative.com/images/bloggingdemotivator.jpg" alt="" width="617" height="435" srcset="https://lazcreative.com/images/bloggingdemotivator.jpg 617w, https://lazcreative.com/images/bloggingdemotivator-468x329.jpg 468w" sizes="auto, (max-width: 617px) 100vw, 617px" /></a></p>
<p>We’ll let you be the judges. But please, be gentle. We bruise easily.</p>
<p>Photo Credit: <a href="http://www.despair.com/blogging.html">Despair, Inc.</a></p>
<p>The post <a href="https://lazcreative.com/blog/announcements/hello-world/">Hello, World?</a> appeared first on <a href="https://lazcreative.com">Laz Creative</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lazcreative.com/blog/announcements/hello-world/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
