Showing posts with label Technology. Show all posts
Showing posts with label Technology. Show all posts

Wednesday, June 30, 2010

Check the entered year is Leap year or not in c# console

open a console application project in c# language in your editor and just paste the following code in your class's brackets -

static void Main(string[] args)
{
try
{
Console.Write("Please Enter the Year: ");
int year = int.Parse(Console.ReadLine());
if ((year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0))
{ Console.WriteLine("The year {0}, is a Leap Year", year);
}
else
{
Console.WriteLine("The year {0}, is not a Leap Year", year);
} }
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
Console.ReadLine(); }

Output is-

Tuesday, October 27, 2009

Extract anything anywhere || Use PeaZip

Hello everyone

Today I want to share one more useful software name PeaZip

PeaZip is an open source file and archive manager. It's freeware and free of charge for any use.

peaZip is a more powerful tool it is able to extract most of archive formats both from windows and Unix operation system. It supports many formats like 7Z, TAR, RAR, ZIP and also his own format PAQ/LPAQ.

When you install PeaZip it shows the type of format in dialog.

Please see image below –

PeaZip can extract most of archive formats both from Windows and Unix worlds, ranging from mainstream 7Z, RAR, TAR and ZIP to experimental ones like PAQ/LPAQ family, currently the most powerful compressor available.

Also show a dialog with read/write support types.

See in image below-

For archive creation, PeaZip supports a wide range of compression and encryption standard, from fastest to most powerful ones, and allows to export job definition as scripts to bridge the gap between GUI and console applications, and let the user pick the best of the two worlds.

PeaZip has secure deletion feature, can verify file checksum and hash, and supports multiple strong encryption standards, optionally using two factor authentications (password and key file) for increased security:

  • 7Z's AES256 encryption
  • ZIP WinZip's AE encryption based on AES256 (and Zip Crypto for legacy compatibility); can decrypt PKZip's AES encryption
  • FreeARC's ARC: AES256, Blowfish, Twofish256 and Serpent256 - this format is also capable to generate recovery records to protect data against corruption
  • PEA: AES256 EAX authenticated encryption

Download PeaZip


Thursday, October 15, 2009

Multiple Application’s setup on one place || use getvolery

Hi friends...

I was surfing on Google and was trying to find an installer for some windows utility and software on net, and found a new and unique type of site, name - http://getvolery.com/

getvolery is a smart installer creator tool, which provides the list of software, generally used.

Just check the checkbox in front of the individual software to install them. Then it creates an installer including the selected applications and you shall be able to install them.It installs selected applications one by one. It’s really amazing and one must try it.


Here is the look of the site's home page

You can also suggest this site about which software is the most required. So further it can add that software in its own list.

Here is the required form

Reblog this post [with Zemanta]