rss feed blog search engine
 
Search rss blog search engine
 
piju's life journey  
Released:  5/27/2008 4:37:38 PM
RSS Link:  http://piju.fakap.net/?feed=rss2
Last View 12/2/2008 6:45:14 AM
Last Refresh 12/2/2008 4:06:48 AM
Page Views 278
Comments:  Read user comments (0)
Save It Add to Technorati Add to Del.icio.us Add to Furl Add to Yahoo My Web 2.0 Add to My MSN Add to Google Add to My Yahoo! piju's life journey



Description:



chapter 1 : a new beginning


Contents:

Kupu Kupu Malam (Guitar Cover)

;)




Apple’s Official Store For Malaysian

Guys,

its here now. the time has arrived.

check out http://store.apple.com/my




Hey Mickey - Chords, Lyric and Video

Chorus:
(Drums only)
Oh Mickey, you're so fine
(Drums only)
You're so fine, you blow my mind, hey Mickey, hey Mickey
(Drums only)
Oh Mickey, you're so fine
(Drums only)
You're so fine, you blow my mind, hey Mickey, hey Mickey
B
Oh Mickey, you're so fine
A						B
You're so fine, you blow my mind, hey Mickey, hey Mickey
B
Oh Mickey, you're so fine
A						B
You're so fine, you blow my mind, hey Mickey, hey Mickey

Riff:
EAEBAB
EAEBA (arpeggiate)–
(arpeggiate)

B	B	B     A	A	A
    	  Hey Mickey
B		     B   B	   A		   A
You've been around all night and that's a little long
B		       B   B	 A		      A	A
You think you've got the right but I think you've got it
wrong
B		   B   B	 A		      A	A
Why can't we say goodnight? So you can take me home, Mickey
B(arpeggiate)

B		     B   B	  A		       A
Cause when you say you will, it always means you won't
 B		   B   B	 	A	     A	A
You're givin' me the chills, baby, please baby don't
B	    B   B	 A		A	A
Every night you still leave me all alone, Mickey
B(arpeggiate)

E		A		E		   B
Oh Mickey, what a pity, you don't understand
    A					    B
You take me by the heart when you take me by the hand
E	     A		     E		   B
Oh Mickey, you're so pretty, can't you understand
A(arpeggiate)
It's guys like you, Mickey
B(arpeggiate)
Ooh what you do Mickey, do Mickey; Don't break my heart,
Mickey

Hey Mickey
Now when you take me by the... who's... ever gonna know
Every time you move I let a little more show
There's something you can use, so don't say no, Mickey

So come on and give it to me anyway you can
Anyway you want to do it, I'll take it like a man
Oh please baby, please don't leave me in this jam Mickey

Refrain1:
Oh Mickey, what a pity, you don't understand
You take me by the heart when you take me by the hand
Oh Mickey, you're so pretty, can't you understand
It's guys like you, Mickey
Ooh what you do Mickey, do Mickey
Don't break my heart, Mickey

dance! ;) 



Installing Google Software Using APT

This post brief how to install google software using apt commands, run this single command using root account or sudo.

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && echo “deb http://dl.google.com/linux/deb/ stable non-free” >> /etc/apt/sources.list && apt-get update

Then install ur favourite google’s software

root@piju-laptop:~# apt-get install picasa
Reading package lists… Done
Building dependency tree
Reading state information… Done
The following NEW packages will be installed:
picasa
0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
Need to get 24.1MB of archives.
After this operation, 91.1MB of additional disk space will be used.
Get:1 http://dl.google.com stable/non-free picasa 2.7.3736-15 [24.1MB]
8% [1 picasa 1939951/24.1MB 8%]                                  10.0kB/s 36min46s




Tutorial: How To Cache Youtube Using Squid Caching Proxy

This is tutorial lesson on how to cache youtube using squid caching proxy.

First, u need to download and compile squid version 2.7 stable 3 with these configuration.

./configure 
--sysconfdir=/etc/squid 
--prefix=/usr 
--enable-async-io 
--enable-removal-policies=lru,heap 
--disable-delay-pools 
--disable-wccp 
--disable-wccp2 
--enable-kill-parent-hack 
--enable-snmp 
--enable-default-err-languages=English --enable-err-languages=English 
--enable-linux-netfilter 
--disable-auth

Then edit your own squid.conf for your own environment. Finding where is squid.conf location also a lesson ;)

Touch a file, and name it as store_url_rewrite, make it executable and write this code on it

