Search posterous

Search all posts and users. Type a name, type a favorite song title, whatever! See what comes up.
  

More posterous blogs











More recommended blogs »

Here are posterous posts filed under lifehacker...

joshuaseek says...

Lifehacker has a list of the 61 free apps they're most thankful for.    

I am thankful for three apps/websites lately:

Twitter: Quick communication with anyone. I've made new friends
through Twitter and kept in touch with old ones.


Google Reader: I go through Google Reader several times a day. It's
quick, clean, and allows me to find more information than I ever could
if I was just randomly browsing. I LOVE Google Reader.


Wikipedia: I recently went back to school. I don't know how I did it
before Wikipedia. The website allows me to get a brief overview of a
topic and jump off to different resources from there. It has saved me
a lot of time over the past few months.

What app/website are you thankful for?

Filed under: lifehacker

Lifehacker even has a video for exercising your hands and tendons.

Filed under: lifehacker

matton says...

  • That Girl finds a piece of TV news that makes my week -- Aaron Sorkin is planning his return to television.  Apologies in advance to my DVR which is firing on all cylinders. [Apple]
  • BoyGenius makes a valiant attempt at getting me to the Apple Store on Black Friday. [Apple]
  • Mashable features a piece about Facebook's new photo uploading tool.  My tagging finger is feeling itchy, Nick Hersh. [Facebook]
  • Lifehacker does its best to keep your wallet fat this Christmas season.  Still in development: An app to get me to shop before December 23rd. [Mobile Apps]
  • Ron Paul's bill for a full audit of the Federal Reserve is approved by the House Financial Services Committee .  How's your day going, Mel Watt and Barney Frank?  You've failed miserably at performing basic responsibilities in your position.  Please go away.

Filed under: Lifehacker

matton says...

  • Glenn Greenwald reports on our new huge, huge explosive device we could use to bomb, bomb, bomb Iran.  If there were ever a clear-cut case of overcompensating.... [Politics]
  • Lifehacker reflects on a sad day in history: The Pirate Bay has been shut down.  No word yet on the 15 trackers that will spring up to take its place by Friday. Not using decentralized DHT until I understand the technology. [Torrents]
  • Mashable provides a perfect explanation as to why I have a job. [Social Media]
  • According to TechCrunch, I'd never get away with telling my parents "we were all just hanging out at Rahul's house" if I were in high school today.  They would know I was probably somewhere a lot less cool where the beer was considerably more shitty. [Apple]
  • Lifehacker lets you break down your theme park plan of attack like it's Kingda Ka.  Missing from this awesome website? Disclaimers about why you shouldn't bring your cell phones on Nitro. [Rollercoasters]

Filed under: Lifehacker

mlevit says...

WARNING: The following article is written from a very high level point of view with assumptions made in areas like product knowledge and computer literacy.

After working on many coding projects I had come to realise there is one tool that is indispensable for any coder... what I'm talking about is version control. You come to realise that after making so many changes to your code you need the ability to track these changes and in case of emergencies revert to previous working versions of a particular file. I used this same concept for work and implemented my own version control.

Subversion

I installed a local copy of Subversion on my work laptop and with the help of TortoiseSVN I started my own local SVN repository. Because I'm super nice I'll even include lifehacker's instructions on how to setup your Subversion.

Setting up your Subversion server

  1. Download and install Subversion 1.3.2 (the svn-1.3.2-setup.exe download). Again, just accept all of the defaults in the setup, making sure that "Install and configure Subversion modules..." is checked.
  2. Download and install TortoiseSVN (TortoiseSVN-1.3.5.6804-svn-1.3.2.msi), an attractive Subversion client for Windows that makes dealing with Subversion repositories a breeze via right-click.
NOTE: With the above download links please be aware that Subversion is now up to version 1.60 and TortoiseSVN is up to version 1.66. Just do a little browsing to find the latest versions.

Create your first repository

