Wednesday, October 24, 2012

A humble article on .NET Encryption

Several years back, I had written a small review on a .NET Encryption library called 'XCrypt'. I have also been recommending this library to most of them in discussion forums since it has an elegant presentation and wrapper on the cryptography layer of .NET base class library. Unfortunately, the original article referred in the article has an update date of 2003 which was turning back several users. Today I saw another writer publishing an article about two additional encryption algorithms with their implementation in C#. It just struck me, why shouldn't I take a proactive stand in putting the new kid into XCrypt and giving it a new lease of life.

My first humble initiative is here (a query to CodeProject webmaster) and as per their directions, I have written the new XCrypt article as an alternative proposal to the classic legendary XCrypt. I am glad to have done a small service to the legendary encryption library of .NET.

The URL for the new article is available here. Incidentally the accompanying test application in the application turns to be one of my maiden venture in Windows forms programming. Hence do feel to share your observations, bug reports, healthy comments and constructive criticisms towards the same. Due to pressures of time, you may not be elected for a personalized response but rest assured that due diligence attention would be given your suggestion with an appropriate feasibility analysis towards incorporating the points in your note.

Tuesday, October 16, 2012

Umbrella :: Another innovative venture from OpenDNS

OpenDNS, the pioneers in protective family shield and undeniably uncrowned leaders in parental controls and fail-safe fault-free non-authoritative name resolution (DNS) services are ushering in with another innovative service 'Umbrella'.

Stay update for the release notes on Umbrella by subscribing at http://www.umbrella.com/

If you are not using OpenDNS yet, it is almost akin in writing your personally identifiable information in the notice-board of your community complex. With the amount of 'bad things' that are spread across the Internet, OpenDNS is a must for any computer -- business or personnel. You ought not go online without fortifying its perimeters with OpenDNS.

We have also emphasized this thought as part of 'Best Practices for Local Data Organization'.

Saturday, October 13, 2012

Best Practices of Local Data Organization

I was looking at a discussion forum where some one had asked about recovery of data before the hard disk is upgraded. I just thought I would share a related thought on best practices in local (private) computing practices. This can also be applied to our cloud drives like Google, Skydrive and Dropbox.

Once upon a time people used to partition hard drives into C:/ D:/ E:/ and F:/. Optionally because 32 bit computers may not be able to comfortably address larger volumes. Nowadays when you buy a computer from Bestbuy or other stores, it just comes pre-loaded with a default operating system (and I admit it would also be a defunct* operating system) along with a single drive.

*Missing security software, reduced functionality desktop office software.
I would suggest instead of scattering our data all across the computer it is better to follow unix practice in defining our custom root folder (say by username) and narrow down through the same. This way, the separation between system and our application data is distinct. This also helps achieve flexible and seamless backup besides the best data recovery in case of disasters.

An example from my local computer would be:


Besides this the following software must be installed before the computer used for anything including connecting online, playing CD/DVD or any communication of the hardware to the external world.
  1. Install your preferred Anti-Security software in case of Windows. For Ubuntu and Linux users fortify it by appropriately disabling the daemons.
  2. Scotty from WinPatrol (http://www.winpatrol.com/) is the most recommended tool to ensure no application installs or hijacks your computer settings without your knowledge.
  3. Configure your computer's DNS to route through OpenDNS. This ensure safe surfing from malware websites. You may like to refer my previous post on parental control configuration. Following is a a sample block page on my computer for a bad website suggested in Google Search results. I would also suggest a periodic review of your OpenDNS account to ensure safe surfing from your home-office network.

Saturday, October 06, 2012

A Fond Recall of C Program

I was surfing at something yesterday and had a fond recall of C Programming back in 1998 college days. Just wrote a small Hello World online, compiled it and am sharing the same as a fond memory through Gist of GitHub.


#include
main()
{
   printf("Hello World from LavanyaDeepak");
   printf("\n");
}

[Imported from Blogdrive]Online Virus Scanners

Online Virus Scanners Virus Scanners are no longer difficult to install, tedious to configure. There are easy to use Online Virus Scanne...