Vote 1

How To Speed Up Opening Linux Terminal & Running Linux Commands

October 10th, 2008

Most techies and developer prefer using the terminal on Linux. If you are like me a heavy command line interface (cli) user than you will find these simple tips useful.

Read more (127 words) »

Vote 4

Security Review of Online Feed Aggregators with Password Protected Feed

October 8th, 2008

In my previous article I have already discussed about how to use the Online Feed Aggregators to view the password protected Feed with username and password. Now the next thing that should come to your mind is how do they actually fair in maintaining the security of your account. To understand that I studied and tested a number of online feed aggregators on the known protocols such as HTTP basic, HTTP digest, Integrated Windows and HTTPS SSL protection. So let us know about these protocols first. Then it will be better to understand what suits you more.
Read more (453 words) »

Vote 3

Simple Thoughts Subscribe By Email Now Active

October 8th, 2008

Simple Thoughts now has a working Subscribe-by-email facility. Unlike many other blogs which provide this facility, we do not use FeedBurner. Instead we host it with PHPList, a popular mailing list software.

If you like my articles, please consider subscribing to the blog using RSS feed or email. You can subscribve using the Email by submitting your email in the Subscribe by Email box on the top right corner of this blog. You can subscribe to get daily mail, weekly mail with all the articles for the week or even once a month email.

Vote 2

How To Access Password Protected RSS Feed From Popular Online Feed Aggregators

October 7th, 2008

Online feed readers are the latest evolutions in the world of information and news sources. It is developing by leaps and bounds and that day isn't far off when online feed readers will be as essential as your newspaper or careergraphs. Keeping that in mind, online feed aggreators are implementing new characteristics on this wonderful service and password protection is just one step close to the security that you need from them.

Read more (396 words) »

Vote 2

Linux: How To Make RAID-1 Disks Independently Bootable

October 5th, 2008

The best part of Linux (imho) is the ability to replicate not only the operating system or the data but also the boot loader. This allows you to have two identical disks running RAID-1, each of which are independently bootable, should one of them fail. You can also add spare disks to the RAID-1 array to automatically use it to reconstruct the RAID-1 array when one of the RAID-1 disks fail. However configuring it may not always be the simplest. Let's see if I can simplify it for you.

The boot partition (primary partition) can be RAID-0 or RAID-1. Only a fool would configure the boot device as RAID-0 and double the chance of failure. However when you configure it as RAID-1, you are making your boot device 100% redundant and hence robust.

BTW: Can you boot on a RAID-1 drive in Windows? … NO.

Read more (496 words) »

Vote 4

18 Ways To Become a Real $ Millionaire in a Virtual World - Second Life

October 3rd, 2008

What do you mean by a virtual world? A place where you can come and work and chat and play and leave. What if I tell you about a whole new world where you can live, breathe, play, sing, dance, do every damn thing you can do in this (sorry?) life of yours? And what if "I make you an offer that you can't refuse?" No I am no Godfather. Today, let me take you to a virtual world where you can be a REAL millionaire! The world I am talking of, may seem nonexistent unless you bump into your Second Life. You can earn real money from a virtual world and loads of it. You can be a millionaire in less than 2 years! You can earn hefty amount just by spending some time in the internet and you can even rule a world (let it be virtual for now) of your own and make your own rules. All of them and more @ Second life. And here I am with not 1 or even 2 but 18 unique ways to guide you to a hefty check in US dollars through Second life. So start living now! Read more (2025 words) »

Vote 7

A Comprehensive Guide to Secure Your Wireless Network

September 26th, 2008

Gone are the days of wired networking devices. Wireless networking is the future. It is the gen-x mode of communication. But as is said, "With great power comes great responsibility" so it has some real security loopholes too. You can never imagine how stealthily your wireless network can be hacked and it can have tremendous implications not only on your security but also your personal safety and peace. What if some terrorist uses your open wireless network to send terror emails or bomb threats? You will soon have cops swarming on your doorstep. Try convincing them that it was not you. At the least your whole life will be turned topsy-turvy and you will be in headlines all over the country and I assure you it won't be complimentary. So let me tell you some important but easy ways to protect your wireless network:
Read more (1001 words) »

Vote 6

Java: How To Use Enum in Switch

September 23rd, 2008

When using enums in a switch, it is almost natural to assume they will be used like a regular switch. Unfortunately to accomodate enums, Java had to enhance its specification and enums in switch behave differently than regular switch statements in two significant and non-trivial ways.

Read more (197 words) »

Vote 5

Discussion & Examples: Java enums versus public static final

September 23rd, 2008

Should we use to represent a constant String such as browser's user agent or simply use public static final String as before?
Read more (446 words) »

Vote 5

Java: How To Get Stacktrace of Any Local / Remote Java Process

September 23rd, 2008

You may run Java processes in the foreground or in many cases they may be run using cron jobs or during system startup, as background processes. How can you find out stacktraces of any running Java process? But first how can you even know their name & process id's?
Read more (312 words) »