Tag Archive | "WAYS"

5 Ways To Clean Up Your Computer With An Automated Script [Windows]


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/automated.png" alt="automate computer cleanup" />Computer maintenance isn’t exactly something that most people remember to do. For the general user that isn’t exactly tech savvy, when a computer doesn’t work, they either call for help or simply buy a new computer.

If you have family members or friends that are always calling you for help with a slow computer, I’m going to offer you a solution that you can use to stop those phone calls right now. This solution incorporates six tools into a Windows script. That script is going to perform all of the PC cleanup work that you would do if you were sitting right in front of the computer yourself.

What This Script Will Accomplish

This Windows script is going to run the required tools in command line mode. Many of these tools that you’ve been using for years, you may not have even realized that there is a command-line mode available.

Clean Up Registry & Temp Folders

The first step is probably the most important. We’re going to launch CCleaner in command line mode to clean up temp files and the registry.

One catch. In order to make this script work without constant notifications about the apps making computer changes, you’ll have to disable the User Account Control windows feature in Windows 7.

style="text-align: center;"> class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean1.png" alt="" width="571" height="406" />

Now you’re ready to roll. Create a file called CleanComputer.wsf and start it off with the following script.

<job> /> <script language="VBScript">

Option Explicit /> On Error Resume Next

Dim WshShell /> Dim retVal

set WshShell=CreateObject("WScript.Shell") /> WshShell.run "CCleaner.exe /AUTO"

Danny covered href="http://www.makeuseof.com/tag/optimize-system-run-ccleaner/">CCleaner recently, so you can see just what it is capable of and how much it can optimize your system. When you launch it in the script as shown above with the /AUTO flag, it’ll run invisible and it’ll use the settings you used when you last ran the application. You’ll see CCleaner.exe running in the Task Manager.

style="text-align: center;"> class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean2.png" alt="automate computer cleanup" width="520" height="417" />

If you configure CCleaner beforehand, in auto mode it’ll automatically clean up temporary files, log files and your registry as well.

Clean Up Spyware

Next up is to take care of any spyware that might be running on the PC. My favorite tool for that is Spybot, and luckily Spybot also offers a command line feature. The one problem here is that the path to Spybot is full of spaces, which is hard to handle in a Windows Script shell command.

So, create a .bat file with the following:

C:\Program Files (x86)\Spybot - Search & Destroy\SpybotSD.exe" /taskbarhide /autocheck /autofix /autoclose /> Exit

Save it as SpyBot.bat in the same directory as your Windows script. Then in the next line of your WSF file, add the following:

WshShell.run "spybot.bat"

Your Windows Script will launch your batch job that will launch Spybot in command-line mode. You will know it’s running when the Exe appears in the task manager.

style="text-align: center;"> class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean3.png" alt="script to clean temp files" width="549" height="410" />

Those four parameters after the spybotsd.exe file  will run Spybot in silent mode, automatically remove any spyware found, and then automatically close.

Remove Malicious Software

In addition to anything Spybot catches, I also like to run the Microsoft href="http://support.microsoft.com/kb/890830">Malicious Software removal tool. Download the executable from the “Microsoft Download Center” section, save it in your script directory as “malremove.exe” and then add the following line to your growing Windows Script.

WshShell.run "malremove.exe /Q /F:Y"

The /Q command tells the malware removal tool to run in quiet mode (no interface) and /F:Y tells it to forcibly remove any malware that it finds without any intervention required. The first time you run it during your initial testing, you’ll have to select the option for no warning the next time it runs.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean4.png" alt="script to clean temp files" width="404" height="305" />

Here it is running in the background.

style="text-align: center;"> class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean31.png" alt="script to clean temp files" width="549" height="410" />

So, we’ve covered most of what you’d probably do if you were there in person – run CCleaner to get rid of temporary Internet files and other temp files, remove spyware and malware, so what’s left?

Automate Disk Cleanup

Another common tool that can help computer performance is the Windows Disk Cleanup tool.  First you have to set it up. Go to Start -> Run and type: “cleanmgr /sageset:1“. The following window will appear.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/autoclean6.png" alt="computer clean up script" width="385" height="472" />

Set up the items that you’d like your command line to automatically clean, and then click OK. This tells it that whenever you choose /sageset:1, to utilize the settings you’ve just created. Now, in your Windows Script, add the following line.

WshShell.run "Cleanmgr /sagerun:1"

This will run the Windows disk cleanup silently, using the settings you’ve just created. You can also install the latest Windows updates by first installing  href="http://www.wuinstall.com/">WuInstall.exe and adding this line.

WshShell.run "wuinstall.exe /install /reboot_if_needed"

And don’t forget to do a quick defrag of the hard drive by adding the following lines to the script.

WshShell.run “Defrag volume c:”

WshShell.run "Defrag volume d:"

Automate Virus Scan After Cleanup

Last, but definitely not least, you’ll also want to end your script by firing off a full virus scan. For example, I use Kaspersky, which offers its own href="http://support.kaspersky.com/kis2010/tech?qid=208280476">set of command line parameters.

In my case, I just add the following final line to my script.

WshShell.run "AVP.exe SCAN /ALL /i4"

And that kicks off the command window and runs through a full scan (which can take several hours).

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/antivirus51.png" alt="automate computer cleanup" width="580" height="293" />

Most other anti-virus providers out there offer similar command-line options.

So, once you’ve added all of these lines, close out your Windows Script.

WScript.Quit /> </script> /> </job>

Once you’ve finished the procedure above and saved your file on the PC, just schedule the job to run on a regular basis (/Accessories/System Tools/Task Scheduler). Give the procedure above a try and see how well it works for you.

Did it work well, and can you think of any other useful command line tasks that could also be added? Share your thoughts in the comments section below.

Image Credit: href="http://image.shutterstock.com/display_pic_with_logo/704362/704362,1308593659,3/stock-photo-high-resolution-d-render-of-an-control-panel-in-colorful-lighting-control-panel-switches-80248693.jpg" rel="nofollow">Shutterstock



View full post on MakeUseOf

Posted in Useful APPsComments (0)

8 Ways To Exact Your Revenge On An Ex-Partner Online


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/relationship.jpg" alt="ex revenge pics" />When it comes to revenge, they say that it’s a dish best served cold. Today, it seems that when it comes to ex-partners and ex-flames, its best served online. Revenge is as old as man and his ego. Heck, they even have bestsellers on the subject.

With the coming of age of the very public World Wide Web, pouring vitriol on your partner has taken on another dimension. It’s like being hauled up to the town square and given a very public tongue lashing. But don’t get me wrong here. I am not writing this post with a broken heart. I am writing it with an inquisitiveness that’s born out of watching such ‘breaking news’ given top billing by even major news channels.

So, let’s check out some myriad (and creative) ways to take revenge on your ex-partner after a relationship has gone south.

 

Use Social Media

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/revenge-relationship06.jpg" alt="ex revenge pics" width="580" height="519" />

Social media like Facebook and Twitter has turned us into vampiric voyeurs. Just change your relationship status message and see the comments you collect. But scorned partners take it further…much further. Posting images of your ex is by far the most common but suspicious spouses also use the relative anonymity of social networks to href="http://www.dailymail.co.uk/femail/article-1243354/My-cheating-husband-tried-seduce-sexy-blonde-Facebook--didnt-know-was-.html">pose as someone else and catch their ‘worse’ half’s in the act.

Did you know that href="http://abcnews.go.com/Technology/facebook-infidelity-cheating-spouses-online/story?id=12272421">Facebook Cheating has found a place in popular lingo today along with Facebook Divorce? Check out href="http://facebookcheating.com/">Facebookcheating.com for more relationship horror stories. So you really aren’t alone when it comes to venting it out on Facebook or any other social media. Remember Facebook has a ‘Friends of Friends’ sharing option!

 

Blast Away With a Blog

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/revenge-relationship02.png" alt="revenge pics of your ex" width="580" height="353" />

In simple words – put it out on a blog. If you can start a blog about your cats and their favorite pet foods, why not stick it to your ex-flame with sulfurous words. From the free WordPress to Tumblr, you have options galore.

Auction off on eBay

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/revenge-relationship01.jpg" alt="revenge pics of your ex" width="400" height="436" />

If you are looking for an instance, look no further than this woman who started a whole garage sale of her ex-husband’s belongings on eBay. The image if I remember went viral very fast, probably inspiring other entrepreneurial broken hearts in its wake.

 

Ex Revenge Pics Say A Thousand Words

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/revenge-relationship03.jpg" alt="revenge pics of your ex" width="580" height="484" />

This is perhaps the most common ways of showcasing your anger. Ex revenge pics by jilted lovers are the stuff of online voyeurs…and all of us have seen a fair share of them. Photo upload and sharing sites like Flickr do their bit by giving you lots of descriptive tags (hate, venom, revenge, feelings, relationships etc.) to use with the photos. Put in a caption and you are set to use photo albums like real world graffiti walls. Oh yes, mark it public.

Go YouTube

style="text-align: center;"> src="http://www.youtube.com/embed/hx_WKxqQF2o" frameborder="0" width="560" height="315">

Remember Paris Hilton and Kim Kardashian? They achieved intended or unintended notoriety with their sex tapes. You really don’t have to go that far, but just use the visual razzmatazz of YouTube to vlog about your broken heart or an angered one. href="http://en.wikipedia.org/wiki/Tricia_Walsh-Smith">Tricia Walsh Smith’s  video in 2008 is a famous example. She describes her ordeals and makes embarrassing claims about her husband and his family.

Rant Out On Revenge Websites

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/revenge-relationship04.jpg" alt="ex revenge" width="558" height="722" />

When you are booked in heartbreak hotel, you know that you have to let it out. You will be surprised by the sheer number of websites out there that are jostling to hear your cries. The below mentioned sites are just a sampling, but browse through. Most of them have a community too. Going stag could start looking attractive all over again.

  • href="http://www.datingpsychos.com/">Datingpsychos
  • href="http://www.dontdatehimgirl.com/">Dontdatehimgirl
  • href="http://reportyourex.com/">Reportyourex
  • href="http://www.revengelady.com/">Revenge Lady

 

Use Google’s ‘Disadvantage’

If you know something about ego-Googling then you will understand what I mean. It’s what Google turns up when you search with your name and see the mentions. The more places you use to extract your pound of revenge with the name of your ex, better are the chances of his or her name turning up on a Google results page (along with the morally loose details of course).

 

The Best Option…Let Go With Good Advice

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/revenge-relationship05.jpg" alt="ex revenge pics" width="580" height="165" />

But finally it boils down to one simple inescapable fact – you have to let go. The best advice I ever read on the subject was that the best revenge you could ever do to the person who broke your heart, is to let them see that you’re happy without them.  So have your revenge if you must, but then douse the fire for your flame and put out some constructive advice on how you stepped over the broken shards of your relationship. That could be your true cathartic moment.

The Final Nail in the Coffin

What’s not done is posting doctored images. What’s not done is spreading lies. What’s not done is collateral damage on others. The web could be the best agony aunt out there. But do remember that everything has consequences. Revenge is usually a double-edged sword – you will get a few cuts too. You could fall prey to cyber-stalking or even cyber-laws in your part of the world. This article merely seeks to highlight the ways the web is currently being used for extracting revenge on an ex. Good or bad…revenge will unfortunately never go out of fashion.

Have you ever used the web to get back at someone? Did you feel better afterwards? Would you advice against it or promote it?

Image Credit: href="http://xkcd.com/215/" rel="nofollow">xkcd.com; href="http://www.flickr.com/photos/sweethaa/3176403575/in/photostream/">Flickr(sweethaa)

href="http://www.makeuseof.com/tag/8-ways-exact-revenge-expartner-online/">8 Ways To Exact Your Revenge On An Ex-Partner Online is a post from: href="http://www.makeuseof.com">MakeUseOf



View full post on MakeUseOf

Posted in Useful APPsComments (0)

4 More Ways You’ve Sold Your Soul To The Internet


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/RightAlign.png" alt="license agreements online" />You may remember my article from a while back, title="3 Ways You’ve Sold Your Soul To The Internet" href="http://www.makeuseof.com/tag/3-ways-sold-soul-internet/">3 Ways You’ve Sold Your Soul to the Internet. As it turns out, there seems to be a variety of ways that one can make it happen, and as a matter of fact, I’ve found four more ways that you can do so!

The items presented here are some of the fringe services that you may use in conjunction with your main services (besides the last one), so it’s at least a good idea to keep them in mind.

Let’s take a look at how you’ve signed away your digital life-force.

href="http://www.twitpic.com">Twitpic

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/twitpic.png" alt="license agreements online" width="580" height="300" />

Straight-up, I’ll be honest and tell you that I actually have a href="http://www.twitpic.com">Twitpic account. Prior to the new title="Twitter Adds Photo Galleries To User Profiles [News]" href="http://www.makeuseof.com/tag/twitter-adds-photo-galleries-user-profiles-news/">Twitter photo albums feature, I would occasionally use it, and I thought it was pretty awesome. However, I found this in Twitpic’s Terms of Service fairly recently.

You retain all ownership rights to Content uploaded to Twitpic. However, by submitting Content to Twitpic, you hereby grant Twitpic a worldwide, non-exclusive, royalty-free, sublicenseable and transferable license to use, reproduce, distribute, prepare derivative works of, display, and perform the Content in connection with the Service and Twitpic’s (and its successors’ and affiliates’) business, including without limitation for promoting and redistributing part or all of the Service (and derivative works thereof) in any media formats and through any media channels.

