Wednesday, March 28, 2007

Tuesday, March 27, 2007

Tuesday, March 20, 2007

Windows Vista

The Windows Vista Business operating system is designed to meet the needs of business organizations of all sizes. For small businesses, Windows Vista Business will help keep PCs running smoothly and more securely so you will be less reliant on dedicated IT support. For larger organizations, Windows Vista Business provides dramatic new infrastructure improvements, enabling your IT staff to spend less time focused on the day-to-day maintenance of PCs and more time adding strategic value to your organization.

Features :
1. More manageable, reliable, and secure

For businesses of any size, Windows Vista Business is designed to allow your IT department to configure users' systems so that they can log onto their PCs as standard users instead of as administrators. Windows Vista Business enables the use of standard user accounts without the compatibility and usability issues that could occur in previous versions of Windows. This new capability significantly reduces the likelihood of a malicious attack causing damage to your organization's PCs.

2. Easier, faster access to information
Windows Vista Business has a new user interface, named Windows Aero, which is designed to deliver new levels of efficiency for any business user. This new interface makes it easy to navigate through the operating system and from application to application.
Also, Windows Vista Business makes it easier than ever to manage huge volumes of business documents. By integrating search throughout the operating system and providing new ways to organize files, Windows Vista Business helps you quickly find exactly what you are looking for.

3. More mobile and better connected
Windows Vista Business is designed to help you easily and quickly connect with your organization, your customers, and your partners, whether you are in the office or on the road. Windows Vista Business includes all of the essential infrastructure required to more securely connect you to your business information whether you are sitting at your desk, working at home, connected to a WiFi hotspot, or even if you are using your cell phone to connect to the Internet.

Windows Vista Minimum Supported System Requirements:
Processor 800 MHz 32-bit (x86) or 64-bit (x64) processor1
System Memory 512 MB
GPU SVGA (800x600)
Graphics Memory -
HDD 20 GB
HDD Free Space 15 GB
Optical Drive CD-ROM drive2
Audio
Internet
1 Processor speed is specified as the nominal operational processor frequency for the device. Some processors have power management which allows the processor to run at a lower rate to save power.
2 The CD-ROM may be external (not integral, not built into the system).
Recommended system requirements for Windows Vista Business
1 GHz 32-bit (x86) or 64-bit (x64) processor1
1 GB of system memory
40 GB hard drive with at least 15 GB of available space
Support for DirectX 9 graphics with:
WDDM Driver
128 MB of graphics memory (minimum)2
Pixel Shader 2.0 in hardware
32 bits per pixel
DVD-ROM drive3
Audio output
Internet access (fees may apply)

Which country is this????










Friday, March 16, 2007

SIMPLE WATER ART

















Gudhi Padwyachya Hardik Shubhechya..!!!!

DEAR FRIENDS,

Wish you all a very Happy Gudi Padwa !!!!!!!!!!!!!!!!!!!!!!!!!!!


Have a Great Year ahead ............... !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!





Thursday, March 15, 2007

19-January-2038 will suddenly become 13-December-1901

hi friends,

Year 2038..Again the replica of Y2K
Note: This is just for FYI only, Please Don't try this. This is true and if you do this then your network based applications will not work.
The Year 2038 Problem
Test it now.
steps...

  • 1. login to yahoo messenger
    2. send instant message to anyone - fine its working...
    3. now, change ur system date to 19-Jan-2038, 03:14:07 AM or above
    4. Confirm weather ur date is changed
    5. again send instant message to anyone...

Your YM crahes....
* * * YES ALL NETWORK BASED APPLICATION WILL NOT WORK NOW * * *

Why.....
What is it?


*
*
Starting at GMT 03:14:07, Tuesday, January 19, 2038, It is expected to see lots of systems around the world breaking magnificently: satellites falling out of orbit, massive power outages (like the 2003 North American blackout), hospital life support system failures, phone system interruptions, banking errors, etc. One second after this critical second, many of these systems will have wildly inaccurate date settings, producing all kinds of unpredictable consequences. In short, many of the dire predictions for the year 2000 are much more likely to actually occur in the year
In the first month of the year 2038 C.E. many computers will encounter a date-related bug in their operating systems and/or in the applications they run. This can result in incorrect and wildly inaccurate dates being reported by the operating system and/or applications. The effect of this bug is hard to predict, because many applications are not prepared for the resulting "skip" in reported time anywhere from 1901 to a "broken record" repeat of the reported time at the second the bug occurs. Also, may make some small adjustment to the actual time the bug expresses itself. This bug to cause serious problems on many platforms, especially Unix and Unix-like platforms, because these systems will "run out of time".

What causes it?

Time_t is a data type used by C and C++ programs to represent dates and times internally. (Windows programmers out there might also recognize it as the basis for the CTime and CTimeSpan classes in MFC.)

time_t is actually just an integer, a whole number, that counts the number of seconds since January 1, 1970 at 12:00 AM Greenwich Mean Time. A time_t value of 0 would be 12:00:00 AM (exactly midnight) 1-Jan-1970, a time_t value of 1 would be 12:00:01 AM (one second after midnight) 1-Jan-1970, etc.. some example times and their exact time_t representations:
Date & time time_t representation
1-Jan-1970, 12:00:00 AM GMT 0
1-Jan-1970, 12:01:00 AM GMT 60
1-Jan-1970, 01:00:00 AM GMT 3 600
2-Jan-1970, 12:00:00 AM GMT 86 400
1-Jan-1971, 12:00:00 AM GMT 31 536 000
1-Jan-1972, 12:00:00 AM GMT 63 072 000
1-Jan-2038, 12:00:00 AM GMT 2 145 916 800
19-Jan-2038, 03:14:07 AM GMT 2 147 483 647

By the year 2038, the time_t representation for the current time will be over 2 140 000 000. And that's the problem. A modern 32-bit computer stores a "signed integer" data type, such as time_t, in 32 bits. The first of these bits is used for the positive/negative sign of the integer, while the remaining 31 bits are used to store the number itself.
The highest number these 31 data bits can store works out to exactly 2 147 483 647. A time_t value of this exact number, 2 147 483 647, represents January 19, 2038, at 7 seconds past 3:14 AM Greenwich Mean Time. So, at 3:14:07 AM GMT on that fateful day, every time_t used in a 32-bit C or C++ program will reach its upper limit.
One second later, on 19-January-2038 at 3:14:08 AM GMT, disaster strikes. When a signed integer reaches its maximum value and then gets incremented, it wraps around to its lowest possible negative value.
This means a 32-bit signed integer, such as a time_t, set to its maximum value of 2 147 483 647 and then incremented by 1, will become -2 147 483 648.
Note that "-" sign at the beginning of this large number. A time_t value of -2 147 483 648 would represent December 13, 1901 at 8:45:52 PM GMT.

So, if all goes normally, 19-January-2038 will suddenly become 13-December-1901 in every time_t across the globe, and every date calculation based on this figure will go haywire. And it gets worse.

Most of the support functions that use the time_t data type cannot handle negative time_t values at all. They simply fail and return an error code.

Wednesday, March 14, 2007

Good Morning With Flowers







C-DAC GET TOGETHER PHOTOS






Hi Friends,
I was not come becuase of some problems.
I missed c-dac get together party.