RSS
 

Archive for December, 2010

5 Unusual Ways to Use Dropbox You Might Not Have Thought Of

18 Dec


Dropbox has just been upgraded to version 1.0, so we thought we’d take a look at some great ways to use it that might not have occurred to you.

A free Dropbox account allows users to store up to 2GB worth of files and access them from any other Linux, Mac or Windows machine running the Dropbox application. Or, those files can be accessed from any browser.

In fact, the new 1.0 version of Dropbox is so tremendously useful, I decided to invest the $9.99 per month to increase its capacity to 50GB. Dropbox can perform some slick tricks. Here are my five favorite examples:


Chat Logs


Many chat programs let you change the location of the chat log. Clients such as Pidgin can be modified to save those chats wherever you’d like, so point to a folder within the Dropbox for complete portability.

Multiple chat client Digsby is especially useful when you save its chat logs in Dropbox, and there was a portable version available until just a few weeks ago.

It’s still possible to make this happen, but it takes a bit of hacking. If you’re so inclined, it might be worth it — it lets you save all your Facebook, AIM and Google Talk chat logs in the same place.


Gaming Saves


Most games let you designate where you’re going to save your progress, so why not put that saved game data in Dropbox? Then, no matter what computer you’re using (as long as you have the game installed there), you can pick up where you left off.


Documents Folder


Have a group of documents you’re always working on and adding to? Place them all in a Dropbox documents folder and you can modify them at home, work, and on the road. This works especially well when you’re writing with a team, allowing you to see when someone else has begun working on a document.


Teamwork


We like to shoot videos, and it often works out where one of us is shooting and another is editing. One of us drops the unedited video clips in a shared Dropbox folder, while the other picks them up and edits them as soon as they’re synced. Then, someone else can share the finished videos on YouTube. This works especially well if you spring for the 50GB upgrade.


Any App With a Watch Folder


Any application that lets you create a watch folder is fertile ground for Dropbox. Here’s an idea: if you’re a Photoshop user, create a watch folder in Dropbox, leave your powerful PC running Photoshop at home. Then, when you drop a photo into that folder when you’re on the road, it’s automatically processed to the dimensions you designate back at the mother ship. You can also use this idea for BitTorrent, dropping torrents into a watch folder and having them download on your home machine while you’re at work.

We’ve grown to adore Dropbox in the past year, and now that it’s reached version 1.0, its subtle improvements make it even more appealing. To see for yourself, download it here, and find out more tips and tricks here.


Reviews: Digsby, Dropbox, Facebook, Linux, Pidgin, Windows, YouTube, aim, google talk

More About: Dropbox, file sharing, file storage, how to, software

For more Tech coverage:

 
 

Refrigerator Upgrade Magnet

18 Dec

Refrigerator Upgrade Magnet

Now you can finally make your cheap old fridge look like your neighbor’s modern and expensive high-end model, equipped with ice and water dispensers and digital display, using nothing but a simple magnet.

Who uses those features anyway? No one will ever notice the difference.

Closer inspection, however, will reveal some peculiar options like “Frozen Yogurt,” “Nacho Cheese,” and “Chicken Wings.” Sure to frustrate your friends as they desperately press the “French Fries” button to no avail.

The Refrigerator Upgrade Magnet is yours for $7.95 from Archie McPhee & Co.

(Via 7 Gadgets)

 
 

Olly Moss on Star Wars

18 Dec

In a world where modern film posters for the most part give us designers a sinking feeling, we thankfully have guys like Olly Moss out there. So much can be said about these beautiful re-imaginings of the best film trilogy out there, don’t even know where to start. Olly treated Star Wars with care and respect while breathing his own unique and clever vision in the designs.

According to Mondo, these posters will be for sale this Monday, December 20th at a limited run of 400 prints each. These will probably be gone faster then the Falcon can make the Kessel Run.

Post to Twitter

 
 

WebKit Image Wipes