Logically speaking, it’s a good idea for title="Send Photos To Twitpic Via MMS On Your Mobile Phone Using Snappr" href="http://www.makeuseof.com/tag/send-photos-twitpic-mms-mobile-phone-snappr/">Twitpic to go ahead and throw this into their TOS. However, it’s also a good idea for you to check it out for yourself to make sure it’s something you’re okay with getting into! Basically, whatever you put on Twitpic, Twitpic (along with is successors and affiliates) can in turn use it for whatever they want… without asking you. So just keep that in mind next time you upload something crazy.

href="http://www.picfog.com">PicFog

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/picfog.png" alt="website license agreement" width="580" height="300" />

At the core, href="http://www.picfog.com">PicFog is a href="http://www.makeuseof.com/tags/twitter">Twitter image search engine at best, and basically, it runs through all images posted on Twitter and uses them as results for the website. Once again, you should keep in mind that whatever you upload online can end up here.

Using Twitter and the connecting image upload services, PicFog shows pictures from Twitter as they’re posted, in real time. You don’t even need a Twitter account to enjoy the benefits – and you can filter by any keyword, location or Twitter user.

When I last checked PicFog, it seemed that there had been some troubles with the website due to Twitter’s new API. However, who knows what you’ll find when it’s back up and running?

href="http://www.flickr.com">Flickr

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/flickr.png" alt="website license agreement" width="580" height="300" />

Since I’m more of a video guy rather than a photo guy, I spend more time on href="http://www.makeuseof.com/tags/youtube">YouTube and href="http://www.makeuseof.com/tag/top-12-sites-watch-videos-youtube/">Vimeo than I do href="http://www.flickr.com">Flickr. However, I found this info kind of interesting regarding photos (and videos).

With respect to photos, graphics, audio or video you submit or make available for inclusion on publicly accessible areas of the Yahoo! Services other than Yahoo! Groups, the license to use, distribute, reproduce, modify, adapt, publicly perform and publicly display such Content on the Yahoo! Services solely for the purpose for which such Content was submitted or made available. This license exists only for as long as you elect to continue to include such Content on the Yahoo! Services and will terminate at the time you remove or Yahoo! removes such Content from the Yahoo! Services.

I suppose what this means is this – if you make your photos available to the public, then Yahoo! (or Flickr, rather) can use these images for whatever they want. Furthermore, they can alter them as they wish, but I don’t know what that exactly would entail. (Perhaps they could href="http://www.makeuseof.com/tags/photoshop">Photoshop Godzilla in if they wanted?)

href="http://www.google.com">Google (Again)

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/google.png" alt="license agreements online" width="580" height="300" />

As much as I love href="http://www.makeuseof.com/tags/google">Google, it scares me. I guess it’s kind of like being good friends with a professional wrestler. You know that they could crush you, but you also know them on a pretty cool personal level. However, here’s a tidbit from Google’s TOS.

You retain copyright and any other rights you already hold in Content which you submit, post or display on or through, the Services. By submitting, posting or displaying the content you give Google a perpetual, irrevocable, worldwide, royalty-free, and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display and distribute any Content which you submit, post or display on or through, the Services. This license is for the sole purpose of enabling Google to display, distribute and promote the Services and may be revoked for certain Services as defined in the Additional Terms of those Services.

So not only can any information that you post using Google’s services be used by them at any time for any media outlet, the company also has the power to adapt or modify the work. Much like the case with Flickr, those are real loose words – “adapt” and “modify”, that is. It’s pretty scary in a way, because they can apparently do whatever they want with whatever you post using href="http://www.makeuseof.com/tags/blogger">Blogger, href="http://www.makeuseof.com/tags/google-plus">Google+, or maybe even YouTube.

Conclusion

Realistically speaking, the chances are that most of us simply will not care about the state of our Internet soul. Sacrifices have to be made in order to prevent lawsuits, but sometimes those sacrifices are described rather vaguely.

What other TOS statements do you tend to question? In what other ways have you sold your soul to the Internet?



View full post on MakeUseOf

Posted in Useful APPsComments (0)

6 Ways The aMSN Clone Is Far Better Than MSN Messenger


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/image91.png" alt="amsn" />MSN Messenger has been rising in popularity ever since it stole ICQ’s thunder back in the day. I used to be an ICQ fan and never really managed to like anything that came out under the Messenger name. Having said that, I was using it for a couple of years before finding a better solution in Miranda IM.

But multi-protocol IM clients are not everyone’s cup of tea, and some people simply want the MSN experience, without the annoyance of what has now become Windows Live Messenger. Those people should definitely try href="http://www.amsn-project.net/">aMSN.

Download & Installation

When looking for an IM program, I don’t expect to have to spend 20 minutes just installing it. This is the case these days when trying to get href="http://explore.live.com/windows-live-messenger">Windows Live Messenger.

Let’s start with the fact that I first have to opt out of installing numerous other programs that I don’t need, continue with the fact that it forces me to update programs that I don’t wish to, and finish with the appalling installation time of ~10 minutes, plus a required restart. All this for a simple IM client!

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-18-15h03_07.png" alt="amsn" width="419" height="264" border="0" />

aMSN, on the other hand, is a very quick download and installation. 3 minutes after thinking about it, I already had the thing up and running on my computer. The only downside was that it tried to install one third party program as part of the installation. It was easy enough to opt out, though.

Compatibility

Aside from being open source (which is a big plus, if only in principle), aMSN is also multi-platform, and can run on Linux, Windows, Mac, FreeBSD and Nokia N900. If you really wanted it to run on more platforms you could just do it yourself, or find someone who could do it for you.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-18-14h32_49.png" alt="amsn clone download" width="543" height="315" border="0" />

True, there is an official version of Live Messenger for Mac, but no such thing for Linux as far as I know, and even the Mac version is downloadable from a totally different page. It’s like it’s not even the same program. With aMSN, it’s all there on the same page, you just need to choose your OS and off you go.

Ease Of Use

It was ICQ’s downfall, and now it’s happening to MSN Messenger (and Skype too, to be honest). IM clients shouldn’t be heavy, slow and complicated. Every time I download a new version of Live Messenger, it’s even more bloated, slow and hard to understand. It seems that the simplest things become harder and harder to find.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-18-16h59_04.png" alt="amsn clone download" width="580" height="464" border="0" />

aMSN is keeping it simple. It’s the same feel (and also look, if you so desire) as MSN Messenger, but everything is quick, responsive, lighter and easy to find. A simple look-around through the menus is all you need. No hidden buttons that you can’t see through a picture-heavy interface (“switch to compact view” anyone?), no hidden menus where you least expect them.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-18-17h04_25.png" alt="amsn clone download" width="580" height="382" border="0" />

Another thing I found especially appealing in aMSN is the ability to easily choose what simple actions, such as clicking on the “X”, will do. The first time you click on it, you get to choose whether it should quit or minimize. You can choose to remember your choice or choose not to, in which case you can use the “X” button to do something different every time you click on it. This dialogue pops up for other actions as well.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-18-15h36_25.png" alt="amsn download" width="506" height="218" border="0" />

Appearance

Yes, Live Messenger has themes and badges, and you might even like some of them, but I find most of them offensive. For different themes you have to go to third-party websites and download questionable things.

In aMSN, there are numerous skins that are fairly easy to install (it’s not just clicking as in the regular MSN, but then again, the program is much lighter for it – simply download the skins you want). All the skins are available right there on href="http://www.amsn-project.net/skins.php">aMSN’s homepage.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-18-15h47_12.png" alt="amsn download" width="518" height="411" border="0" />

There are some really beautiful skins, including one that gives the whole thing a pretty realistic Live Messenger look (if that’s your thing). If you’re into dark, simple themes, you’re sure to find your fancy as well.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-18-17h10_25.png" alt="amsn download" width="302" height="370" border="0" />

I did encounter some bugginess in some themes where the menus stopped working properly, but I guess that’s part of the deal with open source sometimes.

Plugins

Aside from the many features that already come with aMSN, there’s a nice list of plugins available for download that can enhance your aMSN experience. You can find all sorts of plugins for Live Messenger as well, but they’re not something Microsoft created, and therefore you have to go searching for them. Nothing is official.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-18-17h12_51.png" alt="2011-09-18 17h12_51" width="528" height="211" border="0" />

You can also create plugins for features you want to see (if you’re into that sort of thing), or get someone to do it for you. The magic of open source!

Multiple Logins

As it is, aMSN supports multiple logins from different accounts. You don’t need to install anything additional. Simply open a new instance of aMSN and sign in using a different user and password.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-18-16h34_33.png" alt="amsn" width="523" height="451" border="0" />

Try to do that with a clean Live Messenger version.

Bottom Line

Don’t get me wrong, I thing Microsoft have been doing some awesome things lately, but the bloated IM client syndrome has not passed them untouched. To me, Live Messenger has become almost unusable, and aMSN provides a very similar experience, in a much lighter and friendlier package.

What do you think of aMSN? Do you know of any other good clones out there? Share in the comments.



View full post on MakeUseOf

Posted in Useful APPsComments (0)

3 Light & Simple Ways To Take Screenshots In A Snap


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/image14.png" alt="free screenshot program" width="300" height="300" />Taking href="http://www.makeuseof.com/tags/screenshot/">screenshots is something everyone needs to do once in a while. There are numerous screen capture tools out there – some very powerful and costly, and some lighter and cheaper.

But let’s face it, most of us don’t need to use screenshots professionally. We just need a lightweight and simple tool that won’t slow down the computer and will simply do what it’s supposed to – take screenshots. Here are 3 free, simple and lightweight free screenshot programs that do just that.

href="http://vessenger.com/snaplr">Snaplr [Windows & Mac]

Snaplr is a tiny Adobe Air application that is both slick and extremely simple. There are no hotkeys, no configurations to be done and no options to choose from. Snaplr is basically one single screen:

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-14h29_25.png" alt="free screenshot program" width="417" height="377" border="0" />

After you click the “Take Screenshot” button, you can choose any window you want and then select the region you want to capture. If you want the whole screen, you’ll just have to choose it by hand.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-14h30_18.png" alt="free screenshot software" width="488" height="387" border="0" />

When you let go of the mouse button, Snaplr will pop up again – this time with your captured screenshot inside.

You can now use Snaplr’s limited yet useful annotation tools to add text, draw arrows or shapes, or just freehand with a brush. You can choose from 5 different colors for your annotations.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-14h33_02.png" alt="free screenshot software" width="441" height="487" border="0" />

When you’re done, you can copy your screenshot to the clipboard and just paste it into an e-mail or a document, or you can choose to save it as a PNG file.

This is all you can do with Snaplr, but it really works.

href="http://getgreenshot.org/">Greenshot [Windows]

If you want something just a bit more powerful (though a bit less slick, I must say), and you’re a Windows user, you should try Greenshot.

Greenshot offers a lot more options than Snaplr, but the entire package is still minimalistic and light, and you can get down to business pretty easily. After you install Greenshot it will take over your PrintScreen button and will create several hotkeys which you can use to capture your whole screen, a whole window, or a region of your choice.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h12_12.png" alt="free screenshot software" width="504" height="431" border="0" />

By default, a new screenshot will open in Greenshot’s image editor. Here you can do all the usual things, but with Greenshot you can also highlight and obfuscate text for example, which are pretty handy options. These tools are also pretty configurable: You can choose from blur or pixelize when you obfuscate, and the highlight tool can also magnify or greyscale the entire image but not the highlighted section. You can also crop your image if the original screenshot is not perfect.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h31_58.png" alt="free screenshot utility" width="467" height="464" border="0" />

As opposed to Snaplr, here you can choose any color you want for your annotations, and you can also make them transparent. It will even show you the recently used colors.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h18_45.png" alt="free screenshot utility" width="330" height="426" border="0" />

Though not overwhelming, Greenshot does have some settings (which you can ignore if you don’t want to deal with it – it works just fine on defaults). You can’t change the hotkeys, but you can play with effects and capture options.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h19_46.png" alt="free screenshot utility" width="463" height="432" border="0" />

You can also control some output options. Instead of the image editor, you can automatically copy the screenshot to the clipboard once you take it. Alternatively, you can send it to the printer or just save it. You also have some control over the output format and quality.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h20_02.png" alt="" width="466" height="435" border="0" />

Overall, Greenshot is a good compromise between a very simple tool and a highly powerful complicated tool. The only bone I have to pick with it is the slightly unresponsive editor interface. For some reason there is no undo option, and deleting annotations proved to be quite a task at times. But for simple usage, Greenshot is a peach.

href="http://tinygrab.com/">TinyGrab [Windows & Mac]

TinyGrab is a whole different take on the screenshot world. The name of the game here is sharing. Every screenshot you take is immediately uploaded to the cloud.

Before you can use TinyGrab, you’d need to create an account. This is slightly annoying, but is sweetened by the beautiful graphics. As you can see, I deliberately typed my password wrong here (the colors don’t match). Brilliant!

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h45_31.png" alt="" width="519" height="284" border="0" />

After you download TinyGrab, start by configuring your hotkeys (full screen, active window, or region) and the actions that will take place on and after upload. The preferences are very nicely done and are a joy to play with.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h43_22.png" alt="" width="548" height="527" border="0" />

Then go ahead and take your screenshot.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h57_05.png" alt="" width="471" height="408" border="0" />

 

The screenshot’s new URL will be automatically copied to your clipboard. You can now paste it anywhere you’d like and share it.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-16h02_12.png" alt="" width="381" height="378" border="0" />

TinyGrab also has an online control panel. You can use it to browse all your screenshots, arrange them in folders and get their respective URLs.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-16h05_59.png" alt="free screenshot program" width="485" height="519" border="0" />

All in all, TinyGrab is a beautiful tool that’s great to use visually and really does what it should, but performance-wise it’s somewhat lacking. The installation wasn’t very smooth, and for such a small and simple tool it had a little too much impact on my not-so-strong computer.

Bottom Line

I tried several free screenshot programs before choosing these three. I think all three of these apps are a great pick if you’re looking for a simple screenshot tool.

