songclip Love Story september 28 2011

[audio:http://www.beautifulwork.org/trueangle/ls3.mp3] Audio Recorder : gnome-sound-recorder 2.30.0 Details : recorded as a wav file. MP3 Conversion : ffmpeg Details : ffmpeg -i ls3.wav -ab 320k ls3.mp3 $ffmpeg -i ls3.wav -ab 320k ls3.mp3 FFmpeg version git-6a7e074, Copyright (c) 2000-2011 the FFmpeg developers built on Mar 8 2011 09:54:27 with gcc 4.5.2 configuration: –prefix=/usr –extra-cflags=’-Wall -g ‘ –cc=’ccache …

songclip Love Story sep 24 2011

[audio:http://www.beautifulwork.org/trueangle/ls1.mp3] Audio Recorder : gnome-sound-recorder 2.30.0 Details : recorded as a wav file. MP3 Conversion : ffmpeg Details : ffmpeg -i ls1.wav -ab 320k ls1.mp3 $file ls1.mp3 ls1.mp3: Audio file with ID3 version 2.4.0, contains: MPEG ADTS, layer III, v2, 160 kbps, 22.05 kHz, Monaural $file ls1.wav ls1.wav: RIFF (little-endian) data, WAVE audio, Microsoft PCM, …

songclip r.m.u.s sep 23 2011

[audio:http://www.beautifulwork.org/trueangle/last.rmus.mp3] Audio Recorder : gnome-sound-recorder 2.30.0 Details : recorded as a wav file. MP3 Conversion : ffmpeg Details : ffmpeg -i last.rmus.wav -ab 320k last.rmus.mp3 $file last.rmus.wav last.rmus.wav: RIFF (little-endian) data, WAVE audio, Microsoft PCM, 32 bit, mono 22050 Hz $file last.rmus.mp3 last.rmus.mp3: Audio file with ID3 version 2.4.0, contains: MPEG ADTS, layer III, v2, …

[ php ] september 21 2011

PHP Code $con = mysql_connect(“localhost”,”db name”,”password”); Code Dissection 1. $con — Variable. All variables in PHP start with a $symbol . 2. mysql_connect() — A PHP function . This function help to connect to the database and get access. resource mysql_connect ([ string $server = ini_get(“mysql.default_host”) [, string $username = ini_get(“mysql.default_user”) [, string $password = …

[ php ] 2011 september 19

PHP Code if(post_password_required() || (!comments_open() && is_page() && $app->post->getCommentCount() < 1)) return; Code Dissection 1. if — Statement . Conditional Statement. if statement – use this statement to execute some code only if a specified condition is true 2. post_password_required() — WordPress API post_password_required (line 558) Whether post requires password and correct password has been …

wordpress on debian howto

Installation 1. apt-get install wordpress 2. apt-get install proftpd 3. apt-get install mysql-server-5.1 Configuration file 1 #cat /etc/wordpress/htaccess # For rewrite rules needed for making WordPress URL friendly # See Options -> Permalinks for details and please use the defaults, # especially in mind when hosting several blogs on one machine! ## ## Configuration for …

arrays.pl

A UNIX Command $cat arrays.pl # Simple array constructs. @fred = (“How”, “are”, “you”, “today?”); print “\@fred contains (@fred).\n”; $mike = $fred[1]; print “$mike $fred[3]\n”; # The array name in a scalar context gives the size. $fredsize = @fred; print ‘@fred has ‘, “$fredsize elements.\n”; # The $#name gives the max subscript (size less one). …