Monday, June 28, 2010

ICS on windows 7

if you want to share internet connection using ICS from windows 7 to another windows 7 ICS connection, you maybe receive ip 192.168.137.1 is being used by other connection.

you can change this ip anyway into other address to prevent conflict. there are some registry hack available from this location

http://www.windowsnetworking.com/kbase/WindowsTips/WindowsVista/RegistryTips/RegistryHacks/ChangingtheDefaultIPAddressofICSinVista.html

HKEY_LOCAL_MACHINE\SYSTEM\ControlSet\Services\SharedAccess\Parameters
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SharedAccess\Parameters
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\SharedAccess\Parameters


change into different IP address to enable internet sharing from WLan to Ethernet. this works for me! :)

Friday, June 18, 2010

Amazing : google image search with colors



recently i've search BMW in Google and trying to 'suka-suka' find BMW car image. There are something new i think, Now you can search images in their color. for example this image i click orange. all result is in orange. Wow. that's amazing for me.

Sis blog

Today, i found something interesting. come visit

http://st0ry2ku.blogspot.com

i think this is nice website. congratulation to kak anis. :)

Monday, June 14, 2010

yum and apt at RH9 machine

after a few headache i found this to install yum and apt in my rh9 machine


download and install rpm here and it's works!

lastly with root# type yum update and tadaa.. :)

SQL Inner Join

SELECT t1.username AS Pengguna, t2.username AS Upline
FROM reseller t1
INNER JOIN reseller t2 ON t2.user_id = t1.parentID
LIMIT 0 , 30


SELECT column_list FROM table_A A INNER JOIN table_A B ON A.column_name1 = B.column_name2…. WHERE row conditions
Related Posts Plugin for WordPress, Blogger...