If social sharing is important to you, go for TinyGrab. It’s pretty much perfect for that. Otherwise, I highly recommend Snaplr for it’s appealing simplicity, and Greenshot is a good middle solution for those who can’t make up their minds.

If you’re looking for more screen capture tools, check out:

  • href="http://www.makeuseof.com/tag/3-fast-easy-online-screen-capture-tools/">3 Fast and Easy Online Screen Capture Tools
  • href="http://www.makeuseof.com/tag/screenshot-apply-artistic-effects-ms-word-2010/">How To Take A Screenshot & Apply Artistic Effects With The New MS Word 2010
  • href="http://www.makeuseof.com/tag/5-alternative-screen-capture-tools-for-your-mac/">5 Alternative Screen Capture Tools For Your Mac
  • href="http://www.makeuseof.com/tag/create-compelling-screenshots-snapdraw-free-320-windows/">Create Compelling Screenshots With SnapDraw Free 3.20
  • href="http://www.makeuseof.com/tag/shutter-%E2%80%93-the-best-screen-capture-software-in-linux/">Shutter – The Best Screen Capture Software For Linux
  • href="http://www.makeuseof.com/tag/snapshoter-screen-capture-tool-clipboard-manager-rolled-windows/">SnapShoter: A Screen Capture Tool & Clipboard Manager Rolled Into One

Any other light and simple screenshot apps out there? Do you know of a better solution? Share in the comments!

Image Credit: href="http://thumb15.shutterstock.com/photos/thumb_small/469099/469099,1275401052,1.jpg" rel="nofollow">Shutterstock



View full post on MakeUseOf

Posted in Useful APPsComments (0)

3 Light & Simple Ways To Take Screenshots In A Snap


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/image14.png" alt="free screenshot program" width="300" height="300" />Taking href="http://www.makeuseof.com/tags/screenshot/">screenshots is something everyone needs to do once in a while. There are numerous screen capture tools out there – some very powerful and costly, and some lighter and cheaper.

But let’s face it, most of us don’t need to use screenshots professionally. We just need a lightweight and simple tool that won’t slow down the computer and will simply do what it’s supposed to – take screenshots. Here are 3 free, simple and lightweight free screenshot programs that do just that.

href="http://vessenger.com/snaplr">Snaplr [Windows & Mac]

Snaplr is a tiny Adobe Air application that is both slick and extremely simple. There are no hotkeys, no configurations to be done and no options to choose from. Snaplr is basically one single screen:

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-14h29_25.png" alt="free screenshot program" width="417" height="377" border="0" />

After you click the “Take Screenshot” button, you can choose any window you want and then select the region you want to capture. If you want the whole screen, you’ll just have to choose it by hand.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-14h30_18.png" alt="free screenshot software" width="488" height="387" border="0" />

When you let go of the mouse button, Snaplr will pop up again – this time with your captured screenshot inside.

You can now use Snaplr’s limited yet useful annotation tools to add text, draw arrows or shapes, or just freehand with a brush. You can choose from 5 different colors for your annotations.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-14h33_02.png" alt="free screenshot software" width="441" height="487" border="0" />

When you’re done, you can copy your screenshot to the clipboard and just paste it into an e-mail or a document, or you can choose to save it as a PNG file.

This is all you can do with Snaplr, but it really works.

href="http://getgreenshot.org/">Greenshot [Windows]

If you want something just a bit more powerful (though a bit less slick, I must say), and you’re a Windows user, you should try Greenshot.

Greenshot offers a lot more options than Snaplr, but the entire package is still minimalistic and light, and you can get down to business pretty easily. After you install Greenshot it will take over your PrintScreen button and will create several hotkeys which you can use to capture your whole screen, a whole window, or a region of your choice.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h12_12.png" alt="free screenshot software" width="504" height="431" border="0" />

By default, a new screenshot will open in Greenshot’s image editor. Here you can do all the usual things, but with Greenshot you can also highlight and obfuscate text for example, which are pretty handy options. These tools are also pretty configurable: You can choose from blur or pixelize when you obfuscate, and the highlight tool can also magnify or greyscale the entire image but not the highlighted section. You can also crop your image if the original screenshot is not perfect.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h31_58.png" alt="free screenshot utility" width="467" height="464" border="0" />

As opposed to Snaplr, here you can choose any color you want for your annotations, and you can also make them transparent. It will even show you the recently used colors.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h18_45.png" alt="free screenshot utility" width="330" height="426" border="0" />

Though not overwhelming, Greenshot does have some settings (which you can ignore if you don’t want to deal with it – it works just fine on defaults). You can’t change the hotkeys, but you can play with effects and capture options.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h19_46.png" alt="free screenshot utility" width="463" height="432" border="0" />

You can also control some output options. Instead of the image editor, you can automatically copy the screenshot to the clipboard once you take it. Alternatively, you can send it to the printer or just save it. You also have some control over the output format and quality.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h20_02.png" alt="" width="466" height="435" border="0" />

Overall, Greenshot is a good compromise between a very simple tool and a highly powerful complicated tool. The only bone I have to pick with it is the slightly unresponsive editor interface. For some reason there is no undo option, and deleting annotations proved to be quite a task at times. But for simple usage, Greenshot is a peach.

href="http://tinygrab.com/">TinyGrab [Windows & Mac]

TinyGrab is a whole different take on the screenshot world. The name of the game here is sharing. Every screenshot you take is immediately uploaded to the cloud.

Before you can use TinyGrab, you’d need to create an account. This is slightly annoying, but is sweetened by the beautiful graphics. As you can see, I deliberately typed my password wrong here (the colors don’t match). Brilliant!

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h45_31.png" alt="" width="519" height="284" border="0" />

After you download TinyGrab, start by configuring your hotkeys (full screen, active window, or region) and the actions that will take place on and after upload. The preferences are very nicely done and are a joy to play with.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h43_22.png" alt="" width="548" height="527" border="0" />

Then go ahead and take your screenshot.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-15h57_05.png" alt="" width="471" height="408" border="0" />

 

The screenshot’s new URL will be automatically copied to your clipboard. You can now paste it anywhere you’d like and share it.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-16h02_12.png" alt="" width="381" height="378" border="0" />

TinyGrab also has an online control panel. You can use it to browse all your screenshots, arrange them in folders and get their respective URLs.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/2011-09-04-16h05_59.png" alt="free screenshot program" width="485" height="519" border="0" />

All in all, TinyGrab is a beautiful tool that’s great to use visually and really does what it should, but performance-wise it’s somewhat lacking. The installation wasn’t very smooth, and for such a small and simple tool it had a little too much impact on my not-so-strong computer.

Bottom Line

I tried several free screenshot programs before choosing these three. I think all three of these apps are a great pick if you’re looking for a simple screenshot tool.

If social sharing is important to you, go for TinyGrab. It’s pretty much perfect for that. Otherwise, I highly recommend Snaplr for it’s appealing simplicity, and Greenshot is a good middle solution for those who can’t make up their minds.

If you’re looking for more screen capture tools, check out:

  • href="http://www.makeuseof.com/tag/3-fast-easy-online-screen-capture-tools/">3 Fast and Easy Online Screen Capture Tools
  • href="http://www.makeuseof.com/tag/screenshot-apply-artistic-effects-ms-word-2010/">How To Take A Screenshot & Apply Artistic Effects With The New MS Word 2010
  • href="http://www.makeuseof.com/tag/5-alternative-screen-capture-tools-for-your-mac/">5 Alternative Screen Capture Tools For Your Mac
  • href="http://www.makeuseof.com/tag/create-compelling-screenshots-snapdraw-free-320-windows/">Create Compelling Screenshots With SnapDraw Free 3.20
  • href="http://www.makeuseof.com/tag/shutter-%E2%80%93-the-best-screen-capture-software-in-linux/">Shutter – The Best Screen Capture Software For Linux
  • href="http://www.makeuseof.com/tag/snapshoter-screen-capture-tool-clipboard-manager-rolled-windows/">SnapShoter: A Screen Capture Tool & Clipboard Manager Rolled Into One

Any other light and simple screenshot apps out there? Do you know of a better solution? Share in the comments!

Image Credit: href="http://thumb15.shutterstock.com/photos/thumb_small/469099/469099,1275401052,1.jpg" rel="nofollow">Shutterstock



View full post on MakeUseOf

Posted in Useful APPsComments (0)

5 Ways To Have Fun With Your Smartphone Camera [Android]


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/AndroidWebcam01.png" alt="have fun with android" border="0" />Most Android phones and tablets come with a small camera, often two. Typically, the in-built webcam is used for video chatting or video calls. If these are the only tasks you use the camera of your Android device for, then you are wasting precious potential for a lot of fun.

Let me introduce you to five alternative uses for your Android device’s webcam, which involve fun and professional photo effects, time lapse photography, voice control, and motion detection. With the apps I suggest, you can monitor your candy stack, turn boring snapshots into pieces of art and take a group photo by shouting at your camera from across the room.

Motion Detection [Android 2.0+]

title="Camera Trigger" href="https://market.android.com/details?id=com.busywww.cameratrigger">Camera Trigger is designed to take a snapshot upon detecting motion in a defined area within the camera’s field of vision. It can make a single shot or take photos continuously as long as motion is detected within the designated hotspot. To indicate the event it will also play a sound.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/AndroidWebcam04.png" alt="have fun with android" border="0" />

When you launch the app you will be taken through a very well done tutorial that explains the setup and functions in cartoon style.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/AndroidWebcam03.png" alt="top fun android apps" border="0" />

A drawback of the app is that it only works for as long as the screen of your Android device doesn’t turn off.

Voice Control [Android 2.2+]

title="Say Cheese" href="https://market.android.com/details?id=com.saycheese&feature=search_result">Say Cheese is a pretty neat app all together, but voice control is definitely its coolest feature. You can trigger the camera with the words cheese or smile, you can zoom in, zoom out, zoom max, or zoom clear, and you can do a camera switch. It takes only minimal practice to get the keywords and the app will work fairly well off the bat.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/AndroidWebcam05.png" alt="top fun android apps" border="0" />

Stealth mode is another interesting feature, in which all sounds are turned off and the app is darkened to a barely visible toggle button. To take a picture in stealth mode, you simply press anywhere on the screen. A first vibration of the device will confirm that the camera is focusing and a second indicates that the picture was captured.

Photo Effects

HDR is the acronym for style="text-decoration: underline;">High style="text-decoration: underline;">Dynamic style="text-decoration: underline;">Range, a photo processing technique that allows for “a greater dynamic range of luminance between the lightest and darkest areas of an image” [ title="Wikipedia: HDR Imaging" href="http://en.wikipedia.org/wiki/High_dynamic_range_imaging">Wikipedia].

HDR Camera [Android 2.2+]

title="HDR Camera" href="https://market.android.com/details?id=com.almalence.hdr&feature=search_result">HDR Camera is an app that automatically creates HDR images. You can control the outcome by adjusting the settings, for example by changing color vividness to saturated or black and white.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/AndroidWebcam06.png" alt="top fun android apps" border="0" />

FXCamera [Android 1.5+]

Another interesting app is title="FxCamera" href="https://market.android.com/details?id=ymst.android.fxcamera&feature=search_result">FxCamera, which provides a set of effects, including ToyCam, Polandroid, Fisheye, SymmetriCam, or Warhol. You can also get a plain and simple normal camera view.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/AndroidWebcam02.png" alt="android fun apps" border="0" />

Unfortunately, it is not tablet-fit as it only takes up a small portion of the screen.

Time Lapse

Action Snap [Android 2.1+]

title="Action Snap" href="https://market.android.com/details?id=oursky.gesturecam&feature=search_result">Action Snap is a camera app specialized on capturing action and movement. It can take multiple photos in intervals of 0.1 to five seconds or more (custom setting). When the time has elapsed and all picture were taken, the tool combines them all into one neat image.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/AndroidWebcam07.png" alt="have fun with android" border="0" />

You can share images created with Action Snap on Facebook, Twitter, and Tumblr using Steply.

For more creative camera effects, also check out these title="3 Hipstamatic-Equivalent Android Apps For Retro Photo Effects" href="http://www.makeuseof.com/tag/3-hipstamaticequivalent-android-apps-retro-photo-effects/">3 Hipstamatic-Equivalent Android Apps For Retro Photo Effects and title="Add Cool Effects To Your Photos With Little Photo [Android 1.6+]" href="http://www.makeuseof.com/tag/add-cool-effects-photos-photo-android-16/">Add Cool Effects To Your Photos With Little Photo [Android 1.6+].

Many more camera-related Android apps have been reviewed on MakeUseOf:

  • title="Take Fantastic Full Resolution Images With Vignette [Android 1.5+]" href="http://www.makeuseof.com/tag/fantastic-full-resolution-images-vignette-android-15/">Take Fantastic Full Resolution Images With Vignette [Android 1.5+]
  • title="Take Beautiful Photos With Camera360 Free [Android 1.5+]" href="http://www.makeuseof.com/tag/beautiful-photos-camera360-free-android-15/">Take Beautiful Photos With Camera360 Free [Android 1.5+]
  • title="Lightbox Photos – A Sophisticated Camera & Photo-Sharing App [Android 2.1+]" href="http://www.makeuseof.com/tag/lightbox-photos-sophisticated-camera-photosharing-app-android-21/">Lightbox Photos – A Sophisticated Camera & Photo-Sharing App [Android 2.1+]

What is your favorite use for your Android phone or tablet camera?

Image credits: href="http://www.shutterstock.com/pic.mhtml?id=2047004" rel="nofollow">Feng Yu



View full post on MakeUseOf

Posted in Useful APPsComments (0)

