Senior Technical Lead / Architect Opening in Kochi

Posted on February 25th, 2010 by Shibu Basheer

We are seeking a technical lead / architect to join our growing team in Kochi. The applicant should have several years of experience in developing enterprise level web applications and should have experience in all levels of development life cycle.

For more details please see: Senior Technical Lead / Architect Opening in Kochi, Kerala

  • Share/Save/Bookmark

Create video gallery thumbnails using FFmpeg with multiple file format support for input video files

Posted on January 15th, 2010 by Murali Krishnan

Using FFmpeg , a complete, cross-platform solution to record, convert and stream audio and video , Cabot developed a unique solution to create Video Gallery using PHP and JQuery.

Features of this tool are:

1. Users can directly upload the video files to a folder on the web server using any FTP client software

2.  Thumbnails for the video files are automatically generated by the tool by reading the video file format.

3. It converts video files  of type s.avi, .wmv, .mov, .qt, mpg or .rm into flv.

A demo of this video gallery can be found here:

Minimum Requirements

1. The tool works only on a Dedicated Hosting Server in Linux

2. FFMPEG should be installed and configured.

FFMPEG can be downloaded and installed from here.

Source Code:

Download the source code from here.

  • Share/Save/Bookmark

Development of Enterprise CRM system with Flex, CodeIgnitor, and Ilog Elixir

Posted on January 12th, 2010 by Shibu Basheer

Cabot Solutions was approached by Sunny South Insulators, to build an integrated web based CRM application to help manage their client contacts, project estimates, scheduling, invoices and calendar modules.   The application was to assist the firm to effectively streamline and manage its business processes.

  • Manage client contacts and maintain a log of all communications with the client.
  • Easily Generate Estimates in printable PDF format.
  • Create, edit and print Work Orders.
  • Issue Invoices after work is completed.
  • Update status of projects.
  • Visually Schedule engineers to Projects in a calendar.
  • Web based software with Rich User Interface for a Desktop like software experience

Read the rest of this entry »

  • Share/Save/Bookmark

Displaying Math equations using MathML in mediawiki

Posted on December 28th, 2009 by Mahesh Murali

Mathematical Markup Language (MathML) describes mathematical notations and capturing both its structure and content. The objective of mathml is to integrate mathematical formulae into World Wide Web documents.
For examples of mathematical expressions and the syntax for writing them within a wiki refer
http://meta.wikimedia.org/wiki/Help:Formula
Example:<math>$ {x}^{2}+4x+4=0$</math> represents the expression

To setup mathml support in mediawiki, we have to install several modules in the server.  Please find the steps to make it work below.

1.Setup Tex proccessing in LocalSettings.php
Open the file LocalSettings.php and enable tex processing. This can be achieved by setting $wgUseTeX = true;

2. Install texvc
The mediawiki application by default comes with the source code for texvc in /mediawiki/math. To install this, we can follow any one of the options below.

  • Download the precompiled binary from http://prdownloads.sourceforge.net/wikipedia/texvc-linux-x86-20040107.tar.gz?download to the math folder.
  • Self compilation and copy to math folder.
    I prefer the (i) method. Also please make sure that the texvc binary file in the math folder has executable permission.

