Sunday, April 23, 2006

Cricket Near Nabeel Street

Ya, thats really fantastic for me to play cricket with certain old guys who have high command over cricket. We are 4 fantaCis reach at nabeel home and buy a white tape to play at 12 but at noon. We started by number system as
1.nabeel
2.hasssan
3.zohaib(me)
4.boxer(arnold)(Baba)(guru of cricket) Yasir.

Nabeel played abt 5-7 mins and hassan also played same time inning. But when i came to reach at the crease Allah give too much mercy to me and i played abt min(28, 35). That is really amazing for my friends as well as for me(shocking). As i played cricket after abt 2 years. Bottomline, which i think over it last night is that, every supreme and nobel authority key is in the hands of Allah, always ask from Allah as He is the Almighty as Quran says: Qul Ho Walah o Ahad.

Saturday, April 22, 2006

Procom 2005

This is competition arranged by the FAST Karachi unit on the yearly
basis. This competition comprises of Projects, mind testing problems,
games such as Counter Strike and so on. This time a/c to my knowledge
abt 2 teams are participating from the final year of CIS dept. of NED.
2 teams are as:
Team 1: Tannu, Arshi, Raza
Team 2: Yasir 77, Salman, Sajjad CR
My warm wishes r with both teams. As the team memberz of both teams r
my BFriend so i can't support one of them. To resolve this issue i try
oldest Bimani Wala Method, means toss a coin, and the one of the team
got the desired probability but i can't share with u.

PANI PASS HO GIAA.

Farrukh as Pani lives in nazimabad near taqi hockey gnd has been passed
first time in uni history in all the paper at one attemp that is really
shows his dedication towards education keep it up! Pani. I am looking
ur bright future in the near future. In the whole scenario one of the
best thing is that he has offered BIRYANI* to all of us thats really
sound for the Biryani Lovers...... But plz all guyz and gurlz be
patience for their turn over Biryani

* Its famous dish with important ingredients as Meat and Rice and
nothing else heheheh.

Wednesday, April 19, 2006

DVD Burner

After a long time i got the dvd comprises of Vs 2005, MSDN and Sql Server 2005. This is given by the struggle of Faisal Whiz . The real aim of writting this post is to ask from you what is the label of the Dvd?... Answer of this question can be somehow matched with such as samples :
VS-MSDN-SQL or VMS 2005 or something matching with it. But the label is KID, i do't know wat algorithm applied over it. But last not least its answer came to me is that... Faisal well known knick is Whiz Kid. Its labeled come from its nick.

Football Match

hmm.. at the end of the day i came across to c another match of cis vs mechanical. Guys of mechanical r not too much hungry of football, they r hungry of fight. The game played by the mechanics r not well, they played without any rules. Mechanics have good build and some sources in the politics thats why our guys r feeling somehow under pressure. Ciseans played a good game from start till end. Ciseans showed sportsman spirit as Siffat, Pani, Boxer,Razagood , Shani as gooli, and other guys played a nice game. But they fail to achieve a position in Final. They lost the game in penalty shots by 3-1. But the game goes to Ciseans. Well, keep discovering for the sake of football promotion in Pakistan. Atlast i m very much astonished to see Raza in action as he is managing some much things in his life as Football, programming and other living stuff as well.

Sunday, April 16, 2006

Click Once

Microsoft's latest attempt, .NET 2.0's ClickOnce technology, is meant to provide the benefits of HTTP-based application deployment while addressing the issues with NTD(No Touch Deployment which was issued in .NET 1.xx).
ClickOnce provides for HTTP-based application deployment of both locally installed applications which can be utilized as offiline or online and its application is on the Start menu and in the Add or Remove Programs Control Panel. And another option is online-only applications that feel like web applications in that they are only available inside the browser.
Other features such as security, authentication, file/io permission, and other permissions(Temporary Key .pfx) can be easily handled by VS2005.

Friday, April 14, 2006

Fx Cop 1.32

copy this code to VS2005 and run the program and it gives you no errors.
using System;using System.Collections.Generic;using System.IO;using System.Text;
namespace ConsoleApplication1{ public class Movie { string type; //such as drama , sport profile , film ,stage show ,theater string country; // which country does that belong string name; string artist1; string artist2; string artist3; string artist4; string code;
public Movie() { wanted_type(); wanted_country(); wanted_name(); wanted_artist1(); wanted_artist2(); wanted_artist3(); wanted_artist4(); }
public void wanted_type() { int option; Console.WriteLine("Enter type \n\t1.DRAMA\n\t2.FILM\n\t3.SPORT PROFILE\n\t4.STAGE SHOW\n\t5.THEATER\n\t0.EXIT"); option = Convert.ToInt32(Console.ReadLine()); switch (option) { case 1: gstype = "drama"; break; case 2: gstype = "film"; break; case 3: gstype = "sport_profile"; break; case 4: gstype = "stage_show"; break; case 5: gstype = "theater"; break; default: case 0: break; } } public void wanted_country() { int option; Console.WriteLine(gstype + "is \n\t1.Pakistani\n\t2.Indian\n\t3.English\n\t0.Exit"); option = Convert.ToInt32(Console.ReadLine()); switch (option) { case 1: gscountry = "pak"; break; case 2: gscountry = "ind"; break; case 3: gscountry = "eng"; break; default: case 0: break; } } public void wanted_name() { Console.WriteLine("enter the name "); gsname = Console.ReadLine(); } public void wanted_artist1() { Console.WriteLine("name of popular artist#1"); gsartist1 = Console.ReadLine(); } public void wanted_artist2() { Console.WriteLine("name of popular artist#2"); gsartist2 = Console.ReadLine(); } public void wanted_artist3() { Console.WriteLine("name of popular artist#3"); gsartist3 = Console.ReadLine(); } public void wanted_artist4() { Console.WriteLine("name of popular artist#4"); gsartist4 = Console.ReadLine(); } public string gstype { get { return type; } set { type = value; } } public string gscountry { get { return country; } set { country = value; } } public string gsname { get { return name; } set { name = value; } } public string gsartist1 { get { return artist1; } set { artist1 = value; } } public string gsartist2 { get { return artist2; } set { artist2 = value; } } public string gsartist3 { get { return artist3; } set { artist3 = value; } } public string gsartist4 { get { return artist4; } set { artist4 = value; } } public string gscode { get { return code; } set { code = value; } } } public class tester { static void Main(string[] args) { Movie m = new Movie(); m.gscode = "1111"; } }}
After running this code its go fine enough and you find no errors in it. But when you provide the .exe to the FxCop it gives you about34 messages. But do't feel hassel over this issue, these 34 message are not too much HiFi, a newcomer can easily resolves this.Lets try!.

Thursday, April 06, 2006

Get out of the Class

Well,

Today, i heard these kinds of words in urdu from the NM( Numerical Method) Ainak Wala Jin that :

Plz u can go outside of the Class

and he also take my University Card from the Beholder. How DARE he do that???

Mesothelioma
Mesothelioma