3 Ways You’ve Sold Your Soul To The Internet


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/RightAlign1.png" alt="" />You may not have participated in a blood ritual sacrifice, and you also may not have sworn your firstborn to a warlock. However, chances are if you spend any time on class="vt-p" href="http://www.makeuseof.com/tags/facebook/">Facebook, class="vt-p" href="http://www.makeuseof.com/tags/twitter/">Twitter, or class="vt-p" href="http://www.makeuseof.com/tags/google/">Google, then you have already handed over a great deal of your life over to the Internet.

Sure, on the surface they may have cute pictures of birds and silly pokes from friends, but don’t be fooled, dear readers. The Internet can be evil, and we’re here to make you aware of its malevolent side. Don’t say we don’t do anything for you.

class="vt-p" href="http://www.facebook.com/terms.php">Facebook Owns Your Image

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/Facebook1.png" alt="" width="580" height="275" />

You might already have some knowledge of what Facebook does with your class="vt-p" href="http://www.makeuseof.com/tags/media/">media. However, you may not have a total understanding, so let’s take a look at the class="vt-p" href="http://www.facebook.com/terms.php">terms of service.

For content that is covered by intellectual property rights, like photos and videos (IP content), you specifically give us the following permission, subject to your privacy and application settings: you grant us a non-exclusive, transferable, sub-licensable, royalty-free, worldwide license to use any IP content that you post on or in connection with Facebook (IP License). This IP License ends when you delete your IP content or your account unless your content has been shared with others, and they have not deleted it.

It’s simple – if you put class="vt-p" href="http://www.makeuseof.com/tags/photos/">photos and class="vt-p" href="http://www.makeuseof.com/tags/videos/">videos up on Facebook, the website could always give them to other entities (maybe for profit). Facebook isn’t doing that (yet), so have no worries right now, and chances are if you delete it, then the content might no longer be up for grabs. However, if you simply deactivate your account, you may have something to worry about.

When you deactivate an account, no user will be able to see it, but it will not be deleted. We save your profile information (connections, photos, etc.) in case you later decide to reactivate your account.

To be clear, it might be better to delete your account instead of deactivating it if you don’t plan on coming back. Also,  class="vt-p" href="http://www.makeuseof.com/tag/control-facebook-privacy-privacydefender/">check your privacy settings and make sure that people class="vt-p" href="http://www.makeuseof.com/answers/protect-facebook-viewed/">you don’t know can’t download your photos.

class="vt-p" href="http://www.twitter.com/tos">Twitter Borrows Your Thoughts

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/Twitter1.png" alt="" width="580" height="275" />

Twitter has a sweet-sounding brand name, and its powder-blue user interface dotted with innocent-looking birds could make even the burliest of lumberjacks say, “Aww.” However, there might be one part of the class="vt-p" href="http://www.twitter.com/tos">terms of service that you may have skipped over.

By submitting, posting or displaying Content on or through the Services, you grant us a worldwide, non-exclusive, royalty-free license (with the right to sublicense) to use, copy, reproduce, process, adapt, modify, publish, transmit, display and distribute such Content in any and all media or distribution methods (now known or later developed).

Here we have a very similar agreement to Facebook, but this is based only on your tweets. What on earth could Twitter do with those?

You agree that this license includes the right for Twitter to make such Content available to other companies, organizations or individuals who partner with Twitter for the syndication, broadcast, distribution or publication of such Content on other media and services, subject to our terms and conditions for such Content use.

What does this mean? Well, your angry Tweet about your “dumb neighbor who always mows his lawn too short” could end up on the national news, and there’s nothing that you can do about it. Sadly, this could be the case with even a protected account, and if you look further down the terms, you’ll see that Twitter can modify your material as they please.

class="vt-p" href="http://www.google.com/intl/en/privacy/privacy-policy.html">Google Knows Where You Are

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/Google1.png" alt="" width="580" height="275" />

Ever since class="vt-p" href="http://www.makeuseof.com/tags/google-plus/">Google+ dished out its “real name” policy – which is quite similar to a certain class="vt-p" href="http://www.makeuseof.com/tag/8-free-comic-readers-ipad-mac/">Marvel-related registration act – there has been concern over how Google can ban your account. This isn’t the only way to get shut down, so that makes me personally worried. My Google account is tied to my class="vt-p" href="http://www.makeuseof.com/tags/blogger/">Blogger publication, my class="vt-p" href="http://www.makeuseof.com/tags/google-docs/">Google Docs, my class="vt-p" href="http://www.makeuseof.com/tags/gmail/">Gmail, and my class="vt-p" href="http://www.makeuseof.com/tags/youtube/">YouTube channel.

That got me thinking – what other dirt does Google have on me? Here’s a tidbit of its class="vt-p" href="http://www.google.com/intl/en/privacy/privacy-policy.html">privacy policy.

Google offers location-enabled services, such as Google Maps and Latitude. If you use those services, Google may receive information about your actual location (such as GPS signals sent by a mobile device) or information that can be used to approximate a location (such as a cell ID).

Although this section potentially has good intentions, we see that Google can class="vt-p" href="http://www.makeuseof.com/tag/how-to-trace-a-mobile-phone-location-with-google-latitude/">track your location based on your phone. It reminds me a great deal of that movie, Enemy of the State. The company could be watching you at any time, so remember when you lied to your mother-in-law about not being able to come over with the wife for dinner? Google knows what you you were doing instead.

This company’s motto may be “don’t be evil”, but even the class="vt-p" href="http://www.makeuseof.com/tags/star-wars/">Jedi had a code of conduct. Just look at what happened to Anakin Skywalker.

Conclusion

These are the “Big Three” when it comes to giving up your identity rights on the Internet, and with so many agreements that they require for usage of their services, the Internet can be a scary environment. Even if it means using CTRL+F for key words, always remember to look at the terms of service.

What other ways have you sold your soul to the Internet? Do you know of any other shady TOS agreements?



View full post on MakeUseOf

Posted in Useful APPsComments (0)

7 Ways To Use The iPad To Help Students Excel At School


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/00a_students_ipad.jpg">We are approaching the era where students don’t have to carry stacks of thick heavy books to school anymore. Everything will be digitized and available at the tip of students’ fingers, inside the class="vt-p" href="http://www.makeuseof.com/tags/ipad/">iPad (or whatever other tablet can stand alongside the iPad in the future). Not wanting to waste any more time, some schools have already adopted the iPad as their learning tool, while students and educators are slowly figuring out the best way to utilize the iPad for education.

Even though everybody has their own preferences of using the iPad in their studies, allow me to share 7 iPad usages to help students excel at school.

Replace Physical Books

This one should be obvious. Other than saving the environment by preserving the trees, there are several advantages to using digital versions of books instead of physical ones. These include being able to put lots of digital books inside your device and taking them everywhere easily, you can quickly search for any information from those books, you can add notes and annotations without damaging the books, and the books will always be in mint condition so you can keep them forever.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/01a_ibooks.jpg" alt="01a ibooks" width="580" height="410" border="0" />

There are lots of book readers available for iOS. The one I use is Apple’s class="vt-p" href="http://www.makeuseof.com/tags/ibooks/">iBooks as most of my digital books are in PDF and epub format.

A Quick Source Of Reference

Again, there’s lots of iOS apps out there that can help you find definitions, facts, statistics, and other things you want to know. Since you can’t have too much help in this department, you can have as many apps as you want. Here are a few that I use:

  • class="vt-p" href="http://www.dictionary.com">Dictionary.com ( class="vt-p" href="http://itunes.apple.com/us/app/dictionary.com-dictionary/id364740856?mt=8">iTunes link)
  • class="vt-p" href="http://www.makeuseof.com/tags/wikipedia/">Wikipedia ( class="vt-p" href="http://itunes.apple.com/us/app/wikipedia-mobile/id324715238?mt=8">iTunes link)
  • class="vt-p" href="http://www.makeuseof.com/tag/change-search-consume-information-qwiki/">Qwiki ( class="vt-p" href="http://itunes.apple.com/us/app/qwiki/id373717412?mt=8">iTunes link)
  • class="vt-p" href="http://www.makeuseof.com/tags/imdb/">IMDB ( class="vt-p" href="http://itunes.apple.com/us/app/imdb-movies-tv/id342792525?mt=8">iTunes link)
style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/02a_qwiki.jpg" alt="02a qwiki" width="580" height="435" border="0" />

Find & Collect Data & Ideas

Even though finding and collecting data and ideas can be done from any gadget, doing it on an iPad will add a fun factor to the process. My personal favorites are:

  • class="vt-p" href="http://www.makeuseof.com/tags/safari/">Safari for iOS – to browse and find quick information
  • class="vt-p" href="http://www.makeuseof.com/dir/flipboard-social-magazine/">Flipboard ( class="vt-p" href="http://itunes.apple.com/us/app/flipboard/id358801284?mt=8">iTunes link), class="vt-p" href="http://www.makeuseof.com/tag/zite-ipad-rss-feed-contender/">Zite ( class="vt-p" href="http://itunes.apple.com/us/app/zite-personalized-magazine/id419752338?mt=8">iTunes link) and class="vt-p" href="http://www.makeuseof.com/tag/pulse-free-visual-display-rss-news-reader-ipad/">Pulse ( class="vt-p" href="http://itunes.apple.com/us/app/pulse-news-for-ipad/id371088673?mt=8">iTunes link) – to read news and find ideas to write about.

To save the information, I could quickly email it to myself or send it to class="vt-p" href="http://www.makeuseof.com/tag/create-and-manage-your-bookmarks-better-with-instapaper">Instapaper/ class="vt-p" href="http://www.makeuseof.com/tag/read-multiplatform-app-save-information-read">Read It Later using the share feature on these apps.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/03a_flipboard.jpg" alt="03a flipboard" width="580" height="435" border="0" />

Jot Down Notes

When it comes to taking notes, there are only three names that come to mind: class="vt-p" href="http://www.makeuseof.com/dir/simplenote-note-taking-utility/">Simplenote ( class="vt-p" href="http://itunes.apple.com/us/app/simplenote/id289429962?mt=8">iTunes link), class="vt-p" href="http://www.makeuseof.com/dir/plaintext-text-editor-for-iphone/">PlainText ( class="vt-p" href="http://itunes.apple.com/us/app/plaintext-dropbox-text-editing/id391254385?mt=8">iTunes link) and class="vt-p" href="http://www.makeuseof.com/tags/evernote/">Evernote ( class="vt-p" href="http://itunes.apple.com/us/app/evernote/id281796108?mt=8">iTunes link). Simplenote is perfect for jotting down quick notes while PlainText can accommodate a hierarchy of text files inside folders. But if you love to collect snippets of text and images, use Evernote.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/04_plain_text.jpg" alt="04 plain text" width="580" height="435" border="0" />

All of them are capable of synchronizing your text collection to other devices. Simplenote is using its own server while PlainText is making use of the more established Dropbox environment. As an alternative, Dropbox itself is capable of viewing and editing plain text. If you prefer to literally write down your notes, you should try class="vt-p" href="http://www.makeuseof.com/tag/ipad-true-writing-tool-notebook-apps/">Bamboo Paper ( class="vt-p" href="http://itunes.apple.com/us/app/bamboo-paper-wacom-notes-for/id443131313?mt=8">iTunes link).

Do Actual Study

Since choosing apps that can help you do your studies will obviously heavily depend on the actual subjects you’re taking, it’s a bit difficult to make a specific list for this point. You have to go out and find apps that fit your needs. The choices range from apps that teach letters and numbers, sign language, basic math and advanced algebra, to the ones that help people write and memorize Chinese characters.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/05_evernote_peek.jpg" alt="05 evernote peek" width="580" height="435" border="0" />

But for general purposes, you can perhaps try flash cards apps like class="vt-p" href="http://www.makeuseof.com/tag/evernote-peek-turning-ipad-2-smart-cover-cool-learning-tool/">Evernote Peek ( class="vt-p" href="http://itunes.apple.com/us/app/evernote-peek/id442151267?mt=8">iTunes link).

Manage Classes, Assignments & Social Life

There are so many things happening at school that it’s difficult to get everything under control without the help of a time manager. The first app that I would recommend for this is class="vt-p" href="http://www.makeuseof.com/tag/inclass-perfect-agenda-app-college-students-ios/">InClass ( class="vt-p" href="http://itunes.apple.com/us/app/inclass/id374986430?mt=8">iTunes link). This app will help students put all the chaos into a more manageable order.

style="text-align: center;"> class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/06a_inclass.jpg" alt="06a inclass" width="580" height="435" border="0" />

Other alternatives you can use are class="vt-p" href="http://www.makeuseof.com/tag/sync-todo-lists-windows-pc-mac-wunderlist/">Wunderlist ( class="vt-p" href="http://itunes.apple.com/us/app/wunderlist-hd/id420670429?mt=8">iTunes link) and class="vt-p" href="http://www.makeuseof.com/dir/producteev-efficient-task-management/">Producteev ( class="vt-p" href="http://itunes.apple.com/us/app/producteev/id306289289?mt=8">iTunes link). Both are free multi-platform to-do list managers that allow you to add and sync tasks using various devices.

In the social department, there are an abundance of apps you can use, such as class="vt-p" href="http://www.makeuseof.com/tags/twitter/">Twitter ( class="vt-p" href="http://itunes.apple.com/us/app/twitter/id333903271?mt=8">iTunes link), class="vt-p" href="http://www.makeuseof.com/tags/yahoo-messenger/">Yahoo! Messenger ( class="vt-p" href="http://itunes.apple.com/us/app/yahoo!-messenger-free-sms/id309219097?mt=8">iTunes link), and class="vt-p" href="http://www.makeuseof.com/tags/skype/">Skype ( class="vt-p" href="http://itunes.apple.com/us/app/skype-for-ipad/id442012681?mt=8">iTunes link). class="vt-p" href="http://www.makeuseof.com/tags/facebook/">Facebook still hasn’t released its iPad app, but you can use class="vt-p" href="http://www.makeuseof.com/tag/wait-facebooks-ipad-app-3-free-facebook-apps-ipad/">MyPad ( class="vt-p" href="http://itunes.apple.com/us/app/mypad-for-facebook-twitter/id412133981?mt=8">iTunes link) and/or Friendly ( class="vt-p" href="http://itunes.apple.com/us/app/friendly-for-facebook/id400169658?mt=8">iTunes link) to access your account.

