Wednesday, September 18, 2013

Remote Access to Android Phone from Desktop using 3CX Remote Android App through USB.

Steps :- 
Root your phone. [Optional]
Install  3CX DroidDesktop3CX Remote Android Desktop [For using all features of this app, rooting your Android is necessary.]

Monday, August 26, 2013

Office2003 Silent install command

setup.exe /qb+ /l* %temp%\office11.txt COMPANYNAME="Northwind Ltd"
This command line customizes Setup in the following ways:
  • Setup does not prompt the user for information, but displays progress indicators and a completion message when it installs Office (/qb+). To disable message, use /qb-.
  • Windows Installer logs all information and any error messages (/l*) for Setup.exe to the file C:\Documents and Settings\<Username>\Local Settings\Temp\Office11.txt.
  • Setup sets the default organization name to Northwind Ltd.
  • Because no custom INI or MST file is specified, Setup installs the same Office features that it would if the user clicked Typical Install in the Setup user interface.
Similar command may work for Office 2007/2010/2013.

Monday, January 14, 2013

Tutorial : Starting Off with Python and Pyglet


Hi,

Configuring python with Pyglet is very easy. Many of you might be wondering, why I have chosen Pyglet over Pygame. I have done a significant research around this, what I found that the people are increasingly accepting pyglet over pygame due to many of its benefits. StackExchange is one the most reputed dev forum, people there are recommending pyglet over pygame.
http://stackoverflow.com/questions/370680/differences-between-python-game-libraries-pygame-and-pyglet
http://stackoverflow.com/questions/1260108/start-with-pyglet-or-pygame.