Friday, October 28, 2011

Aptitude Questions 3


Aptitude questions to sharpen your minds... every week. Enjoy this week's questions. Answers coming friday!


Aptitude answers 2

Here are the answers to the last week's aptitude questions. Read more for the answers. Refer here for the corresponding questions!!!


Saturday, October 22, 2011

Aptitude Questions 2

Aptitude questions to sharpen your minds... every week. Enjoy this week's questions. Answers coming friday!


Aptitude Answers 1

Here are the answers to the last week's aptitude questions. Read more for the answers. Refer here for the corresponding questions!!!


Monday, October 17, 2011

Keyboard Shortcuts


Here's an attempt at listing out all the keyboard shortcuts that are available for different applications over various platforms. Feel free to comment in the ones I've missed out.:


Saturday, October 15, 2011

Aptitude Questions 1

Aptitude questions to sharpen your minds... every week. Enjoy this week's questions. Answers coming friday!


Friday, October 14, 2011

Validation in windows application in C#

Whenever we create an application, some forms need specific entries. For example, phone numbers must be all numeric, whilst email ID must have a @ symbol followed somewhere by a . symbol. For these purposes, no automatic validators are provided for windows applications. Hence, we must manually give validations to these fields.

There are many logical routes to valication. The following is the validation code that I follow. Hope it helps you too. In case of any doubts or suggestions, kindly feel free to comment or mail me at nardz07@gmail.com.


Ten Important Tips For Java Users

There are some protocols that when followed differentiate a good program from a mediocre program. Here are some tips that will help you become good Java programmers:


Thursday, October 13, 2011

how to ensure ranking in sql

Whilst using mysql, I was inspired by our faculty to figure out how to assign ranks to the entries. A little bit of internet browsing, a lot of head scratching, and some innovatively redundant use of table manipulation later, I succeeded.

Point to be noted, we MUST not use the 'rank' structure of transact-sql. Instead we use and manipulate simple sql queries.

Here is the tutorial, please contact me at nardz07@gmail.com



Tuesday, October 11, 2011

Add a Splash Screen to Your C# Windows Application Project


How to create a splash screen in C#

Tutorial: How to create a splash screen in C#
Time: 5 minutes
Experience needed: Basic understanding of Threads and the flow of applications

In this tutorial you will learn how to create an application that displays a splash form for x seconds.
The benefits for this are: if you have a form that takes a while to load up (for insastance one that does a lot of Database interaction) the user will sit there wondering why your app is not open yet.

With a splash screen you can give the user something pretty to look at to keep them happy.

Monday, October 10, 2011

Steve's Job Gets Over :(

Steve Jobs, co-founder and the former CEO of the world reputed computer firm Apple (AAPL) bids a good bye to his followers at the age of 56. The mastermind behind Apple's iPhone, iPad, iPod, iMac and iTunes, has died in California after a lifely battle against his pancreatic cancer. 

Broadcom wireless 802.11 Installing Wi-fi Broadcom 802.11 driver for fedora 15

As mentioned earlier, I recently installed fedora 15 on my system. Unfortunately, the packages did not include the drivers to my Wireless LAN card. Hence I was unable to use the newly introduced wi-fi feature of fedora. Many of my friends, I presume must have faced the same problem, so here is a little trick I used to get my wi-fi on!

Please mail me at nardz07@gmail.com with any suggestions or doubts.


Windows 8 Developer Pack Preview - The Very First Look

The next generation of Microsoft Windows - Windows 8 is here. Here is a preview of what it holds for the users. Mail me at jeanparker1207@gmail.com with your suggestions for more technological postings. :)


Friday, October 7, 2011

Connecting a Database II

In the last edition I showed how to define a connection string. i.e. How to tell the application the type and location of said database. Here I shall detail how to use said string in the coding. Please feel free to comment on my posts with your doubts and suggestions or mail me at nardz07@gmail.com.


Tuesday, October 4, 2011

Grub manipulation

Recently, I installed Fedora 15 on my laptop alongside Windows 7. The Grub screen was as provided by fedora, and I wanted to make some changes to it to suit my needs and pleasure.

Here I have discussed how I went about it.

It should be noted that my methods work in fedora, but should work on other linux distibutions as well with a few minor changes. In case of any doubts or suggestions, please contact me at nardz07@gmail.com.


Saturday, October 1, 2011

Connecting a database I

Any application that needs to store or retrieve data, needs to use databases. Since we developers make the application layer, it is for us to connect the application to the database and to provide the queries to affect the data.

Here is what little insight i can provide into the databases and their connecting schema. For any suggestions or doubts, please contact me at nardz07@gmail.com.

First and foremost, databases may be operating system dependent, like MS ACCESS and SQL SERVER, or independent like ORACLE or MYSQL.


In this post, let us simply look at these databases and how to define a generic database connection using the MS Visual Studio tools.