<?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>MakeUseOf.com &#187; javascript</title>
	<atom:link href="http://www.makeuseof.com/tags/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Sun, 22 Nov 2009 18:00:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Hack Your Facebook Account with Greasemonkey &amp; Javascript</title>
		<link>http://www.makeuseof.com/tag/how-to-hack-your-facebook-account-with-greasemonkey-javascript/</link>
		<comments>http://www.makeuseof.com/tag/how-to-hack-your-facebook-account-with-greasemonkey-javascript/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 12:01:24 +0000</pubDate>
		<dc:creator>Simon Slangen</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[profile]]></category>
		<category><![CDATA[social networks]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=26579</guid>
		<description><![CDATA[Facebook is pretty awesome, but it is far from perfect. More than once, I&#8217;ve heard complaints about some of Facebook&#8217;s technical aspects. Sadly, Facebook isn&#8217;t open-sourced, so users can&#8217;t change anything themselves &#8211; or can they?
By using simple pieces of Javascript code, or by applying Firefox Greasemonkey userscripts, users can change the appearance and workings [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://www.makeuseof.com/wp-content/uploads/2009/09/fbextinfo.jpg" alt="Facebook/Extended Info Image" vspace="5" align="left" />Facebook is pretty awesome, but it is far from perfect. More than once, I&#8217;ve heard complaints about some of Facebook&#8217;s technical aspects. Sadly, Facebook isn&#8217;t open-sourced, so users can&#8217;t change anything themselves &#8211; or can they?</p>
<p>By using simple pieces of Javascript code, or by applying Firefox Greasemonkey userscripts, users can change the appearance and workings of Facebook themselves.</p>
<p>Learn how to hack Facebook accounts for fun, or tweak something useful. Believe me, it really <em>is</em> all in your hands.</p>
<h2><strong>Facebook Account Javascript Hacks</strong></h2>
<p>In these following hacks we&#8217;ll be using basic Javascript to toy around with Facebook. Note that we&#8217;re <strong>not</strong> going to hack <em>into</em> Facebook accounts, or anything of the like. Most of these &#8216;hacks&#8217; are temporary and will disappear once you refresh the page. They also won&#8217;t be visible to users on other computers. So why are we doing it? &#8211; Because it&#8217;s fun!</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.makeuseof.com/wp-content/uploads/2009/10/10-10-2009-20-28-06.png" alt="how to hack facebook accounts" width="344" height="35" /></p>
<p>These Javascript snippets, which we&#8217;ll supply below, simply need to be <strong>pasted into the address bar</strong>. Hit enter, <em>et voila!</em></p>
<p><span id="more-26579"></span></p>
<h3><strong>Changing Profile Colour</strong></h3>
<p>This will change the colour of your Facebook bar to a color of choice.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.makeuseof.com/wp-content/uploads/2009/10/10-10-2009-20-33-26.png" alt="facebook greasemonkey scripts" width="474" height="34" /></p>
<p>Just paste the following code in your address bar and hit enter. You can replace <em>&#8216;red&#8217;</em> with any color you want &#8211; black, white, green or even orrange. If you want to reverse the effect, press Ctrl+F5 for a hard reload of the page.</p>
<p><span style="color: #003366;"><code>javascript:void(document.getElementById('fb_menubar').style.background='red');</code></span></p>
<h3><strong>View Chat History with Offline Friends</strong></h3>
<p>Unfortunately, you can&#8217;t normally view the chat history of online friends. If you&#8217;re trying to remember something that was said, waiting for them to come back online is one hell of a bother. Instead, you can just use this &#8211; pretty useful &#8211; Javascript hack.</p>
<p>First of all, we need to get your friend&#8217;s Facebook ID. When you visit his page indirectly (through your friends list or by using the search engine), you&#8217;ll be able to see it as a number in the address bar.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.makeuseof.com/wp-content/uploads/2009/10/10-10-2009-20-41-28.jpg" alt="how to hack facebook" width="382" height="33" /></p>
<p>Another way to retrieve someone&#8217;s ID is by going to the <em>Friends</em> widget on their page, and right-clicking <em>See All</em>. Then you&#8217;ll have to copy the link location and paste it in your address bar.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.makeuseof.com/wp-content/uploads/2009/10/10-10-2009-20-47-17.jpg" alt="how to hack facebook greasemonkey" width="194" height="224" /></p>
<p>Once you&#8217;ve got someone&#8217;s ID, simply paste the following code in your address bar, replacing 1122334455 with the relevant number.</p>
<p><span style="color: #003366;"><code>javascript:buddyList.itemOnClick(1122334455);</code></span></p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.makeuseof.com/wp-content/uploads/2009/10/10-10-2009-20-53-18.jpg" alt="fb" width="228" height="309" /></p>
<h3><strong>Other Javascript hacks</strong></h3>
<p>The preceding two hacks are without doubt the most impressive or useful ones. Below are some of the other tricks you can pull off by using Javascript. We&#8217;re not going to deep on this because they&#8217;re all things you can do manually as well.</p>
<p>Change chat status to invisible:<br />
<span style="color: #003366;"><code>javascript:statusControl.sendVisibility(false);</code></span></p>
<p>Change chat status to visible:<br />
<span style="color: #003366;"><code>javascript:statusControl.sendVisibility(true);</code></span></p>
<p>Close all chat windows with person 1122334455:<br />
<span style="color: #003366;"><code>javascript:chatDisplay.tabs[1122334455].tabXOnClick();</code></span></p>
<p>Open application tab:<br />
<span style="color: #003366;"><code>javascript:applicationDock.toggleTab();</code></span></p>
<p>Bring up notifications:<br />
<span style="color: #003366;"><code>javascript:presence.toggleTab('chat_status_control','chat_status_control_tab');</code></span></p>
<p>Bring up friends list:<br />
<span style="color: #003366;"><code>javascript:buddyList.toggleTab();</code></span></p>
<h2><strong>Facebook Greasemonkey Hacks</strong></h2>
<p><img style="margin-right: 20px; margin-top: 5px; margin-bottom: 5px;" src="http://www.makeuseof.com/wp-content/uploads/2008/12/greasemonkeylogo.gif" alt="hack facebook account tips" vspace="5" width="130" height="130" align="left" /></p>
<p>Greasemonkey is one of the best firefox add-ons in existence. By using <em>&#8216;userscripts&#8217;</em>, you can customize nearly every website. Read more about Greasemonkey in <a href="http://www.makeuseof.com/tag/greasemonkey-firefox-addon/" Aibek's article here</a>.</p>
<p>Today we won&#8217;t be focusing too hard on Greasemonkey itself, but on some of the great Facebook-specific userscripts.</p>
<p><a href="http://userscripts.org/scripts/show/9954">Facebook Auto-login</a> &#8211; One of the simplest, but perhaps also one of the most useful userscripts you&#8217;ll find. This one will automatically log into Facebook, as long as Firefox remembers your password, saving you a lot of hassle.</p>
<p><a href="http://userscripts.org/scripts/show/3626">Auto-Colorizer for Facebook</a> &#8211; This script will recolor your Facebook page by applying the color scheme of the most dominant picture currently showing on the page. As you can imagine, this can create some exciting, and also ambient effects.</p>
<p><a href="http://userscripts.org/scripts/show/43404">FacebookDeletes</a> &#8211; If you want to get rid of a lot of people at once, this is your man. This script can bulk delete friends, making the masacre all the easier.</p>
<p><a href="http://userscripts.org/scripts/show/13787">Remove All Facebook Ads</a> &#8211; Adblock still tends to miss a lot of Facebook ads. This script, frequently updated, will remove all thinkable Facebook ads, creating a completely click-safe Facebook environment.</p>
<p><a href="http://userscripts.org/scripts/show/44490">External Apps Blocker</a> &#8211; One of the most irritating things on Facebook are the abundance of quizzes, quote generators, and the like. Filtering all external app &#8217;stories&#8217; from your homepage will be a lot easier if you use this script.</p>
<p>Want some more? <a href="http://www.userscripts.org">Userscripts</a> hosts 1112 <a href="http://userscripts.org/scripts/search?q=facebook">Facebook related userscripts</a> at the time of writing. Check it out and have a blast!</p>
<p>If you know any other cool Javascript tweaks, or Greasemonkey hacks, feel free to mention them in the comments section below!
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><em><strong>New on Twitter ?</strong> Now you can follow <a href="http://twitter.com/MakeUseOf">MakeUseOf on Twitter</a> too.</em></p>

	<em><h4>Related posts</h4></em>
	<ul class="st-related-posts">
	<li><a href="http://www.makeuseof.com/tag/how-to-view-private-facebook-profiles/" title="How to View Private Facebook Profiles (May 14, 2009)">How to View Private Facebook Profiles</a> (108)</li>
	<li><a href="http://www.makeuseof.com/tag/6-facebook-hack-codes-and-tips-to-show-off-your-geeky-skills/" title="6 Facebook Hack Codes &#038; Tips To Show Off Your Geeky Skills (September 21, 2009)">6 Facebook Hack Codes &#038; Tips To Show Off Your Geeky Skills</a> (77)</li>
	<li><a href="http://www.makeuseof.com/tag/top-5-facebook-applications-that-dont-suck/" title="Top 5 Facebook Applications That Don&#8217;t Suck (May 10, 2008)">Top 5 Facebook Applications That Don&#8217;t Suck</a> (9)</li>
	<li><a href="http://www.makeuseof.com/tag/integrate-email-and-social-networking-with-threadsy-with-invites/" title="Threadsy &#8211; Integrates Your Email and Social Networks (+Invites) (October 4, 2009)">Threadsy &#8211; Integrates Your Email and Social Networks (+Invites)</a> (22)</li>
	<li><a href="http://www.makeuseof.com/tag/the-19-social-network-aggregator-list/" title="The 19+ Social Network Aggregator List (August 30, 2007)">The 19+ Social Network Aggregator List</a> (19)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/how-to-hack-your-facebook-account-with-greasemonkey-javascript/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>Top 10 Professional Sample Code Websites For Programmers</title>
		<link>http://www.makeuseof.com/tag/top-10-professional-sample-code-websites-for-programmers/</link>
		<comments>http://www.makeuseof.com/tag/top-10-professional-sample-code-websites-for-programmers/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 15:01:02 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Lists of tools]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[visual basic]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[webmaster tools]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=12640</guid>
		<description><![CDATA[Most programmers are not just desktop programmers, web programmers or scripting gurus &#8211; they are often all of the above. Over time, most software developers find that it&#8217;s much easier to re-use code components than it is to recreate the wheel every time you write an application.  Over time, these developers typically archive a library of [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://www.makeuseof.com/wp-content/uploads/2009/02/greensphere1.jpg" border="0" alt="" vspace="10" width="213" height="213" align="left" />Most programmers are not <em>just</em> desktop programmers, web programmers or scripting gurus &#8211; they are often <strong>all</strong> of the above. Over time, most software developers find that it&#8217;s much easier to re-use code components than it is to recreate the wheel every time you write an application.  Over time, these developers typically archive a library of these reusable modules in order to save time the next time they need to do the same task.</p>
<p>Now, thanks to the power of the Internet, there is a proliferation of websites where professional programmers offer these modules to the general public for absolutely free. For other application developers, these libraries are a goldmine.  Whether you write in VB, C, C++, C#, Perl, PHP, Ruby, or any other programming language, there&#8217;s a website out there where you can find such reusable sample code.</p>
<h2><strong>Choosing the Top Websites for Sample Code</strong></h2>
<p>Every developer has a list of their favorite websites where they not only search for free sample code, but they also take part in the developer community that exists at these sites.  Programmers often develop a very passionate attachment to some of these websites.</p>
<p>The following is, by no means, an exhaustive list of the best developer websites online.  Such a list would be difficult, since there are thousands of excellent resources throughout the net. The following is simply a list of ten of the best places to <em>start</em> if you&#8217;re looking for high quality sample code.  So please, folks, no food fights if your favorite isn&#8217;t mentioned. The following websites are listed in no particular order.</p>
<h3>#1 &#8211; Programmer&#8217;s Heaven</h3>
<p><a href="http://www.programmersheaven.com/" target="_blank">Programmer&#8217;s Heaven</a> is a huge online resource that is very much a community of many different programmers.  The site includes information, tips, and forums on languages like Basic, C++, Delphi, Java, Perl, PHP, Python, Ruby, Visual Basic and more. You can also search the site by application or platform.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://makeuseof.com/images/1-programmers-heaven.jpg" alt="sample code website" /></p>
<p>Programmer&#8217;s Heaven has forums, blogs, articles, files, links and news for every single programming language listed on the site.  The size of this website is impressive, and the community is growing quickly into one of the largest developer communities on the net.</p>
<p>If you need sample code that&#8217;s not already on the site, just ask for help in the forums.</p>
<h3><strong>#2 &#8211; SourceForge.net</strong></h3>
<p>It goes without saying that <a href="http://sourceforge.net/">SourceForge</a> is one of the most significant open source communities on the Internet.  When you need to review sample code to learn how to do something, this is a great place to search.</p>
<p>From the main page, just click &#8220;Find Software,&#8221; and then &#8220;Development.&#8221;  The next page will astound you. You&#8217;ll discover an entire world of open source projects.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://makeuseof.com/images/2-source-forge.png" alt="sourceforge" /></p>
<p>You read that right, that&#8217;s over <strong>54,000</strong> listings under &#8220;Software Development.&#8221;  If you find a software project that sparks your interest, and you can see how the software could be greatly improved, you might consider joining up with one of the many open source projects.</p>
<p>See the <a href="http://apps.sourceforge.net/trac/sitedocs/wiki/Overview%20of%20Open%20Source%20software%20development" target="_self">SourceForge</a> overview for how this works. Open source is a way of life, and these coders take it very seriously.</p>
<h3><strong>#3 &#8211; CodeGuru</strong></h3>
<p><a href="http://www.codeguru.com" target="_blank">CodeGuru</a> is also a cool site for developers. It mostly covers just Visual C++/C++, .Net/C# and Visual Basic. While this isn&#8217;t a huge selection of programming languages, the site is filled with articles that are far more comprehensive than your standard short forum posts that you find at other websites. CodeGuru offers useful explanations of how to accomplish specific tasks.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://makeuseof.com/images/3-code-guru.png" alt="sample coding asp.net" /></p>
<p>The example above is an article on how to load images from or save images to a database using Visual Basic. The article has quality screenshots and well written sample code.</p>
<h3><strong>#4 &#8211; The Code Project</strong></h3>
<p><a href="http://www.codeproject.com/" target="_blank">CodeProject</a> is a booming developer community that&#8217;s organized very much like a free article directory website, except in this case the content producers are actually programmers who are trying to provide the best programming articles available.  Most of these come complete with well written explanations along with the sample code.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://makeuseof.com/images/4-code-sample-project.png" alt="the code project" /></p>
<p>The Code Project isn&#8217;t your run-of-the-mill resource where you&#8217;ll sift through the site for the code you need and then run. You&#8217;re likely to get sucked into the many prize competitions, surveys, articles, message boards, or even the job board. This community is a lot of fun and a good way to connect with other programmers with common coding interests. Before you know it, you may be tempted to write an article yourself!</p>
<h3><strong>#5 &#8211; DevX</strong></h3>
<p>No list of developer resources would be complete without a mention of <a href="www.devx.com" target="_blank">DevX</a>. This site is a massive programmer&#8217;s paradise &#8211; a huge portal to other huge sites covering the most popular programming topics such as Java, C++, Database programming, Visual Basic, Mobile programming and much more.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://makeuseof.com/images/5-devx.png" alt="devx- sample code vb.net" /></p>
<p>Running your mouse over the left menu bar, as shown above, will display the sub-communities that exist under the DevX umbrella portal. When I had a significant Visual Basic project to complete in 2001, this website quickly became my home away from home.</p>
<h3>#6 &#8211; Planet Source Code</h3>
<p><a href="http://www.planet-source-code.com/" target="_blank">Planet-Source-Code</a> is one of those websites that you hate to like, but you need it anyway. It&#8217;s horribly designed, with a weird tiny-font menu listing at the top and ads splattered throughout the page, but if you know where to click, you&#8217;ll find a <em>huge</em> library of very useful sample code. At the top right where it reads &#8220;To start, just choose:&#8221; select the programming language of your choice. The site covers most of the major languages. On the next page you&#8217;ll see many categories of sample code to choose from.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://makeuseof.com/images/6-planet-source-code.png" alt="sample code in java" /></p>
<p>Most of the languages have search filter options, and as you can see here, each category has tens, and even hundreds of thousands of lines of sample code available.</p>
<h3><strong>#7 &#8211; GNU and The Free Software Directory</strong></h3>
<p>If your thing is Open Source, then you can&#8217;t miss out on the <a href="http://directory.fsf.org/GNU/" target="_blank">Free Software Directory</a> that&#8217;s linked directly from the GNU home page. This directory is just an impressive list of free software within categories like audio and video, database, email, games, graphics, Internet apps, communications and much more.</p>
<h3><strong>#8 &#8211; Google Code</strong></h3>
<p>Google has also joined the open source crowd with <a href="http://code.google.com/more/#products-products-android" target="_blank">Google Code</a>, a site that offers mostly web based sample code within categories like browser apps, website ads, product APIs, and social networking apps.</p>
<p>Google Code received a honorary mention in the MakeUseOf article &#8220;<a href="http://www.makeuseof.com/tag/10-google-services-that-get-no-love/" target="_blank">10 Google Services that Get No Love</a>,&#8221; by Mark.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://makeuseof.com/images/8-google-code.png" alt="google code" /></p>
<p>As always, Google uses its standard format &#8211; a very clean and easy to use website where you&#8217;ll have no problem quickly finding exactly the open source code that you need.</p>
<h3><strong>#9 &#8211; DevelopersDex</strong></h3>
<p><a href="http://www.developersdex.com/" target="_blank">DevelopersDex</a> is another developers community that has rewarded some of the highest quality contributors with &#8220;guru&#8221; status.  The site is essentially a giant developer&#8217;s forum, currently approaching just under 50 thousand members. The site covers ASP, C#, SQL, VB, and XML.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://makeuseof.com/images/9-developers-dex.png" alt="" /></p>
<p>Each programming category features complete subcategories such as FAQs, job directories, news, and of course forums and newsgroups.</p>
<p>If you&#8217;re a developer using one of these languages and you&#8217;re looking for a massive web portal to browse through, this is a good one.</p>
<h3><strong>#10 &#8211; DevArticles</strong></h3>
<p>Saving one of my favorites for last, <a href="http://www.devarticles.com" target="_blank">DevArticles</a> offers one of the most comprehensive directories of articles offering sample codes on the Internet.  The list of available software categories is astonishing, including like Flash, embedded tools, and even mobile Linux.</p>
<p>Clicking on any one of those categories turns up a list of useful articles complete with sample code and full descriptions.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://makeuseof.com/images/10-dev-articles.png" alt="sample code dev articles" /></p>
<h2><strong>Is There More?</strong></h2>
<p>This list of developer resources that offer quality sample code snippets is nowhere near complete.  The internet is chock full of resources, and everyone has a list of personal favorites, which often depends heavily upon which software languages you prefer, and what type of programming you&#8217;re doing.</p>
<p>Are you a regular visitor to any of the websites listed above when you&#8217;re looking for sample code?  Do you have any personal favorites that aren&#8217;t listed here?  Share your own favorite sample code resources in the comments section below.
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><em><strong>New on Twitter ?</strong> Now you can follow <a href="http://twitter.com/MakeUseOf">MakeUseOf on Twitter</a> too.</em></p>

	<em><h4>Related posts</h4></em>
	<ul class="st-related-posts">
	<li><a href="http://www.makeuseof.com/tag/install-firebug-for-browsers-other-than-firefox/" title="How To Install Firebug on IE, Safari, Chrome &#038; Opera (March 14, 2009)">How To Install Firebug on IE, Safari, Chrome &#038; Opera</a> (22)</li>
	<li><a href="http://www.makeuseof.com/tag/a-web-developer-toolbar-guide/" title="Web Developer Toolbar for Firefox (May 21, 2008)">Web Developer Toolbar for Firefox</a> (4)</li>
	<li><a href="http://www.makeuseof.com/tag/selected-25-css-applications-and-tools/" title="Selected 25 CSS Applications and Tools (September 29, 2007)">Selected 25 CSS Applications and Tools</a> (19)</li>
	<li><a href="http://www.makeuseof.com/tag/notepad-programming-on-steroids-for-application-developers/" title="Notepad Programming on Steroids for Application Developers (March 22, 2009)">Notepad Programming on Steroids for Application Developers</a> (19)</li>
	<li><a href="http://www.makeuseof.com/tag/3-windows-text-editors-for-programmers/" title="3 Windows Text Editors For Programmers (July 11, 2008)">3 Windows Text Editors For Programmers</a> (13)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/top-10-professional-sample-code-websites-for-programmers/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Grant PDF Print Power to Your Website Visitors</title>
		<link>http://www.makeuseof.com/tag/grant-pdf-print-power-to-your-website-visitors/</link>
		<comments>http://www.makeuseof.com/tag/grant-pdf-print-power-to-your-website-visitors/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 16:13:39 +0000</pubDate>
		<dc:creator>Jeffry Thurana</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[blogging tools]]></category>
		<category><![CDATA[converter]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[webmaster tools]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=3970</guid>
		<description><![CDATA[There might be several reasons why a reader would want to be able to convert a web page to PDF, such as: to share with a non-online friend, to be able to email it or to put it into a PDF device to read later; while still retaining the original form of the page. That&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.makeuseof.com/wp-content/uploads/2008/07/pdflogo.png" border="0" alt="" width="125" height="125" align="left" />There might be several reasons why a reader would want to be able to convert a web page to PDF, such as: to share with a non-online friend, to be able to email it or to put it into a PDF device to read later; while still retaining the original form of the page. That&#8217;s why web to <a href="http://www.makeuseof.com/tag/cool-pdf-tools/">PDF conversion tools</a> are gaining popularity.</p>
<p>But if we look it from the perspective of the site owner, giving the readers the ability to &#8216;PDF-print&#8217; your pages will improve your site likeability by several points, and increase the site&#8217;s exposure to new readers.</p>
<p>We have discussed the <a href="http://www.makeuseof.com/tag/offer-your-readers-a-rss-to-pdf-option-with-feedbooks/">RSS to PDF option using Feedbooks</a>, but the service is limited to RSS feeds and feeds are sometimes only a fraction of the full articles. Moreover with this option, there&#8217;s nothing you can do but get ALL the feeds.</p>
<p>For website owners who still don&#8217;t offer an RSS option on their site (if any still exists today!) and/or wants to give their readers more freedom to PDF-print individual articles directly from the webpage, you can use the script from <a href="http://web2.pdfonline.com/">Web2PDF Online</a>.</p>
<p><img src="http://www.makeuseof.com/wp-content/uploads/2008/07/web2pdf-x.png" alt="" /></p>
<p>Here&#8217;s how:</p>
<h2>1. Getting the code for &#8216;Save as PDF&#8217;</h2>
<ul>
<li>Register at the <a href="http://web2.pdfonline.com/pdfonline/web/signup.asp">Web2PDF Online Site</a></li>
<li>Set the conversion options such as paper orientation and margin (in inches)</li>
<li>Click the &#8220;Generate The Javascript&#8221; button.</li>
<li>Copy the script provided in the next window</li>
</ul>
<h2>2. Using the code</h2>
<p>Actually, all you have to do is paste the code into the HTML of the page where you want the &#8220;Save as PDF&#8221; button to appear. This could be a lot of work for those who want to put the button on all of their pages.</p>
<p>But Wordpress users can save time by using the code as a widget.</p>
<ul>
<li>From the admin panel, go to Design &#8211;&gt; Widgets</li>
<li>Find the Text widget on the left side of the Widget&#8217;s page and click &#8220;Add&#8221;</li>
<li>The Text widget will appear on the right side of the page, below other widgets which already been activated before. Click &#8220;Edit&#8221;</li>
<li>Give a title to this widget (or not), then paste the Javascript code on the body of the text.</li>
<p><img src="http://www.makeuseof.com/wp-content/uploads/2008/07/creating-text-widget1.png" alt="Web2PDF Widget" /></p>
<li>Click &#8220;Change&#8221; and then &#8220;Save Changes&#8221;</li>
<li>You can drag and drop to these widgets to rearrange the order. But don&#8217;t forget to click &#8220;Save Changes&#8221; again afterwards.</li>
</ul>
<p>From here on, your readers are able to print your web page(s) to PDF. Everytime they click the button, the page will be converted to PDF and a new window will appear showing a download link to the PDF file.</p>
<p>Do you know any other ways to offer your blog readers PDF functionality?   Let us know what tools <strong>you</strong> offer in the comments.</p>
<p><em>(By) Jeffry Thurana is a blogaholic who has just started his own self-improvement journal <a href="http://www.supersubconscious.com/">“Supersubconscious”</a> and manages an Indonesian tech blog <a href="http://www.internetips.web.id/">“InterNeTips“</a>. He actually thinks <a href="http://www.supersubconscious.com/self-hack/how-to-live-30-hours-a-day"> there are 30 hours everyday</a>.</em>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><em><strong>New on Twitter ?</strong> Now you can follow <a href="http://twitter.com/MakeUseOf">MakeUseOf on Twitter</a> too.</em></p>

	<em><h4>Related posts</h4></em>
	<ul class="st-related-posts">
	<li><a href="http://www.makeuseof.com/tag/use-ftp-online-without-installin-a-client/" title="Online FTP Clients: Use FTP Online without Installing A Client (August 14, 2008)">Online FTP Clients: Use FTP Online without Installing A Client</a> (18)</li>
	<li><a href="http://www.makeuseof.com/tag/how-to-upgrade-your-wordpress-blog-automatically/" title="How To Upgrade Your Wordpress Blog Automatically (August 1, 2008)">How To Upgrade Your Wordpress Blog Automatically</a> (16)</li>
	<li><a href="http://www.makeuseof.com/tag/how-to-insert-custom-quicktags-into-the-wordpress-editor/" title="How to Insert custom Quicktags into the Wordpress Editor (March 3, 2008)">How to Insert custom Quicktags into the Wordpress Editor</a> (11)</li>
	<li><a href="http://www.makeuseof.com/tag/easily-create-mobile-websites-with-mofuse/" title="Easily Create Mobile Websites with MoFuse (April 10, 2008)">Easily Create Mobile Websites with MoFuse</a> (8)</li>
	<li><a href="http://www.makeuseof.com/tag/12-no-crap-tools-to-make-your-blog-better/" title="12 No-crap Tools to Make Your Blog Better (November 17, 2007)">12 No-crap Tools to Make Your Blog Better</a> (18)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/grant-pdf-print-power-to-your-website-visitors/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Pump Up Your Blog Comments Section With NicEdit</title>
		<link>http://www.makeuseof.com/tag/pump-up-your-blog-comments-section-with-nicedit/</link>
		<comments>http://www.makeuseof.com/tag/pump-up-your-blog-comments-section-with-nicedit/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 13:20:44 +0000</pubDate>
		<dc:creator>Mark O&#39;Neill</dc:creator>
				<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[blogging tools]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=2672</guid>
		<description><![CDATA[&#8220;Only two lines of javascript and what a difference it makes!&#8221;   That was my conclusion after trying out NicEdit on my personal blog &#8211; a script that puts RichText WYSIWYG functionality into a blog&#8217;s comment section.
As any blogger will tell you, the comments section of the blog is pretty much the life-blood of [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.makeuseof.com/wp-content/uploads/2008/05/niceditlogomain.gif" border="0" alt="" align="left" />&#8220;Only two lines of javascript and what a difference it makes!&#8221;   That was my conclusion after trying out <a href="http://nicedit.com">NicEdit</a> on my personal blog &#8211; a script that puts RichText WYSIWYG functionality into a blog&#8217;s comment section.</p>
<p>As any blogger will tell you, the comments section of the blog is pretty much the life-blood of the site.  The blog community revolves around the comments section.    Discussions, arguments and relationships revolve around the comments section.   Spammers go wild in the comments section!    I spend a good part of my day in the comment moderation section of Make Use Of making sure everyone behaves themselves and that the Viagra &amp; male organ enhancement salesmen take their business elsewhere.</p>
<p>I have tried lots of things to jazz up my comments section on my blog (I&#8217;ll be discussing another one in my next post) but I particularly liked NicEdit because of its simplicity.   As I said, it&#8217;s just two lines of javascript and you just have to copy and paste it ANYWHERE in the comments page of the HTML template of your blog.    Save the whole thing then go to one of your blog pages and check out the comments.   You&#8217;ll now see that the comments form has a RichText WYSIWYG functionality.</p>
<p>This is what my comments box looked like <strong>before</strong> NicEdit was installed :</p>
<p><a href="http://www.makeuseof.com/wp-content/uploads/2008/05/bttcommentsboxbeforenicedit.gif"><img class="alignnone size-full wp-image-2674" title="bttcommentsboxbeforenicedit" src="http://www.makeuseof.com/wp-content/uploads/2008/05/bttcommentsboxbeforenicedit.gif" alt="" /></a></p>
<p>Functional and straight-forward but rather boring right?</p>
<p>Now here&#8217;s what it looked like <strong>AFTER</strong> NicEdit was installed.</p>
<p><a href="http://www.makeuseof.com/wp-content/uploads/2008/05/bttcommentsboxafternicedit.gif"><img class="alignnone size-full wp-image-2675" title="bttcommentsboxafternicedit" src="http://www.makeuseof.com/wp-content/uploads/2008/05/bttcommentsboxafternicedit.gif" alt="" /></a></p>
<p>Suddenly you can offer your commenters a wide variety of fonts, font sizes, formats&#8230;.they can even insert photos and links!    Not bad for free!</p>
<p>So why not add this to your blog (seems to work on all blogging platforms) and next time I&#8217;ll tell you about a Wordpress plugin that I found which also has the potential to personalize and liven up a boring blog comment!</p>
<p><em>(By) Mark O’Neill is a blogger, <a id="KonaLink5" class="kLink" style="text-decoration: underline ! important; position: static;" href="../tag/google-maps-rolls-out-spanking-new-features/#" target="_top"></a>professional freelance writer and the editor of Make Use Of. Check out his personal blog <a id="KonaLink6" class="kLink" style="text-decoration: underline ! important; position: static;" href="../tag/google-maps-rolls-out-spanking-new-features/#" target="_top"></a>at <a href="http://www.betterthantherapy.net/">BetterThanTherapy.net</a></em>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><em><strong>New on Twitter ?</strong> Now you can follow <a href="http://twitter.com/MakeUseOf">MakeUseOf on Twitter</a> too.</em></p>

	<em><h4>Related posts</h4></em>
	<ul class="st-related-posts">
	<li><a href="http://www.makeuseof.com/tag/grant-pdf-print-power-to-your-website-visitors/" title="Grant PDF Print Power to Your Website Visitors (July 27, 2008)">Grant PDF Print Power to Your Website Visitors</a> (8)</li>
	<li><a href="http://www.makeuseof.com/tag/web-metrics-101-what-do-all-these-terms-mean/" title="Web Metrics 101 &#8211; What DO all these Terms Mean? (April 18, 2008)">Web Metrics 101 &#8211; What DO all these Terms Mean?</a> (17)</li>
	<li><a href="http://www.makeuseof.com/tag/use-your-cellphone-to-send-all-your-thoughts-ideas-to-jott/" title="Use Your Cellphone To Send All Your Thoughts &#038; Ideas To Jott (January 12, 2009)">Use Your Cellphone To Send All Your Thoughts &#038; Ideas To Jott</a> (13)</li>
	<li><a href="http://www.makeuseof.com/tag/use-skribit-on-your-blog-to-get-reader-suggestions/" title="Use Skribit On Your Blog to Get Reader Suggestions (May 8, 2008)">Use Skribit On Your Blog to Get Reader Suggestions</a> (11)</li>
	<li><a href="http://www.makeuseof.com/tag/twingly-search-and-awesome-screensaver/" title="Twingly: Revised Blog Search + Awesome Screensaver (August 11, 2008)">Twingly: Revised Blog Search + Awesome Screensaver</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/pump-up-your-blog-comments-section-with-nicedit/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