#!/usr/bin/perl
$|=1;
while (<>) {
@X = split;
$url = $X[0];
$url =~s@^http://(.*?)/get_video?(.*)video_id=(.*?)&.*@squid://videos.youtube.INTERNAL/ID=$3@;
$url =~s@^http://(.*?)/get_video?(.*)video_id=(.*?)$@squid://videos.youtube.INTERNAL/ID=$3@;
$url =~s@^http://(.*?)/videodownload?(.*)docid=(.*?)$@squid://videos.google.INTERNAL/ID=$3@;
$url =~s@^http://(.*?)/videodownload?(.*)docid=(.*?)&.*@squid://videos.google.INTERNAL/ID=$3@;
print "$url
"; }

Just try to use this squid.conf ( please read the manual and edit whatever lines depends on your own environment )

acl all src all
acl manager proto cache_object
acl localhost src 127.0.0.1/32
acl to_localhost dst 127.0.0.0/8
acl localnet src 10.0.0.0/8	# RFC1918 possible internal network
acl localnet src 172.16.0.0/12	# RFC1918 possible internal network
acl localnet src 192.168.0.0/16	# RFC1918 possible internal network
acl SSL_ports port 443
acl Safe_ports port 80		# http
acl Safe_ports port 21		# ftp
acl Safe_ports port 443		# https
acl Safe_ports port 70		# gopher
acl Safe_ports port 210		# wais
acl Safe_ports port 1025-65535	# unregistered ports
acl Safe_ports port 280		# http-mgmt
acl Safe_ports port 488		# gss-http
acl Safe_ports port 591		# filemaker
acl Safe_ports port 777		# multiling http
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localnet
http_access deny all
icp_access allow localnet
icp_access deny all
http_port 3128 transparent
hierarchy_stoplist cgi-bin ?
cache_mem 6 MB
maximum_object_size_in_memory 32 KB
memory_replacement_policy heap GDSF
cache_replacement_policy heap LFUDA
cache_dir aufs /nfs/cache 20000 16 256
maximum_object_size 64 MB
cache_swap_low 98
cache_swap_high 99
access_log /var/log/squid/access.log squid
cache_log /var/log/squid/cache.log
cache_store_log none
log_fqdn off
storeurl_rewrite_program /etc/squid/store_url_rewrite
acl store_rewrite_list url_regex ^http://(.*?)/get_video?
acl store_rewrite_list url_regex ^http://(.*?)/videodownload?
storeurl_access allow store_rewrite_list
storeurl_access deny all
cache allow store_rewrite_list
acl QUERY urlpath_regex cgi-bin ?
cache deny QUERY
refresh_pattern ^http://(.*?)/get_video? 10080 90% 999999 override-expire ignore-no-cache ignore-private
refresh_pattern ^http://(.*?)/videodownload? 10080 90% 999999 override-expire ignore-no-cache ignore-private
refresh_pattern ^ftp:		1440	20%	10080
refresh_pattern ^gopher:	1440	0%	1440
refresh_pattern -i (/cgi-bin/|?) 0	0%	0
refresh_pattern .		0	20%	4320
quick_abort_min 0
quick_abort_max 0
quick_abort_pct 98
acl apache rep_header Server ^Apache
broken_vary_encoding allow apache
vary_ignore_expire on
cache_effective_user squid
cache_effective_group squid
log_icp_queries off
ipcache_size 2048
ipcache_low 98
ipcache_high 99
memory_pools off
reload_into_ims on
coredump_dir /usr/var/cache
pipeline_prefetch on

See the result using tail

root@piju-laptop:~# tail -f /var/log/squid/access.log | grep TCP_HIT
1226204534.323    769 127.0.0.1 TCP_HIT/200 8138088 GET http://www.youtube.com/get_video?video_id=mjVXavHV2rU&t=OEgsToPDskJ5cKubeUhB4Cay12jNVBlE&eurl=http%3A%2F%2Fpiju%2Efakap%2Enet%2F&el=embedded&ps=default - NONE/- video/flv

Million thanks to jagawarnet,

for his encouragement and inspire.

Wish u all luck !




Ubuntu Linux 8.10 (Intrepid Ibex) officially out now !!

Whats new on Ubuntu 8.10 ?

The latest Ubuntu release brings the best of open source together on a platform that with 18 months free updates. With hundreds of improvements and the addition of full 3G support, more and more users are assessing why Ubuntu wins more and more converts with every release. This tour will help you discover this for your self.

Productivity tools: Ubuntu supports all of your favourite web-based mail programs like Yahoo(TM) or Gmail (TM). But for the office, Evolution provides all the calendering, contacts and full function office email you need. Pidgin IM also puts you in instant touch with colleagues and integrates with your personal IM services simply and easily.

Browsing: Includes Mozilla’s Firefox 3 as the default browser. Faster, safer and themed browsing for users.

Photos: Upload from your camera or phone to F-Spot and manage, tag, share and sort your photos and upload easily to you favourite social networking sites.

Music and video: Plug in your PSP, iPod, MP3 player; share playlists with your friends; buy in the creative commons online music stores, stream more live radio and content from the BBC and plug in more devices with UPnP.

Office applications: Word processing, spreadsheets and presentations can all be delivered through Open Office. And, they completely integrate with the proprietary office applications out there. The big difference is that they are free.




Home  
 


Link to us




RSS Feed of new blogs                                                   Home        Feed Map        Submit Feed      Link to Us       Contact