Have Fun

All work and no play makes you a dull person. Every student needs to take a break and have fun once in a while. You can use your iPad to class="vt-p" href="http://www.makeuseof.com/tag/top-4-ways-listen-music-ipad">listen to music, class="vt-p" href="http://www.makeuseof.com/tag/complete-guide-watching-videos-ipad">watch movies, class="vt-p" href="http://www.makeuseof.com/tag/5-great-ipad-games">play games, or do class="vt-p" href="http://www.makeuseof.com/tag/3-free-doodling-software-apps-ipad-mac">other fun activities. There are plenty of games for the iPad that can keep you occupied for as long as you want.

Do you also use an iPad to help you study? Please share your experiences and lists of apps in the comments below.

Image credit: class="vt-p" href="http://www.flickr.com/photos/56155476@N08/5667294683/" rel="nofollow">flickingerbrad, class="vt-p" href="http://www.apple.com/ipad/built-in-apps/ibooks.html" rel="nofollow">Apple



View full post on MakeUseOf

Posted in Useful APPsComments (0)

3 Different Ways To Control The YouTube Video Volume


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/volume-youtube.jpg" alt="youtube volume control"/>Last week we shared a few ways to quickly href="http://www.makeuseof.com/tag/mute-sound-webpages-embedded-audio-flash/">mute sound (or prevent flash from auto-playing) in different browsers.

This week we follow up with a few more interesting tips on getting more control over YouTube video volume (Google Chrome, FireFox and Internet Explorer)

Here are a few ways to easily make a YouTube video play louder or quieter:

Keyboard Shortcuts (Default)

YouTube videos support standard and obvious href="http://www.makeuseof.com/tag/comprehensive-guide-youtube-player-keyboard-shortcuts/">keyboard shortcuts: use UP / DOWN arrows to make the video play 5% loader or quieter.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/volume-youtube-04.jpg" alt="youtube volume control" width="253" height="107" />

Note: You may have to click on the video to move the focus to it and make the shortcut work (otherwise the shortcuts will just move the whole page up or down), so you will still need an extra click.

Control Volume Scrolling Mouse Wheel (Google Chrome)

href="https://chrome.google.com/webstore/detail/abjcfabbhafbcdfjoecdgepllmpfceif#">Magic Actions for Youtube is a fun Google Chrome extension that adds a few nice features to YouTube player including volume control using your mouse.

When on any YouTube video page, scroll your mouse wheel to make the video play louder or quieter. And you don’t even need to move focus to the video itself (like with the shortcut)!

The extension supports any web page with an embedded YouTube video as well as any page with a HTML5 video player.

The sound level is visualized via a pretty standalone indicator.

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/volume-youtube-01.jpg" alt="volume control on youtube" width="498" height="380" />

More features to enjoy:

  • Set the videos to play in HD by default;
  • href="http://www.makeuseof.com/tag/4-browser-extensions-dim-lights-move-focus-youtube-video/">Dim lights for the background page to enjoy the cinema mode (use the mouse wheel to change opacity of the background).
  • Auto play any video once you land on a page;
  • Disable video annotations.

The extension options let you enable or disable any of the above features as well as set the volume control look and feel:

  • Change the color of the volume controller line;
  • Set the text volume indicator (instead of color line):

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/volume-youtube-05.jpg" alt="volume control on youtube" width="502" height="340" />

Other supported online video streaming services: Vimeo.com

3. Control Volume from the Status / Addons Bar (FireFox, IE)

href="http://www.foxytunes.com/">FoxyTunes is a handy FireFox and Internet Explorer addon that adds video controls to the browser status bar (or “ href="http://www.makeuseof.com/tag/optimize-firefox-addons-bar-claim-space/">Addons bar” for FireFox 4+ users).

It is initially meant to help you control your desktop video or music player using your browser but it supports web video players (like YouTube) as well:

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/volume-youtube-02.jpg" alt="volume control on youtube" width="316" height="129" />

Apart from letting you control the volume and even mute it from your browser, you can also see the video information, pause the video, etc:

class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/volume-youtube-03.jpg" alt="youtube volume control" width="371" height="162" />

Besides, you can quickly hide it using the > sign on the Addons Bar.

Other supported online video streaming services: Blip.tv, Deezer, Last.fm, Songbird, href="http://www.foxytunes.com/firefox/supportedPlayers.html">more.

More YouTube tips we covered previously:

  • href="http://www.makeuseof.com/tag/3-youtube-tools-create-easy-leanback-tv-experience/">3 YouTube tools to create an easy lean-back TV experience: in case you have an idle minute and want to relax;
  • href="http://www.makeuseof.com/tag/4-common-youtube-annoyances-rid-userscripts/">4 common YouTube annoyances and how to get rid of them with user scripts (prevent auto-playing and buffer smarter; improve default video quality, remove in-video ads, etc)
  • href="http://www.makeuseof.com/tag/force-subtitles-embedded-youtube-video/">How to force subtitles in an embedded YouTube video (to make your website easier to understand for non-English speaking visitors);
  • href="http://www.makeuseof.com/tag/4-ways-easily-embed-part-youtube-video/">4 ways to easily embed part of a YouTube video: Save your site visitors’ time and show them the most interesting part!

Are there any other useful tips for controlling YouTube video volume? Please share them in the comments!



View full post on MakeUseOf

Posted in Useful APPsComments (0)

3 Ways To Temporarily Change A Website’s Font If The Original Font Is Not Good Enough


class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/RightAlign.png?54167" alt="" />How many times has someone sent you a link to a website infested with incredibly hard-to-read  class="vt-p" href="http://www.makeuseof.com/tags/fonts/">fonts? It’s happened to all of us, and there’s not much we can do about it – or is there?

There are a few folks on the Internet who have experienced the same problem as you, and fortunately, they decided to do something about it. So graciously accept Grandma’s chain class="vt-p" href="http://www.makeuseof.com/tags/email/">email link with no questions asked, and try out these web tools that all have one sole purpose – to allow you to see text on the web how you want to see it.

class="vt-p" href="http://www.fontfonter.com">FontFonter [Web App]

It should be made clear that FontFonter isn’t going to transform the world’s worst website into something pristine and beautiful. Let’s face it. Bad class="vt-p" href="http://www.makeuseof.com/tag/8-websites-quality-html-coding-examples/">web design is bad web design, and there’s nothing you can do to change it. However, it will make websites easier to read. Just punch your desired URL into FontFonter’s address bar, click the “FontFont It!” button, and embrace the glorious class="vt-p" href="http://www.makeuseof.com/dir/typekit-online-font-library-for-your-website/">TypeKit font-changing magic.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/FF1.png?54167" alt="" width="580" height="240" />

With FontFonter, we can change any website’s fonts using three classifications: serif, sans-serif, and all. Basically, that means you could fix the website up with a whole new font scheme, or you could make everything uniform by deciding all the fonts should be the same. The tool is fairly easy to use in that you can replace all of a website’s sans serif fonts with your choice, and vice versa for serif. As mentioned, you can replace both of the website’s sans-serif and serif fonts with the same typeface.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/FF5.png?54167" alt="" width="580" height="167" />

The downside to FontFonter is the fact that it doesn’t provide previews of what fonts look like, so if you don’t have a mental list of TypeKit fonts, you are going to end up playing the lottery for a little while trying to find something suitable. Granted, this is a small price to pay, for as you use FontFonter over time, you will become familiar with your top choice selections.

class="vt-p" href="https://chrome.google.com/webstore/detail/engndlnldodigdjamndkplafgmkkencc">Google Font Previewer [Chrome Extension]

The class="vt-p" href="https://chrome.google.com/webstore/detail/engndlnldodigdjamndkplafgmkkencc">Google Font Previewer was created with web developers in mind, but it is also quite useful for the standard Internet consumer. The class="vt-p" href="http://www.makeuseof.com/tags/chrome/">Chrome extension is designed for web designers who want to see how fonts from the class="vt-p" href="http://www.makeuseof.com/dir/google-font-directory-custom-fonts-on-website/">Google Font API directory appear on webpages when in use, but it can also be a nice aid for those desiring a better font for easier readability.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/CE1.png?54167" alt="" width="580" height="377" />

After downloading the Font Previewer extension, you’ll be able to find it just to the right of Chrome’s address bar. Simply click it while on the website of your choice, and it will provide you with a multitude of options to mix things up. Select the fonts using the provided list, and customize with options such as increasing the text weight, changing the entire text to caps, or bumping up the percentage of text size in increments of 50.

In the case that you are actually designing a website, you could tackle the job using the Font Previewer’s class="vt-p" href="http://www.makeuseof.com/tags/css/">CSS selection feature. Instead of testing your entire site while only looking at one selected font, you could actually enter specific tags that will change only parts of your work. This method is better than going back into the code every time you want to tweak something just to see how it would look.

class="vt-p" href="http://www.barisderin.com/?p=325">Readable [Firefox Add-on]

Back in MakeUseOf’s past article, class="vt-p" href="http://www.makeuseof.com/tag/4-tools-webpages-easier-read-people-poor-eyesight-firefox/">4 Tools to Make Web Pages Easier to Read for People with Poor Eyesight, we were introduced to the class="vt-p" href="http://www.makeuseof.com/tags/firefox/">Firefox class="vt-p" href="http://barisderin.com/?p=325">Readable add-on (as well as its almost-identical relative, class="vt-p" href="https://addons.mozilla.org/en-US/firefox/addon/reader/">Reader). The add-on does not necessarily change the text styling of the actual website per se, but it does make the text found on it, well… readable.

If you want to read a particular article but struggle with the font that it is written in, simply click the Readable button for a nice change of scenery. Upon its activation, the add-on will open the content of the website in a theater-style presentation that features the page’s text and images in a very primitive, yet user-friendly, sans-serif form. Furthermore, highlighting a portion of the text only converts the selection, reducing clutter that you would normally have to scroll through.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/R1.png?54167" alt="" width="580" height="320" />

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/R2.png?54167" alt="" width="580" height="397" />

Granted, even really nice things have their flaws, and in a cruel move, the activation button itself is the Achilles heel of Reader. The browser button is ironically incredibly tiny and almost blends in with the browser itself, presenting a very difficult-to-see design feature for those that the add-on is designed to help. However, this one problem does not sink the Readable boat, for as a whole, it is an excellent tool that can be used for the reading-impaired.

class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/R4.png?54167" alt="" width="580" height="598" />

Conclusion

These three web-tools primarily focus on the text content of a website rather than the website as a whole, but as someone who once suffered serious migraines due to a great deal of in-browser reading, they are certainly a blessing. However, if you would like to find even more resources for easier in-browser reading, you should take a look at MakeUseOf’s class="vt-p" href="http://www.makeuseof.com/tag/7-firefox-addons-improve-web-page-readability-level/">7 Firefox Add-ons That Improve Webpage Readability Level.

What are some of your least favorite fonts used in web design? How have these tools helped you? What other tools would you recommend?

Image Credit: class="vt-p" href="http://morguefile.com/archive/display/186280#">jeltovski, class="vt-p" href="http://movies.nytimes.com/2011/07/15/movies/harry-potter-and-the-deathly-hallows-part-2-review.html?hp">The New York Times

href="http://www.makeuseof.com/tag/3-ways-temporarily-change-websites-font-original-font-good/">3 Ways To Temporarily Change A Website’s Font If The Original Font Is Not Good Enough is a post from: href="http://www.makeuseof.com">MakeUseOf

More articles about: href="http://www.makeuseof.com/tags/browsing-tools/" title="browsing tools" rel="tag">browsing tools, href="http://www.makeuseof.com/tags/chrome-extensions/" title="chrome extensions" rel="tag">chrome extensions, href="http://www.makeuseof.com/tags/firefox-addons/" title="firefox addons" rel="tag">firefox addons, href="http://www.makeuseof.com/tags/fonts/" title="fonts" rel="tag">fonts, href="http://www.makeuseof.com/tags/reading/" title="reading" rel="tag">reading, href="http://www.makeuseof.com/tags/web-design/" title="web design" rel="tag">web design, href="http://www.makeuseof.com/tags/web-development/" title="web development" rel="tag">web development />

Similar articles:

