Posts

Showing posts from December, 2010

Book - Mantavya Gajjar

Image
I am going to post a book of my blogs soon, I am in procedure to prepare a book using http://blogbooker.com/. Click here to download the sample pages.

News: 24th December 2010

Image
Monthly News letter for the month of December - 2010 Merry X'mas to all of you, from Mantavya Gajjar. Merry X'mas Most Viewed Article: Business API - Really required in OpenERP ? - 500 Times Most viewed Blogs of last 7 months Thanks to all of you to give the great responce to the http://mantavyagajjar.in. now i am going to start a new website which will integrated. The new website will be hosted on the http://mantavya.in. the purpose of this website is to short the url. New Website Launched

Post blog entries from your Ubuntu desktop

Image
Your author is not a particular fan of blogs, believing that it is better to be an idiot in silence than to write a blog and prove it to the world. However, he realizes he is in the minority, as do the GNOME developers (probably), who provide an excellent piece of software to create quick blog entries straight from your Ubuntu desktop. Use Synaptic to search for and install gnome-blog. Once installed, right-click a blank spot on the panel and select Add to panel. Then select Blog Entry Poster from the list. One time configuration ! The program is designed to work with blogs hosted at Blogger.com, Advogato, or Live Journal. alternatively, you can configure the software to work with MovableType, Pyblosxon or WordPress installations on your own website. When it runs for the first time, the program will ask you to setup your blog details. You’ll need to set the blog type in the Blog Type dropdown list, and then set your username and password (if you’re attempting to acce...

Create website or email links that automatically install software

Image
Sometimes you’re trying to help somebody fix a problem you’ll have to tell them how to install software. Yet for some Ubuntu newbies even this can be confusing. The solution is to create a “software install” hyper link within a web page (such as a forum posting), new email window or Pidgin message window. To do this, simply click the “create link” button on the web page or within the email (the precise name of this will vary depending on the software/website used) and then type apt:package-name in the URL field, replacing package name with the precise name of the package as listed in Synaptic. Assist to Install Cheese through Email And now it will be easy for John to install cheese, just by clicking the on the link.

Variable Argument in Methods

I am sure you have worked with many programming languages, and you likes many features of that programming languages, like easy scalability of code, flexibility of language, powerfully api libraries, etc... I am going to show one feature provided in many languages called variable argument supported in function definition. Code Example in VB.NET: http://bpaste.net/show/11977/ Code Example in C and C++ http://bpaste.net/show/11979/ Code Example in Java http://bpaste.net/show/11980/ Code Example in Python http://bpaste.net/show/11981/ Code Example in C#.NET http://bpaste.net/show/11982/ Code Example in PHP http://bpaste.net/show/11983/

Shrink or enlarge images at the command line !!

GIMP can do just about anything to an image but it can be time-consuming to fire it up just to resize an image. For ultra-quick manipulation, consider Imagemagick, a command-line image manipulation program. It doesn’t come installed by default and you’ll need to install it via Synaptic (search for and install imagemagick). Once installed, the convert command should be used with the addition of the -resize command option. For example, the following will shrink filename.bmp to half its original size: $ convert -resize 50% filename.bmp filename_small.bmp The following will enlarge filename.bmp to twice its original size (although there will be an obvious degradation in quality): $ convert -resize 200% filename.bmp filename_larger.bmp