<?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>Chosen Web Development</title>
	<atom:link href="http://chosendevelopment.com/feed" rel="self" type="application/rss+xml" />
	<link>http://chosendevelopment.com</link>
	<description>A blog for developers and programmers</description>
	<lastBuildDate>Fri, 11 Dec 2009 18:55:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Expression Engine Plugin: HTML Character Limit</title>
		<link>http://chosendevelopment.com/download/expression-engine-plugin-html-character-limit</link>
		<comments>http://chosendevelopment.com/download/expression-engine-plugin-html-character-limit#comments</comments>
		<pubDate>Wed, 09 Dec 2009 19:29:01 +0000</pubDate>
		<dc:creator>Chosen</dc:creator>
				<category><![CDATA[Downloads and Freebies]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[expression engine]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=452</guid>
		<description><![CDATA[Clay has developed our first Expression Engine plugin, HTML_Limit, which is a character limit function that is HTML aware and will close element properly. This extension is compatible with ExpressionEngine 2.x but it hasn't been tested on the 1.x series. If you're looking for similar functionality on the old system, do a google search for <strong>trunchtml</strong>.]]></description>
			<content:encoded><![CDATA[<p>Clay has developed our first Expression Engine plugin, HTML_Limit, which is a character limit function that is HTML aware and will close element properly. This extension is compatible with ExpressionEngine 2.x but it hasn&#8217;t been tested on the 1.x series. If you&#8217;re looking for similar functionality on the old system, do a google search for <strong>trunchtml</strong>.</p>
<h3>Using the HTML Character Limit:</h3>
<p>Wrap anything you want to be processed between the tag pairs, can be variable text or plain text. HTML Character Limiter will automatically detect valid html tags and ignore them in the character count as well as close them properly. The &#8220;chars&#8221; parameter lets you specify the number of characters and &#8220;suffix&#8221; lets you append whatever text to the end (before any closing element tags).</p>
<pre>{exp:html_limit chars="100" suffix="..."}{body}{/exp:html_limit}</pre>
<p>Download: <a class="downloadlink" href="http://chosendevelopment.com/wp-content/plugins/download-monitor/download.php?id=10" title="Version2.1 downloaded 91 times" >HTML Character Limit (91)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/download/expression-engine-plugin-html-character-limit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Snippets</title>
		<link>http://chosendevelopment.com/technology/jquery-snippets</link>
		<comments>http://chosendevelopment.com/technology/jquery-snippets#comments</comments>
		<pubDate>Thu, 08 Oct 2009 23:38:17 +0000</pubDate>
		<dc:creator>Shane Strong</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=425</guid>
		<description><![CDATA[Some real quick jquery snippets and plugins that will help you develop faster more dynamic web applications. Check out http://codejquery.com for more!]]></description>
			<content:encoded><![CDATA[<h3>Replacement For target=&#8221;_blank&#8221;</h3>
<p>A real quick way to make all your external links open in another window.  All you have to do to get this jQuery snippet to work is have the rel=&#8221;external&#8221;.  With that this little bit or jQuery will open the link in a blank window.</p>
<pre class="html" name="code">
// Replace for target="_blank" to open in a new window
    $("a[@rel~='external']").click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
</pre>
<h3>Easy jQuery Parent Load</h3>
<p>With this small bit of jQuery you are able to have the browser load the parent href attribute of the item you are clicking.  All that you have to have on the child element is rel=&#8221;ajax&#8221;. </p>
<pre class="html" name="code">
// Load parent container via AJAX
    $("a[@rel~='ajax']").click( function() {
        $(this).parent().load( $(this).attr('href') );
        return false;
    });
</pre>
<h3>Easy Vertical Align</h3>
<p>This little snippet can come in real handy when you are trying to center a object to the documents height.  This is quite simple all you have to do to make this work is as the class vcenter to the object that you want to center to your document.</p>
<pre class="html" name="code">
// Center Object Vertically to Document
    var doc_height = $(document).height();
    var el_height = $(".vcenter").height();
    $(".vcenter").css({"position" : "relative" , "top" :
doc_height/2 - el_height/2});
</pre>
<h3>Simple jQuery Lightbox</h3>
<p>Who needs a huge 5k Lightbox when you can build your own with as little as what you see below.  This is the basic version of this snippet brought to you by <a href="http://www.thinkclay.com">Clayton McIlrath</a>.  If you would like to know everything about this jQuery snippet go to <a href="http://thinkclay.com/news/jquery-lightbox-modal-plugin">jQuery Lightbox Modal Plugin</a>.  This Lightbox is so easy to use all you have to do is style your Lightbox how you want to.  Then you invoke the modal() function and that will trigger your lightbox.  </p>
<pre class="html" name="code">
(function ($) {
// Custom Lightbox, you can also find this on http://thinkclay.com/news/jquery-lightbox-modal-plugin
    $.fn.modal = function() {
        return this.each(function(i){
            var ah = $(this).height();
            var wh = $(this).parent().height();
            var nh = (wh - ah) / 3;

            var aw = $(this).width();
            var ww = $(this).parent().width();
            var nw = (ww - aw) / 2;

            $(this).css({'margin-top' : nh, 'margin-left' : nw});
            alert(dh);
        });
    };
})(jQuery);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/technology/jquery-snippets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Designer Tools</title>
		<link>http://chosendevelopment.com/design/web-designer-tools</link>
		<comments>http://chosendevelopment.com/design/web-designer-tools#comments</comments>
		<pubDate>Thu, 20 Aug 2009 18:06:40 +0000</pubDate>
		<dc:creator>Chosen</dc:creator>
				<category><![CDATA[Design and Creativitiy]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Design and Graphics]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=374</guid>
		<description><![CDATA[As a web designer it’s very important to have tools that will help you streamline your workflow and be as productive as possible.. all while saving precious RAM and coin by not having to purchase bulky application to help you do some of your daily tasks. Thanks to many communities and websites, we have online applications to lend us a hand. Here’s a list of great applications that will help you along…]]></description>
			<content:encoded><![CDATA[<h2>Color Inspiration</h2>
<p><a rel="external" href="http://www.colourlovers.com/"><img class="alignleft" title="Colour Lovers" src="http://chosendevelopment.com/wp-content/uploads/2009/08/Picture-5-300x125.png" alt="Colour Lovers" width="300" height="125" /></a><strong><big><a rel="external" href="http://www.colourlovers.com/">Colour Lovers</a></big></strong><br />
Colour Lovers is a social resource to share and gather color trends and patterns. There are over a million color names, thousands of color palettes and patterns, comments and ratings as well as interviews and resources from topnotch designers.</p>
<p><a rel="external" href="http://www.colorcombos.com/"><img class="alignleft" title="Color Combos" src="http://chosendevelopment.com/wp-content/uploads/2009/08/Picture-6-300x139.png" alt="Color Combos" width="300" height="139" /></a><strong><big><a rel="external" href="http://www.colorcombos.com/">Color Combos</a></big></strong><br />
Color Combos allows you to browse thousand of different colors combinations for getting inspired for your upcoming design. Color schemes can be browsed by individual colors. This is a great tool to store pallets as well as find colors to match ones you may already be working with.</p>
<h2>Icon and Favicon Tools</h2>
<p><a rel="external" href="http://www.iconfinder.net/"><img class="alignleft" title="Icon Finder" src="http://chosendevelopment.com/wp-content/uploads/2009/08/Picture-7-300x130.png" alt="Icon Finder" width="300" height="130" /></a><strong><big><a rel="external" href="http://www.iconfinder.net/">Icon Finder</a></big></strong><br />
Iconfinder provides high quality icons for web designers and developers in an easy and efficient way. You simply type in a keyword into the search box and Iconfinder fetches beautiful icons which you can use royalty free.</p>
<p><a rel="external" href="http://www.converticon.com/"><img class="alignleft" title="Converticon" src="http://chosendevelopment.com/wp-content/uploads/2009/08/Picture-8-300x180.png" alt="Converticon" width="300" height="180" /></a><strong><big><a rel="external" href="http://www.converticon.com/">ConvertIcon</a></big></strong><br />
Convert Icon is a free online service that allows you to upload an image and will return an .ico file which can be used for the little bookmark icons in your browsers address bar and folders. These icons are subtle, but very important and helpful in establishing brand and impression to your users. You can also use Dynamic Drive&#8217;s really simple <a href="http://tools.dynamicdrive.com/favicon/">FavIcon Generator</a>.</p>
<h2>Font Tools</h2>
<h3><a rel="external" href="http://www.fontburner.com/">Font Burner</a></h3>
<p><em>Font Burner</em> lets you search for fonts that you can embed in your site. You can embed the font you’ve chosen on your web pages by copying-and-pasting the code they provide (which uses <a href="http://en.wikipedia.org/wiki/Scalable_Inman_Flash_Replacement">sIFR</a>).</p>
<h3><a rel="external" href="http://www.myfonts.com/WhatTheFont/">My Fonts – What The Font?!</a></h3>
<p>Ever wanted to find a font just like the one used by certain publications, corporations, or ad campaigns? Well now you can, using our WhatTheFont font recognition system. Upload a scanned image of the font and instantly find the closest matches in our database. If WhatTheFont can’t figure it out, you can submit your image to the WhatTheFont Forum where cloak-draped font enthusiasts around the world will help you out!</p>
<h3><a rel="external" href="http://fontstruct.fontshop.com/">Font Struct</a></h3>
<p>FontStruct is a free font-building tool brought to you by the world’s leading retailer of digital type, FontShop. FontStruct lets you quickly and easily create fonts constructed out of geometrical shapes, which are arranged in a grid pattern, like tiles or bricks. You create ‘FontStructions’ using the ‘FontStructor’ font editor. Once you’re done building, FontStruct generates high-quality TrueType fonts, ready to use in any Mac or Windows application. You can keep your creations to yourself, but we encourage users to share their “FontStructions”. Explore the Gallery of fonts made by other FontStruct users and download them or even copy them and make your own variations.</p>
<h3><a rel="external" href="http://www.typechart.com/">Typechart</a></h3>
<p><em>Typechart</em> lets you quickly evaluate an assortment of web typography. Once you’ve discovered the font you like, you can use the Get CSS button to obtain the style rules for it.</p>
<h3><a rel="external" href="http://typetester.maratz.com/">Typetester</a></h3>
<p>The Typetester is an online application for comparison of the fonts for the screen. Its primary role is to make web designer’s life easier. As the new fonts are bundled into operating systems, the list of the common fonts will be updated. Typetester’s code structure is XHTML, styled with the finest CSS and driven by the JavaScript for manipulating DOM structures. Typetester will not work without JavaScript enabled.</p>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/design/web-designer-tools/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Developer Tools</title>
		<link>http://chosendevelopment.com/technology/web-developer-tools</link>
		<comments>http://chosendevelopment.com/technology/web-developer-tools#comments</comments>
		<pubDate>Mon, 03 Aug 2009 06:03:23 +0000</pubDate>
		<dc:creator>Chosen</dc:creator>
				<category><![CDATA[Downloads and Freebies]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=358</guid>
		<description><![CDATA[As a web developer it's very important to have tools that will help you streamline your workflow and be as productive as possible.. all while saving precious RAM and coin by not having to purchase bulky application to help you do some of your daily tasks. Thanks to many communities and websites, we have online applications to lend us a hand. Here's a list of great applications that will help you along...]]></description>
			<content:encoded><![CDATA[<p>As a web developer it&#8217;s very important to have tools that will help you streamline your workflow and be as productive as possible.. all while saving precious RAM and coin by not having to purchase bulky application to help you do some of your daily tasks. Thanks to many communities and websites, we have online applications to lend us a hand. Here&#8217;s a list of great applications that will help you along:</p>
<h2>Encode/Decode Tools</h2>
<p><a rel="external" href="http://www.opinionatedgeek.com/DotNet/Tools/HTMLEncode/Encode.aspx"><img src="http://chosendevelopment.com/wp-content/themes/magazeen/timthumb.php?src=http://chosendevelopment.com/wp-content/uploads/2009/08/Picture-9.png&amp;w=300&amp;h=125&amp;zc=1" alt="HTML Encoder" title="HTML Encoder" class="alignleft" /></a><strong><big><a rel="external" href="http://www.opinionatedgeek.com/DotNet/Tools/HTMLEncode/Encode.aspx">HTML Encoder / Decoder</a></big></strong><br />
This encoder makes quotes, ampersands, and other characters web friendly. With this encoder you can type or paste in the text you want to HTML encode, then press the button (or reverse the process with their decoder). <a href="http://www.opinionatedgeek.com/DotNet/Tools/HTMLEncode/Default.aspx">Read a brief explanation of the process</a>.</p>
<p><a rel="external" href="http://www.dynamicguru.com/files/encode-decode.php" title="Online base64 encoder / decoder"><img src="http://chosendevelopment.com/wp-content/themes/magazeen/timthumb.php?src=http://chosendevelopment.com/wp-content/uploads/2009/08/base64_encode_decode.jpg&amp;w=300&amp;h=170&amp;zc=1" alt="base 64 encode and decode" title="base64 encode and decode tool" width="300" height="170" class="alignleft" /></a><strong><big><a rel="external" href="http://www.dynamicguru.com/files/encode-decode.php" title="Online base64 encoder / decoder">Text Encoder / Decoder</a></big></strong><br />
<a rel="external" href="http://en.wikipedia.org/wiki/Base64">Base64 </a>refers to a specific <a href="http://en.wikipedia.org/wiki/MIME#Content-Transfer-Encoding" title="MIME">MIME content transfer encoding</a> or as a generic term for similar encoding schemes that encode <a href="http://en.wikipedia.org/wiki/Binary_data" title="Binary data">binary data</a> translated into a <a href="http://en.wikipedia.org/wiki/Base_64" title="Base 64">base 64</a> representation. If you like this tool, you&#8217;ll also love the <strong><a rel="external" href="http://www.greywyvern.com/code/php/binary2base64">binary file to Base64 encoder</a></strong> which will help you embed files with markup: XHTML, CSS, XML and more.</p>
<h2>Code Cleaners</h2>
<h3><a rel="external" href="http://www.prettyprinter.de/index.php">Pretty Printer for PHP, Java, C++, C, Perl, JavaScript, CSS</a></h3>
<p><a href="http://floele.flyspray.org/csstidy//css_optimiser.php">CSS Tidy</a></strong></p>
<p>Even advanced developers often needs to optimize their CSS code. <em>CSS Tidy</em> is a free, online application that will fix errors and optimize your CSS code. For example, it can automatically detect redundant styles, a very common problem of CSS codes.</p>
<h2>Code Generation</h2>
<h3><a rel="external" href="http://www.webformfactory.com/">webformfactory</a></h3>
<p>Web Form Factory is an open source web form generator which automatically generates the necessary backend code to tie your form to a database. By generating the backend code for you, WFF saves you time… time you could spend doing more interesting stuff.</p>
<h3><a rel="external" href="http://www.phpform.org/">pForm</a></h3>
<p>Create a php form in seconds with this free and easy to use tool. If you need a little more power you can check out its parent program MachForm or great alternatives wufoo and formspring (both of which offer limited free versions and paid premium versions).</p>
<h2>Text Generators</h2>
<p>We have all seen it and probably also used it… <em>Lorem Ipsum</em> text? This text is used by webdesigners worldwide to simulate the render of real text on a design. Lipsum.com allow you to create th desired number of paragraphs of <em>Lorem Ipsum</em>, quickly and simply.</p>
<h3><a rel="external" href="http://lipsum.com/">LIpsum</a></h3>
<h3><a href="http://html-ipsum.com/">HTML Ipsum</a></h3>
<p>A useful little website created by Chris Coyier. It provides you with the standard Latin text already in HTML tags. Clicking on any of the blocks automatically copies the text to your clipboard!</p>
<h3><a rel="external" href="http://www.blindtextgenerator.com/">blindtextgenerator</a></h3>
<h2>Browser Tests: Online-Services &#038; Tools</h2>
<h3><a rel="external" href="http://www.xenocode.com/browsers/">Xenocode browsers</a></h3>
<p>Tool for checking your website in different browsers. <em>Xenocode Browsers</em> allow you to lauch IE6, IE7, IE8, Firefox 2, Firefox 3, Google Chrome and Opera directly from the web. The only weak point: The service isn’t available for Macs and GNU/Linux powered PCs.</p>
<h3><a rel="external" href="http://browsershots.org/">BrowserShots</a></h3>
<p>BrowserShots is a free open source service that allows you to make screenshots of any web page available on the Internet (be aware that robots.txt can prevent this service). Most browser types (Firefox, Opera, IE and Safari, Dillo, Epiphany, Flock, Galeon, Konqueror, Seamonkey etc.) in relevant versions is available and you can also choose between the following Operating System: Linux, Windows, Mac OS and BSD.</p>
<p>You can adjust the width of the screen size (640 – 1600), color depth (8 – 32 bits per pixel) as well as the JavaScript-, Java- and Flash-support. BrowserShots rely on distributed computers that are run by volunteers and the most popular Browsers may be quite busy and it this means that getting your screenshot may take some time. As screenshots become ready they will be available for viewing individually or for download of the full package.</p>
<h3><a rel="external" href="http://www.crossbrowsertesting.com/">Crossbrowsertesting (free/commerical)</a></h3>
<p>CrossBrowserTesting.com allows website designers to test the cross browser compatibility of their website across <a rel="external" href="http://www.crossbrowsertesting.com/configurations.php">different browsers and operating systems</a>. CrossBrowserTesting.com is a commercial service where users buy credits giveng 5 min usage each. Anyone can register and use the service for for free but the free service has a 5 min max length.</p>
<p>CrossBrowserTesting.com lets you log on to a remote session and take control of a operating system with a range of Browsers installed. This gives you the option to test your AJAX and Javascript as well as the layout.</p>
<h3><a rel="external" href="http://loadimpact.com/">Load Impact</a></h3>
<p>Load Impact  is a free tool which tests your site at different load levels and then displays your results in an easy to understand graph. Careful not to put your own site out of business!</p>
<h3><a rel="external" href="http://tools.pingdom.com/">Pingdom</a></h3>
<p>Pingdom loads a complete HTML page including all objects (images, CSS, JavaScripts, RSS, Flash and frames/iframes). It mimics the way a page is loaded in a web browser and then displays how long each of those elements took to load using nice visual time bars. This can be very useful when you are trying to improve the efficiency of your site.</p>
<h3><a rel="external" href="http://tester.jonasjohn.de/">Test Everything</a></h3>
<p>More than 100 online tools on one page.</p>
<h3><a rel="external" href="http://www.jsunit.net/" title="JSUnit - introduction">JSUnit</a></h3>
<p><em>JSUnit</em> is a unit testing framework for JavaScript. Testing JavaScript manually is time-consuming and prone to errors, but JSUnit provides the developer a simpler, automated way of doing unit tests to ensure thorough testing at a fraction of the time it would take to test manually. JSUnit allows for the execution of automated tests for multiple browsers and operating systems.<a rel="external" href="http://www.jsunit.net/runner/testRunner.html?testpage=/runner/tests/jsUnitTestSuite.html"> Test online</a></p>
<h3><a rel="external" href="http://validator.w3.org/checklink">W3C Link Checker</a></h3>
<p>Really handy tool for checking if all links on you web pages are valid.</p>
<h3><a rel="external" href="http://tripwiretest.larsvraa.com/"><span>Markup Validation Service</span></a></h3>
<p>Markup that is not well formed may give your site serious presentation issues in some Browsers while they are barely visible on others. It is always recommended to validate your site with the W3C Markup Validator and fix all the errors it reports.</p>
<h3 id="title"><a rel="external" href="http://jigsaw.w3.org/css-validator/"><span>CSS Validation Service</span></a></h3>
<p id="tagline">Check Cascading Style Sheets (CSS) and (X)HTML documents with style sheets</p>
<h2>Character Lookup</h2>
<h3><a rel="external" href="http://leftlogic.com/lounge/articles/entity-lookup/">HTML Entity Character Lookup</a></h3>
<p>Need to know how to display the trademark symbol on one of your pages, this tool if just for you. The HTML Entity Lookup searches the html entities for matches to the searched character based on how the character looks. For instance, the letter “c” would match © and ¢ entity, because of the way they look. This is really a tool that you need to try to understand how useful it is (also available as a dashboard widget for you Mac users).</p>
<h2>Domain Tools</h2>
<h3><a rel="external" href="http://domai.nr/">Domainr</a></h3>
<p>There are plenty of tools available that tell you whether a domain is taken or not. What sets Domainr apart is that it takes your query and then tries to create a more memorable name. Domainr helps you explore the entire domain name space beyond the ubiquitous and crowded .com, .net and .org.</p>
<h2>Firefox addons</h2>
<h3><a rel="external" href="http://www.getfirebug.com/">Firebug</a></h3>
<p>Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page. This is probably one of the most widely used web developer tools out there. If you don’t have it, get it now!</p>
<h3><a rel="external" href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer Toolbar</a></h3>
<p>An extremely useful Firefox plugin which provides many tools which web developers use on a daily basis. Great for quickly validating your XHTML or inspecting HTTP header information.</p>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/technology/web-developer-tools/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Hosting Package</title>
		<link>http://chosendevelopment.com/web-servers-and-hosting/web-hosting-package</link>
		<comments>http://chosendevelopment.com/web-servers-and-hosting/web-hosting-package#comments</comments>
		<pubDate>Tue, 21 Jul 2009 17:13:32 +0000</pubDate>
		<dc:creator>Chosen</dc:creator>
				<category><![CDATA[Servers and Hosting]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=352</guid>
		<description><![CDATA[Buying a hosting plan can be as easy as purchasing one online, but you should know what you’re getting into. If you don’t know all of the ins and outs of web hosting, it can seem a little confusing. From managing files to ensuring security, there are numerous things to be concerned about before making that final click. Thankfully, there are a lot of different <a href="http://www.webhostingsearch.com/" title="Web Hosting">web hosting options</a> out there, so take the time to investigate each package to make sure you’re getting what you need to make your web presence a success. Here are some things to keep in mind...]]></description>
			<content:encoded><![CDATA[<h2>What to look for in a Web Hosting Package</h2>
<p>Buying a hosting plan can be as easy as purchasing one online, but you should know what you’re getting into. If you don’t know all of the ins and outs of web hosting, it can seem a little confusing. From managing files to ensuring security, there are numerous things to be concerned about before making that final click. Thankfully, there are a lot of different <a href="http://www.webhostingsearch.com/" title="Web Hosting">web hosting options</a> out there, so take the time to investigate each package to make sure you’re getting what you need to make your web presence a success. Here are some things to keep in mind:</p>
<h3>1. Easy Backups</h3>
<p>Before you entrust your important site assets and files to a <strong>web hosting company</strong>, make sure they offer some sort of automatic backup system. It should come included as part of the web hosting package. </p>
<h3>2. Advanced Emailing</h3>
<p>Successfully running a website means being able to interact directly with your website visitors. You’ll want to make sure that the <strong>web hosting</strong> plan offers at least POP3 email capabilities standard. </p>
<h3>3. Web Statistics</h3>
<p>You will undoubtedly want to have the ability to track who is coming to your website and from where. The <strong>web hosting</strong> plan should offer some basic web analytics for free and more advanced ones for purchase.</p>
<h3>4. PHP and MySQL Functionality</h3>
<p>A good <strong>web hosting package</strong> should include compatibility with standard programming languages such as PHP. Also, having MySQL capabilities makes it easy to run advanced back-end operations and database tasks. </p>
<h3>5. FTP Service and Virtual FTP</h3>
<p>You will also want the ability to manage files remotely, securely and efficiently. FTP access lets you easily add and remove files from your system architecture. This has become a standard that you should definitely have with any <strong>hosting plan</strong>. </p>
<h3>6. User-Friendly Interface</h3>
<p>The days of complex programming being the only way to access your web hosting functions are gone. Today, look for an <a href="http://www.webhostingsearch.com/cheap-web-hosting.php" title="Affordable Web Hosting">affordable hosting package</a> that employs a simple, straightforward user interface. Many packages offer a Windows-based interface that is both familiar and intuitive to most personal computer users. </p>
<h3>7. HTTPS Secure</h3>
<p>HTTPS makes secure connections possible over otherwise unsecured browser connections. This basic technique for encrypting regular hypertext messages is a clear sign that your site is trustworthy and safe. This is important for member services and client log ins on your website. </p>
<h3>8. Shell protection</h3>
<p>SSH security shells make it easier to mange the secure files and private assets on your website. Without it, administrative actions are less secure, something that you cannot risk if you have sensitive information stored on your server.</p>
<h3>9. Webmail</h3>
<p>Webmail is all about access. If you are not at your private laptop or desktop and you have no specialized software to retrieve your email, you can use webmail to access your email from any computer with a working internet connection and regular web browser. </p>
<h3>10. SPAM protection</h3>
<p>If you are going to be able to manage your time effectively, you don’t want to deal with loads of spam mail. This is an increasing problem, so be sure that any web hosting package you are considering has protection for your inbox.</p>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/web-servers-and-hosting/web-hosting-package/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery Tooltip Plugin</title>
		<link>http://chosendevelopment.com/design/jquery-tooltip-plugin</link>
		<comments>http://chosendevelopment.com/design/jquery-tooltip-plugin#comments</comments>
		<pubDate>Tue, 14 Jul 2009 19:58:17 +0000</pubDate>
		<dc:creator>Clayton McIlrath</dc:creator>
				<category><![CDATA[Design and Creativitiy]]></category>
		<category><![CDATA[Downloads and Freebies]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=335</guid>
		<description><![CDATA[<strong>jQuery</strong> is one of the strongest and most flexible <strong>javascript libraries</strong> to use in web development. With the framework and API being so open and well documented, it's easy for a developer of any skill level to develop their own effects and plugins. Today we offer you a <strong>jquery tooltip plugin</strong> for download. This plugin is a mod of the <a href="http://flowplayer.org/tools/tooltip.html">original</a> made by Flowplayer with enhanced ease implementation and accessibility. Please take the time to review the <a href="http://flowplayer.org/tools/tooltip.html">documentation</a> and understand some minor differences...]]></description>
			<content:encoded><![CDATA[<p><strong>jQuery</strong> is one of the strongest and most flexible <strong>javascript libraries</strong> to use in web development. With the framework and API being so open and well documented, it&#8217;s easy for a developer of any skill level to develop their own effects and plugins. Today we offer you a <strong>jquery tooltip plugin</strong> for download. This plugin is a mod of the <a href="http://flowplayer.org/tools/tooltip.html">original</a> made by Flowplayer with enhanced ease implementation and accessibility. Please take the time to review the <a href="http://flowplayer.org/tools/tooltip.html">documentation</a> and understand some minor differences:</p>
<h2>Tooltip jQuery Implementation</h2>
<pre name="code" class="html">
<!-- Include jQuery (using google's cdn is the best way)
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

<!-- Include the plugin (make sure this is the correct directory) -->
<script type="text/javascript" src="js/tooltip.js"></script>

<!-- Invoke the script and plugin -->
<script type="text/javascript">
$(function() {
    // Target elements to apply, and options to pass to the API
    $("a.tooltip").tooltip({offset: [15, 20]});
});
</script>
</pre>
<h2>Tooltip HTML Implementation</h2>
<p>The tooltip reads the target (in the example above, the target would be all &lt;a&gt; tags with the class of tooltip), and creates a tooltip based upon the title attribute on that link. For example:</p>
<pre name="code" class="html">
<a class="tooltip" href="#" title="link text">link</a>
</pre>
<h3><a href="http://dev.bychosen.com/framework/tooltip" title="jQuery Tooltip Plugin">View Demo</a> or <a href="http://chosendevelopment.com/wp-content/plugins/download-monitor/download.php?id=9">Download</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/design/jquery-tooltip-plugin/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>3 Quick Tips to Increase your Sales</title>
		<link>http://chosendevelopment.com/marketing/3-quick-tips-to-increase-your-sales</link>
		<comments>http://chosendevelopment.com/marketing/3-quick-tips-to-increase-your-sales#comments</comments>
		<pubDate>Mon, 06 Jul 2009 01:11:26 +0000</pubDate>
		<dc:creator>Justin Nowak</dc:creator>
				<category><![CDATA[Marketing and Sales]]></category>
		<category><![CDATA[business spotlight]]></category>
		<category><![CDATA[guest post]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=300</guid>
		<description><![CDATA[Today, Justin Nowak of <a href="http://younggogetter.com">Young Go Getter</a> has shared with us a few tips to increase sales by: <ul>
<li><strong>Preparing</strong> for a meeting by gathering materials and researching your client</li>
<li><strong>Listening</strong> and analyzing clients to better understand their interests and personality types</li>
<li><strong>Responding</strong> with solutions and answers to questions and well as friendly networking</li>
</ul>]]></description>
			<content:encoded><![CDATA[<h4>Prepare</h4>
<p>Research the company or client you are selling to, gathering any interesting information you can. When you are speaking with your client common questions are: <em>what do you know about their business</em> or <em>why you think your product or service would be great for them</em>, this is your opportunity to shine with the preparation stage, if you can bust this information out you&#8217;ll have them hooked and ready to reel in! Being prepared and knowing your client will show that you have an active interest in what they are doing, and people like to hear things about themselves, we all know that&#8217;s true!</p>
<p>Part of <strong>preparation</strong> is getting a good sleep, it will make your day that much easier and you will be that much more sharp. After I get up from a good sleep (which is hard being an entrepreneur) I sit down and set up my goals for that day. Making a plan of action has helped me stay focused on my targets and has lead me to sales success!</p>
<h4>Listen</h4>
<p>When your client is talking actively be sure to <strong>listen</strong>. Don&#8217;t just nod in agreement, but also make eye contact. It&#8217;s important to find a balance with eye contact, matching the client&#8217;s behavior but also keeping a couple tips in mind: <em>too much eye contact will make them uncomfortable</em> and <em>too little will make them think you lack confidence</em>. </p>
<p>While you&#8217;re listening be sure to analyze the client&#8217;s words and behaviors. You can find all sorts of clues that will help you with your <strong>sales pitch</strong>, and it is another great way to show that you care about what your client needs. You should recap what your customer expresses as interest or importance while you are stating the benefits of your product.. <em>use their words to reinforce why they need to buy from you!</em></p>
<p>Taking listening a step further by taking notes about what your customer is saying. This shows even more interest and it can help you remember to recap on some points you may otherwise forget. When you recap show the notes and go point by point with your customer explaining why your products fit their needs with their own words!</p>
<h4>Follow Up</h4>
<p>Always follow up, whether you get the sale or not. If you did get the sale its nice to catch any problems early so you can fix them before your customer gets frustrated. This will increase your customer satisfaction and turn customers into loyal friends to continue business. If you didn&#8217;t get the sale make sure you still follow up, most times it takes a few tries to get the sale. Make that connection with your customers and they will be very loyal!</p>
<hr />
<p><a href="http://younggogetter.com/" title="Freelance and Young Entrepreneur Bussiness Blog"><img class="alignleft" src="http://chosendevelopment.com/wp-content/themes/magazeen/timthumb.php?src=http://chosendevelopment.com/wp-content/uploads/2009/07/ygg.jpg&#038;w=125&#038;h=125&#038;zc=1" alt="Young Go Getter" /></a></p>
<h3>About the Author: Justin Nowak</h3>
<p><a href="http://younggogetter.com/" title="Freelance and Young Entrepreneur Bussiness Blog">www.younggogetter.com</a></p>
<p>YGG began as a small forum back in August of 2005. It was originally created as an alternative to the other entrepreneur forums available at that time.</p>
<p>Since then, it’s grown into a large community of young go getters spread across the globe. It’s no longer just a forum. It’s exactly what our tagline says it is, the business playground for entrepreneurs young at heart.</p>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/marketing/3-quick-tips-to-increase-your-sales/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Download: Mockup Application</title>
		<link>http://chosendevelopment.com/chosen/free-download-mockup-application</link>
		<comments>http://chosendevelopment.com/chosen/free-download-mockup-application#comments</comments>
		<pubDate>Thu, 02 Jul 2009 14:01:35 +0000</pubDate>
		<dc:creator>Chosen</dc:creator>
				<category><![CDATA[Chosen News Updates]]></category>
		<category><![CDATA[Downloads and Freebies]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Design and Graphics]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=297</guid>
		<description><![CDATA[We introduce to you, the second of many applications from <a href="http://bychosen.com" title="Chosen - Web Design and Development Company">Chosen</a> that you can apply to your business or freelancing website. This is a simple mockup application which can be modified to do a whole lot more. We developed this app to allow our designers to share mockups with clients without having to know HTML to include images on a web page. This allows them to simply create a new folder and upload mockups and the script automates the rest. It uses a simple read directory function and displays folders starting with an _underscore using jQuery. This allows you to select which folders you'd like to share without revealing other files in the directory.]]></description>
			<content:encoded><![CDATA[<p>We introduce to you, the second of many applications from <a href="http://bychosen.com" title="Chosen - Web Design and Development Company">Chosen</a> that you can apply to your business or freelancing website. This one is a very simple mockup  application which can be modified to do a whole lot more. We developed this application to allow our designers to share mockups with clients without having to know or understand HTML to include images on a web page. This system allows them to simply create a new directory and upload the mockups and the script does the rest. It uses a simple read directory function in PHP and displays them using jQuery for a show/hide interface. The readdir function is based upon folders with an _underscore. This allows you to select which folders you&#8217;d like to share without revealing other files in the directory. Unfortunately we can&#8217;t give you the full application, but this is a great foundation for an application to share mockups with clients. I recommend <a href="http://demo.bychosen.com/mockups/">Checking out the Application</a> or get started with the <a href="http://chosendevelopment.com/wp-content/plugins/download-monitor/download.php?id=7" title="Downloaded 228 times">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/chosen/free-download-mockup-application/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning JavaScript &#8211; Resources and Tutorials</title>
		<link>http://chosendevelopment.com/technology/learning-javascript-resources-and-tutorials</link>
		<comments>http://chosendevelopment.com/technology/learning-javascript-resources-and-tutorials#comments</comments>
		<pubDate>Mon, 29 Jun 2009 15:07:16 +0000</pubDate>
		<dc:creator>Clayton McIlrath</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=291</guid>
		<description><![CDATA[If you're a beginner it can be a bit confusing separating information and learning the format and structure of JavaScript. If you have NO programming experience I would recommend <a title="Web" href="http://www.webteacher.com/javascript/">webteacher</a> to get started with learning javascript. You can also skip the learning process and jump right into some powerful code by using a pre-built library such as <a href="http://jquery.com">jQuery</a> or <a title="Prototype" href="http://prototypejs.org">prototype</a> / <a title="Scriptaculous" href="http://script.aculo.us">scriptaculous</a>. I recommend one of these two JS libraries because they expand functionality and ease of using javascript and the code is a little more user friendly and requires little to no programming experience. <a title="particletree" href="http://particletree.com/features/quick-guide-to-prototype/">Particle Tree</a> can help you out with some great guides and	tutorials for using the prototype library.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a beginner it can be a bit confusing separating information and learning the format and structure of JavaScript. If you have NO programming experience I would recommend <a title="Web" href="http://www.webteacher.com/javascript/">webteacher</a> to get started with learning javascript. You can also skip the learning process and jump right into some powerful code by using a pre-built library such as <a href="http://jquery.com">jQuery</a> or <a title="Prototype" href="http://prototypejs.org">prototype</a> / <a title="Scriptaculous" href="http://script.aculo.us">scriptaculous</a>. I recommend one of these two JS libraries because they expand functionality and ease of using javascript and the code is a little more user friendly and requires little to no programming experience. <a title="particletree" href="http://particletree.com/features/quick-guide-to-prototype/">Particle Tree</a> can help you out with some great guides and	tutorials for using the prototype library.</p>
<p>If you have an understanding of programming logic and structure, then <a title="JS Library" href="http://www.devguru.com/technologies/ecmascript/quickref/javascript_index.html">devguru</a> lists all of the different system-defined Functions, Statements, Operators, Constants, Objects. Along with that, <a title="get.ElementsBy()" href="http://getelementsby.com/">getElementsBy</a> and <a title="javascript tools and references" href="http://javascriptkit.com">JavaScriptKit</a> list compatibility and chart out DOM references.</p>
<p>There are also MANY JS libraries out there and all have different capabilites and functionality that set them apart. If you&#8217;re a JS coder looking for the ease of use and power to make your code more efficient and flexible, go with <a title="JQ" href="http://jquery.com">JQuery</a>. There are MANY plug-ins available for JQ as well as a very large user base to answer any questions and provide documentation. Among the other versatile libraries out there, you can try MooTools and Dojo on for size and see if you like them better.</p>
<hr />
This is a guide and resource for anyone interested in <strong>JavaScript</strong>, Asynchronous JavaScript And XML (<strong>AJAX</strong>), Dynamic HTML (<strong>dhtml</strong>), <strong>JavaScript Animation</strong>, <strong>JavaScript tools</strong>, <strong>JavaScript tutorials</strong>, as well as defined <strong>Functions</strong>, Document Object Model (<strong>DOM</strong>), <strong>Statements</strong>, <strong>Operators</strong>, <strong>Constants</strong>, and <strong>Objects</strong>. The resource list is intended for both the beginner and polished <strong>web developer</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/technology/learning-javascript-resources-and-tutorials/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Download: RFP Application</title>
		<link>http://chosendevelopment.com/chosen/free-download-rfp-application</link>
		<comments>http://chosendevelopment.com/chosen/free-download-rfp-application#comments</comments>
		<pubDate>Tue, 23 Jun 2009 07:14:45 +0000</pubDate>
		<dc:creator>Clayton McIlrath</dc:creator>
				<category><![CDATA[Chosen News Updates]]></category>
		<category><![CDATA[Downloads and Freebies]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[freelance]]></category>

		<guid isPermaLink="false">http://chosendevelopment.com/?p=284</guid>
		<description><![CDATA[We introduce to you, the first of many applications that you can apply to your business or freelancing website. This one is a very simple RFP or Creative Brief application which can easily be modified to do much more. What we like about it is the simplicity and usability behind the application. Unfortunately this one doesn't suit our needs any more, due to our new brand and client dashboard, but our upgrade means hand-me-downs for you! Woot Woot. Don't act like you're not excited about hand-me-downs, this one is pretty sweet. We'll soon release the counterparts as well, so be sure to check back each week or <a href="http://chosendevelopment.com/feed" title="Subscribe to Chosen Development via RSS">subscribe to our blog via RSS</a>]]></description>
			<content:encoded><![CDATA[<p>We introduce to you, the first of many applications that you can apply to your business or freelancing website. This one is a very simple RFP or Creative Brief application which can easily be modified to do much more. What we like about it is the simplicity and usability behind the application. Unfortunately this one doesn&#8217;t suit our needs any more, due to our new brand and client dashboard, but our upgrade means hand-me-downs for you! Woot Woot. Don&#8217;t act like you&#8217;re not excited about hand-me-downs, this one is pretty sweet. We&#8217;ll soon release the counterparts as well, so be sure to check back each week or <a href="http://chosendevelopment.com/feed" title="Subscribe to Chosen Development via RSS">subscribe to our blog via RSS</a></p>
<p><a href="http://demo.bychosen.com/rfp/">Check out the RFP Application in action</a> or jump right in and <a href="http://chosendevelopment.com/wp-content/plugins/download-monitor/download.php?id=6" title="Downloaded 300 times">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chosendevelopment.com/chosen/free-download-rfp-application/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
