Posts

Loop360 Capital Of Texas Hwy

Image
I've used 3dr solo to shot this video. You can buy it in amazon here . 

Windows Phone 7 Developer Launch and WIN a free phone.

Image
Check out the Windows Phone 7 Developer Launch website to learn more about getting a Windows Phone 7 for free. Click the image below to see details:

Sending SMS using HQSMS API in asp.net

To use HQSMS API you need to 1st Register at HQSMS. They will provide you some credit for testing your app. But to send more sms you have to buy credit from them. Below is the code for sending SMS to a user in asp.net. here I'm using System.Net library from asp.net and then obviously HQSMS APIs. protected void sendButton_Click(object sender, EventArgs e)         {             HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(new Uri("http://www.hqsms.com/api/send.do?username=username&password=md5_password&to=to_phoneNo&message=Please Work!&from=HQRoute"));             HttpWebResponse response = (HttpWebResponse)req.GetResponse();             System.IO.StreamReader strreader = new System.IO.StreamReader(response.GetResponseStream());             string deliver = strreader.ReadToEnd(); ...

Artwork using GIMP 2.6

Image
                                                                                             Artwork using GIMP 2.6 Recently I have found out that GIMP  can be very powerful tool as a image editor if you can config it correctly. My friend Dennis helped to set it up for me. And he also taught me how to do the artworks. In GIMP you can add patterns, tools, textures, Photoshop brushes, plugins, scripts, symbols and can do some really exclusive artworks as I did one above. Give it a try if you want to enjoy your own private time :)

Yet Another new site for Undergrad Catalog, 2010 - UT Arlington

Image
Undergraduate Catalog 2010-2011 This website is developed with asp.net 3.5, SQL Server 2008, XML, some simple JQuery animations and some AJAX functionalities. All the contents are dynamically loaded in each page either from database tables or from XML file.

Uncharted 2 : Among Thieves

Finished playing Uncharted: Drake's Fortune , and now playing Uncharted 2: Among Thieves . Just watch the official trailer of Uncharted 2: Among Thieves and I'm more than 100% sure that you are going to be intrigued by this game too :P

Recipe for Biriyani

Image
  - This Recipe is taken from Siddiqua Kabir's Recipe Book (English version)

Quazi Mainul Hasan - Portfolio

Image
Launching Quazi Mainul Hasan :)

html to Word Document Converter using Open XML SDK

By using Open XML SDK 2.0 you can generate the word document without using Interop dlls and without the requirement to install Office in your web server. I have done it successfully with the help of my colleagure Yesha Gupta and below is the code to generate the word document from the html code. GenerateWordDocument() public void generateWordDocument() { WindowsIdentity currentUserIdentity = (WindowsIdentity)User.Identity; WindowsImpersonationContext impersonationContext = currentUserIdentity.Impersonate(); try { string fileName = currentUserIdentity.Name.Replace( "\\", " _ ") + " _Report.docx "; string filePath = " ~/assets/Templates/ " + fileName; File.Copy(Server.MapPath(" ~/assets/Templates/WordDocTemplate.docx "), Server.MapPath(filePath)); DataView view = frontMatterSqlDataSource.Select(DataSourceSelectArguments.Empty) as DataView; string pageTitle = " "; using (WordprocessingDocument wordDoc = Wordprocessing...

YAGO - Yet Another Great Ontology

For more information on yago , please visit: www.mpi-inf.mpg.de/yago-naga/yago/

Computing Semantic Relatedness using Wikipedia based Explicit Semantic Analysis (ESA)

Different Types of Soccer Stretching Exercise

Image

Veterans Affairs at UTA

Veterans Affairs at UTA is now live at Veterans Affairs at UTA . Yet another successful deployment by our small team of members in Student Enrollment Services Department.

Windows® 7 Launch Party @ Sunny's Place

Image
I will be hosting Windows 7 Launch party on the 22nd of Oct, 2009. To know details of my party please go to this link . Today I got the package from Microsoft for hosting the launch party. I have also posted some pics of my package :P. I will try to make some good food for my attendees. Hopefully the party will be a good one. :)

Google Chrome Book - Chrome Rocks!

Image
Please take your time and read the Google Chrome Book . Google really Rocks!

Google Chrome Themes

Image
Late Night - Google Chrome Theme Tried Google Chrome Beta 3.0 and liked it again for it's fast loading and launching :) In beta it is possible to add themes of your choice. For all themes, goto Google Chrome Themes Gallery .

towards better world - Will Code for GREEN

Image
A t the eleventh hour I submitted an entry in Will Code for GREEN which is the contest provided by Imagine Cup 2010. It's my bad luck that I received an email from imagine cup just 2 days before the deadline to submit the entry. The requirement was that you have to use Bing API to built a website in any of 2 categories, which are "Global Economy" and "Global Ecology". I read the whole documentation for Bing API and just created a website in Global Economy category and named it towards Better World . The website has some really simple functions. It is available here . The voting period is also over :(. So I didn't get any vote :(. The final result will be published on the 20th of Aug, 2009 and you can view the result here .

Bing and Gnomedex - Will Code for Green! Developer Contest

Bing and Gnomedex - Will Code for Green! Developer Contest

animated Contact form using jQuery

Image
Today I have created a contact form for myself using jQuery, php, css and core html. This contact form was supposed to be created for someone else :( But, unfortunately I'm using this for myself now :P. You can check it out here . For the source code you can contact me through my contact form :)

cloud computing

It's been a while I have heard about cloud computing. I think in future there will be of no necessity to maintain one's own server to conduct business in IT field. Cloud computing is a computing system by which it is possible to maintain data and applications in a remote servers in internet. You don't need to establish your own internal server to start a IT business. The servers will be maintained by the big companies like Google, Microsoft, amazon and others. All you need to do is just to pay them monthly to create and maintain your servers. You don't need extra manpower and resources to maintain your server. You can invest that time to boost up your business. These servers can also grow dynamically. In addition, you can stop your service with them at any time, which is very good in a sense that you don't need to worry about selling your servers when you plan to stop your business. you can read more here .