Very useful Skype emoticons (Additional emoticons)

  (finger)   (bandit)   (drunk)   (heidy)   (mooning) (ci)   (toivo)   (rock)   (headbang)   (bug)   (fubar)   (tmi) Share

0 Comments

Adobe Air 3 Beta for Flash Builder

Adobe released Air 3 this month. The new Flash Builder is coming with Adobe Air 3. Those who already installed Flash Builder can upgrade the Air SDK to 3. This video will help you in this case. Thanks CrosByMichaela for sharing this. Air 3 has many support for mobile development. For example, it has now [...]

0 Comments

Mr Me is totally new now

This is the 200th article of sajithmr.me So, I thought to write something special and it is regarding the new website. New theme, New WP Version, New Server,  New Logo, Mr Me is totally new   Share

3 Comments

Audio recording using Flash

Audio recording using Flash ====================== To Record voice from web we need the following thing: 1) A flash media server (eg: Adobe Media Server [paid] or Red 5 [free]) 2) Java6 3) Webserver (eg, Apache, PHP) 4) A flash client app to record voice The one I used ========= We used Red 5 Server, because [...]

5 Comments , , , ,

Find and Remove a particular folder or file in Mac/Linux

Open a Terminal, and browser to the folder we want to start recursive deletion and run the following command , for example to delete all folder named .svn find ./ -name “.svn” | xargs rm -Rf   Share

0 Comments , , , ,

QR Code Generator

A PHP based tool to generate QR Code for your website URL. http://qrcode-factory.com/ Now a days, the usage of QR code is higher and this is becoming one of the PR generating mechanisms. QR code is another kind of bar code called matrix bar code.  QR stands for Quick Reader (source: WikiPedia) The tool is [...]

0 Comments

Install FFMPEG in MAC

Install port first Run: sudo port -fvds selfupdate (to get the recent list) port search ffmpeg port variants ffmpeg sudo port install ffmpeg +gpl +lame +x264 +xvid Install java before these steps Share

0 Comments , , , ,

New URL Shortener

I recently started a new URL shortener service. If you’re bored with old short-url services, you can start using this http://zip.ms Here you can set your-own custom alias, than some random string. I used Phurl library to create this website. I have no spam guard added in the site, please be a real human, I [...]

3 Comments , , ,

Check Public IP in Unix (Linux)

Use the below code to check your public IP from your linux console. wget -q -O – checkip.dyndns.org|sed -e ‘s/.*Current IP Address: //’ -e ‘s/

1 Comments , , , , ,

getId3 – PHP library for audio contents

I recently use getId3 library to manipulate audio files from PHP. It is very accurate than FFMPEG. For example, FFMPEG is not helpful for audio files having VBR (Various Bit Rate). It returns error max_analyze_duration reached OR “Estimating duration from bitrate, this may be inaccurate” But by using getId3, we can retrieve detailed information about [...]

0 Comments , , , , , , , ,

How to Set Up a Low Cost Office

In the present financial climate, many people are setting up their own businesses to make money. This has resulted in lots of small companies being created on the fly. So if you’re setting up your own office here’s how to do it in a cost effective method. Tricks like setting up remote offices and using [...]

4 Comments , , ,

Access 401 authentication with Curl

When we implement Curl for an URL where 401 authentication is made (The pop-up for username and password when we access that url through browser), we can pass the username and password parameter along with the calling URL. For example: for your url, www.abc.com to by pass authentication in one go, we can use, http://username:password@www.abc.c [...]

0 Comments , , , ,

Symfony 1.4 Installation Steps

1) Set up for SVN repository2)Create three folders trunk, tags and branches (optional) 3)make directory lib/vendor inside trunk folder (or your project folder) 4)CD to lib/vendor folder 5) svn propset svn:externals ‘symfony http://svn.symfony-project.com/tags/RELEASE_1_4_0′ . 6) Type: svn update (it will download all the symfony files) 7)Create project:php lib/vendor/symfony/data/bin/symfony generate:project projectname Commit everything (If you need [...]

2 Comments , , , ,

Rsync, not FTP

FTP is good for smaller projects. But when you work on big projects, with a team, it is hard to manage your deployment with FTP alone. You need to sort items by date and need to upload one by one. So, use rsync from command line, which does the synchronisation and it is much faster [...]

0 Comments

jQuery Traversing Tips

Just a quick review of tips available in jQuery to manage nodes (contents) near by the content / node which is triggered an event, like click, hover etc Functions: find, parent, parents, children, first, last, closest Suppose you need to manage some nodes nearby a link or a button on an event. Say $(‘.button’).click(function(){ // [...]

0 Comments , , , , , , , , , , ,