Remove Banner on Your Yahoo Messenger
11:50 | Author: Unknown

Are you ever feel resentful with advertising banner when you chat with Yahoo Messenger, especially if you have internet connection with volume based, off course it can waste your cost.
Copy script below to your favourite editor

[code]

@ECHO OFF
> %TEMP%.\noYMads.reg ECHO REGEDIT4
>>%TEMP%.\noYMads.reg ECHO.
>>%TEMP%.\noYMads.reg ECHO [HKEY_CURRENT_USER\Software\Yahoo\Pager\YUrl]
>>%TEMP%.\noYMads.reg ECHO "Messenger Ad"="*"
>>%TEMP%.\noYMads.reg ECHO "Webcam Upload Ad"="*"
>>%TEMP%.\noYMads.reg ECHO "Webcam Viewer Ad"="*"
>>%TEMP%.\noYMads.reg ECHO "Webcam Viewer Ad Big"="*"
>>%TEMP%.\noYMads.reg ECHO "Webcam Viewer Ad Medium"="*"
>>%TEMP%.\noYMads.reg ECHO "Change Room Banner"="*"
>>%TEMP%.\noYMads.reg ECHO "Conf Adurl"="*"
>>%TEMP%.\noYMads.reg ECHO "Chat Adurl"="*"
>>%TEMP%.\noYMads.reg ECHO "Y Content"="*"
REGEDIT /S %TEMP%.\noYMads.reg
DEL %TEMP%.\noYMads.reg

ATTRIB -R "%PROGRAMFILES%\Yahoo!\Messenger\Cache\urls.xml"
ECHO "" >"%PROGRAMFILES%\Yahoo!\Messenger\Cache\urls.xml"

ATTRIB +R "%PROGRAMFILES%\Yahoo!\Messenger\Cache\urls.xml"

[/code]

and then save file with *.bat extension
run your *.bat file, and restart your yahoo messenger
You can see the result? yes.. advertising banner now is lost
Readmore...

Slackware Network's Configuration
11:33 | Author: Unknown

At Afternoon, i was see my friend that practice computer networking at laboratory...
With their asisstant, they must setting their PC until can connect with internet.
Oh ya.. at laboratory every pc was installed with linux operating system and use slackware..(Slackware is my Favourite Distro)
That is very funny,When i look they feel confused to configure it. (My Friend's majority is windows user)
Ok.. now i just want to share, how to configure network in slackware, so that your computer can connect to internet..

type netconfig at console, and will be appear screen with text based, Only write each of parameter, like IP Address , Gateway , and DNS Server.
beside of that, i have another way to set configutration, use your favourite editor to open file at /etc/rc.drc.inet1.conf
For example, nano /etc/rc.d/rc.inet1.conf
fill IP Address,netmask, and gateway appropiate with interface used.
After that, we must edit file /etc/resolv.conf and put your dns address there. in my computer is nameserver 192.168.1.1
If you have been finish with step by step above, you must restart restart your interface with command /etc/rc.d/rc.inet1 restart
Ok now ping google.com,any reply ? if nothing happen you must configure your pc again, check if there fault with you configuration..
Ok let's try guys
Readmore...

How To Tweak Your Firefox
11:09 | Author: Unknown

I wanna Share about how to tweak your mozilla firefox..
after find the solution with uncle google..
Ok let's do it..

the first i try to download mozilla firefox add ons, it's name are Addblock Plus and Tweak Network, You can download Addblock Plus here and Tweak Network here
Ok Guy's ..
You can try it and feel the change
Readmore...

Setting Thunderbird with Gmail
08:48 | Author: Unknown

casually, i wanna use thunderbird as mail client, but i have some problem
after i asked with uncle google i have solution to solve the problem.
Ok this is the way..

The first you must setting your gmail account, enable your POP email
And then in thunderbird at column POP fill pop.gmail.com with port 995, you must use SSL.
For Outgoing you must fill smtp.gmail.com with port 587 and use TLS
Now Try to download your email inbox...
Readmore...

Make System Tray Application in Delphi
Make System Tray Application in delphi,
Make System Tray Application in Delphi in order to run background or placed on system tray is very easy. We Only need one API function that is Shell_NotifyIcon,the Application will be run as system tray with there function.
The First at private you must declaration
private
{ Private declarations }
systemTrayIcon:TNotifyIconData;

And Then, make a form, on event on Create add script below this :

with systemTrayIcon do
begin
cbSize := Sizeof(systemTrayIcon);
Wnd:=Handle;
uID := 0;
uFlags := NIF_MESSAGE + NIF_ICON + NIF_TIP;
uCallbackMessage := WM_USER;
hIcon := Application.Icon.Handle;
StrCopy(szTip,'Aplikasi System Tray');
End;
Shell_NotifyIcon(NIM_ADD,@systemTrayIcon);

explanation script above are :
Wnd is parameter from systemTrayIcon that use for appear icon on system tray and receive message information from system.
hIcon is parameter for appear icon on system tray
szTip is parameter for appear icon tips on system tray
And then the most important part is Shell_NotifyIcon(NIM_ADD,@systemTrayIcon); that useful to place application on system tray

To make our application disable on taskbar we must add some line in project part :
begin
Application.Initialize;
Application.ShowMainForm := false; //tambahkan baris ini
Application.CreateForm(TForm1, Form1);
Application.Run;
end.


If you want to disable icon when you close yout application you must add some code below on even OnDestroy at Form1
Shell_NotifyIcon(NIM_DELETE,@systemTrayIcon);

After you finished, now we make our application can run normally or foreground, we can make a procedure,
Example i have declaration procedure gotoTray at private section

procedure gotoTray(pesan :TMessage);
message WM_USER;

if you have been declaration, we must make implementation of procedure gotoTray.
This script below is implementation of procedure gotoTray

procedure TForm1.gotoTray(pesan :TMessage);
begin
case pesan.LParam of
WM_LBUTTONDOWN:
begin
ShowMessage('Form ditampilkan');
Form1.Show;
end;
WM_RBUTTONDOWN:
begin
ShowMessage('Form Menuju System Tray');
Form1.Hide;
end;
end;
end;

Ok, You can try it,
Good Luck Guy's

Readmore...

Template in C++
04:18 | Author: Unknown

The First i have a question, what is template ? My Opinion template use when we would make a function that not use primitive data type.
For Example we want to make tukar function use primitive data type :

void tukar (int a, int b) {
int temp = a;
a = b;
b = temp;
}

If we use function above, so we only can input each of parameter with integer data type only.
What must we do if we want to make each of parameter can input with many kind of data type ?? The Solution is Use Template


This is Function that using template
template <class T>
void tukar (T a, T b) {
T temp = a;
a = b;
b = temp;
}
Now tukar function can be used with many kind of data type, like integer, float, character, and etc.

Readmore...