Posts

Showing posts from December, 2012

Forbidden

You always want what you can't have It's there within reach yet it's untouchable The yearn and the want for the forbidden equalized by The fear and uncertainty of the forbidden Do you give into the temptation or Do you fight it daily and nightly Haunting images of what could be tease you as you sleep The ache felt every morning when you awaken Dulled only by preocuppying the mind but the heart and body still feel that ache Forbidden fruit tastes the best but do you dare tempt fate and push that hand forward and clutch that fruit to your bossom And now the question before you: Do you let passion conquer or Do you fight the forbidden --  poetic-dragon

Re-sizing multiple images on Linux

Every time when I have some task which is quite laboriousness and requires a lot of manual intervention, I think of some sort of automation. I think that because what I have understood during all my digital experience, that I am not the first one to be hit by these kind of boulders all along. At the same time, I am also not the only one who thinks that way when they are challenged with things like these. And finally, a lot of those people are way more smarter than I am for solving these problems. And what's even more better is, they share their learning and experiences. I just love the open source family... :k Right, back to this post. Recently, my sister got married and as expected, a lot of pics were captured. I had specifically bought Nikon L810 for it, and god, what images does it capture. But, you can't upload those high -resolution images for sharing with your friends. That's about 10G of images and in countries like mine, that size is a pretty high volume. So,

SVN Setup on Linux Box

Create the Repository sudo svnadmin create /var/svn/repositories/test Allow the Apache to read and write to the repository sudo chown -R www-data:www-data /var/svn/repositories/test Create the permissions file with the first user. sudo htpasswd -c /etc/subversion/passwd dragon Subsequent users can be added by same command WITHOUT the -c option. Edit the apache2.conf file sudo gedit /etc/apache2/apache2.conf <Location /svn> DAV svn SVNParentPath /var/svn/repositories/ SVNListParentPath On AuthType Basic AuthName "Test" AuthUserFile /etc/subversion/passwd <LimitExcept GET PROPFIND OPTIONS REPORT> Require valid-user </LimitExcept> </Location>