Archive for June, 2009
29 Steps and Ideas for Freedom and Motivation
I really love motivatethyself.com and zenhabits.net and would like to share some of the latest posts from the two blogs.
- 12 Ways To Get Your Motivational Groove Back
- 9 Steps to Turn off the Autopilot and Start Living Your Dreams
- 8 Liberating Strategies for Clearing the Queues in Your Life
I really encourage you to read these posts, subscribe to the rss feeds, and visit the sites regularly.
Free Business Ideas
A while ago I found this list of business ideas, published by Y Combinator. The list is interesting to me, because it gives a glimpse into what venture firms might want to invest in.
Enterprise software, CRM, measuring apps, financial applications and some sort of site builders are some of the things that I have looked into previously.
In the near future I will unveil some of the projects that I have been working on lately. Stay tuned.
Converting Filenames to Lowercase with Bash
Once again I have a bash-oneliner. For some reason it is all I blog about at the moment.
I had an import script for importing demo files (in mp3 format) to a database used at Voicearchive. Only problem the import script depended on the files being named precisely according to a specific rule. But for some reason some times it was named with uppercase letters, and sometimes with lowercase letters. I decided to rename all files to lowercase, and change the importscript accordingly.
find . -maxdepth 1 -type f -execdir rename 'y/A-Z/a-z/' '{}' \;