18 Dec

It's not "spec," but WebKit browsers support image masks. If you are familiar with Photoshop, they work like that. You declare an image to use as as mask. The black parts of that image hide what it is over, white parts of that image show what is underneath, gray is partially transparent. So if you had this image:

<img src="orig.jpg" alt="trees" class="circle-mask">

And you had this image you created as a mask:

You'd apply it to the image in CSS like:

.circle-mask {
  -webkit-mask-box-image: url(mask.png);
}

And this would be the result:

You Don't Need Actual Images

The first trick we're going to utilize here is that the image we delcare for the -webkit-mask-box-image doesn't need to be an actual graphic image. Instead we can use -webkit-gradient to create that image. Yes, we could just make an image that is a gradient as well, but creating the gradient mask programmatically means that it's far easier to adjust on the fly and requires one less HTTP request.

-webkit-mask-position: 0 0;
-webkit-mask-size: 200px 200px;
-webkit-mask-image: -webkit-gradient(linear, left top, right bottom,
   color-stop(0.00,  rgba(0,0,0,1)),
   color-stop(0.45,  rgba(0,0,0,1)),
   color-stop(0.50,  rgba(0,0,0,0)),
   color-stop(0.55,  rgba(0,0,0,0)),
   color-stop(1.00,  rgba(0,0,0,0)));

In the above CSS, we've created a 200px by 200px image which fades from fully opaque in the top left and fading and about half-way point at a 45deg angle, fades to fully transparent. That would look a little something like this:

Moving The Mask

Notice we set the position of the mask with -webkit-mask-position. Because we can set the position, we can move the position. We could move it on a :hover -

.circle-mask {
	-webkit-mask-position: 0 0;
}
.circle-mask:hover {
	-webkit-mask-position: -300px -300px;
}

Or we could use a -webkit-animation to automatically move that mask.

@-webkit-keyframes wipe {
	0% {
		-webkit-mask-position: 0 0;
	}
	100% {
		-webkit-mask-position: -300px -300px;
	}
}
.circle-mask {
	-webkit-animation: wipe 6s infinite;
	-webkit-animation-delay: 3s;
	-webkit-animation-direction: alternate;
}

Creating The Wipe

I'm sure all you smarties have already put all this together. The idea is that we have one image on top of another image. The image on top gets the mask, and then we move the mask as needed.

<div id="banner">
	<div><img src="images/banner-1.jpg" alt="Skyline 1"></div>
	<div><img src="images/banner-2.jpg" alt="Skyline 2"></div>
</div>
#banner {
	width: 800px;        /* Size of images, will collapse without */
	height: 300px;
	position: relative;  /* For abs. positioning inside */
	border: 8px solid #eee;
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.75);
}

#banner div {
	position: absolute; /* Top and left zero are implied */
}

/* Second one is on top */
#banner div:nth-child(2) {
	-webkit-animation: wipe 6s infinite;
	-webkit-animation-delay: 3s;
	-webkit-animation-direction: alternate;
	-webkit-mask-size: 2000px 2000px;
	-webkit-mask-image: -webkit-gradient(linear, left top, right bottom,
			color-stop(0.00,  rgba(0,0,0,1)),
			color-stop(0.45,  rgba(0,0,0,1)),
			color-stop(0.50,  rgba(0,0,0,0)),
			color-stop(0.55,  rgba(0,0,0,0)),
			color-stop(1.00,  rgba(0,0,0,0)));
}

Demo and Download

In the download, there is another example where the wipe goes horizontally instead of at an angle, and happens using -webkit-transition rather than animation on a hover event.

View Demo   Download Files

More Than Two?

I spent more time than I probably should have trying to see if I could get the animation to wipe three images in succession. It's kind of possible but I wasn't able to get it smooth and consistent as I would have liked, so I scrapped it. I'm still fairly sure it's possible, probably using two different animations with different delays or the like. If you try it and get it worked, do show!

