Very useful Skype emoticons (Additional emoticons)
(finger) (bandit) (drunk) (heidy) (mooning) (ci) (toivo) (rock) (headbang) (bug) (fubar) (tmi) Share
(finger) (bandit) (drunk) (heidy) (mooning) (ci) (toivo) (rock) (headbang) (bug) (fubar) (tmi) Share
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 [...]
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
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 [...]
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
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 [...]
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
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 [...]
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/
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 [...]
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 [...]
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 [...]
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 [...]
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 [...]
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(){ // [...]