3. Install TeTeX (http://www.tug.org/teTeX/)

4. Install Ghostscript (http://www.ghostscript.com/)

5. Install ImageMagick (http://www.imagemagick.org/)

6. Install AMS fonts (http://www.ams.org)

Please make sure that latex, dvips, convert and gs are installed.
To know whether these modules are installed and the path, use the commands “which latex” , “which dvips” etc in the console.

7. Install libstdc++5(sudo apt-get install libstdc++5)

8. Please make sure the Ghostscript and ImageMagick do not have conflicting versions.

9. PNG files for mathematical expressions are stored in the math directory. Please check the subdirectories math and tmp in the upload subdirectory to see their contents. Sometimes if the
conversion process ceases or has any issue in certain stage, files of that type may remain in the tmp directory only.

  • Share/Save/Bookmark

Seasons Greetings from the team at Cabot Solutions!

Posted on December 23rd, 2009 by Shibu Basheer

The team at Cabot Solutions would like wish all our clients, well wishers and vendors a very happy holiday season.

  • Share/Save/Bookmark

Generating string combinations for a url shortening service using PHP

Posted on December 23rd, 2009 by Mahesh Murali

Url shortening is a technique in which a larger URL is made available by accessing a relatively shorter URL.  This is useful for sending links with via email, twitter,  sms etc.  Popular URL shortening services include tinyurl.com and bit.ly.

Usually, the long web page url is mapped to a randomly generated string-numeric combination such that by typing the
url http://shorteningservice.com/randomstring will redirect to the original long url.

I have made the generation of random strings in a uniform way using php by using the characters A to Z.
This is explained below (Usage Examples: 2). This method provides the user a chance to predict the next short url.

Usage Examples:

1. Permutation of strings:

permutations(”ABCDEF”, 3) will return an array of 130 string sequences from ABC to DEF.
This is the permutation of 6 charecters taken 3 at a time. Here ABC and ACB are taken as seperate entities.

2. Permutation with repetation:

That is a sequence of the form AAA, AAB, …., ZZZ, AAAA,AAAB,AAAC,…ZZZZ,…..,ZZZZZZZZZZ…ZZ.
I can show you a function that returns the next element of the above series when the current string is given.

Php Code:

<?php
//function to get the array permutation string sequences
function stringPermute($orgString,$num){
    $last = substr($orgString, 0, $num);
    $result = array();
    while($last != substr($orgString,  -$num)){
        $result[] = $last;
        $last = getNextString($orgString,$last,$num-1);
    }
    $result[] = $last;
    return $result;
}
//Function to get the next string sequence in order
function getNextString($fullString,$string,$char){
    if($string{$char} <> lastElement($fullString)){
        $string{$char} = $fullString{strpos($fullString,$string{$char})+1};
        return $string;
    }else{
        $string = change($string,$fullString{0},$char);
        return getNextString($fullString,$string,$char-1);
    }
}

function lastElement($string){
    return $string{strlen($string)-1};
}

function change($string,$char,$start = 0,$end = 0){
    if($end == 0)
        $end = strlen($string)-1;
    for($i=$start;$i<=$end;$i++){
        $string{$i} = $char;
    }
    return $string;
}
?>
  • Share/Save/Bookmark

Cabot Solutions at NASSCOM Product Conclave

Posted on October 27th, 2009 by Murali Krishnan

Cabot Solutions is represented by Shibu and Venkatesh at the NASSCOM Product Conclave and we will be available for discussions with potential clients on the 26th and 27th. Call us at 9995978616 or 9446481825 to schedule a chat.

  • Share/Save/Bookmark

New Joomla site developed for backyardaquaponics.com

Posted on October 15th, 2009 by Shibu Basheer

Cabot recently developed a Joomla based solution for backyardaquaponics.com. Backyard Aquaponics Pty Ltd, is a leading edge aquaponics company based in Western Australia. Originally started by Joel Malcolm as a means to provide information packages to people, who were interested in learning more about the subject, the company has now grown and changed quite a bit since those early days.  Aquaponics is the symbiotic cultivation of plants and aquatic animals in a recirculating environment.

The new site was developed in Joomla and has the following features:

  • Innovative new design
  • Search Engine Friendly URLs
  • E-commerce shopping cart
  • RSS integration with PhpBB Forum
Backyard Aquaponics Screenshot

Backyard Aquaponics Screenshot

  • Share/Save/Bookmark

Drupal Based Mortgage News Aggregation Site with Social Networking Features

Posted on October 13th, 2009 by Shibu Basheer

Cabot Solutions is pleased to announce the release of Mortgagespeak.com which is the latest product developed for a Marketing firm located in Chicago.   The primary stakeholder of the site Greg Janecka had conceived the idea of developing a news and networking site that catered to the needs of the Mortgage industry in the United States.

Cabot proposed to develop the site using Drupal which brought many features out of the box including Blogs, memberships, Polls, and a powerful admin area to manage content of the site.   Some of the innovative features we built are:

1. RSS aggregation into Drupal.
2. Facebook connect allowing facebook users to login and participate easily.
3. Display latest twitter post via twitter API.
4. Highly interactive home page news listing using JQuery.
5. RSS feeds for different news categories.
6. Newsletters.
7. Configurable Advertisement module to display sponsorships.

See the site here.

Mortgage Speak Screenshot

Mortgage Speak Screenshot

  • Share/Save/Bookmark

Cabot Solutions Joins the Constant Contact Business Partner Program

Posted on October 4th, 2009 by Shibu Basheer

Cochin, India – 1st October 2009 – Cabot Solutions today announced it has joined the Constant Contact Business Partner Program to provide its clients with easy-to-use email marketing and online survey products to help them build strong, lasting customer relationships. Constant Contact®, Inc. is a leading provider of email marketing and online survey tools for small organizations.

“Our customers are always looking for effective ways to deepen and strengthen relationships with their customers as an efficient means of growing their businesses,” said  Shibu Basheer. “Constant Contact’s customer communication tools give our clients a valuable addition to our core services. Because of the tools’ ease-of-use and affordability, the Constant Contact partner program was a great solution to meet our clients’ marketing needs.”

“Email marketing and online surveys are proven tools that help small businesses connect with customers and build successful relationships with them,” said Len Bruskiewitz, senior director, Partner Programs, Constant Contact. “We are pleased that Cabot Solutions chose Constant Contact to provide its clients with our online marketing tools, and we look forward to working together to help Cabot Solutions be an even bigger factor in its customers’ successes”

As a Constant Contact Business Partner, Cabot Solutions is able to provide its clients with email marketing and online survey capabilities. With Constant Contact Email Marketing, Cabot Solutions’s clients can quickly and easily create professional-looking emails, manage email contact lists, measure email campaign results from clicks to open rates, and review who joined an email list. With Constant Contact Online Survey, Cabot Solutions’s clients have an easy-to-use tool to gather feedback that will help them meet customer needs, generate new ideas, and grow their business or organization. The tools will also help Cabot Solutions’s clients analyze responses quickly, create targeted email lists based on survey responses, take action, and follow-up with relevant email communications.

About Constant Contact, Inc.
With more than 300,000 customers Constant Contact, Inc. is a leading provider of email marketing and online survey tools for small businesses, non-profits, and member associations.  Founded in 1995, Constant Contact helps small organizations grow stronger customer relationships by delivering professional, low cost, easy- to-use online tools backed with award-winning support, education and personal coaching. Constant Contact is a publicly traded company (Nasdaq:CTCT) with offices located in Waltham, Massachusetts and Loveland, Colorado. To learn more, please visit www.ConstantContact.com or call 781-472-8100.

Constant Contact and the Constant Contact Logo are registered trademarks of Constant Contact, Inc. All Constant Contact product names and other brand names mentioned herein are trademarks or registered trademarks of Constant Contact, Inc. All other company and product names may be trademarks or service marks of their respective owners.

  • Share/Save/Bookmark