More

Check out the announcement from 2008 for more information about the masks themselves. There are useful bits to know in there, like the mask images can stretch (like full page backgrounds) and repeat. It actually works a lot like border-image, with the nine-box system for stretching/repeating.

Credit

I stole this idea from Doug Neiner who showed me a little demo of the idea. Posted with permission.

 
 

onlab

17 Dec

via http://www.onlab.ch/projects/editorial/corporate/tramelan/tr_brochure_01.htm

 
 

cg_maps_2_1_1.jpg 832×570 pixels

17 Dec

via http://www.bibliothequedesign.com/uploads/projects/cg_maps_2_1_1.jpg

 
 

How to turn an existing Windows Virtual Machine into a Mac Os package

17 Dec

Page edited by Carlos Holgado

How to turn an existing VMWare Virtual Machine created on a Windows environment into a nicer single-filed Mac Os package


Requisites:
  • A Virtual Machine (VM) made in windows (usually you will have a whole directory, but only the hard disk file *.vmdk is needed).
  • A MAC computer with VMWare installed on it (VMWare Fusion v3.1.2 used for this documentation).


  1. Open VMWare.
  2. Click on File and then New.
  3. Next VMWare will ask you to insert the installation disc of the desired operating system. Of course we do not need it. Click on Continue without disc.
  4. You will be asked for the operating system again, choose Use an existing virtual disk and search for the *.vmdk of the VM you want to modify.
  5. At this point, you can choose what it is best for you:
    • Make a separate copy of the virtual disk: This can be the safer option, but you will need extra disk space and time.
    • Share this virtual disk with the virtual machine that created it: Choose this option only if you want to run the same VM in both Operating system on a not concurrent but synchronized way.
    • Take this disk away from the virtual machine currently using it: Usually the normal option, as you will not need any more the Windows VM.
  6. On the next step it will ask you again for the Operating System of the VM: DO NOT change the default, as you could crash the disk. Just click on Continue.
  7. On the last step you can customize the settings of your Mac OS VM file (usually a good idea if the computers are quite different) or you can tell VMWare to open this VM as default (not recommended).
  8. Click on finish and it will prompt you for the name and location of the new VM. Choose the one you want and you are done!

 
 

Sicko Doesn’t Does Meet Cuban Propaganda Standards

17 Dec

And they say there's nothing interesting in the WikiLeaks cables:

Not a scene from Sicko.Cuba banned Michael Moore's 2007 documentary, Sicko, because it painted such a "mythically" favourable picture of Cuba's healthcare system that the authorities feared it could lead to a "popular backlash", according to US diplomats in Havana.

The revelation, contained in a confidential US embassy cable released by WikiLeaks, is surprising, given that the film attempted to discredit the US healthcare system by highlighting what it claimed was the excellence of the Cuban system.

But the memo reveals that when the film was shown to a group of Cuban doctors, some became so "disturbed at the blatant misrepresentation of healthcare in Cuba that they left the room".

Castro's government apparently went on to ban the film because, the leaked cable claims, it "knows the film is a myth and does not want to risk a popular backlash by showing to Cubans facilities that are clearly not available to the vast majority of them."

The memo is reproduced here.

Update: Michael Moore says the cable is B.S.:

There's only one problem -- 'Sicko' had just been playing in Cuban theaters. Then the entire nation of Cuba was shown the film on national television on April 25, 2008! The Cubans embraced the film so much so it became one of those rare American movies that received a theatrical distribution in Cuba. I personally ensured that a 35mm print got to the Film Institute in Havana. Screenings of 'Sicko' were set up in towns all across the country. In Havana, 'Sicko' screened at the famed Yara Theater.

Bonus update: I may have found the origins of the error. The dissident Cuban doctor Darsi Ferrer Ramírez wrote an editorial in 2007 predicting that the government would censor the film. Some writers outside Cuba misread this as a statement that the film had been banned. I suspect that the author of the cable then heard that version of the story and passed it along.

 
 