class="st-related-posts">
  • href="http://www.makeuseof.com/tag/xmarks-syncs-bookmarks-passwords-major-browsers/" title="XMarks Syncs Bookmarks & Passwords Between All Major Browsers (September 18, 2010)">XMarks Syncs Bookmarks & Passwords Between All Major Browsers (21 comments …)
  • href="http://www.makeuseof.com/tag/web-reading-place-readability/" title="The New Readability Addon Converts Pages To Read-Friendly Format (March 23, 2011)">The New Readability Addon Converts Pages To Read-Friendly Format (8 comments …)
  • href="http://www.makeuseof.com/tag/google-chrome-extensions-easier-web-reading/" title="The Four Google Chrome Extensions For Easier Online Reading (September 7, 2010)">The Four Google Chrome Extensions For Easier Online Reading (30 comments …)
  • href="http://www.makeuseof.com/tag/read-multiplatform-app-save-information-read/" title="Read It Later: Save Information To Be Read Later On Any Device (February 10, 2011)">Read It Later: Save Information To Be Read Later On Any Device (13 comments …)
  • href="http://www.makeuseof.com/tag/quickly-easily-add-safaris-reader-feature-chrome-firefox/" title="Quickly & Easily Add Safari’s Reader Feature To Chrome & Firefox (June 10, 2010)">Quickly & Easily Add Safari’s Reader Feature To Chrome & Firefox (309 comments …)


  • View full post on MakeUseOf

    Posted in Useful APPsComments (105)

    3 Ways To Add & Access Windows 7 Shortcuts To Work More Productively With Your Mouse


    class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/DesktopShortcut01.png?54167" alt="" />When it comes to using the computer, there are essentially two groups of people: those that always have their hands on the keyboard and are obsessed with keyboard shortcuts and those that do everything technically possible with the mouse. If you belong to the latter group, this article is for you.

    In this article I will show you how to optimize your Windows 7 desktop for working with the mouse and point out tricks to increase your productivity.

    1. Enable Toolbars & Quick Launch Bar

    Keeping all your program shortcuts on the desktop is not very productive if it’s always covered by open windows. Hence the better solution is to enable Taskbar Toolbars for your most used programs or add program and folder shortcuts to the Quick Launch Bar.

    Add Taskbar Toolbar:

    • right-click Taskbar
    • expand > Toolbars
    • check desired toolbar or select > New Toolbar…

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/DesktopShortcut02.png?54167" border="0" alt="add taskbar toolbar" />

    You can turn any folder into a custom toolbar and fill it with shortcuts. />

    Enable Quick Launch Bar:

    Per default, the Quick Launch bar is disabled in Windows 7. However, it’s quite simple to add it.

    • follow steps above and select > New toolbar…
    • under > Folder enter the path > %userprofile%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch and click > Select Folder
    • to customize your new Quick Launch toolbar, unlock the taskbar
    • you can now right-click > Quick Launch and set your preferences
    • while the taskbar is unlocked you can also drag and drop it to a different location

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/DesktopShortcut03.png?54167" border="0" alt="add quick launch bar" />

    You can now use the Quick Launch bar to hold shortcuts for frequently used programs, folders, or files. Simply drag and drop them from the desktop into the Quick Launch bar.

    Check out these articles for more Windows 7 tips and tricks:

    • class="vt-p" title="5 Cool Ways To Customize Your Windows 7 System" href="http://www.makeuseof.com/tag/5-cool-ways-customize-windows-7-system/">5 Cool Ways To Customize Your Windows 7 System
    • class="vt-p" title="15 Best Windows 7 Tips and Hacks" href="http://www.makeuseof.com/tag/best-windows-7-tips-and-hacks-part-1/">15 Best Windows 7 Tips and Hacks
    • class="vt-p" title="12 More Windows 7 Tips & Hacks" href="http://www.makeuseof.com/tag/best-windows-7-tips-hacks-part-2/">12 More Windows 7 Tips & Hacks

    2. Use Aero Peek

    Aero Peek is a Windows 7 features that replaces the ‘show desktop’ shortcut that was formerly found in the Quick Launch bar. If you don’t want to clutter your Taskbar with toolbars or a Quick Launch bar and prefer to keep your shortcuts on the desktop, Aero Peek allows you to quickly show the desktop using your mouse. Simply move the mouse to the bottom right of your screen. After a second, all windows will become transparent and the desktop will show. A left-click will minimize all open windows and another left-click will restore them.

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Aero02.png?54167" border="0" alt="show desktop with aero peek" />

    Need more help with Windows 7 Aero effects? Have a look at these articles:

    • class="vt-p" title="How To Enable & Troubleshoot Aero Effects In Windows 7" href="http://www.makeuseof.com/tag/enable-troubleshoot-aero-effects-windows-7/">How To Enable & Troubleshoot Aero Effects In Windows 7
    • class="vt-p" title="Top 5 Most Common Windows 7 Problems and How to Fix Them" href="http://www.makeuseof.com/tag/top-5-commonly-reported-windows-7-problems-fix/">Top 5 Most Common Windows 7 Problems and How to Fix Them
    • class="vt-p" title="How To Get Aero Shake, Aero Peek & Aero Snap Features In Vista & XP" href="http://www.makeuseof.com/tag/how-to-get-aero-shake-aero-peek-aero-snap-features-in-vista-xp/">How To Get Aero Shake, Aero Peek & Aero Snap Features In Vista & XP

    3. Add class="vt-p" title="Handy Shortcuts" href="http://www.thewindowsclub.com/create-windows-desktop-shortcuts-easily-with-handy-shortcuts">Handy Shortcuts To Your Desktop

    Handy Shortcuts is a free portable app for Windows 7 and Windows Vista that can add up to 20 different Windows functions as shortcuts to your desktop. Simply download and run the executable file, then click > Create next to the Windows functions you wish to see as shortcuts on your desktop.

    My favorite three shortcuts are:

    • Shutdown Windows
    • Add and Remove Program
    • Safely Remove Hardware

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/DesktopShortcut04.png?54167" border="0" alt="add desktop shortcuts" />

    We have previously reviewed a similar tool for Windows XP here: class="vt-p" title="Windows System Tools at your Fingertips with FastKake" href="http://www.makeuseof.com/tag/windows-system-tools-at-your-fingertips-with-fastkake/">Windows System Tools at your Fingertips with FastKake.

    Need more ideas how to make the most of your class="vt-p" title="MakeUseOf Tag: Mouse Gestures" href="http://www.makeuseof.com/tags/mouse-gestures/">mouse? Check out these posts:

    dir="ltr">
  • class="vt-p" title="How To Set Up Shortcuts for Your Mouse using StrokeIt" href="http://www.makeuseof.com/tag/how-to-set-up-run-mouse-shortcuts-with-strokeit-mouse-gestures/">How To Set Up Shortcuts for Your Mouse using StrokeIt
  • class="vt-p" title="Just Gestures Lets You Use Mouse Gestures To Control Windows" href="http://www.makeuseof.com/tag/gestures-lets-mouse-gestures-control-windows/">Just Gestures Lets You Use Mouse Gestures To Control Windows
  • class="vt-p" title="How To Run Windows Keyboard Shortcuts Using Your Mouse" href="http://www.makeuseof.com/tag/run-windows-keyboard-shortcuts-using-your-mouse-with-liveedge/">How To Run Windows Keyboard Shortcuts Using Your Mouse
  • Not convinced that working with the mouse is for you? MakeUseOf has also published a great selection of articles covering keyboard class="vt-p" title="MakeUseOf Tag: Shortcuts" href="http://www.makeuseof.com/tags/shortcuts/">shortcuts:

    • class="vt-p" title="The Essential Keyboard Shortcuts to whip your Windows" href="http://www.makeuseof.com/tag/the-essential-keyboard-shortcuts-to-whip-your-windows/">The Essential Keyboard Shortcuts to whip your Windows
    • class="vt-p" title="It Takes only 7 SHORTCUTS to Become a Lightning Fast User" href="http://www.makeuseof.com/tag/it-takes-only-7-shortcuts-to-become-lightning-fast-user/">It Takes only 7 SHORTCUTS to Become a Lightning Fast User
    • class="vt-p" title="Some Cool Keyboard Tricks That Few People Know About" href="http://www.makeuseof.com/tag/some-cool-keyboard-tricks-that-few-people-know-about/">Some Cool Keyboard Tricks That Few People Know About
    • class="vt-p" title="25 Cool Windows 7 Keyboard Tricks That Will Impress Your Friends" href="http://www.makeuseof.com/tag/25-cool-windows-7-keyboard-tricks-impress-friends//">25 Cool Windows 7 Keyboard Tricks That Will Impress Your Friends
    • class="vt-p" title="How To Quickly See Available Keyboard Shortcuts On Windows Desktop" href="http://www.makeuseof.com/tag/quickly-refer-keyboard-shortcuts-windows-desktop/">How To Quickly See Available Keyboard Shortcuts On Windows Desktop
    • class="vt-p" title="How To Shut Down or Re-boot Windows from the Desktop" href="http://www.makeuseof.com/tag/howto-shut-down-or-re-boot-windows-from-the-desktop/">How To Shut Down or Re-boot Windows from the Desktop
    • class="vt-p" title="How To Find and Remove Broken Shortcuts Automatically" href="http://www.makeuseof.com/tag/how-to-find-and-delete-dead-links-on-your-computer-automatically/">How To Find and Remove Broken Shortcuts Automatically

    What are your favorite computer shortcuts? What do you consider the class="vt-p" title="GeekyFun: The Most Useless Desktop Shortcut Of All Time" href="http://www.makeuseof.com/tech-fun/useless-desktop-shortcut-time/">most useless desktop shortcut ever?

    Image credits: class="vt-p" rel="nofollow" href="http://www.sxc.hu/photo/1147437">Slavoljub Pantelic />
    /> Hey Facebookers, make sure to join href="http://www.facebook.com/makeuseof" target="_blank">MakeUseOf on Facebook and get access to some exclusve stuff. Over 105,000 fans already!

    />

    href="http://www.makeuseof.com/tag/3-ways-to-add-access-windows-7-shortcuts-to-work-more-productively-with-your-mouse/">3 Ways To Add & Access Windows 7 Shortcuts To Work More Productively With Your Mouse is a post from: href="http://www.makeuseof.com">MakeUseOf

    More articles about: href="http://www.makeuseof.com/tags/mouse/" title="mouse" rel="tag">mouse, href="http://www.makeuseof.com/tags/productivity/" title="productivity" rel="tag">productivity, href="http://www.makeuseof.com/tags/shortcuts/" title="shortcuts" rel="tag">shortcuts, href="http://www.makeuseof.com/tags/windows-7/" title="Windows 7" rel="tag">Windows 7 />

    Similar articles:

    class="st-related-posts">
  • href="http://www.makeuseof.com/tag/neat-tricks-windows-7-taskbar/" title="The 4 Neat Tricks You Can Do With The Windows 7 Taskbar (May 17, 2011)">The 4 Neat Tricks You Can Do With The Windows 7 Taskbar (31 comments …)
  • href="http://www.makeuseof.com/tag/gestures-lets-mouse-gestures-control-windows/" title="Just Gestures Lets You Use Mouse Gestures To Control Windows (March 29, 2011)">Just Gestures Lets You Use Mouse Gestures To Control Windows (11 comments …)
  • href="http://www.makeuseof.com/tag/it-takes-only-7-shortcuts-to-become-lightning-fast-user/" title="It Takes only 7 SHORTCUTS to Become a Lightning Fast User (January 24, 2008)">It Takes only 7 SHORTCUTS to Become a Lightning Fast User (54 comments …)
  • href="http://www.makeuseof.com/tag/introducing-portable-mouse-gestures-with-mazzick/" title="Introducing Portable Mouse Gestures with Mazzick (September 10, 2008)">Introducing Portable Mouse Gestures with Mazzick (5 comments …)
  • href="http://www.makeuseof.com/tag/how-to-set-up-run-mouse-shortcuts-with-strokeit-mouse-gestures/" title="How To Set Up Shortcuts for Your Mouse using StrokeIt (December 15, 2009)">How To Set Up Shortcuts for Your Mouse using StrokeIt (2 comments …)


  • View full post on MakeUseOf

    Posted in Useful APPsComments (0)

    3 Ways To Schedule Updates To Your Facebook Page Wall


    class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates.jpg?54167"/>There may be various reasons why you would find scheduling social media updates a good idea: for example, you may want to avoid clogging your timeline with multiple updates (when you have lots of new links to share) or you may want to send someone an update at the specific time (and you are afraid that you may forget to or you may be offline).

    We have already shared a post on href="http://www.makeuseof.com/tag/5-free-methods-schedule-facebook-updates/">scheduling Facebook updates but most of the tools mentioned there (except for href="http://www.makeuseof.com/tag/4-features-hootsuite-head-turn/">Hootsuite ) do not support page updates (you can only schedule updates to your personal profile).

    Here are three fun ways to schedule your updates to the one (or several) Facebook page you are managing:

    PostCorn

    The ability to send updates to a few Facebook pages at a time? NO

    href="http://www.makeuseof.com/dir/postcron-easily-schedule-facebook-status-updates/">PostCorn is a new web app that lets you schedule Facebook wall updates and has a look very similar to Facebook’s own submission interface.

    To use it, authorize the app to post updates to your wall. Now, just create your update, select the page you want it to go to and the time when it should go live:

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates-01.jpg?54167" alt="" width="544" height="527" />

    Here you go!

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates-03.jpg?54167" alt="" width="452" height="217" />

    You can also edit or delete your scheduled updates while they are not live. Besides, you can “multiply” your update to go live on your page multiple times (I am not sure of the purpose of this feature though).

    Use Selective Tweet Status + Schedule Twitter Updates

    The ability to send updates to a few Facebook pages at a time? YES!

    (Just allow access to several of your Facebook pages – see the instructions below)

    href="http://www.facebook.com/selectivetwitter">Selective Tweet Status is a Facebook application that allows you to automatically post your Twitter updates to your Facebook wall or to the walls of your Facebook Page(s). Like the name suggests, it will only post selective Tweets: those labeled with hashtag #fb

    To enable Facebook Page wall posting, you’ll need to grant access to each page of yours separately:

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates-02.jpg?54167" alt="" width="540" height="490" />

    Once you are done, use your preferred href="http://www.makeuseof.com/tag/tools-schedule-twitter-updates/">Twitter scheduling tool to schedule the tweet which will be then automatically posted to your Facebook Page Wall (the Selective Tweet Application recommends using href="http://www.makeuseof.com/tag/buffer-app-firefox-easiest-schedule-tweets-web-page/">Buffer app by the way):

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates-04.jpg?54167" alt="" width="512" height="128" />

    Here you go!

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates-05.jpg?54167" alt="" width="452" height="163" />

    Post Updates via Email + Schedule Emails

    The ability to send updates to a few Facebook pages at a time? YES!

    (Just CC your email to several email addresses tied to your Facebook pages – see the instructions below)

    There’s a nice built-in feature that lets you post to your page wall via email. To configure it, go:

    Edit Page -> Mobile (click “Edit”) – be sure to keep this email address private:

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates-06.jpg?54167" alt="" width="546" height="105" />

    • To update your status, write in the email subject line and leave the email body blank.
    • To upload a photo, email the photo to this address and include a caption in the email subject line.

    Now, just schedule your emails containing Facebook status updates!

    href="http://www.makeuseof.com/dir/lettermelater/">LetterMeLater is a great free href="http://www.makeuseof.com/tag/5-kick-ass-reminder-services/">reminder service that lets you easily schedule your emails. Thus, you can post your Facebook wall updates and schedule them with LetterMeLater:

    Just sign up for the service and connect it to your email account(s).

    Then, using your email client, compose a message using the following format:

    class="style1">Subject: Your Facebook wall update

    Attachment: Your photo (if you want to share a Photo update on your page wall)

    In body:

    To: your Facebook Page email address

    CC: your second Facebook Page email address (if you want to schedule an update to several pages)

    When: the time you want the update to go live.

    The tool is very flexible and supports various time formats. Here are some valid dates:

    • now
    • next tuesday
    • next year
    • 3pm
    • tomorrow 5:07 am
    • 5 hours
    • 35 minutes
    • Saturday March 1, 2012 at 6:00 AM

    Here’s a sample email:

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates-07.jpg?54167" alt="" width="529" height="356" />

    Immediately after sending the message, you’ll receive the status confirmation:

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates-08.jpg?54167" alt="" width="566" height="257" />

    And at the set time, the update will go live:

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/schedule-wall-updates-09.jpg?54167" alt="" width="392" height="59" />

    The beauty of this method is that it is very flexible and you can send updates from wherever you are (all you need is the access to your email inbox!)

    Are there any other fun free tools to schedule updates to your Facebook Page wall? Please share them in the comments!

    Image Credit: rel="nofollow" href="http://flickr.com/photos/koalazymonkey/3966982519/">Flickr (koalazymonkey) />
    /> Hey Facebookers, make sure to join href="http://www.facebook.com/makeuseof" target="_blank">MakeUseOf on Facebook and get access to some exclusve stuff. Over 105,000 fans already!

    />

    href="http://www.makeuseof.com/tag/3-ways-schedule-updates-facebook-page-wall/">3 Ways To Schedule Updates To Your Facebook Page Wall is a post from: href="http://www.makeuseof.com">MakeUseOf

    More articles about: href="http://www.makeuseof.com/tags/facebook/" title="Facebook" rel="tag">Facebook, href="http://www.makeuseof.com/tags/schedule/" title="schedule" rel="tag">schedule, href="http://www.makeuseof.com/tags/social-media/" title="social media" rel="tag">social media, href="http://www.makeuseof.com/tags/social-networks/" title="social networks" rel="tag">social networks, href="http://www.makeuseof.com/tags/status/" title="status" rel="tag">status, href="http://www.makeuseof.com/tags/update/" title="update" rel="tag">update />

    Similar articles:

    class="st-related-posts">
  • href="http://www.makeuseof.com/tag/5-free-methods-schedule-facebook-updates/" title="5 Free Methods To Schedule Facebook Updates (April 3, 2011)">5 Free Methods To Schedule Facebook Updates (38 comments …)
  • href="http://www.makeuseof.com/tag/integrate-email-and-social-networking-with-threadsy-with-invites/" title="Threadsy – Integrates Your Email and Social Networks (+Invites) (October 4, 2009)">Threadsy – Integrates Your Email and Social Networks (+Invites) (32 comments …)
  • href="http://www.makeuseof.com/tag/10-controversial-facebook-fan-pages/" title="The 10 Most Controversial Facebook Fan Pages (October 25, 2010)">The 10 Most Controversial Facebook Fan Pages (20 comments …)
  • href="http://www.makeuseof.com/tag/share-anytime-sendible-makeuseof-giveaway/" title="Share Anything, Anytime, Anywhere with Sendible [MakeUseOf Giveaway] (July 19, 2010)">Share Anything, Anytime, Anywhere with Sendible [MakeUseOf Giveaway] (6 comments …)
  • href="http://www.makeuseof.com/tag/rockmelt-ultimate-social-media-browser-enters-public-beta/" title="RockMelt – The Ultimate Social Media Browser Enters Public Beta (March 27, 2011)">RockMelt – The Ultimate Social Media Browser Enters Public Beta (12 comments …)


  • View full post on MakeUseOf

    Posted in Useful APPsComments (0)

    4 More Amazing Graphical Ways To Browse & Read News


    class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/data.jpg?54167" alt="graphical news"/>Strangely, while watching news has stayed on the normal course, reading news has taken varied (and interesting) routes. There has been no better medium than the web to explore news in all its different avatars. RSS feeds and news tickers have become old-hat when you have more interactive apps coming in. Thanks to information overload, visualizing data has come into the picture…literally.

    Data visualization starts with the idea of giving you a graphical tool to wrap all that information around your head. In the case of news, it ends with a really cool and interesting way to see news a bit differently.

    Some of the data visualization based apps that focus on news may be experimental. It’s difficult to say whether graphical news apps will take off or not; but for now they remain as offbeat ways to browse and read news.

    href="http://doodlebuzz.com/">DoodleBuzz

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/data01.jpg?54167" alt="graphical news" width="580" height="406" />

    It’s called a typographic news explorer. The interesting graphical news app is meant to break you out of the usual way you browse for news – from the top down. This one fosters creativity. It all starts with a doodle. You get a blank canvas and a search box. Search for a news item and then just doodle around to get all interlinked stories. As you doodle on, the news items branch out and you can go on a wild, chaotic journey through all the information that’s out there. Doodling also gets you the original source of the news. It’s difficult to explain this app in words – try it out.

    href="http://tenbyten.org/">tenbyten

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/data02.jpg?54167" alt="graphical newspaper" width="580" height="400" />

    To describe the site in their own words – Every hour, 10×10 collects the 100 words and pictures that matter most on a global scale, and presents them as a single image, taken to encapsulate that moment in time.

    If that went over your head, just launch the app and play around with the little thumbnails. At the backend, the app has scanned the RSS feeds of several leading international news sources (ABC, BBC, Reuters etc.) and culled the most important keywords using a special algorithm. The top 100 words are chosen along with their images. This human history goes into the 10×10 grid. You can check it by the hour and also go back into history with the cool timeline.

    href="http://oursignal.com/">Oursignal

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/data03.jpg?54167" alt="graphical newspaper" width="580" height="297" />

    We have featured this cool graphical news app href="http://www.makeuseof.com/dir/oursignalcom/">before in our directory of href="http://www.makeuseof.com/dir/tag/news/">news apps. It’s like a news aggregator with a difference – a visual one. Just like any other news aggregator, it plucks the most popular news stories from Digg, Reddit, Delicious, Yahoo! Buzz and Hacker News and displays them in one place. The more popular the story the bigger it appears on the homepage. Clicking on the square takes you to the source. You can also preview it in the bottom frame. With a registration and log-in, you can set about customizing the ways news squares will be displayed like choosing a theme and entering your own choice of feeds. The results are not always perfect but you can try it out. It’s also quite similar to href="http://newsmap.jp/">NewsMap which is a Google News aggregator.

    href="http://www.newser.com/">Newser

    class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/data04.jpg?54167" alt="graphical news" width="580" height="372" />

    Newser makes news reading more fun by taking news stories from around the world and showing them as thumbnails on a grid. Clicking on them takes you to the news stories. This is not really offbeat, but nonetheless a visual departure from the normal way of scanning headlines. We had taken a previous look at Newser when we mentioned href="http://www.makeuseof.com/tag/3-great-multi-source-news-websites/">5 Great Multi-Source News Websites.

     

    These five web apps are interesting visualizations. They may not allow you to read ‘between the lines’ but they serve to break you away from the commonplace. If you are looking at more interesting ways to digest news, check out the articles below:

    • href="http://www.makeuseof.com/tags/news/page/2/">3 Fun & Useful Google News Mashups
    • href="http://www.makeuseof.com/tag/7-free-online-news-games-based-world-affairs-news-events/">7 Free Online News Games That Are Based On World Affairs & News Events
    • href="http://www.makeuseof.com/tag/catch-news-world-map-7-map-based-news-aggregators/">Catch The News On A World Map With These 7 Map-Based News Aggregators
    • href="http://www.makeuseof.com/tag/6-chrome-extensions-catching-latest-news-headlines/">10 News Photo Galleries To Catch All The Latest World News In Pictures
    • href="http://www.makeuseof.com/tag/6-chrome-extensions-catching-latest-news-headlines/">6 Chrome Extensions For Catching The Latest News Headlines
    • href="http://www.makeuseof.com/tag/5-alternatives-york-times-free/">5 Alternatives To The New York Times That Are Still Free

    Do you know about any other interesting visual ways to browse href="http://www.makeuseof.com/tags/news/">news?

    Image Credit: rel="nofollow" href="http://www.shutterstock.com/pic.mhtml?id=74050948">Shutterstock />
    /> Hey Facebookers, make sure to join href="http://www.facebook.com/makeuseof" target="_blank">MakeUseOf on Facebook and get access to some exclusve stuff. Over 105,000 fans already!

    />

    href="http://www.makeuseof.com/tag/4-amazing-graphical-ways-browse-read-news/">4 More Amazing Graphical Ways To Browse & Read News is a post from: href="http://www.makeuseof.com">MakeUseOf

    More articles about: href="http://www.makeuseof.com/tags/interesting/" title="Interesting" rel="tag">Interesting, href="http://www.makeuseof.com/tags/news/" title="news" rel="tag">news, href="http://www.makeuseof.com/tags/visualize/" title="visualize" rel="tag">visualize />

    Similar articles:

    class="st-related-posts">
  • href="http://www.makeuseof.com/tag/top-8-websites-find-priceless-viral-images/" title="Top 8 Websites To Find The Most Priceless & Viral Images (July 11, 2011)">Top 8 Websites To Find The Most Priceless & Viral Images (0 comments …)
  • href="http://www.makeuseof.com/tag/top-5-spooky-websites-awake-night/" title="Top 5 Spooky Websites That Will Keep You Awake At Night (January 21, 2010)">Top 5 Spooky Websites That Will Keep You Awake At Night (12 comments …)
  • href="http://www.makeuseof.com/tag/faux-news-alert-best-websites-for-fake-news-satire/" title="Faux News: 10 Best Websites for Fake News & Satire (August 1, 2009)">Faux News: 10 Best Websites for Fake News & Satire (20 comments …)
  • href="http://www.makeuseof.com/tag/6-ways-visualize-bp-oil-spill/" title="6 Ways To Visualize The BP Gulf Oil Spill On The Web (June 16, 2010)">6 Ways To Visualize The BP Gulf Oil Spill On The Web (245 comments …)
  • href="http://www.makeuseof.com/tag/5-websites-to-check-out-the-latest-internet-buzz/" title="5 Websites to Check Out Latest Buzz and Viral Videos (July 1, 2009)">5 Websites to Check Out Latest Buzz and Viral Videos (8 comments …)


  • View full post on MakeUseOf

    Posted in Useful APPsComments (0)

    3 Ways Reddit Can Help Those In Need


    class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/Assistance.png?54167" alt="reddit help" /> class="vt-p" href="http://www.reddit.com">Reddit is a miraculous little site that yields the potential to either make or break the Internet but when its users are not spreading memes like a disease, they are caring for people that are truly in need.

    So what if you end up actually needing assistance? It’s a good thing that the philanthropic users of Reddit and their lovely alien named Snoo are here to help.

    Some Pointers

    Let’s be straight about a few things. The people of Reddit typically want to look after those who are already existing members of its online community. Furthermore, they will only provide relief if you can prove that you genuinely need it. That is really sad to say, but we all know that the Internet is full of liars. Consider the last time you received an email from that Nigerian prince. You really should refer to our wide assortment of work concerning  class="vt-p" href="http://www.makeuseof.com/tags/scam/">internet scams.

    All in all, if you are not a Redditor, it would be best to try one of these options:

    • Find a friend who is a Redditor who can go speak to the masses on your behalf.
    • Include yourself in the community prior to requesting assistance and just wait it out.
    • Using a new account, ask for help, provide some proof, and hope for the best.

    Also, if you are already a Redditor, do not make a throwaway account for this type of request. This is one situation where Reddit karma pays off. Reddit can be a nice community, but it also isn’t afraid to unleash its cyber-missiles on those who may be even the most innocent of users. Don’t say I didn’t warn you.

    In MakeUseOf’s past article concerning Reddit -  class="vt-p" href="http://www.makeuseof.com/tag/5-cool-reddit/">5 Cool Things You Should Know about Reddit - the sections known among the general community as “subreddits” are lightly touched upon. Below, MakeUseOf provides you with three different subreddits that are good to remember.

    class="vt-p" href="http://www.reddit.com/r/assistance">r/Assistance

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/Assistancer.png?54167" alt="reddit help" width="580" height="448" />

    This subreddit is for the general requests and offers on Reddit. Here you can find anything ranging from requests to relieve medical needs all the way to support with housing troubles.

    Often, there will be those that cannot assist you financially, but they will provide you with advice that can help you get around any financial woes. Sometimes that is better than anyone sending a few dollars your way. However, since this subreddit is full of people trying to do goodwill unto others, they do not like to be conned, so be prepared with some proof it you really need some help.

    Submitting a scan of some medical documents or even a picture of your damaged home should be good enough. Even better, place a handwritten sign featuring your username next to both types of images while creating them.

    class="vt-p" href="http://www.reddit.com/r/food_pantry">r/Food_Pantry

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/Food_Pantry.png?54167" alt="reddit review" width="580" height="347" />

    No one should have to go hungry, and Reddit makes sure of that with r/Food_Pantry. The formula of this subreddit is quite similar to r/Assistance, but the primary focus is on giving away food.

    As the Internet’s soup kitchen, users take on a high responsibility of caring for the public. On this subreddit, you will find generous Redditors openly offering gift cards, pre-bought food items, and whatever else people might lack.

    Redditors in need can request help by making a simple post explaining their situation and general location. Those that see the post can offer their assistance by shipping non-perishables or working with local grocery stores that are able to class="vt-p" href="http://www.makeuseof.com/dir/grubhub-food-delivery-search-engine/">deliver.

    class="vt-p" href="http://www.reddit.com/r/random_acts_of_pizza">r/Random_Acts_of_Pizza

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/Random.png?54167" alt="reddit review" width="580" height="371" />

    While pizza may not appeal to the lactose intolerant or picky six-year-olds, I think we can all agree that it is a standard food that is cheap, filling, and plentiful. Although it is in the same spirit of r/Food_Pantry, this subreddit is a little bit more lighthearted than its other philanthropic counterparts, and it offers a more open environment for making requests.

    Basically, if you are hungry and can’t afford a hot meal, just make a post explaining what’s all going on. Let Reddit do the rest. There is no shame in asking for a pizza here, but it helps if you keep the “pay it forward” mentality.

    Pizza donors primarily use two methods to send you pizza. For instance, they may just call it in themselves if they are in your area, or if you are at a distance, they will send you an class="vt-p" href="http://www.makeuseof.com/tag/desktop-dining-the-best-places-to-order-pizza-online/">eGift Card for the pizza place of your choice. Also, if there are any other delivery services in your areas, this Reddit can adjust to whatever your starving palate desires.

    Conclusion

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/redditserversdown.png?54167" alt="reddit help" width="462" height="464" />

    To recap, Reddit is a site that is chock-full of generally good folks. Even in the midst of the heavy debates and questionable controversy that may end up on the site, it is quite obvious that those items can be set aside to aid someone. Also, if you want to check out some success stories about how people have helped others, take a gander at class="vt-p" href="http://www.reddit.com/r/todayyoutomorrowme">r/TodayYouTomorrowMe.

    So why don’t you tell us what you think of the helpful sections of Reddit? Have you ever received help from one of the subreddits? Have you ever given help to someone?

    Image Credits: class="vt-p" rel="nofollow" href="http://morguefile.com/archive/display/73218">click, class="vt-p" rel="nofollow" href="http://www.quickmeme.com/meme/3f2x">BuckEyeGold

    More articles about: href="http://www.makeuseof.com/tags/aggregator/" title="aggregator" rel="tag">aggregator, href="http://www.makeuseof.com/tags/charity/" title="charity" rel="tag">charity, href="http://www.makeuseof.com/tags/meme/" title="meme" rel="tag">meme, href="http://www.makeuseof.com/tags/news/" title="news" rel="tag">news, href="http://www.makeuseof.com/tags/social-media/" title="social media" rel="tag">social media, href="http://www.makeuseof.com/tags/web-trends/" title="web trends" rel="tag">web trends />

    Similar articles:

    class="st-related-posts">
  • href="http://www.makeuseof.com/tag/5-cool-reddit/" title="5 Cool Things You Should Know About Reddit (March 17, 2011)">5 Cool Things You Should Know About Reddit (59 comments …)
  • href="http://www.makeuseof.com/tag/capture-whats-hot-on-the-internet-with-chromomulator/" title="Discover the Hottest Top Internet Searches with Chromomulator (July 6, 2009)">Discover the Hottest Top Internet Searches with Chromomulator (11 comments …)
  • href="http://www.makeuseof.com/tag/top-8-websites-find-priceless-viral-images/" title="Top 8 Websites To Find The Most Priceless & Viral Images (July 11, 2011)">Top 8 Websites To Find The Most Priceless & Viral Images (0 comments …)
  • href="http://www.makeuseof.com/tag/find-out-whats-hot-right-now-on-the-web-with-oneriot/" title="Find Out What’s Hot Right Now On The Web With OneRiot (July 13, 2009)">Find Out What’s Hot Right Now On The Web With OneRiot (5 comments …)
  • href="http://www.makeuseof.com/tag/5-websites-to-check-out-the-latest-internet-buzz/" title="5 Websites to Check Out Latest Buzz and Viral Videos (July 1, 2009)">5 Websites to Check Out Latest Buzz and Viral Videos (8 comments …)


  • View full post on MakeUseOf

    Posted in Useful APPsComments (0)

    5 Ways To Reduce Menu Bar Clutter [Mac]


    class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/cleanmenubar.png?54167" alt="organize menu bar" />We’ve covered some class="vt-p" href="http://www.makeuseof.com/tag/5-great-tips-tools-clean-simplistic-desktop-mac/">Great Tips and Tools For a Clean and Minimalist Mac Desktop before. This time, I’ll be focusing on specifically the menu bar. Due to my small 13″ MacBook Pro screen, which has even less resolution than the 13″ Air, I am forced to look for any way to clear the screen, such as making elements smaller in browsers, so I can fit two applications side by side.

    Safari, Firefox and Mail all have quite a lot of menu items, especially since I added the Debug menu in Safari. I looked at the application with the most menu bar items and cut down all the icons on my menu bar, so they will not overlap this specific app. In my case, this happened to be Firefox, which cuts me down considerably more than, for instance, Chrome does.

    So I looked at some solutions to cut down on the clutter up there, while still retaining all of the functionality.  This was what I got.

    1. Hide class="vt-p" href="http://www.makeuseof.com/tag/how-to-manipulate-the-mac-menu-bar-login-items/">Menu Bar Items

    style="margin-right: 20px; margin-top: 5px; margin-bottom: 5px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/Screenshot-2011-06-30-at-00.00.11.png?54167" alt="organize menu bar" align="left" />Hiding menu bar items can seem trivial, but there are lots of apps you don’t really interact with and they don’t share any statuses, so why do you need to see them in the menu bar? You may want to use them all the time but not close them down.  So this makes some apps a great candidate for hiding. On my system, I hid ScrollReverser and a myriad of other background apps I want always on, such as Alfred, QuickSilver, TotalFinder and others.

    Just right click the icon, or click it if that brings up the contextual menu, then find the option to hide it. Sometimes, this may be in the application’s preferences instead. Just find this for each application you want to hide. It may seem tedious, but at the end, you’ll find a lot of space cleared, which you can enjoy or use for applications that do demand interaction.

    2. Remove The Spotlight Icon

    This may seem drastic, but like I said, no functionality is ever lost. If you don’t need this, you can also turn it off, but for those that do need it, remove the icon by entering this in the Terminal if you’re on Leopard:

    sudo chmod 0 /System/Library/CoreServices/Spotlight.app

    If you’re on Snow Leopard, you can use this:

    sudo chmod 600 /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search

    Then enter this to see the changes:

    killall SystemUIServer

    style="margin-right: 20px; margin-top: 5px; margin-bottom: 5px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/Screenshot-2011-06-30-at-12.17.04.png?54167" alt="organize menu bar mac" align="left" />So how do we class="vt-p" href="http://www.makeuseof.com/tag/free-alternatives-os-spotlight-mac/">replace this functionality? Well, apps like Alfred and QuickSilver can replace it if you want, and are much better than Spotlight, but if you want exactly the same functionality as Spotlight and don’t mind paying, Launchbar (€24 / $35) is very popular for going way beyond Spotlight, but also has an integrated Spotlight function. Don’t turn off Spotlight if you want to use this though, just hide the icon.

    3.  class="vt-p" href="http://projects.tynsoe.org/en/geektool/">GeekTool

    One thing that takes up a lot of space is the clock. Clear this and you could fit several more apps in there. I have found one way to do this. Just download the free GeekTool app and open it in System Preferences. Now drag a shell to the desktop and where it says, “Command” enter this:

    date '+%A, %B %d, %Y, %I:%M:%S %p'

    Set it to refresh every 1 second. You can remove the :%S and set it to refresh every 60 seconds to get a minute clock, which is less processor-intensive.

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/Screenshot-2011-06-30-at-12.08.35.png?54167" alt="organize menu bar mac" width="279" height="637" />

    This will create a Geeklet on your desktop that tells the time and date. Hide the menu bar clock, and pin the Dock to the left of the screen, using this Terminal command:

    defaults write com.apple.dock pinning -string start

    style="margin-right: 20px; margin-top: 5px; margin-bottom: 5px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/Screenshot-2011-06-30-at-12.04.48.png?54167" alt="organize menu bar mac" align="left" />To return to the middle or pin to the right, replace start with middle and end, respectively. An alternative way is to use a Dashboard widget to tell the time.

    One disadvantage to the GeekTool approach is that when watching movies full-screen, you cannot put your mouse to the top to check the time. But if you have a Mac laptop sold at or after October 2008, there’s a simple solution. Just swipe upwards with four fingers to see the GeekTool shell on the desktop. Otherwise, you can set up a screen corner to activate Exposé.

    For more on GeekTool, check out class="vt-p" href="http://www.makeuseof.com/tag/how-to-display-system-information-in-style-using-geektool-mac/">Jeffry’s brilliant article.

    4.  class="vt-p" href="http://www.orange-carb.org/SBM">SlimBatteryMonitor

    What can be said about the default Apple battery indicator? Well, it takes up a lot of space, especially when it’s “calculating” the time remaining to run out of juice. To remedy this, just download and install the free tool, SlimBatteryMonitor. Set the icon shape to horizontal in the preferences and that’s it. Now, remove the default battery indicator by dragging it off the menu bar. You now have a much smaller battery indicator.

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/Screenshot-2011-06-30-at-12.14.44.png?54167" alt="organize menu bar items" />

    We’ve class="vt-p" href="http://www.makeuseof.com/tag/two-tools-to-monitor-your-macbooks-battery-mac/">covered this before.

    AppleDisplayScaleFactor

    This is a rather volatile solution, but if you want to use it, you can make all text in the OS smaller, including the application menu bars, using this Terminal command:

    defaults write -g AppleDisplayScaleFactor 0.9

    This will make all text 90% of normal size.

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/appledisplayscalefactor.png?54167" alt="organize menu bar items" />

    Changes will take effect on all apps launched after the command issued. Restart Finder by typing in:

    killall Finder

    Or you can Force Quit it, by bringing up the Force Quit window, using ?+?+esc. Now just click Finder and click Relaunch.

    You cannot arrange Desktop icons in View Options if you decide to use this method. The icons on the far right will go even more to the right, until they are hidden.

    class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/Screenshot-2011-06-30-at-11.41.03.png?54167" alt="organize menu bar" />

    Conclusion

    Now that you’re done, class="vt-p" href="http://www.makeuseof.com/tag/5-free-tools-to-add-to-your-mac-menu-bar/">fill up that empty space with these class="vt-p" href="http://www.makeuseof.com/tag/11-tiny-and-useful-free-menubar-applications-for-mac/">menulets.

    Has this finally helped you with all those out-of-control menu bar items? Have you found that you don’t use a lot of the items and quit them? Do you have any other solutions? What apps are you adding in the menu bar, now you have the space? We appreciate any comments below. />
    />Need Assistance? Ask questions to MakeUseOf staff and thousands of other readers on href="http://www.makeuseof.dev/answers/" target="_blank" >MakeUseOf Answers!

    />

    href="http://www.makeuseof.com/tag/5-ways-reduce-menu-bar-clutter-mac/">5 Ways To Reduce Menu Bar Clutter [Mac] is a post from: href="http://www.makeuseof.com">MakeUseOf

    More articles about: href="http://www.makeuseof.com/tags/desktop-enhancements/" title="desktop enhancements" rel="tag">desktop enhancements, href="http://www.makeuseof.com/tags/menubar/" title="menubar" rel="tag">menubar, href="http://www.makeuseof.com/tags/minimalist/" title="minimalist" rel="tag">minimalist, href="http://www.makeuseof.com/tags/optimize/" title="optimize" rel="tag">optimize, href="http://www.makeuseof.com/tags/organization/" title="organization" rel="tag">organization />

    Similar articles:

    class="st-related-posts">
  • href="http://www.makeuseof.com/tag/5-great-tips-tools-clean-simplistic-desktop-mac/" title="5 Great Tips and Tools For a Clean and Minimalist Mac Desktop (May 28, 2010)">5 Great Tips and Tools For a Clean and Minimalist Mac Desktop (20 comments …)
  • href="http://www.makeuseof.com/tag/too-many-tabs-firefox-add-ons-to-manage-a-tab-jam/" title="Too Many Tabs? Firefox Add-ons to manage a TAB JAM (February 1, 2008)">Too Many Tabs? Firefox Add-ons to manage a TAB JAM (80 comments …)
  • href="http://www.makeuseof.com/tag/winhack-some-quick-windows-registry-tweaks/" title="Three Quick Registry Tweaks to Customize Windows Like a Pro (October 11, 2008)">Three Quick Registry Tweaks to Customize Windows Like a Pro (13 comments …)
  • href="http://www.makeuseof.com/tag/speed-up-file-copyn-paste-with-piky-basket/" title="Speed up file Copy’n Paste with Piky Basket (March 24, 2008)">Speed up file Copy’n Paste with Piky Basket (9 comments …)
  • href="http://www.makeuseof.com/tag/some-non-registry-windows-tweaks/" title="Some non-Registry Windows tweaks (September 11, 2007)">Some non-Registry Windows tweaks (7 comments …)


  • View full post on MakeUseOf

    Posted in Useful APPsComments (0)

    Blogroll