Home Email RSS Feed

Archive for July, 2006

Tips to speed up bittorrent download

If you've enjoyed this post, you might want to subscribe my RSS feed or email alerts for free updates. Thanks for visiting and come back again.

Tips to tweak the torrent client to speed up the torrent download rate.

The new file sharing protocol bittorrent has changed everything when it comes to file sharing. It is a great platform for downloading large files. Sharing of files is so simple and file types are not restricted which include movies, iso images and MP3. Even illegal file sharing is getting popular because of this.

The Bittorrent system can be slow at times so let us tweak bittorrent sharing program a little bit.

Read the rest of this entry »

1 Star2 Stars3 Stars4 Stars5 Stars (11 votes, average: 4 out of 5)

Oracle server uptime


The following query works well with Oracle 9i. i’ve no clue whether this works with others too or not.

SELECT to_char(startup_time,'DD-MON-YYYY HH24:MI:SS') "DB Startup Time"
FROM sys.v_$instance;

even there is possiblity to find the startup time by quering logon_time from sys.v_$session view.

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)

Forcing Outlook to send emails only with subject


It’s important and mandatory that the emails we send have relevant “subject” to it. At times, we miss to mention the subject and send email. Please follow the simple steps below which will prevent you from sending a mail without a subject. This should/must be configured in office mailbox in which subjects are more crucial.

Here are the below steps

Read the rest of this entry »

1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 4.5 out of 5)

Remove Ads in Yahoo Messenger

Tweak to remove the annoying ads that is displayed in Yahoo Messenger chat and web-cam window.

If you have installed the newest Yahoo Messenger 8.0 or Yahoo Messenger 7.5 you’ll notice a very annoying animated ad at the bottom of the main window, web-cam & chatroom etc.. I’m sure it’s hard to resist to Yahoo’s update dialogs. Here is a simple how-to tutorial to remove ads in Yahoo Messenger 7.5 and higher.

Save the below code with .reg extension

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Yahoo\Pager\YUrl]
“Messenger Ad”=”*”
“Webcam Upload Ad”=”*”
“Webcam Viewer Ad”=”*”
“Webcam Viewer Ad Bid”=”*”
“Webcam Viewer Ad Medium”=”*”
“Change Room Banner”=”*”
“Conf Adurl”=”*”
“Chat Adurl”=”*”

Read the rest of this entry »

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)

Oracle Hidden Parameters

Oracle initialization or INIT.ORA parameters with an underscore in front are hidden or unsupported parameters. One can get a list of all hidden parameters by executing this query:

select *
from SYS.X$KSPPI
where substr(KSPPINM,1,1) = '_';

The following query displays parameter names with their current value:

select a.ksppinm "Parameter", b.ksppstvl "Session Value", c.ksppstvl "Instance Value"
from x$ksppi a, x$ksppcv b, x$ksppsv c
where a.indx = b.indx and a.indx = c.indx
and substr(ksppinm,1,1)='_'
order by a.ksppinm;
Read the rest of this entry »

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)

Rename Oracle database username

No, this is not available till now in Oracle & been noted down as a enhancement request.

Still here is a workaround way of doing that:

  1. Do a user-level export of user A
  2. create new user B
  3. import system/manager from user=A to user=B
  4. drop user A

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)

Testing Web-based Applications

A comprehensive list of widely used common testing methodology for web application.

If you’re a web application developer / tester, I would suggest you to follow these testing methodology. These testing methodology is derived in a way that it removes the defect/bugs and gives the end user effective way to use the application. In the web world, how the content looks has more precedence over the application. So it is must that developer take care of this requirement too. There might-be few other methodology too which I would have left here. If so let me know.

Web-based applications present us new challenges, these challenges include:
Read the rest of this entry »

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
« Previous entries · Next entries »