satishgaudo.com

Understanding technology

Archive for the 'Uncategorized' Category

Google Maps JavaScript API v3 Example

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <style type="text/css"> html { [...]

2 November 2011 at 16:09 - Comments

Perl Batch convertion script for ffmpeg , to make flash video (flv) from several other videosources

#!/usr/bin/perl use strict;   # Very crude batch convertion script for ffmpeg # to make flash video (flv) from several other videosources # # First get the ffmpeg CVS version # cvs -z9 -d:pserver:anonymous@mplayerhq.hu:/cvsroot/ffmpeg co ffmpeg # # compile it with: # ./configure –enable-mp3lame –enable-gpl # make # make install # # next: # make them flv files ;)

# input movie files dirname my $input_dir = "/var/www/uploads/dummymedia/";   # output files dirname # has [...]

4 May 2011 at 16:05 - Comments
jimmi at 18:05 on 31 May 2011
good article . thx
jeram at 18:07 on 31 May 2011
Great work man

Ganglia : monitoring framework

Ganglia is a monitoring framework for clusters of servers. It records many statistics and can record custom defined ones too. It works in a distributed manner, with each machine you wish to collect statistics for running the Ganglia monitor deamon, gmond. Each monitoring deamon’s statistics are collected by a metadata daemon, gmetad, running on either [...]

30 July 2010 at 16:37 - Comments
AVG Free at 08:48 on 14 November 2010
how to use
veterinary assistant at 18:13 on 24 December 2010
found your site on del.icio.us today and really liked it.. i bookmarked it and will be back to check it ...

Tuning LAMP systems, Part 2: Optimizing Apache and PHP

Here is an link from digg.com, Tuning LAMP systems, Part 2: Optimizing Apache and PHP Tuning LAMP systems, Part 2: Optimizing Apache and PHP

7 May 2010 at 10:47 - Comments

Linux commands

sed -i ’s/abc/xyz/g’ *.php This command is used for mass replacemet using regular expression. In the above command “abc” is replace with “xyz” from all the files extension “php”. find /var/www/html/sch_admin/ -mtime -1 This command is used to list all the files within the specified folder,say “var/www/html/sch_admin/”, which have been created or modified within the period specified,say “-1″ which [...]

30 January 2010 at 12:22 - Comments