Friday, April 11, 2014

How to backup Filezilla Site Manager settings info here

FOR XP
COPY documents and settings/profile/application data/filezilla/sitemanager.xml to your newly installed directory.


FOR WINDOWS 7 
Open Run Command and type
 %AppData%
find 'FileZilla' folder. In that copy sitemanager.xml to your newly installed directory.

Monday, January 30, 2012

T20 International Aus Vs Ind


1st T20I: Australia v India at Sydney
Feb 1, 2012 (19:35 local | 08:35 GMT | 14:05 IST)


2nd T20I: Australia v India at Melbourne
Feb 3, 2012 (19:35 local | 08:35 GMT | 14:05 IST)

Friday, January 27, 2012

Deadlock


Deadlock is a situation in which the processes waits for the other resource which is occupied by another process in a loop for example take processes P1 and P2 and resources R1 and R2 in the deadlock condition

        P1 -R1 waits for R2
        P2 -R2 waits for R1 

so both processes waits for the other resource to get free for their complete operation.
In such cases - One can avoid deadlocks by following methods

1) Prevention
2) Detection
3) Avoidance
4) Recovery

Digial Modulation Technique


There are three predominant methods of encoding a transmission signal. Amplitude modulation (AM), and frequency modulation (FM) are both analog modulation schemes. The third method is digital modulation.
In Digital modulation followings are involved. They are,

  • QPSK( Quadrature Phase Shift Keying )DVB-S
  • QAM( Qudrature Amplitude Modulation )CABLE
  • COFDM( Coded Orthogonal Frequency Division Mulitiplexing )DVB-T

Standards Otherthan DVB


1. ATSC
The Advanced Television Systems Committee (ATSC) is the group that helped to develop the new digital television standard for the United States, also adopted by Canada, Mexico, and South Korea and being considered by other countries.It is intended to replace the NTSC system and produce wide screen 16:9 images up to 1920×1080 pixels in size. More than six times the display resolution of the earlier standard.
2. ISDB
Integrated Services Digital Broadcasting (ISDB) is the digital television (DTV) and digital audio broadcasting (DAB) format that Japan has created to allow radio and television stations there to convert to digital.
3. ARIB
The Association of Radio Industries and Businesses, commonly known as ARIB, is a standardization organization in Japan. ARIB is designated as the center of promotion of the efficient use of the radio spectrum and designated frequency change support agency.
4. SBTVD
Brazilian Digital Television System is a proposed digital television standard for Brazil.

What is interrupt latency?


It is the time interval between an interrupt has occurred till the time it has been serviced.

Wednesday, January 18, 2012

Java Script - Redirecting to a web page



Java Script code to redirect a web page,

<script language="JavaScript">
function move_now()
{
   window.location = 'http://www.vijaynetwork.com'
}
</script>

If you call the move_now() function from a html page,it will be redirect to the vijaynetwork.com.