rblog

Fit 2 Fat 2 Fit

Going from superfit to superfat and superfit again in one year, the story as told by Drew Manning himself:

My journey from FIT to FAT and how to get back to FIT again!

This is my story of how I plan on going from being obsessed with being fit, to fat in 6 months and how I plan on showing everyone how to get back to fit again in 6 more months.

Check out the pictures and see videos and more at http://www.fit2fat2fit.com/photos/

One liner: Adding files to svn

List all files needed to be commited into Subversion, then grep only files not added, this being lines starting with question mark. The ‘^\?’ means

  • ^ = line start
  • \ = escape next charater
  • ? = The character to search for, since ? is a metacharater in Regex, it must be escaped.

Then using awk print the file path and name and at last using xargs and svn add – add the files to svn.

svn status | grep ^\? | awk '{print $2}' | xargs svn add

Finally I bother to do it…WEP to WPA

I have known it for a long time, I should have done it a long time ago, but still, needed to see http://www.nrk.no/programmer/tv/brennpunkt/1.7848190 (Nettverk i offentlige miljøer er lette å hacke) before actually changing from WEP to WPA2…

Using WEP really is nothing more than a keylock made of plastic.

Hjem