This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Changing the version number | |
diff --git a/configure.py b/configure.py | |
index 7ed9582..53bd3ad 100644 | |
--- a/configure.py | |
+++ b/configure.py | |
@@ -41,7 +41,7 @@ import sipconfig | |
pyqt_version = 0x040803 | |
pyqt_version_str = "4.8.3" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name '*.mp3' -print0 | xargs -0 -I {} sh -c 'echo "{}"; n="{}~"; cp "{}" "$n"; id3v2 -D "$n"; cat "$n" >> comb.mp3; rm "$n"'; ffmpeg -i comb.mp3 -acodec libfaac audiobook.m4a; mv audiobook.m4a audiobook.m4b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Copyright (C) 2010 Matthias Buecher (http://www.maddes.net/) | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. | |
# http://www.gnu.org/licenses/gpl-2.0.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reformat disc | |
# Create master boot record | |
sudo parted --script /dev/sdb mklabel msdos | |
# Setup boot partition as FAT16 | |
sudo fdisk /dev/sdb << END | |
n | |
p | |
1 | |
1 | |
+64M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo rootstock --fqdn beagleboard \ | |
--login my_user \ | |
--password my_pwd \ | |
--imagesize 1G \ | |
--dist maverick \ | |
--serial ttyS2 \ | |
--seed alsa-utils,vim,git,build-essential \ | |
--components "main universe multiverse" \ | |
--kernel-image http://rcn-ee.net/deb/maverick/v2.6.37-x1/linux-image-2.6.37-x1_1.0maverick_armel.deb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by JetBrains WebStorm. | |
* User: jima | |
* Date: 6/02/12 | |
* Time: 9:58 PM | |
* To change this template use File | Settings | File Templates. | |
*/ | |
var mqtt = require('mqttjs'); | |
var argv = process.argv; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A bunch of useless files. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#tablist{ | |
padding: 3px 0; | |
margin-left: 0; | |
margin-bottom: 0; | |
margin-top: 0.1em; | |
font: bold 12px Verdana; | |
border-bottom: 1px solid gray; | |
} | |
#tablist li{ |