Manish Pansiniya’s Blog

.NET, C#, Javascript, ASP.NET and lots more…:)

Archive for the ‘Tools’ Category

Microsoft Office 2010 ScreenShots

without comments

Written by Manish

November 14, 2009 at 8:31 am

Posted in Tools

Subsonic DAL Tutorial V. 2.0.3

without comments

Written by Manish

October 28, 2009 at 5:15 pm

Posted in .NET, Tools

Send SMS through Bluetooth or Serial Port

with one comment

Just came across one requirement of sending SMS through Bluetooth or serial port. Actually when you connect any bluetooth USB to the pc, that program should have installed the model related to Bluetooth. I got that as follow:

image

Now, Download the microsoft SMS Sender application from following URL:

http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=06A4F997-7F69-4891-8929-37B9041924A2

Run and Install it. When you run it, it will show the following screen:

image

Whatever model devices are there, it will be available for the selection. Once it is selected, write destination number and body and send the SMS. If you device ( Phone) is connected to the bluetooth, SMS will be delivered from your phone. Currently I believe only Nokia and Sony is supported by this application. I haven’t tested on other Phone.

The main thing is that, this application also support COMMAND LINE INTERFACE. So that you can use this application in your code to send the SMS through some port or bluetooth. wow!!!. Following are the command line option to send the SMS.

image

Written by Manish

June 29, 2009 at 4:56 pm

Posted in .NET, Time Saver, Tools

Tagged with , , ,

Free DNS Report

with one comment

The following site is providing free useful report for the DNS.

image

You can provide the domain name WITHOUT www to get the exact DNS report as well as MX records. Test using Yahoo.com and you will get long list of status of NS and MX of DNS :)

Written by Manish

May 23, 2009 at 4:03 pm

Posted in Manage Blog, Time Saver, Tools

Tagged with ,

How to Change Boot Menu in Vista – Edit Boot.ini,system.ini– msconfig

without comments

  • Press the Windows + R keystrokes to open the Run command.
  • Type ‘msconfig’ and click OK.
  • Click the Boot tab to make changes to the file.
  •  

    There are many other option than to change the Boot Menu.

    Written by Manish

    May 22, 2009 at 12:47 am

    100 Tools for Creativity

    without comments

    Written by Manish

    May 1, 2009 at 6:10 pm

    Posted in Personal, Time Saver, Tools

    Tagged with

    Best Freeware Page – Updated

    with 2 comments

    Written by Manish

    April 24, 2009 at 3:33 pm

    Motivational Poster – Inspirational Images with Quotes

    without comments

    Hi…just going through one site and had some pictures which i like really a lot. So just putting here…somewhat describe my current situation :)

    39f7fa0660692e1c0bd2b2eca8e47cbd_me.png image by LEITIIthz158012821.png life goes on image by klutzo0319brokenheart.jpg life quote image by erikarely

    17604-05-2009.png best life quote image by Artful_Slife-1.jpg Life Quote image by divingchix06e25547974b83ad27302a72fb71e2aacc_me.jpg image by LEITIIendingsandbeginnings.jpg Endings... image by Artful_Squote-1.jpg Me - fucked up. image by x_broken_forever_x2a9xh82.jpg Live! image by Artful_Sthlifeme.jpg life quote image by Artful_S13103-19-2009.png Life Quote image by girly_girl_graphics

    thegameoflife.png thegameoflife image by justmeeee67

     

    There are many More but this l like somewhat more…Great messages into some of them. Really good ones.

    Written by Manish

    April 19, 2009 at 1:33 am

    New Page is Added : My Bookshelf

    without comments

    I am quite interested in putting what i am reading as well as what i want to read or finished reading. There are many sites available like weRead. But currently i am just putting the list on my wordpress blog as i want everything to be organized from here :) .

    You can see those list from : Books ( My Love ) – Lists (Almost best Motivational Books until now)

    Will add more as currently feeling bit sleepy :P

    Written by Manish

    April 18, 2009 at 1:55 am

    Refactoring Tip: Extract Method

    without comments

    Refactoring code should be must part of the coding. There are many benefits to refactor your code. Some benefit you can see directly and some benefit will be seen when you get major changes from the client :) . Sometimes client gives changes and it converted to Heart Attack automatically. LOL. But if you have followed good programming practices and has coded well, you have always a gr8 day (in your project. I could not say anything about evil in your personal life :) ).

    If I start writing book then it may take 2 years to share for the refactoring the code as it may contains patterns, practices, methods, standards etc to follow…

    One of it is Extract Method. You need to extract the group of code into the understandable method. It will add bit overhead but that is negligible considering understanding and maintainability. Following is one example of Refactoring from the book. It is very basic example but you can understand the concept from the same

    image

    Written by Manish

    April 18, 2009 at 12:54 am