If you haven’t heard Katatonia released a new album, this time called Night Is The New Day. I’ve only heard one song so far and I am impressed. Katatonia is improving with every album they are making and this one I think will be a great contender on best album of the year! I ordered the album and I am waiting eagerly to get it now. In the mean time I can watch the music video for the single Day & Then The Shade.
I made a small script just to test the syntax highlighting plug-in I installed for WordPress. So here it goes:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash# Scipt that installs a batch of apk files on an Android device,# through the adb tool from Android SDK.adbPath="/home/tomasz/android/android-sdk/tools/adb"if[$#-ne1]; thenecho"usage: `basename $0` foldername"exit1fifor f in $(ls"$1");
do$adbPathinstall"$f"done
The script is very simple and installs apk files in a folder through adb (Android Debug Bridge). This of course requires the Android SDK and a some kind of a Linux distribution.