Wednesday, September 19, 2007
Blogrush
i've stumbled upon this good blog referal services provided by blogrush..i read a bit and was quite attracted to the concept..find many similarities of the blogrush referral with malaysia multi-level companies referral concept..hehe..anyway, it is worth the try.and it have a very nice design and layout,provides u with a dashboard, analytic and stuff..do check blogrush...oo and u can check blogrush cool widget at the right of my blog..
Monday, August 27, 2007
software machine development
about a few months back, a friend of mine ask me to help him with his new set-up company..i agreed and thus born Software Machine Development..im in the post of a web application developer..please dont hesitate to contact us..
cheers (^_^)
cheers (^_^)
Saturday, August 18, 2007
Friday, August 10, 2007
Installing PHPEclipse
After few months of red and watery eyes from reading code lines using text editor, i've finally have the free time to install an IDE..i've choosen Eclipse as it is strongly recommended and have PHPEclipse....i've found a great "how to" install eclipse from this
site...check it out, u may end up installing eclipse
note: all explanation is there so i wont trouble myself doing the same thing redundantly [..act, lazy..]
cheers (^_^)
site...check it out, u may end up installing eclipse
note: all explanation is there so i wont trouble myself doing the same thing redundantly [..act, lazy..]
cheers (^_^)
Saturday, July 21, 2007
how to set a virtual host directory in apache2
open your terminal konsole
create a directory
unos@xoxo:~$ mkdir virtual
define your host for the directory
unos@xoxo:~$ sudo nano /etc/hosts
127.0.0.1 localhost
127.0.0.2 virtual
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
define your virtual path in the apache httpd.conf
unos@xoxo:~$ sudo nano /etc/apache2/httpd.conf
NameVirtualHost 127.0.0.2:80
"<"VirtualHost 127.0.0.2:80">"
ServerName virtual
DocumentRoot /home/unos/virtual
"<"Directory /home/unos/virtual">"
AllowOverride All
Options Indexes SymLinksIfOwnerMatch IncludesNoExec
"<"/Directory">"
"<"/VirtualHost">"
then restart your apache2
unos@xoxo:~$ sudo /etc/init.d/apache2 restart
open your browser and just type virtual and it will direct you to your site
till then :">
notes:please ignore the double-quote..im putting it there because blogspot does not recognize < symbol
create a directory
unos@xoxo:~$ mkdir virtual
define your host for the directory
unos@xoxo:~$ sudo nano /etc/hosts
127.0.0.1 localhost
127.0.0.2 virtual
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
define your virtual path in the apache httpd.conf
unos@xoxo:~$ sudo nano /etc/apache2/httpd.conf
NameVirtualHost 127.0.0.2:80
"<"VirtualHost 127.0.0.2:80">"
ServerName virtual
DocumentRoot /home/unos/virtual
"<"Directory /home/unos/virtual">"
AllowOverride All
Options Indexes SymLinksIfOwnerMatch IncludesNoExec
"<"/Directory">"
"<"/VirtualHost">"
then restart your apache2
unos@xoxo:~$ sudo /etc/init.d/apache2 restart
open your browser and just type virtual and it will direct you to your site
till then :">
notes:please ignore the double-quote..im putting it there because blogspot does not recognize < symbol
ubuntu how to connect to internet using dhclient
open your terminal konsole
check if there is a wifi connection
unos@xoxo:~$ sudo iwlist eth1 scanning
eth1 Scan completed :
Cell 01 - Address: 00:60:B3:5A:BB:F0
ESSID:"streamyx"
Protocol:IEEE 802.11bg
Mode:Master
Channel:1
Encryption key:on
Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
11 Mb/s; 12 Mb/s; 18 Mb/s; 22 Mb/s; 24 Mb/s
36 Mb/s; 48 Mb/s; 54 Mb/s
Quality=78/100 Signal level=-47 dBm
Extra: Last beacon: 240ms ago
Then...connect to the network
unos@xoxo:~$ sudo iwconfig eth1 essid streamyx key "123456789"
unos@xoxo:~$ sudo iwconfig eth1
eth1 IEEE 802.11g ESSID:"streamyx"
Mode:Managed Frequency:2.412 GHz Access Point: 00:60:B3:5A:BB:F0
Bit Rate:36 Mb/s Tx-Power=20 dBm Sensitivity=8/0
Retry limit:7 RTS thr:off Fragment thr:off
Encryption key:0123-4567-89 Security mode:open
Power Management:off
Link Quality=80/100 Signal level=-49 dBm Noise level=-89 dBm
Rx invalid nwid:0 Rx invalid crypt:78 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:1
then use dhclient to connect to the network
unos@xoxo:~$ sudo dhclient eth1
There is already a pid file /var/run/dhclient.pid with pid 9721
killed old client process, removed PID file
Internet Systems Consortium DHCP Client V3.0.4
Copyright 2004-2006 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/
Listening on LPF/eth1/00:0e:35:ce:cf:b2
Sending on LPF/eth1/00:0e:35:ce:cf:b2
Sending on Socket/fallback
DHCPREQUEST on eth1 to 255.255.255.255 port 67
DHCPACK from 192.168.1.1
bound to 192.168.1.34 -- renewal in 1708 seconds.
to check the nameserver of the connection
unos@xoxo:~$ sudo cat /etc/resolv.conf
nameserver 192.168.1.1
nameserver 192.168.1.1
to check the connection to the internet
unos@xoxo:~$ ping www.google.com -c 3
PING www.l.google.com (64.233.189.104) 56(84) bytes of data.
64 bytes from www.google.com (64.233.189.104): icmp_seq=1 ttl=244 time=58.0 ms
64 bytes from www.google.com (64.233.189.104): icmp_seq=2 ttl=244 time=59.3 ms
64 bytes from www.google.com (64.233.189.104): icmp_seq=3 ttl=244 time=58.2 ms
--- www.l.google.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 1999ms
rtt min/avg/max/mdev = 58.002/58.512/59.308/0.634 ms
and you are connected (^_^)
check if there is a wifi connection
unos@xoxo:~$ sudo iwlist eth1 scanning
eth1 Scan completed :
Cell 01 - Address: 00:60:B3:5A:BB:F0
ESSID:"streamyx"
Protocol:IEEE 802.11bg
Mode:Master
Channel:1
Encryption key:on
Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
11 Mb/s; 12 Mb/s; 18 Mb/s; 22 Mb/s; 24 Mb/s
36 Mb/s; 48 Mb/s; 54 Mb/s
Quality=78/100 Signal level=-47 dBm
Extra: Last beacon: 240ms ago
Then...connect to the network
unos@xoxo:~$ sudo iwconfig eth1 essid streamyx key "123456789"
unos@xoxo:~$ sudo iwconfig eth1
eth1 IEEE 802.11g ESSID:"streamyx"
Mode:Managed Frequency:2.412 GHz Access Point: 00:60:B3:5A:BB:F0
Bit Rate:36 Mb/s Tx-Power=20 dBm Sensitivity=8/0
Retry limit:7 RTS thr:off Fragment thr:off
Encryption key:0123-4567-89 Security mode:open
Power Management:off
Link Quality=80/100 Signal level=-49 dBm Noise level=-89 dBm
Rx invalid nwid:0 Rx invalid crypt:78 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:1
then use dhclient to connect to the network
unos@xoxo:~$ sudo dhclient eth1
There is already a pid file /var/run/dhclient.pid with pid 9721
killed old client process, removed PID file
Internet Systems Consortium DHCP Client V3.0.4
Copyright 2004-2006 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/
Listening on LPF/eth1/00:0e:35:ce:cf:b2
Sending on LPF/eth1/00:0e:35:ce:cf:b2
Sending on Socket/fallback
DHCPREQUEST on eth1 to 255.255.255.255 port 67
DHCPACK from 192.168.1.1
bound to 192.168.1.34 -- renewal in 1708 seconds.
to check the nameserver of the connection
unos@xoxo:~$ sudo cat /etc/resolv.conf
nameserver 192.168.1.1
nameserver 192.168.1.1
to check the connection to the internet
unos@xoxo:~$ ping www.google.com -c 3
PING www.l.google.com (64.233.189.104) 56(84) bytes of data.
64 bytes from www.google.com (64.233.189.104): icmp_seq=1 ttl=244 time=58.0 ms
64 bytes from www.google.com (64.233.189.104): icmp_seq=2 ttl=244 time=59.3 ms
64 bytes from www.google.com (64.233.189.104): icmp_seq=3 ttl=244 time=58.2 ms
--- www.l.google.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 1999ms
rtt min/avg/max/mdev = 58.002/58.512/59.308/0.634 ms
and you are connected (^_^)
Thursday, June 14, 2007
result is out
uitm examination result for semester dec-april 2007 has been released by the UiTM administration at 1744 hour (my own time)...as before, uitm server was crammed with trafic within hours of its release and it was down in matter of minutes..ive managed to check the result and it was the worst result that i ever had throughout my academic life so far..it pisses me off so much..well it doesnt matter..im gonna bounce back....
to those who would like to check the result u can check it at the istudent portal or u can go to myuitm
to my friends im wishing u all the best and good luck...
p/s: tema lagu kebangsaan for now is "hadapi dengan senyuman"
to those who would like to check the result u can check it at the istudent portal or u can go to myuitm
to my friends im wishing u all the best and good luck...
p/s: tema lagu kebangsaan for now is "hadapi dengan senyuman"
Monday, June 11, 2007
Ayong's wedding
howdy gengs...last week must've been the busiest week of my life so far..it was the first time my family held a wedding reception for my beloved sister...the work was abundant and tiring nonetheless..but, the wedding went well though with minor flaws and sarcasm throughout...The nikah was held at home and the bersanding was held at Dewan Merdeka, Kg Melayu..
A lot of family and friends showed up for the celebrated days..sad to say that my friends seems to be the fewest but it dont matter..i've met an old friend who i haven't met in a loooong time and it was good and smashing...we talk,talk,talk and talk and it was hell lot of fun...Fathullah a.k.a maboqs was there (he helped me clean up the house on the nikah nite, my deepest gratitude went out to him) Firdaus a.k.a kecik was there on saturday...
and somehow, Sumardi manages to drive all the way from melaka (a true friend indeed) and none of my friends from seremban "manage" to make it...well, its ok i guess
at the end of the day, it was all fun and relieving when it is all over..my congratulations goes out to the newlyweeds and i pray for their life to be prosper and fill with joy and happiness (hope they are gonna go to "work" soon cause i cant wait to have "anak buah" :D)
i would also like to thank those who helped and to those who came to the wedding with a big heart..thank you so much, i enjoy it very much being around your company..
till then...au revoir (^_^)
A lot of family and friends showed up for the celebrated days..sad to say that my friends seems to be the fewest but it dont matter..i've met an old friend who i haven't met in a loooong time and it was good and smashing...we talk,talk,talk and talk and it was hell lot of fun...Fathullah a.k.a maboqs was there (he helped me clean up the house on the nikah nite, my deepest gratitude went out to him) Firdaus a.k.a kecik was there on saturday...
and somehow, Sumardi manages to drive all the way from melaka (a true friend indeed) and none of my friends from seremban "manage" to make it...well, its ok i guess
at the end of the day, it was all fun and relieving when it is all over..my congratulations goes out to the newlyweeds and i pray for their life to be prosper and fill with joy and happiness (hope they are gonna go to "work" soon cause i cant wait to have "anak buah" :D)
i would also like to thank those who helped and to those who came to the wedding with a big heart..thank you so much, i enjoy it very much being around your company..
till then...au revoir (^_^)
Wednesday, May 23, 2007
use gaim to connect to irc
open your gaim (or pidgin, whatever :p) application..add new account and select irc...
type at the server field = "irc.freenode.net"
you dont have to fill the password, leave it null
once u got a respond from irc.freenode.net
type /nickserv register "nickname" "your@email.com"
to join any channel type
/join #ubuntu-my
/join #myoss
/join #ubuntu
Note: irc.freenode.net is the official open source irc server.. if you want to join #kampung/#mamak or whatever u should connect to a irc.dal.net server
happy chating :-"
type at the server field = "irc.freenode.net"
you dont have to fill the password, leave it null
once u got a respond from irc.freenode.net
type /nickserv register "nickname" "your@email.com"
to join any channel type
/join #ubuntu-my
/join #myoss
/join #ubuntu
Note: irc.freenode.net is the official open source irc server.. if you want to join #kampung/#mamak or whatever u should connect to a irc.dal.net server
happy chating :-"
how to write ntfs in ubuntu
i just bought an external hardisk..now, it become a problem to me since that Microsoft Windows can not detect the Ubuntu partition format...what i did was i create 2 partion, one using Ubuntu and the other is NTFS..This way i can use both, where its necessary..one problem though that the ntfs in ubuntu i not writeable...after doing some "googling and tips from a friend, i've found a way on how to write ntfs in ubuntu... (p/s: chown won't do the trick)
make a directory name windows in ~/media (but u have to chown it to make it accessible)
sudo mkdir windows
sudo chown unos:unos /media/windows
sudo chmod 744 /media/windows
connect the hard disk and check your usb device
fdisk -l
unmount the ntfs
sudo umount /dev/sda2
then mount the ntfs using the command
$ sudo mount /dev/sda2 /media/windows -t ntfs -o umask=777,uid=unos
it should able u to write the ntfs partition.hope it will work for you..post me on anything ya
make a directory name windows in ~/media (but u have to chown it to make it accessible)
sudo mkdir windows
sudo chown unos:unos /media/windows
sudo chmod 744 /media/windows
connect the hard disk and check your usb device
fdisk -l
unmount the ntfs
sudo umount /dev/sda2
then mount the ntfs using the command
$ sudo mount /dev/sda2 /media/windows -t ntfs -o umask=777,uid=unos
it should able u to write the ntfs partition.hope it will work for you..post me on anything ya
Monday, May 21, 2007
indonesia has a very sweet pronounciation
i've started my MCAD classes today..fortunate enough for me, my tutor happens to be an indonesian lass by the name of Hariani Sabariana Sitohang..act, im very profound with the way indonesian speak english and their pronounciation, much..the "rrr" is quite obvious and i find it musical..hehehe...one thing i learn from her today is that indonesian pronounce @ as arkai..hehehe..and once she even said "where can i buy computer peripherals?"...
hehehe.. i found it very amusing..though we share the same roots with indonesia but the cultural difference is quite vast...
i'm looking foward to learn more about the indonesia culture and language, apart from the MCAD, perhaps....
hehehe.. i found it very amusing..though we share the same roots with indonesia but the cultural difference is quite vast...
i'm looking foward to learn more about the indonesia culture and language, apart from the MCAD, perhaps....
Sunday, April 22, 2007
what to do the night before finals
housemates of mine was having a mental crackdown the night before their finals...needless to say this is one of the dumbest of having fun...hahaha
cheers...
cheers...
Friday, April 6, 2007
Ruby on Rails
Ruby on Rails is a web application framework that increase the speed and ease of web development.Also known as RoR or Rails, it is an open-source project written in the Ruby language. Ruby on Rails is supported by the is driven by the community worldwide and it even have a Malaysian community for Rails. Check it out..
On the 13th April 2007, a talk will be held at FTMSK at TH5 from 3p.m to 5p.m.. The talk will be presented by Aizat Faiz. This is one "power" dude i'll give him that..
See ya' there...
On the 13th April 2007, a talk will be held at FTMSK at TH5 from 3p.m to 5p.m.. The talk will be presented by Aizat Faiz. This is one "power" dude i'll give him that..
See ya' there...
Sunday, March 25, 2007
google mp3 search
Google is a verry powerful search engine indeed..Well, i was darn bored this morning and had nothing to do..while going through tons of digg documents, i stumbled into an interesting tip on how to perform music search in Google..The original post of the article is here.
Paste the query below into your Google search =
-inurl:(htm|html|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wma|mp3) "Nirvana"
Just substitute the "Nirvana" with any other artist that you would like to find..it will popup a list of index for the songs..plus you can also change the file type (wma|mp3) to any other file format such as pdf or doc ANYTHING...Well and if you are too lazy, you can go to G2P to find music that you want.. it works the same way
Happy Hunting (^_^)
Paste the query below into your Google search =
-inurl:(htm|html|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wma|mp3) "Nirvana"
Just substitute the "Nirvana" with any other artist that you would like to find..it will popup a list of index for the songs..plus you can also change the file type (wma|mp3) to any other file format such as pdf or doc ANYTHING...Well and if you are too lazy, you can go to G2P to find music that you want.. it works the same way
Happy Hunting (^_^)
Wednesday, March 21, 2007
Know Your Rights
Most of us tend to get very nervous when dealing with police personnel..Well who doesn't? They are prone to show that they are high and mighty like that, especially the ones with the Dato K moustache..The moment we got stop by the police the first thing that cross our mind as any other good Malaysian are, "aiyoo damn..can kawtim or not ah?"..
Well, nonetheless the police have also got to abide the laws..The Malaysian BAR Council has upload a document on "Know Your Right" when dealing with police procedure..Check it out..You may get away from any summons or charges by boasting your legal knowledge (^_^)
Well, nonetheless the police have also got to abide the laws..The Malaysian BAR Council has upload a document on "Know Your Right" when dealing with police procedure..Check it out..You may get away from any summons or charges by boasting your legal knowledge (^_^)
Saturday, March 10, 2007
Installing Netbeans IDE in Ubuntu
The NetBeans IDE is a free, open-source Integrated Development Environment for software developers. The IDE runs on many platforms including Windows, Linux, Solaris, and the MacOS. It is easy to install and use straight out of the box. If you happen to download the package that comes with all the jdk,netbeans and sun java system application server, well then you lucky rat...i had to install all manually..nonetheless, i'll still want to share my "endevour" in installing the netbeans, manually..
First, u have to have the Java Development Kit (jdk) in ur ubuntu box..At the time of writing it is the JDK6...you can download it for free here.
Open your terminal and go to the folder..
unos@xoxo:~/Desktop$ cd java/
unos@xoxo:~/Desktop/java$ chmod +x jdk-1_5_0_11-linux-i586.bin
unos@xoxo:~/Desktop/java$ ./jdk-1_5_0_11-linux-i586.bin
then, it will pop out a list of "terms and agreement" from the vendor..read it if u have the time
accept it and just follow the instruction..
next, install the netbeans IDE..u can download it, again for free, here...
unos@xoxo:~/Desktop/java$ chmod +x netbeans-5_5-linux.bin
unos@xoxo:~/Desktop/java$ ./netbeans-5_5-linux.bin
it will pop up install wizard and just follow the instruction..
next, u will have to install the sun java system application server..to do this you will have to dwonload the update file..you can find it here
install the update package...
unos@xoxo:~/Desktop/java$ chmod +x java_ee_sdk-5_02-linux-nojdk.bin
unos@xoxo:~/Desktop/java$ sudo ./java_ee_sdk-5_02-linux-nojdk.bin -javahome /usr/lib/j2re1.5-sun/
it will pop up the installation wizard and just follow the steps...
a more easier way for you to done this is by downloading the complete netbeans 5.5 that comes with the jdk and sun java system application server..this way everyone's happier (^_^)
First, u have to have the Java Development Kit (jdk) in ur ubuntu box..At the time of writing it is the JDK6...you can download it for free here.
Open your terminal and go to the folder..
unos@xoxo:~/Desktop$ cd java/
unos@xoxo:~/Desktop/java$ chmod +x jdk-1_5_0_11-linux-i586.bin
unos@xoxo:~/Desktop/java$ ./jdk-1_5_0_11-linux-i586.bin
then, it will pop out a list of "terms and agreement" from the vendor..read it if u have the time
accept it and just follow the instruction..
next, install the netbeans IDE..u can download it, again for free, here...
unos@xoxo:~/Desktop/java$ chmod +x netbeans-5_5-linux.bin
unos@xoxo:~/Desktop/java$ ./netbeans-5_5-linux.bin
it will pop up install wizard and just follow the instruction..
next, u will have to install the sun java system application server..to do this you will have to dwonload the update file..you can find it here
install the update package...
unos@xoxo:~/Desktop/java$ chmod +x java_ee_sdk-5_02-linux-nojdk.bin
unos@xoxo:~/Desktop/java$ sudo ./java_ee_sdk-5_02-linux-nojdk.bin -javahome /usr/lib/j2re1.5-sun/
it will pop up the installation wizard and just follow the steps...
a more easier way for you to done this is by downloading the complete netbeans 5.5 that comes with the jdk and sun java system application server..this way everyone's happier (^_^)
Sun Tech Day Notes
The Sun Tech Day Kuala Lumpur Tour has passed and it was great and fun for the whole 3 days that i was there...James Goosling was really there and delivered a keynote speech on the future of Java(damn, i didnt get a picture)...Basically what they were stressing was that Java is "going" to be open source and urge all developers to contribute....
For those who miss the lab session and interested on getting the notes, u can download it here
and damnn...i didn't get the iPod :'(
For those who miss the lab session and interested on getting the notes, u can download it here
and damnn...i didn't get the iPod :'(
ubuntu wifi-radar
Wifi seems to be the easiest way of connecting to the internet nowdays..My favorite tools in connecting to a wifi channel is the WiFi Radar...WiFi Radar is a Python/PyGTK2 utility for managing WiFi profiles.It enables you to scan for available networks and create profiles for your preferred networks.To intsall it in Ubuntu, open the terminal and type
sudo apt-get install wifi-radar
This will install wifi-radar in your computer...However, the wifi-radar may not be able to connect to a wifi..this is because, by default it can't configure which interface to use...So,what u have to do is configure the wifi-radar.conf file using editor..
What i did was run this on the terminal
sudo nano /etc/wifi-radar.conf
It will show up the configuration of wifi-radar basically like this....
[DEFAULT]
ifup_required = False
auto_profile_order = home,linksys,Guest$speak_up = False
scan_timeout = 5
interface =
commit_required = False
So add your interface at the interface options...
[DEFAULT]
ifup_required = False
auto_profile_order = home,linksys,Guest$speak_up = False
scan_timeout = 5
interface = eth1
commit_required = False
and now you are clear to go...
enjoy it but remember, connecting to an open wifi without permission is a crime (^_^)
sudo apt-get install wifi-radar
This will install wifi-radar in your computer...However, the wifi-radar may not be able to connect to a wifi..this is because, by default it can't configure which interface to use...So,what u have to do is configure the wifi-radar.conf file using editor..
What i did was run this on the terminal
sudo nano /etc/wifi-radar.conf
It will show up the configuration of wifi-radar basically like this....
[DEFAULT]
ifup_required = False
auto_profile_order = home,linksys,Guest$speak_up = False
scan_timeout = 5
interface =
commit_required = False
So add your interface at the interface options...
[DEFAULT]
ifup_required = False
auto_profile_order = home,linksys,Guest$speak_up = False
scan_timeout = 5
interface = eth1
commit_required = False
and now you are clear to go...
enjoy it but remember, connecting to an open wifi without permission is a crime (^_^)
Saturday, March 3, 2007
Sun Tech Day 2006-2007
Sun Technology will be organizing Sun Tech Day from the 7-8th March 2007 at Kuala Lumpur Convention Center. The father of Java, Mr. James Gosling will be present himself to give a speak..but for me the most interesting part will be that of the Web 2.0 technology...Can't wait...nyum2...
fr13nd5, lets join the Sun Tech Day and make it more merrier...if it's monotonous we can always run to KLCC....heheheh :p
See ya' there
fr13nd5, lets join the Sun Tech Day and make it more merrier...if it's monotonous we can always run to KLCC....heheheh :p
See ya' there
Friday, January 5, 2007
dissertation
Currently i'm in my final year of my studies which requires me to do a dissertation to complete it...after a very vast array of topics "studied" and rejected by my beloved lecturers and friends alike, i've finally decided to do my research on Web 2.0...my dissertation title (as for now) is "Building a web community for U-fm using the Web 2.0 principles"...Sounds lame huh...maybe...but i intend to build the web with web 2.0 and my research elements will be mainly on the principles of it...
i'll be explaining a little bit of web 2.0,here and there,from a layman's view and a little bit of the technical aspects of it....
sooo... i would very much like to share my experience and journey of building the web on this blog...and hey, if you have any ideas or remarks or anything,do feel free to leave your comments ya..i'll be looking foward for it....
till then, au revoir (^_^)
i'll be explaining a little bit of web 2.0,here and there,from a layman's view and a little bit of the technical aspects of it....
sooo... i would very much like to share my experience and journey of building the web on this blog...and hey, if you have any ideas or remarks or anything,do feel free to leave your comments ya..i'll be looking foward for it....
till then, au revoir (^_^)
Thursday, January 4, 2007
ubuntu
a friend of mine introduced to me an open source operating system couple of months back...being a typical "malaysian", i was a bit reluctant and repulsive towards it..it took some convincing and a whole lot of assurance before i finally did make the quantum leap in migrating to ubuntu.
heyyy...what do you know...it wasnt bad at all...i would say that it is more fun and satisfying (by a tenth fold) by using ubuntu...it gives you the the ultimate satisfaction and the edge for you to really learn about your computers rather than just chewing whatever that is provided to ( + the satisfaction of not being cheated by Microsoft ;p )
ubuntu( an african words which means "humanity to others" ) is built with both professional and community support is based upon the ubuntu philosophy : that software should be available free of charge, that software tools should be usable by people in their local language and despite any disabilities, and that people should have the freedom to customise and alter their software in whatever way they see fit.
interesting isnt' it...even the philosophy, foundation and the ideas is sooo honorable...
you can get ubuntu from various sources on the net for free and, you're not gonna believe this, they will even send the ubuntu cd's for free right at your doorstep...amazing says you..well maybe there are certain people who really would like the world to be a better place...
sooo what say you....maybe it's time to change
lol (^_^)
heyyy...what do you know...it wasnt bad at all...i would say that it is more fun and satisfying (by a tenth fold) by using ubuntu...it gives you the the ultimate satisfaction and the edge for you to really learn about your computers rather than just chewing whatever that is provided to ( + the satisfaction of not being cheated by Microsoft ;p )
ubuntu( an african words which means "humanity to others" ) is built with both professional and community support is based upon the ubuntu philosophy : that software should be available free of charge, that software tools should be usable by people in their local language and despite any disabilities, and that people should have the freedom to customise and alter their software in whatever way they see fit.
interesting isnt' it...even the philosophy, foundation and the ideas is sooo honorable...
you can get ubuntu from various sources on the net for free and, you're not gonna believe this, they will even send the ubuntu cd's for free right at your doorstep...amazing says you..well maybe there are certain people who really would like the world to be a better place...
sooo what say you....maybe it's time to change
lol (^_^)
Tuesday, January 2, 2007
XOOPS
XOOPS, acronym for eXtensible Object Oriented Portal System, is a CMS that runs on Apache, mySQL and PHP (+ your OS,of course..daa..)
It is a portal development tools and best of all it is open source, which means "free" hurraaah. It is supported and moven by XOOPS International and a strong community support worldwide be it Malaysia, Canada, Japan and
etc.
Try it..i found it to be most useful, easy and interesting...Plus, it is free..so no harm's done... Till then...
Au revoir,
It is a portal development tools and best of all it is open source, which means "free" hurraaah. It is supported and moven by XOOPS International and a strong community support worldwide be it Malaysia, Canada, Japan and
etc.
Try it..i found it to be most useful, easy and interesting...Plus, it is free..so no harm's done... Till then...
Au revoir,
my Japanese name
My Japanese name is Ryunosuke Funakoshi.
Take The Original Japanese Name Generator by Shu today!
Created with Rum and Monkey's Name Generator Generator.
Found this website that claims to generate your name based on your Roman written name that you provide (duhh). Anyhow, seems a bit fun aint' it..hahahh..a friend said that my name sounds a bit like a japanese gay dude...heheh..goo "Ryunosuke Funakoshi"
Subscribe to:
Posts (Atom)