// Convert mjd to/from Month, Day, Year,
function MJDtoYMD (mjd_in)
{
var year;
var month;
var day;
var hour;
var jd;
var jdi;
var jdf
var l;
var n;
// Julian day
jd = Math.floor (mjd_in) + 2400000.5;
// Integer Julian day
jdi = Math.floor (jd);
// Fractional part of day
jdf = jd - jdi + 0.5;
// Really the next calendar day?
if (jdf >= 1.0) {
jdf = jdf - 1.0;
jdi = jdi + 1;
}
hour = jdf * 24.0;
l = jdi + 68569;
n = Math.floor (4 * l / 146097);
l = Math.floor (l) - Math.floor ((146097 * n + 3) / 4);
year = Math.floor (4000 * (l + 1) / 1461001);
l = l - (Math.floor (1461 * year / 4)) + 31;
month = Math.floor (80 * l / 2447);
day = l - Math.floor (2447 * month / 80);
l = Math.floor (month / 11);
month = Math.floor (month + 2 - 12 * l);
year = Math.floor (100 * (n - 49) + year + l);
if (month < 10)
month = "0" + month;
if (day < 10)
day = "0" + day;
//year = year - 1900;
return (new Array (year, month, day));
}
Wednesday, September 18, 2013
Monday, February 06, 2012
List of DOS commands
How to get list of DOS commands?
In command prompt execute the 'help' command, you will get it.
C:\TechQues>help
In command prompt execute the 'help' command, you will get it.
C:\TechQues>help
C:\TechQues>help
ASSOC Displays or modifies file extension associations.
ATTRIB Displays or changes file attributes.
BREAK Sets or clears extended CTRL+C checking.
BCDEDIT Sets properties in boot database to control boot loading.
CACLS Displays or modifies access control lists (ACLs) of files.
CALL Calls one batch program from another.
CD Displays the name of or changes the current directory.
CHCP Displays or sets the active code page number.
CHDIR Displays the name of or changes the current directory.
CHKDSK Checks a disk and displays a status report.
CHKNTFS Displays or modifies the checking of disk at boot time.
CLS Clears the screen.
CMD Starts a new instance of the Windows command interpreter.
COLOR Sets the default console foreground and background colors.
COMP Compares the contents of two files or sets of files.
COMPACT Displays or alters the compression of files on NTFS partitions.
CONVERT Converts FAT volumes to NTFS. You cannot convert the
current drive.
COPY Copies one or more files to another location.
DATE Displays or sets the date.
DEL Deletes one or more files.
DIR Displays a list of files and subdirectories in a directory.
DISKCOMP Compares the contents of two floppy disks.
DISKCOPY Copies the contents of one floppy disk to another.
DISKPART Displays or configures Disk Partition properties.
DOSKEY Edits command lines, recalls Windows commands, and
creates macros.
DRIVERQUERY Displays current device driver status and properties.
ECHO Displays messages, or turns command echoing on or off.
ENDLOCAL Ends localization of environment changes in a batch file.
ERASE Deletes one or more files.
EXIT Quits the CMD.EXE program (command interpreter).
FC Compares two files or sets of files, and displays the
differences between them.
FIND Searches for a text string in a file or files.
FINDSTR Searches for strings in files.
FOR Runs a specified command for each file in a set of files.
FORMAT Formats a disk for use with Windows.
FSUTIL Displays or configures the file system properties.
FTYPE Displays or modifies file types used in file extension
associations.
GOTO Directs the Windows command interpreter to a labeled line in
a batch program.
GPRESULT Displays Group Policy information for machine or user.
GRAFTABL Enables Windows to display an extended character set in
graphics mode.
HELP Provides Help information for Windows commands.
ICACLS Display, modify, backup, or restore ACLs for files and
directories.
IF Performs conditional processing in batch programs.
LABEL Creates, changes, or deletes the volume label of a disk.
MD Creates a directory.
MKDIR Creates a directory.
MKLINK Creates Symbolic Links and Hard Links
MODE Configures a system device.
MORE Displays output one screen at a time.
MOVE Moves one or more files from one directory to another
directory.
OPENFILES Displays files opened by remote users for a file share.
PATH Displays or sets a search path for executable files.
PAUSE Suspends processing of a batch file and displays a message.
POPD Restores the previous value of the current directory saved by
PUSHD.
PRINT Prints a text file.
PROMPT Changes the Windows command prompt.
PUSHD Saves the current directory then changes it.
RD Removes a directory.
RECOVER Recovers readable information from a bad or defective disk.
REM Records comments (remarks) in batch files or CONFIG.SYS.
REN Renames a file or files.
RENAME Renames a file or files.
REPLACE Replaces files.
RMDIR Removes a directory.
ROBOCOPY Advanced utility to copy files and directory trees
SET Displays, sets, or removes Windows environment variables.
SETLOCAL Begins localization of environment changes in a batch file.
SC Displays or configures services (background processes).
SCHTASKS Schedules commands and programs to run on a computer.
SHIFT Shifts the position of replaceable parameters in batch files.
SHUTDOWN Allows proper local or remote shutdown of machine.
SORT Sorts input.
START Starts a separate window to run a specified program or command.
SUBST Associates a path with a drive letter.
SYSTEMINFO Displays machine specific properties and configuration.
TASKLIST Displays all currently running tasks including services.
TASKKILL Kill or stop a running process or application.
TIME Displays or sets the system time.
TITLE Sets the window title for a CMD.EXE session.
TREE Graphically displays the directory structure of a drive or
path.
TYPE Displays the contents of a text file.
VER Displays the Windows version.
VERIFY Tells Windows whether to verify that your files are written
correctly to a disk.
VOL Displays a disk volume label and serial number.
XCOPY Copies files and directory trees.
WMIC Displays WMI information inside interactive command shell.
Sunday, February 05, 2012
Solution for 'This virtual machine appears to be in use'
VMWare Workstation
Some time if you shutdown the VMWare Workstation improper, you will get 'This virtual machine appears to be in use' error message at the time of next boot. To resolve this issue follow this instruction.
Simply go to the folder where we have placed the physical files for the specific virtual machine and just delete the folders which are ending with "*.vmx.lck" and you are done.
Monday, January 30, 2012
Convert Date to MJD format
unsigned short int VN_ConvertDate_to_MJD(unsigned short int ui16Day, unsigned short int ui16Month, unsigned short int ui16Year)
{
if(ui16Month<3)
{
--ui16Year;
ui16Month+=12;
}
ui16Year+=4800;
ui16Month-=3;
return (ui16Year*365) +(ui16Year/4) + (30*ui16Month) +(ui16Month*3+2) / 5 + ui16Day -
7265/*32083 - 24817*/;
}
MJD - Modified Julian Date.
Friday, January 27, 2012
Segmentation violation & Bus error
Explain the meaning of "Segmentation violation".
A segmentation violation usually indicates an attempt to access memory which doesn't even exist.
What is "Bus error"?
A bus error indicates an attempt to access memory in an illegal way,perhaps due to an unaligned pointer.
Tuesday, January 17, 2012
Resolving warning: cast to pointer from integer of different size
'cast to pointer from integer of different size' This warning message will come while converting in to 64 bit from 32bit..
void *ptr = (void *)myVal;
This declaration gives ' cast to pointer from integer of different size ' warning..
intptr_t or uintptr_t are preferred to resolve this issue.
void *ptr = (void *)(intptr_t) myVal; // This declaration will avoid the warning Msg.
void *ptr = (void *)myVal;
This declaration gives ' cast to pointer from integer of different size ' warning..
intptr_t or uintptr_t are preferred to resolve this issue.
void *ptr = (void *)(intptr_t) myVal; // This declaration will avoid the warning Msg.
Monday, January 16, 2012
Resolving Warning: warning: deprecated conversion from string constant to ‘char*’
char *s = "hello";
This declaration will give the below warning message
warning: deprecated conversion from string constant to ‘char*’
To resolve this use declaration as follows,
char *s = (char *) "hello";
Sunday, January 15, 2012
Little endian to big endian
//2-byte number
int SHORT_little_endian_to_big_endian( int i)
{
return (( i>>8)&0xff)+((i<<8)&0xff00);
}
//4-byte number
int INT_little_endian_To_big_endian(int i)
{
return((i&0xff)<<24)+((i&0xff00)<<8)+((i&0xff0000)>>8)+((i>>24)&0xff);
}
int SHORT_little_endian_to_big_endian( int i)
{
return (( i>>8)&0xff)+((i<<8)&0xff00);
}
//4-byte number
int INT_little_endian_To_big_endian(int i)
{
return((i&0xff)<<24)+((i&0xff00)<<8)+((i&0xff0000)>>8)+((i>>24)&0xff);
}
Difference between memcpy and memmove
memmove offers guaranteed behavior if the source and destination arguments overlap. memcpy makes no such guarantee, and may therefore be more efficiently implementable. When in doubt, it's safer to use memmove.
Thursday, November 10, 2011
Constant Pointers & Pointer to Constant
1) Constant Pointers : These type of pointers are the one which cannot change address they are pointing to. This means that suppose there is a pointer which points to a variable (or stores the address of that variable). Now if we try to point the pointer to some other variable (or try to make the pointer store address of some other variable), then constant pointers are incapable of this.
A constant pointer is declared as : 'int *const ptr' ( the location of 'const' make the pointer 'ptr' as constant pointer)
2) Pointer to Constant : These type of pointers are the one which cannot change the value they are pointing to. This means they cannot change the value of the variable whose address they are holding.
A pointer to a constant is declared as : 'const int *ptr' (the location of 'const' makes the pointer 'ptr' as a pointer to constant.
Thursday, September 29, 2011
Linux Command - How to find a file
find -name test.cpp
This will searh test.cpp in the current folder and its sub directories.
find . -name foo\*bar
This will search from the current directory down for foo*bar (that is, any filename that begins with foo and ends with bar).
Thursday, August 04, 2011
How to increase Hard disk size in VMWare Virtual machine
How to add new hard disk / Increasing hard disk size in VM Ware virtual machine.
Here is the link to know,
Monday, November 06, 2006
C program to count the number of bits set in an unsigned integer
/*
Program to count no. of bits in an unsigned integer
*/
#include
#include
void main( void )
{
unsigned int a = 15;
int count = 0;
while( a )
{
++count;
a = a & ( a - 1 );
}
clrscr();
printf( "Count is %d\n", count );
getch();
}
Program to count no. of bits in an unsigned integer
*/
#include
#include
void main( void )
{
unsigned int a = 15;
int count = 0;
while( a )
{
++count;
a = a & ( a - 1 );
}
clrscr();
printf( "Count is %d\n", count );
getch();
}
Thursday, June 15, 2006
BITWISE OPERATOINS
Refer:
http://graphics.stanford.edu/~seander/bithacks.html
http://graphics.stanford.edu/~seander/bithacks.html
Register Storage Class
register is used to define local variables that should be stored in a register instead of RAM. This means that the variable has a maximum size equal to the register size (usually one word) and cant have the unary '&' operator applied to it (as it does not have a memory location).
{
register int Miles;
}
Register should only be used for variables that require quick access - such as counters. It should also be noted that defining 'register' goes not mean that the variable will be stored in a register. It means that it MIGHT be stored in a register - depending on hardware and implimentation restrictions.
Duplicate Characters deletion - String Operation
String Operation
Duplicate Characters deletion
Duplicate Characters deletion
/* Name: Duplicate Characters deletion Copyright: StarSoft Author: Vijayakumar M Date: 28/04/06 11:14 Description: To Remove Duplicate characters in a string. */ #include#include #include main() { char string[40]="thats goods super star"; char *p= string; int i, j; printf( "%s\n", string ); for( i=0;i { for( j=i+1; j { if( string[i]==string[j]) *(p+j)='*'; } } printf( "%s\n", string ); for( i=0;i { if( string[i] != '*' ) printf( "%c", string[i] ); } getch(); }
Which elements are stored in stack?
In computer science, a stack is a temporary abstract data type and data structure based on the principle of Last In First Out (LIFO).
Stacks are very widely and extensively used in modern computer systems, and are usually implemented through a combination of hardware and software features.
A stack-based computer system is one that stores temporary information primarily in stacks, rather than hardware CPU registers (a register-based computer system).
how to find give no is 2 power of n
f=( ( no & ( no-1 ) ) == 0 )
if( f == 1)
printf( "The Given Number is Power of %d", no );
else
printf( "The Given Number is not Power of %d", no );
if( f == 1)
printf( "The Given Number is Power of %d", no );
else
printf( "The Given Number is not Power of %d", no );
BITWISE OPERATIONS
#define SET_BIT( _X_, _NO_ ) ( 1<<(_X_-1)) _NO_
#define RESET_BIT( _X_, _NO_ ) ~( ( 1<<(_X_-1) ) ) & _NO_
#define SWAP_BIT( _X_, _NO_ ) ( 1<<(_X_-1)) ^ _NO_
#define RESET_BIT( _X_, _NO_ ) ~( ( 1<<(_X_-1) ) ) & _NO_
#define SWAP_BIT( _X_, _NO_ ) ( 1<<(_X_-1)) ^ _NO_
Standards Other than 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. ISDBIntegrated Services Digital Broadcasting (ISDB) is the digital television (DTV) and digital audio broadcasting (DAB) format that Japan has created toallow 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.
Subscribe to:
Posts (Atom)