Category: Uncategorized

  • Android 1.5 SDK Released !

    Google has released Android 1.5 SDK. This release is based on the cupcake branch in Android’s repository. Cupcake was a modified version of the SDK written by a group of independent developers and functioned better than the 1.0 SDK. Android 1.5 SDK also has other enchancements like a better profiler. For a list of all…

  • C# and SQL Server

    In this article, I will discuss how to communicate with SQL Server using C#. You can use this code for communicating with other databases too but the connection string may vary. SQL Server supports SQL queries and stored procedure, and we will take a look at how to run both of them. I will assume that…

  • A program for mob world players

    For those who play mob world on facebook, you know how annoying it is to have to add people to your friends so you can add them to your mob. Here is a short program that you can use to add people using their IDs and not have to add them through FB. You can…

  • Gmail Autopilot

    For all those anti-social and hate replying to email, Google has release a new update to gmail (basically living your life for you). Now Gmail analyses the way you reply to your email and generates replies by itself. You can, of course, change its settings also if it’s a bit off.  If you believed the…

  • Scrolling a datagrid to a specific row (or to the bottom)

    There are 2 ways you can do this. In the first method, you can derive a class from datagrid and use the protected method GetVScroll(). In the second method, you can just do this : [csharp]this.dataGridView1.CurrentCell = this.dataGridView1[0, rowIndex];[/csharp] If you want to scroll to the bottom then do this : [csharp]this.dataGridView1.CurrentCell = this.dataGridView1[0, this.dataGridView.Rows.count…

  • How can we become better Muslims and better people

    A lot of times, during the sermon before Friday prayer, I have heard the khateeb say “become better Muslims”, “pray 5 times a day”. Rarely do I find them saying “doing this will make you a better Muslim”.  Praying 5 times a day is definitely up there but Islam is not limited to that, is…

  • Oaths in Islam

    I have heard a lot of Muslims say “I swear on my children that .. ” or ” I swear on my mother .. “. According to Islam, it is unlawful to take an oath by anyone except Allah (SWT). You can only swear by Allah.  So, if you want to take an oath by…

  • A dua to improve your health

    My brother found this dua in the book “Children around the prophet” my brother found this dua.

  • RSS Feeds for this blog

    For those who want RSS feeds on from this blog, you can click on the big orange icon on the right. It is an RSS feed icon. Here’s a picture of it: Of course, I will probably end up changing the theme of this blog again and then this post will become invalid.

  • Java 101 – Lesson 4 – Variables

    We know how to compile and run a basic Java application. We also know the basic structure of code for Java. If you don’t know what I am talking about, please refer to the previous articles in the Java 101 series (lessons 1, 2 and 3). In this article, we will take a look at…