iPod Nano Watch Project Makes Kickstarter History

17 Dec


The iPod nano watch kit TikTok+LunaTik is now officially the most successful Kickstarter project of all time.

The all-or-nothing funding site has had its fair share of successes in the past, but the TikTok and LunaTik multi-touch watch kits are on another level. The project reached its conclusion late Thursday evening, bringing in a staggering $941,648 from 13,511 backers in just 30 days. That figure is all the more impressive when you consider that TikTok+LunaTik’s original goal was only $15,000.

The project itself was born after Scott Wilson, the founder of the Chicago-based design studio MINIMAL, first saw the new iPod nano. When we spoke to Wilson last month, he explained it was clear that the device could be a great wrist watch, after seeing the size and shape of the new nano. Wilson wasn’t alone. To date, scores of companies have brought their own iPod nano watch straps or kits to market.

When the success of TikTok and LunaTik became clear, Wilson took measures to ramp up production at the factories in China. Through the course of the project, Wilson has offered up additional updates on the status of the kits, created a website for interested users who missed out on the Kickstarter pledge bonanza at Lunatik.com and promoted other worthy Kickstarter projects.

When speaking with Wilson, it was evident to us that he recognized that actually manufacturing and distributing LunaTik and TikTok would be a massive undertaking. Coordinating with the factories, preparing packaging and handling shipping are not trivial tasks, especially when talking about an order of this size.

Earlier this week, just ahead of the project’s closing date, Wilson uploaded a video compilation of his trip to China, showing off his hands-on time with the manufacturing process.

These updates and this “inside look” at how something moves from concept, to prototype, to finished project are part of what we think makes Kickstarter so special. Beyond just acting as a great way to raise funds, the ability to share updates and include backers in the journey is unique. Aspiring entrepreneurs are encouraged to take notes on Wilson’s approach to making the most out of Kickstarter.

As a backer of this project, I can’t wait to get the final product in my hands — and on my wrist. What do you think about Kickstarter’s potential for funding small and large scale projects?

More About: ipod nano, kickstarter, lunatik, tiktok

For more Tech coverage:


 
 

How Often Did Authors Use the Word “Internet” Over 500 Years? Ask Google

17 Dec


Here’s a nifty little tool to get you through the last grueling hours of Friday afternoon: Fresh from Google Labs comes “Books Ngram Viewer,” a visualization tool that shows you the annual frequency of certain words used in books published between 1500 and 2008.

Predictably, “Internet” was not so popular in, well, the pre-Internet age (check out the above graph to see for yourself), but this viewer is certainly handy for tracking the popularity of terms throughout the decades.

(NB: The word “Internet” seems to pop up a little early because: “Most of those are OCR errors; we do a good job at filtering out books with low OCR quality scores, but some errors do slip through,” according to the “About” section.)

The tool was assembled from data pulled from close to 5.2 million digitized books — which amounts to 500 billion words in English, French, Spanish, German, Chinese and Russian — and takes advantage of Google’s free, online digital library (which has grappled with its share of legal issues in its time). Users can also download the data and build their own search tools.

Of course, the Ngram Viewer was not intended as a mere diversion — according to The New York Times, Erez Lieberman Aiden, a junior fellow at the Society of Fellows at Harvard, and Jean-Baptiste Michel, a postdoctoral fellow at Harvard, created this tool as part of a project on language and culture (their paper on the subject is available in a journal called Science).

We imagine that the Books Ngram Viewer could be used not only to track the evolution of language and trends over time, but also to compare and contrast the frequency of certain terms online and in print (perhaps when used in tandem with tools akin to Google Trends).

Test out some words and let us know what you think.

Image courtesy of Flickr, dotbenjamin


Reviews: Flickr, Google, Google Labs, Internet, society, test

More About: books, Books-Ngram-Viewer, Google

For more Tech coverage: