<?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>DevNewz</title>
	<atom:link href="http://www.devnewz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devnewz.com</link>
	<description>For Professional Developers</description>
	<lastBuildDate>Wed, 16 May 2012 08:29:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Facebook Introduces App Center</title>
		<link>http://www.devnewz.com/facebook-introduces-app-center/</link>
		<comments>http://www.devnewz.com/facebook-introduces-app-center/#comments</comments>
		<pubDate>Wed, 16 May 2012 08:29:01 +0000</pubDate>
		<dc:creator>Navneet Kaushal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6498</guid>
		<description><![CDATA[Facebook has announced a new App Center service, which will be a “a new place for people to find social &#8230;]]></description>
			<content:encoded><![CDATA[<p>Facebook has <a href="http://developers.facebook.com/blog/post/2012/05/09/introducing-the-app-center/" target="_blank"><span style="text-decoration: underline;">announced</span></a> a new App Center service, which will be a “a new place for people to find social apps”. This App Center has been designed to allow more apps to be created successfully on the iOS and Android mobile platforms, as well as desktop- and web-based applications.<br />
<span id="more-6498"></span><br />
<a title="Facebook AppCenter" href="http://www.pagetrafficbuzz.com/facebook-introduces-app-center/13871/"><img title="Facebook AppCenter" src="http://www.pagetrafficbuzz.com/wp-content/uploads/2012/05/Facebook.png" alt="Facebook AppCenter" width="609" height="441" /></a></p>
<p>The App Center service now allow developers to set a price on their app and those wanting the app will have to pay for it and then run it on their Facebook page. On paid apps, Facebook said, “This is a simple-to-implement payment feature that lets people pay a flat fee to use an app on Facebook.com. If you are interested in the beta program, please <a href="https://www.facebook.com/help/contact/?id=323230461080010" target="_blank"><span style="text-decoration: underline;">sign up to receive more information</span></a>.”</p>
<p>This time the focus is on monitoring the quality of the apps too. Facebook wants “growth for high-quality apps”. This means developers can benefit from the App Center only if their app meets the quality standards. Facebook will rely on signals, such as user ratings and engagement, to decide whether the app is successful enough to be listed in the App Center. As Facebook says, “To help you monitor user feedback, we are also introducing a new app ratings metric in Insights to report how users rate your app over time. Well-designed apps that people enjoy will be prominently displayed; apps that receive poor user ratings or don’t meet the quality guidelines won&#8217;t be listed.&#8221;</p>
<p>Another fact worth mentioning is that the App Center is designed to grow mobile apps that use Facebook. Users on iOS, Android or the mobile web can benefit from the apps. Facebook has also directed the developers to create an app detail page. Only after creating this page, will the developer be listed in the App Center. The page will also be the platform for non-users to search for the developer’s app on Facebook.</p>
<p>The App Center is being seen as a way of showing investors that there is a lot of incoming revenue for Facebook. In fact the App Center is considered to contribute as much as 25 percent to the per year growth of Facebook.</p>
<p><a href="http://www.pagetrafficbuzz.com/facebook-introduces-app-center/">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/facebook-introduces-app-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome Gets Better Code Optimization For V8</title>
		<link>http://www.devnewz.com/google-chrome-gets-better-code-optimization-for-v8/</link>
		<comments>http://www.devnewz.com/google-chrome-gets-better-code-optimization-for-v8/#comments</comments>
		<pubDate>Wed, 02 May 2012 13:57:43 +0000</pubDate>
		<dc:creator>Zach Walton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6495</guid>
		<description><![CDATA[Chrome is widely regarded by users for its speed and ease of use. The speed is definitely the biggest selling &#8230;]]></description>
			<content:encoded><![CDATA[<p>Chrome is widely regarded by users for its speed and ease of use. The speed is definitely the biggest selling point though with the code running in the background really helping that along. To help speed things along even more, Google is introducing some <a href="http://blog.chromium.org/2012/05/better-code-optimization-decisions-for.html">code changes to the V8 JavaScript Engine.</a><br />
<span id="more-6495"></span><br />
Google announced that the latest dev and beta channel release for Chrome now feature a new algorithm for V8. This new algorithm uses counters to decide which functions to optimize for a faster experience. It was found that the new V8 increases performance of small JavaScript programs with V8′s speed itself improved by almost 25 percent.</p>
<p>V8 doesn’t optimize the code when it first compiles it to machine code. There is a second compiler that is much faster so V8 has to pick and choose which functions to send through for better optimization. The old V8 would stop every millisecond to look at the current functions to see which ones were worthy of optimization. It was great for longer functions, but the smaller functions would finish before ever being optimized.</p>
<p>So the smaller functions don’t feel left out, Google now has V8 making “earlier and more repeatable optimization decision.” The counters then come into play to keep track of “how often JavaScript functions are called and loops are executed in a program.” This allows V8 to get performance bottleneck information quickly so that the most deserving functions, big or small, receive the most optimization.</p>
<p>As previously said, the new V8 engine is now available in the beta and dev channel releases of Chrome. That means that it’s still under testing, so <a href="http://www.chromium.org/getting-involved/dev-channel">be sure to download</a> the latest release to test it out before it hits the stable channel release.</p>
<p><a href="http://www.webpronews.com/google-chrome-gets-better-code-optimization-for-v8-2012-05">Comments</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/google-chrome-gets-better-code-optimization-for-v8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google+ Hangout Helps Developers Stay On Top Of Google+ Changes</title>
		<link>http://www.devnewz.com/google-hangout-helps-developers-stay-on-top-of-google-changes/</link>
		<comments>http://www.devnewz.com/google-hangout-helps-developers-stay-on-top-of-google-changes/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 15:21:07 +0000</pubDate>
		<dc:creator>Zach Walton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6492</guid>
		<description><![CDATA[It was only yesterday that Google posted the latest Google+ platform office hours on YouTube. That one was from last &#8230;]]></description>
			<content:encoded><![CDATA[<p>It was only yesterday that Google <a href="http://www.webpronews.com/google-platform-office-hours-details-jquery-plugin-2012-04">posted the latest Google+ platform office hours</a> on YouTube. That one was from last weekend and contained lots of juicy info including a live coding session. It might surprise you then that Google was a little late in getting one of their past hangouts out on YouTube. It might be old, but it’s still a good one. </p>
<p>Today’s hangout comes from March 21, but it contains some super important updates regarding Google+. These are the details developers would be keen on learning to get the most out of the platform. As the headline might have tipped you off on, the main focus of this hangout is JavaScript and the REST APIs. </p>
<p>While the above issues take up the majority of the hangout at a whopping 24 minutes, the team still some time out to answer some important viewer questions. The one that may be the most pertinent to Google+ users is if Google has plans on bringing the old +1 button back. I personally like the new sleek look of the +1 button, but I’m sure the old one had its fans as well. Well, Google says that the majority of users seem to like the change to the new +1 button. They do welcome any and all feedback though on the matter. </p>
<p>Speaking of feedback, Google has a handy Google+ platform issue tracker where developers can submit issues they have with the platform. These kind of things usually don’t see a reply so it’s no surprise that some developers may feel that Google isn’t paying attention. That’s not the case according to the Google+ team. They say that they read each and every one of them and discuss them internally. </p>
<p>Check out this latest Google+ hangout and become informed. The platform is constantly changing and it’s good to stay on top of said changes. </p>
<p><a href="http://www.webpronews.com/google-team-talks-javascript-and-rest-apis-2012-04">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/google-hangout-helps-developers-stay-on-top-of-google-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning: Google To Crackdown On &#8216;Unnatural&#8217; Links</title>
		<link>http://www.devnewz.com/warning-google-to-crackdown-on-unnatural-links/</link>
		<comments>http://www.devnewz.com/warning-google-to-crackdown-on-unnatural-links/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 13:12:14 +0000</pubDate>
		<dc:creator>Rene LeMerle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6488</guid>
		<description><![CDATA[The search marketing industry has been abuzz about safe link building practices in light of Google cracking down on sites &#8230;]]></description>
			<content:encoded><![CDATA[<p>The search marketing industry has been abuzz about safe link building practices in light of Google cracking down on sites with ‘unnatural and artificial links’.</p>
<p><span id="more-6488"></span></p>
<p>Many webmasters have been left enraged after being issued penalties by Google because their sites acquired artificial links that were used to manipulate their PageRank. Many experienced a sudden drop in the Google SERPs without prior notification.</p>
<p>Google has either partially or completely removed entire blog networks from its index. Consequently when Google removes a website from its index, any outgoing links automatically become null and void leaving thousands of websites affected.</p>
<p>The worst affected by this update are blog networks like BuildMyRank who are reportedly on the verge of shutting down.</p>
<p>So why are blog-networks being penalized this time?</p>
<p>Firstly Blog networks are a form of paid link building and  <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=66736" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','support.google.com']);">Google’s policy on paid link building</a> is crystal clear that states that “<em>buying or selling links that pass PageRank is in violation of Google’s Webmaster Guidelines and can negatively impact a site’s ranking in search results.</em>”</p>
<p>The purpose of blog networks is to facilitate link building, by creating genuine back links with quality content via posts opposed to creating paid back links from blogs without genuine content, which many webmasters resort to as it is easy and quick.</p>
<p>Blog networks are a type of “link scheme”. Recently some blog networks have been found to develop a technology to allows users to distribute their articles to hundreds of different blogs in the shortest span of time which is another quick and easy but un ethical way to generate thousands of back links to a site. It was only a matter of time until Google noticed this especially when <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=66356" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','support.google.com']);">Google’s opinion on link schemes</a> clearly states that scheme blog networks are not on their list of favorites.</p>
<p>Articles posted to blog networks tend to be of fair to poor quality. The majority of articles posted to the affected blog networks were purely “filler” content that was written to get back links.</p>
<p>Following the first Panda Update in 2011 Google has constantly maintained that it wants genuine and quality content sites to occupy its search index and &nbsp;it wants webmasters to create and exchange value added content that helps readers visiting the blog site, not content that just creates back links.</p>
<p>Back in March 2012 Google’s head of search spam Matt Cutts had hinted an algorithmic change that will come down hard on sites with over optimization or SEO.<br />
(http://www.seroundtable.com/google-over-seo-update-14887.html)</p>
<blockquote><p>“We don’t normally pre-announce changes but there is something we are working in the last few months and hope to release it in the next months or few weeks. We are trying to level the playing field a bit. All those people doing, for lack of a better word, over optimization or overly SEO – versus those making great content and great site. We are trying to make GoogleBot smarter, make our relevance better, and we are also looking for those who abuse it, whether they throw too many keywords on a page, or whether they exchange way too many links or go well beyond what you normally expect in a particular area. It is an active area where we have several engineers on my team working on this right now.”</p>
</blockquote>
<p>Givena Google penalized one of their own Chrome websites when it was revealed that a marketing company they used had employed paid back links, there is no reason to think Google would spare the other culprits.</p>
<p><a href="http://blog.ineedhits.com/search-news/warning-google-to-crackdown-on-%E2%80%98unnatural%E2%80%99-links-034211208.html">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/warning-google-to-crackdown-on-unnatural-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Useful Resources to Bookmark for the Mobile Developer</title>
		<link>http://www.devnewz.com/10-useful-resources-to-bookmark-for-the-mobile-developer/</link>
		<comments>http://www.devnewz.com/10-useful-resources-to-bookmark-for-the-mobile-developer/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 13:01:50 +0000</pubDate>
		<dc:creator>Glenn Letham</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6485</guid>
		<description><![CDATA[There’s so many developer resources, portals, devzones and the like out there.. so where does one begin when they want &#8230;]]></description>
			<content:encoded><![CDATA[<p>There’s so many developer resources, portals, devzones and the like out there.. so where does one begin when they want to jump in to mobile app development? Obviously that depends on the platform of choice, the resources at hand and many other variables. Here’s 10 simple and useful dev resources that any mobile geek can take advantage of:</p>
<p> <span id="more-6485"></span></p>
<ol>
<li><a href="http://developer.android.com/guide/basics/what-is-android.html">Developing for Android</a> – A basic starting point for new developers to the Android ecosystem</li>
<li><a href="https://developer.foursquare.com/">Foursquare API and developer resources</a> – If you’re mobile app integrates location you may want to add support for foursquare checkin. Here’s a dev resource from foursquare</li>
<li><a href="http://api.maps.ovi.com/">Nokia maps Ovi maps API</a> – you may not think Nokia has huge marketshare in North America, however, on the rest of the planet Nokia is huge! Adding to that, Nokia Maps is a terrific map service and has some awesome opportunities for application developers… don’t discount this at all!  And see also <a href="http://www.developer.nokia.com/Develop/Maps/">location APIs and tools from Nokia </a></li>
<li><a href="http://googlegeodevelopers.blogspot.com/">The Google Geo Developers Blog</a> – a developer resource and official blog for Google map developers and those using google maps APIs and tool</li>
<li><a href="http://developer.yahoo.com/maps/rest/V1/geocode.html">The Yahoo! maps web services Geocoding API</a> – some resources from Yahoo! for working with location in Yahoo! mapping apps</li>
<li><a href="https://developers.facebook.com/docs/sdks/">Facebook developer APIs and tools</a> – a comprehensive resource for developers from facebook – be sure to keep tabs on facebook Places and movement they make in location aware services, POI and related matters.</li>
<li>Twitter developer API <a href="https://dev.twitter.com/">https://dev.twitter.com/</a> and Twitter <a href="https://dev.twitter.com/terms/geo-developer-guidelines">Geo developer guildelines</a> – A useful resource for those lookig to include Twitter functionality into their mobile apps.</li>
<li>Application Platform <a href="http://msdn.microsoft.com/en-us/library/ff402531%28v=vs.92%29.aspx">Overview for Windows Phone</a> and the Windows Phone developer blog<br/><br />
<a href="http://windowsteamblog.com/windows_phone/b/wpdev">http://windowsteamblog.com/windows_phone/b/wpdev</a>/ with tips and tricks for the developer and those interested in the Windows Phone OS</li>
<li><a href="http://developer.mapquest.com/">Mapquest developer network and tools</a> – details of their flash maps API, geocoding tools, working with OSM and more – a complete resource for developing for Mapquest. See also OSM tools and guidelines from mapquest – <a href="http://developer.mapquest.com/web/products/open/tools">http://developer.mapquest.com/web/products/open/tools</a></li>
<li><a href="http://mapnik.org/">Mapnik</a> is a Free Toolkit for developing mapping applications – perhaps not for mobile development, however, Mapnik is a fantastic, open resource for anyone looking to start mashing around with maps and map data!</li>
</ol>
<p style="text-align: center;"><img width="137" height="204" alt="" src="http://www.gisuser.com/images/geek1.jpg" class="aligncenter"/>Image Credit  – <a href="https://www.facebook.com/pages/Alexs-Mobile-Geek-Support/173252606023968">Alex’s Mobile Geek Support</a></p>
<p>Resources are a plenty, that’s for sure! For even more I suggest you check out this HUGE directory of <a href="http://www.gisuser.com/component/option,com_mtree/task,listcats/cat_id,69/Itemid,174/"><strong>developer programs HERE</strong></a> and see also <a href="http://www.gisuser.com/content/view/26016/222/"><strong>Hackday – Tips, Tricks, OpenData sources, and Developer Resources for Mobile Application Developers</strong></a></p>
<p><a href="http://www.gisuser.com/content/view/23140/28/"><strong>See also – Must Have Developer Resources, App Market Tools and Dev Programs</strong><br />
<a href="http://blog.gisuser.com/2012/03/13/10-useful-resources-to-bookmark-for-the-mobile-developer-and-mobile-geek/">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/10-useful-resources-to-bookmark-for-the-mobile-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Average Developer Salaries Around The World</title>
		<link>http://www.devnewz.com/average-developer-salaries-around-the-world/</link>
		<comments>http://www.devnewz.com/average-developer-salaries-around-the-world/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 14:07:22 +0000</pubDate>
		<dc:creator>Chris Crum</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6480</guid>
		<description><![CDATA[It looks like Australia is the place to be if you want to maximize your wealth, developing. Staff.com put out &#8230;]]></description>
			<content:encoded><![CDATA[<p>It looks like Australia is the place to be if you want to maximize your wealth, developing. </p>
<p><span id="more-6480"></span></p>
<p>Staff.com put out the following infographic looking at average annual salaries for web developers, software developers, graphic designers, and some other positions. </p>
<p>Australia is pretty much ahead in all categories except graphic design, where it’s beaten only by Switzerland. For some reason Switzerland isn’t shown in each category though. Either way, it looks like Australia is not a bad place to have a developer or design career. </p>
<p><a href="https://www.staff.com/blog/web-developer-salaries-infographic/"><img width="616" class="aligncenter" title="Developer Salaries" src="http://cdn.ientry.com/sites/webpronews/article_pics/mystaff-developer-salaries.jpg" alt="Developer Salaries"/></a></p>
<p><a href="http://www.webpronews.com/where-to-get-paid-the-most-for-web-and-software-development-infographic-2012-02">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/average-developer-salaries-around-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codeacademy Letting Users Create Courses</title>
		<link>http://www.devnewz.com/codeacademy-letting-users-create-courses/</link>
		<comments>http://www.devnewz.com/codeacademy-letting-users-create-courses/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 20:47:46 +0000</pubDate>
		<dc:creator>William Berry</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6476</guid>
		<description><![CDATA[Its newly introduced course creator functionality positions the popular startup as an E-learning platform. After raising $2.5 Million in its &#8230;]]></description>
			<content:encoded><![CDATA[<p>Its newly introduced course creator functionality positions the popular startup as an E-learning platform.</p>
<p>After raising $2.5 Million in its first funding round last fall, and attracting nearly 400,000 pupils to date with its <a target="_blank" href="http://www.codeyear.com/">CodeYear</a> initiative (including current <a target="_blank" href="http://www.bbc.co.uk/news/technology-16440126">New York City Mayor Michael Bloomberg</a>), promising E-learning startup <a target="_blank" href="http://www.codecademy.com/">Codeacademy</a> has recently jumped on board the crowdsourcing bandwagon with the introduction of its <a target="_blank" href="http://www.codecademy.com/creators">course creator</a> functionality.</p>
<p>Course creator allows users (who were only ever pupils in the past) to author new lessons with relative ease.</p>
<p>Fractus Learning has an interesting take on this development <a target="_blank" href="http://www.fractuslearning.com/2012/01/31/teaching-programming-codecademy/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/codeacademy-letting-users-create-courses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making The Most of Meta Descriptions</title>
		<link>http://www.devnewz.com/making-the-most-of-meta-descriptions/</link>
		<comments>http://www.devnewz.com/making-the-most-of-meta-descriptions/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 17:51:03 +0000</pubDate>
		<dc:creator>Wesley LeFebvre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6472</guid>
		<description><![CDATA[There is an ongoing debate as to whether search engines use keywords in meta descriptions to rank a web page. &#8230;]]></description>
			<content:encoded><![CDATA[<p>There is an ongoing debate as to whether search engines use keywords in meta descriptions to rank a web page. One thing is certain though, Google sometimes (but not always) uses the description as a snippet when it presents search results to a user on the Search Engine Results Page (SERP). Generally if the user is searching for a URL this is the case. <span id="more-6472"></span></p>
<p>The main point here is that you are in control of what your meta description states and a well crafted statement about the page can increase your <a href="http://www.seologic.com/faq/meta-descriptions">clickthrough</a> rate.</p>
<h2>Writing a Meta Description</h2>
<p>When writing the description it is helpful to think in terms of advertising. What is the user looking for and what will compel him or her to choose your site over the numerous others that will be displayed?  A short and snappy summary of the page with your prominent keywords (they will be in <strong>bold</strong> text) near the beginning of the description will catch a users eye.</p>
<p>The description should be no longer than 155 characters or you stand the chance of having the message truncated. The meta description allows you to provide the search engine with a meaningful description of your page when they are unable to automatically create one from the page content.</p>
<h2>In the SERPs</h2>
<p>Meta descriptions are often used when the search engine displays <a href="http://www.highrankings.com/metadescription">extended</a> site links. It is very important therefore to write a separate and distinct meta description for each and every page on your website. Extended site links are highly keyword dependent, so to benefit most from your meta descriptions your site must have a uniform purpose and your keywords must reflect this purpose. The use of these keywords at the beginning of your meta description will increase the odds that the search engine will use the meta description as a snippet.</p>
<h2>Social Media Usage</h2>
<p>Meta descriptions are especially important in social media marketing such as Facebook and Google+. If there is no meta description the search engine will usually default to the first sentence used in the article and this will not properly convey what the whole article is about. The majority of marketers on social networks overlook this fact and by creating the meta description you will enjoy a competitive advantage over your competition.</p>
<h2>Indexation</h2>
<p>A meta description in general is one of several meta elements that provide search engines with information that helps the algorithm index and categorize the page. They are not visible to the user as they are part of the HTML document. In the 1990′s they were essential to search engines in ranking a page but as webmasters learned ways to gain an advantage through keyword stuffing and other black hat SEO techniques search engines gradually started looking to other criterion in search technology.</p>
<p><a href="http://googlewebmastercentral.blogspot.com/2009/09/google-does-not-use-keywords-meta-tag.html">Today</a> meta elements have a far less effect on determining ranking of any given page as search engine robots have become more refined in sniffing out spamdexing and keyword stuffing.</p>
<p>The search engines of today use a variety of criterion to establish page rank such as:</p>
<ul>
<li>Freshness</li>
<li>Quantity and quality of content</li>
<li>Number of links from related websites</li>
<li>Technical precision of source code</li>
<li>Click-throughs</li>
<li>Page views</li>
<li>Relevance</li>
<li>Uniqueness</li>
</ul>
<p>The search algorithms of today are constantly changing and evolving but this does not mean you should disregard older aspects of page development. At the very least a well written meta description will be a sign of quality and technical precision in the eyes of search providers. These two criteria do play a part in ranking and will set you apart from those who are looking for the fast track to the top.</p>
<p><a href="http://www.seorankings.com/making-the-most-of-meta-descriptions">Comments</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/making-the-most-of-meta-descriptions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun With JQuery: Part 2</title>
		<link>http://www.devnewz.com/fun-with-jquery-part-2/</link>
		<comments>http://www.devnewz.com/fun-with-jquery-part-2/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 20:20:38 +0000</pubDate>
		<dc:creator>Qushawn Clark</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6463</guid>
		<description><![CDATA[JQuery has a vast array of nice plugins for it that are generally free to use, and I&#8217;m going to &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://jquery.com/">JQuery</a> has a vast array of nice plugins for it that are generally free to use, and I&#8217;m going to go over a few here in this article.</p>
<p>In the last <a href="http://www.devnewz.com/fun-with-jquery-part-1-–-fancybox/">article</a>, I talked about the nifty little <a href="http://fancybox.net/">fancybox</a> plugin for JQuery, and also explained a little on how to use it. If you were lazy and didn&#8217;t read the <a href="http://docs.jquery.com/Tutorials:How_jQuery_Works">JQuery</a> tutorial that I linked, you can go ahead and read it here. Trust me, learning JQuery is easy and extremely worthwhile if you are into web design. I will at least get you started on that part and show you how to get the actual JQuery library below:</p>
<p>	&lt;script src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js&#8221; &gt;<br />
	&lt;/script &gt;</p>
<p>Now, let&#8217;s get down to business and talk about the actual plugins.<br />
1. <strong>Spacegallery</strong> &#8211; This first one that we&#8217;ll go over is somewhat similar to something you can do with fancybox. Spacegallery is a Jquery plugin that allows you to create cool, cascading image galleries. The way it works is similar to a filing cabinet, in that you can see the other images stacked up behind the current one. You can&#8217;t skip images with the current version of the plugin, but i&#8217;m sure any developer ambitions enough could rig something up. Check it out <a href="http://www.eyecon.ro/spacegallery/#about">here</a>.</p>
<p>2. <strong>Airport</strong> – I love this plugin. If you have ever been to really old airport/bus station/train station, you may have seen the old school information board that are updated by mechanically flipping the characters around. When you look at them, it just looks like they&#8217;re flickering and then the new message is there. Well, anyways, that is what this plugin emulates. There is a demo on the project <a href="http://unwrongest.com/projects/airport/">page</a> and instructions on how to use it.</p>
<p>3. <strong>MopTip</strong> – This little plugin allows you to create cool little boxes that will appear when you mouse over an object that you use it on. They are fully customizable, including having the ability to display images within the box. Don&#8217;t be afraid when you get to the site and see that it is all in Japanese, there is an option for English at the top.<br />
Well, that&#8217;s it for now. I might have a few more of these for you next time, so stay tuned for more cool JQuery tips in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/fun-with-jquery-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun with jQuery: Part 1 – Fancybox!</title>
		<link>http://www.devnewz.com/fun-with-jquery-part-1-%e2%80%93-fancybox/</link>
		<comments>http://www.devnewz.com/fun-with-jquery-part-1-%e2%80%93-fancybox/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 16:18:51 +0000</pubDate>
		<dc:creator>Qushawn Clark</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devnewz.com/?p=6459</guid>
		<description><![CDATA[For those of you who don&#8217;t know much about it, jQuery is a javascript library that greatly simplifies client-side scripting, &#8230;]]></description>
			<content:encoded><![CDATA[<p>For those of you who don&#8217;t know much about it, jQuery is a javascript library that greatly simplifies client-side scripting, which can really be a pain.</p>
<p>Aside from the many useful things that jQuery offers, such as simplified event handling, there is also a vast array of third party plugins that do just about anything you would want a site to do. Now, before I get into Fancybox awesomeness, if you don&#8217;t know much (or anything) about jQuery, you should go and read the <a href="http://docs.jquery.com/Tutorials:How_jQuery_Works">tutorial</a>.</p>
<p>Now, as stated on the <a href="http://fancybox.net/">website</a>, &#8220;FancyBox is a tool for displaying images, html content and multi-media in a Mac-style &#8220;lightbox&#8221; that floats overtop of a web page,&#8221; or in other words, its a cool frame that doesn&#8217;t require a page reload. There are a lot of cool examples on the site that you can check out to see what it will actually look like, but below is an image of an image displayed using the tool.</p>
<p>As you can see, it is a very sleek interface that would fit in just about any setting where you need to load something without reloading the whole page. Another nifty feature is that you can actually load things other than images, such as other web pages, videos, and long pieces of text if you like.</p>
<p>Now that I&#8217;ve hyped this thing enough, it would be a good idea for you to go ahead and download it, read the instructions, and try to implement this thing on your own. Trust me, it will make any website look fresh and new, even if just about everything else is plain.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devnewz.com/fun-with-jquery-part-1-%e2%80%93-fancybox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

