Wednesday, May 23, 2012

Martial art training with an audio guide

This September I started training in the martial arts, in a discipline called Ryukyu Kenpo Kobujutsu Kai, 
or in short: Ryukyu Kenpo.
http://ryukyu-kenpo.com/
I got my 3rd belt this month: yellow.
One of the ways to progress quickly in martial arts, is to train at home. at the off hours of the dojo.
But I wanted to create a new way to train, so that I will remember all techniques much better.
I wanted some one to tell my a name of a random technique. And I would have to perform it.


But I have no partner to train with, so I decided to create a project:
The goal: To create multiple audio files, each one is saying the name of one technique, with a delay to allow performing it, and than have those files on an ipod, and using the random option, I will be able to train.


The process:
Step 1:
Go to the ryukyu kenpo site. and save all techniques to a txt file.

Step 2:
Remove description of all techniques, leaving only the names.
I did this quickly using a vim macro.
Step 3:
Split the file to many files, each containing one technique.
I used the command:
split -l 1 Martial_arts_techniques.txt
-l 1 - meaning to split the file by single lines


This gave me a lot of files named:
xaa, xab ... xcj

Step 4:
Created a wav file of silence using Audacity

Step 5:


In the folder with multiple text files (xaa,xab...), I entered:
ls -l > filelist.txt
To create a file with the names of all the files, each one in it's own line

Step 6:
I wrote this bash program:


#!/bin/bash

cat ~/Desktop/filelist.txt| while read line;
do name=$(echo $line | cut -c58-70) ;espeak -f $name -w $name".wav"  ; 
done

Program explanation:
Line 2: Pump the filelist file to a loop, each iteration, the current technique name is stored in line.
Line 3:Cutting from:
-rw-rw-r-- 1 pentagonpie pentagonpie      32 2012-05-22 12:24 xcc
(The result of the 'ls -l')
only the last part:
xcc 

Then using espeak, converting the text file into an audio file.



saving as program.bash.
Executing using 
bash program.bash
To create a folder with all the text files mixed with the new .wav files

Step 7:
Deleting all txt files:
rm *.txt 

Step 8:
Creating a program similar to the previous.

1 #!/bin/bash

2 cat ~/Desktop/filelist.txt| while read line;
3 do name=$(echo $line | cut -c58-70) ;sox -m $name".wav" final_silence.wav $name"2.wav"  ;
4 done


Line 3: using sox to combine every file with the silence file from step 4.

Step 9:
Importing all audio files to ipod, and using portable speakers.

That is how I done it!

Sample file:


Monday, May 14, 2012

Tracking my push-ups

I am trying to increase the number of pushups I can preform.
A great site dedicated to this effort is calld http://hundredpushups.com/

Being a scientific oriented guy, and a geek, I wanted to track my progress.
I decided to use a great site for this documentation:

http://daytum.com/
"DAYTUM HELPS YOU COLLECT,CATEGORIZE AND COMMUNICATEYOUR EVERYDAY DATA."




DAYTUM main page
So I created a new category called "Exercise", added a new item called "pushups", and inserted 16 and 17 as my first attempts.
But I couldn't find an option to show me a trend chart, the closest I could get was a lousy filled graph which didn't tell me much.

So I decided a to use a different site.
I opened a new form in google docs, with only one text box, the amount of pushups I did.


Now each time I perform a set of push-ups, i enter this site which i bookmarked, and insert the new number.

behind the scenes is a spreadsheet which gets updated automatically with the new information.

I created a new trend chart, but I wanted my chart to update with each new entry,
so in the range, I changed it from 
"Sheet1!A2:B3" to "Sheet1!A2:B20"

It basically tells the chart to create a chart from my existing data, AND from additional colums which are blank at the moment.
The chart algorithm is smart enough to exclude the non-existing data, and when new data is added, it will be added to the chart. 


And this is exactly what I wanted!

Sunday, May 13, 2012

First!!!

As I was sending requests to my brain, to come up with an interesting topic for my first blog post, I decided to name it "First!!!".

Seems appropriate to use the famous "first" internet meme for your first post.
When you are using the web (surfing?), many jokes you will encounter will be inside jokes of the web.

So, in order to enhance your browsing experience, you should familiarize yourself with some of them,
Here is a nice guide:
link