The last thing we're going to do this week is create our repository. Go to your C:\ drive, right-click the svn folder and select TortoiseSVN -> Create repository here... command. If all goes well, TortoiseSVN should ask you what type of repository you'd like to create. Select Native filesystem (FSFS) and click OK. You will get a message telling you that "The Repository was successfully created." Congrats!

Finally, let's import the directory of files that you want to keep under version control into your newly-minted repository. Right-click on your to-be-controlled folder and select TortoiseSVN -> Import.... You need to give TortoiseSVN the directory of your repository, so browse for C:\svn. Click OK and all of the files under your chosen directory will be imported into your Subversion repository at C:\svn.

... you can verify that everything worked by right-clicking on a new folder and checking out your files from the repository (right-click -> SVN Checkout...). Just direct TortoiseSVN to the directory of your Subversion repository.

via lifehacker.com

So after the setup all you have to do is start using the folder you have used for checkout as your main work folder. Organise it as you wish with folders and files. Whenever you feel like "saving" your progress Right Click the main folder > SVN Commit. You will be prompted with a text area where you can write your comments on the files you are about to commit and below that a box with all the new/changed files. Committing this will transfer all the files/changes to the repository for storage and visioning.

Dropbox

Now we get to the part about Dropbox. Again instead of explaining everything about Dropbox I'll let my friends at lifehacker help out.

Windows/Mac only: Freeware application and web service Dropbox instantaneously backs up and syncs your files over the internet and to any computer. After you install the application, it will create a Dropbox folder on your hard drive. Any file you put inside that folder will automatically be synced and monitored for changes, and each time a change is saved, it backs up and syncs the file again. Even better, Dropbox does revision history, so if you accidentally saved a file and wanted to revert to an old version or deleted a file, Dropbox can recover any previous version. See the video above for a full demonstration.

Any file that's synced with Dropbox is available on any computer you sync it to or through the Dropbox web interface. During the beta, Dropbox is limited to 2GB of storage space and syncing. The software and service will remain free of charge, but if you need more than the 2GB, premium accounts will be available. 

via lifehacker.com

So now that we have Dropbox covered we can continue. What I realised not too long ago was when you add files to your Subversion repository, the files don't just get copied over and stored, they get compressed. Therefore using up much much less space than they normally would. As an example, my Subversion repository is approximately 950MB but my work folder is 7.32GB.

This brings me nicely to my next point. Instead of making Dropbox backup my work folder I let it backup my Subversion repository. It's way smaller and has every version of every file/folder I have ever put in and/or changed. It's beautiful, it works and it's the perfect way to manage/backup your work files.

NOTE: Obviously this concept has many uses and can be implemented for a range of other management/backup purposes other than work.

If you have any questions please don't hesitate to ask me. If you need help with any of the programs I mentioned in this post please let me know.

Thanks

Edit (10:23am 19/11/2009): Changed the work folder size from "over 5GB" to exactly 7.32GB after checking its actual size.

Filed under: lifehacker

gltss says...

Filed under: lifehacker

joshuaseek says...

Lifehacker had this post yesterday. I would love to be able to do this! But they're going to have to build an app for Android.

Filed under: lifehacker

samullen says...

I found this, ahem, "sweet" little cooking hack over at http://lifehacker.com. It'll be one less thing we have to do before the party and we can amaze our guests by doing it during the party.

It's a simple process of heating your waffle iron (no matter what shape or size it might be) on high and coating it with a non-stick spray. Using a small cookie scoop or tablespoon, spoon batter into each section of your waffle iron. This will ensure even baking and that all your cookies will finish at the same time. All that's left is to remove them from the heat and chow down!
Outstanding.

Filed under: lifehacker

spruiked says...

Gina Trapani of Lifehacker has released her on-line Complete Guide to Google Wave. It is free! Soon it will be available for download in PDF. Later she plans on releasing a paper back version.

Filed under: lifehacker

Impious says...

Keep in mind that this will only work with other people who also have the extension. I see enough people joining groups that want the Dislike button that I thought I'd throw this up there.

Download here: Dislike 0.2.1

Filed under: lifehacker