WordPress User is Online or Offline

There are few wordpress plugin available for user online / offline status… but my requirement is different. I want a plugin that can show user status on profile page to inform other users about availability… http://wordpress.org/extend/plugins/member-status/ http://wordpress.org/extend/plugins/im-online/ http://wordpress.org/extend/plugins/who-is-online/ http://wordpress.org/extend/plugins/wp-useronline/ http://wordpress.org/extend/plugins/mingle-users-online/ wordpress_users_online.php This file or function allows wordpress developer to integrate user online / offline status … Read more

Install Etherpad on SUSE Linux

Collaborate on documents in really real-time on SUSE Linux EtherPad is the first web-based word processor that allows people to work together in really real-time. All editing of the document is instantly visible on the screens of all participating users, enabling new and productive ways to collaborate on text documents. Etherpad is useful for meeting … Read more

Google Books Downloader

Book Search works just like web search. Try a search on Google Books or on Google.com. When we find a book with content that contains a match for your search terms, we’ll link to it in your search results. Google Books Downloader is a software that allows you to save these books in PDF, JPEG … Read more

VMGParser

VMG2TXT converts Nokia VMG message file to text file. VMG2TXT module is used for reading and parsing Nokia’s VMG message file format. Sample Nokia VMG File Output of VMGParser using PHP based tool 😉 Planning for mobile messages compatibility 😉 Next may be Nokia to Android message conversion.

SVNLabs Tools

HTML2CSV converts html/xhtml to csv/xls. VMG2TXT converts Nokia VMG message file to text file. VCard Parser Extract information from VCard. HTML2RSS converts html/xhtml to rss/xml feed. Amazon S3 upload file to Amazon S3 Bucket. CSV Mapper Import CSV file after adjusting Columns. JavaScript Twitter Bird a2zVideoAPI – search videos with page link EBook Search Engine … Read more

Red5 figure out audio/video out of sync issue

I had worked Red5 WebCam application that lets users to record video clips from their webcams. The users could talk while they record clips. I was using PHP with Zend Gdata for uploading recorded video clips to YouTube. But I had issue in FLV files generated by Red5 server, the clip’s audio / video content … Read more

URL2Link – Detect URL and Convert to Link

URL2Link() is a function to change an email address or URL or FTP into a clickable HTML hyperlink using eregi_replace(). <?php function URL2Link($text) {   $text = eregi_replace(‘(((f|ht){1}tp://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)’,     '<a href=”\\1″>\\1</a>’, $text);   $text = eregi_replace(‘([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&//=]+)’,     ’\\1<a href=”http://\\2″>\\2</a>’, $text);   $text = eregi_replace(‘([_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3})’,     '<a href=”mailto:\\1″>\\1</a>’, $text);       return $text; } // Usage // Email address example $text = “[email protected]”; … Read more

Amazon SES – Emails In Cloud

Amazon Simple Email Service (Amazon SES) is a highly scalable and cost-effective bulk and transactional email-sending service for businesses and developers. Amazon SES eliminates the complexity and expense of building an in-house email solution or licensing, installing, and operating a third-party email service. The service integrates with other AWS services, making it easy to send … Read more

Amazon S3 Server Side Encryption (SSE)

Amazon S3 announced a new encryption feature Server Side Encryption (SSE). Amazon S3 SSE provides you the ability to encrypt data stored at rest in Amazon S3. With Amazon S3 SSE, you can encrypt data on upload simply by adding an additional request header when writing the object to Amazon S3. Decryption happens automatically when … Read more

Pretty Print JSON

We can use function json_print() to explore JSON data, since JSON has no spacing or indentation. The function json_print() make JSON data to display in the human-readable format. <?php function json_print($json) {     $result = ”;     $pos = 0;     $strLen = strlen($json);     $indentStr = ‘ ‘;     $newLine = “\n”;     $prevChar = ”;     $outOfQuotes = true;     for … Read more