<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Programming Ideas, Logics, Tips and Tricks &#187; php</title>
	<atom:link href="http://www.sajithmr.me/category/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sajithmr.me</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2012 15:44:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Install Asterisk in Mac (including Lion)</title>
		<link>http://www.sajithmr.me/install-asterisk-in-mac-including-lion</link>
		<comments>http://www.sajithmr.me/install-asterisk-in-mac-including-lion#comments</comments>
		<pubDate>Mon, 09 Jan 2012 15:10:18 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=1081</guid>
		<description><![CDATA[Mac port packages are available for Asterisk in mac As a first step, do a port update to get all new packages: port selfupdate Step 2: sudo port install asterisk [This is a long process, it will start installing many dependancy packages] Possible errors you can see: 1) Image error: /opt/local/bin/a2p is being used by [...]]]></description>
			<content:encoded><![CDATA[<p>Mac port packages are available for Asterisk in mac</p>
<p>As a first step, do a port update to get all new packages:</p>
<p>port selfupdate</p>
<p>Step 2:</p>
<p>sudo port install asterisk</p>
<p>[This is a long process, it will start installing many dependancy packages]</p>
<p>Possible errors you can see:</p>
<p>1) Image error: /opt/local/bin/a2p is being used by the active perl5.8 port.  Please deactivate this port first, or use &#8216;port -f activate perl5&#8242; to force the activation.</p>
<p>Solution: Check all perl version installed using the given command:</p>
<p>sudo port installed | grep perl</p>
<p>Uninstall old perl version will solve this problem.</p>
<p>eg: port uninstall perl5 @5.8.9_0</p>
<p>sudo port uninstall   perl5.8 @5.8.9_3</p>
<p>Also if you can run an update outdate package command, this will be alos helpful:</p>
<p>sudo port upgrade outdated</p>
<p>Continue again the command: sudo port install asterisk</p>
<p>2) Error: Target org.macports.configure returned: configure failure: shell command failed (see log for details).</p>
<p>portaudio failed to install.</p>
<p>Solution: Download port audio files from portaudio website.  Replace the source files of portaudio local folded  (where the error is located) and Manually install it using the following commands</p>
<p>sudo /usr/bin/make -j2 -w all<br />
sudo /usr/bin/make install</p>
<p>After installation, link this portaudio with port installation using the following command:</p>
<p>port -f activate portaudio</p>
<p>Continue running this command: sudo port install asterisk</p>
<p>3) When installing Asterisk, you may get another error:</p>
<p>For a undefined variable: snmp/agent.c:830: error: ‘RONLY’ undeclared</p>
<p>Solution: Find the file snmp/agent.c and add #define RONLY 1</p>
<p>If Asterisk still fail to install, download the package file from asterisk website and install manually.</p>
<p>Before compiling this, edit makeopts file and update the line:</p>
<p>change &#8220;CONFIG_LDFLAGS=&#8221; to &#8220;CONFIG_LDFLAGS= /usr/lib/bundle1.o</p>
<p>Good luck</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/install-asterisk-in-mac-including-lion/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pass parameter to an iframe embedded Fan Page in Facebook</title>
		<link>http://www.sajithmr.me/pass-parameter-to-an-iframe-embedded-fan-page-in-facebook</link>
		<comments>http://www.sajithmr.me/pass-parameter-to-an-iframe-embedded-fan-page-in-facebook#comments</comments>
		<pubDate>Thu, 05 Jan 2012 14:28:33 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[php source code]]></category>
		<category><![CDATA[webworld]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=1076</guid>
		<description><![CDATA[Those who use their on hosting inside an iframe  for Facebook Fan page, there is a mechanism to pass additional parameters to your iframe page if you need to create a deep URL. A normal Fan page of Facebook would like this: https://www.facebook.com/apps/application.php?id=xxxxxxxxxx&#038;sk=app_XXXXXX This Url will call your domain, say example.com inside the iframe to [...]]]></description>
			<content:encoded><![CDATA[<p>Those who use their on hosting inside an iframe  for Facebook Fan page, there is a mechanism to pass additional parameters to your iframe page if you need to create a deep URL.</p>
<p>A normal Fan page of Facebook would like this:</p>
<p>https://www.facebook.com/apps/application.php?id=xxxxxxxxxx&#038;sk=app_XXXXXX</p>
<p>This Url will call your domain, say example.com inside the iframe to load the page.</p>
<p>Each time the iframe is loaded, Facebook do a POST to this iframe URL with some data which we can use to identify the status of the user, eg, whether the user already liked this page, or any other parameter is passed through the fan page url.</p>
<p>Facebook keep app_data variable for developers to pass additional parameters to your iframe page.</p>
<p>eg: https://www.facebook.com/apps/application.php?id=xxxxxxxxxx&amp;sk=app_XXXXXX&amp;app_data=mydata</p>
<p>To retrieve this information, in PHP, use can use the following code:</p>
<p>&lt;?php</p>
<p>if(isset($_REQUEST["signed_request"]))<br />
{</p>
<p>$signed_request = $_REQUEST["signed_request"];<br />
// $_POST also work, but better with $_REQUEST</p>
<p>list($encoded_sig, $payload) = explode(&#8216;.&#8217;, $signed_request, 2);</p>
<p>$data = json_decode(base64_decode(strtr($payload, &#8216;-_&#8217;, &#8216;+/&#8217;)), true);</p>
<p>if(isset($data['app_data']))<br />
{<br />
$mydata = $data['app_data']; //here you can get the value you passed<br />
}<br />
}</p>
<p>?&gt;</p>
<p>Check my article <a title="Like to see content" href="http://www.sajithmr.me/facebook-like-to-see-the-content">here</a>  to see how you can get the &#8216;like&#8217; status using PHP</p>
<p>Courtesy: From various online sources</p>
<p>Thanks<br />
Sajith</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/pass-parameter-to-an-iframe-embedded-fan-page-in-facebook/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jRecorder 1.1 with Preview option is released</title>
		<link>http://www.sajithmr.me/jrecorder1-1-with-preview-option-is-released</link>
		<comments>http://www.sajithmr.me/jrecorder1-1-with-preview-option-is-released#comments</comments>
		<pubDate>Wed, 14 Dec 2011 17:39:44 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php source code]]></category>
		<category><![CDATA[webworld]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=1071</guid>
		<description><![CDATA[Two months ago, I published a jQuery plugin to record audio from browser (without any Media server) called jRecorder I got many responses and requests to maintain the code with new enhancements and some bug fixes. Based on that, a new version (1.1) is released which has the capability to preview the recorded audio before [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://www.sajithmr.me/wp-content/uploads/2011/10/recorder.png" alt="" width="326" height="124" /></p>
<p>Two months ago, I published a jQuery plugin to record audio from browser (without any Media server) called <a title="jRecorder - jQuery Plugin" href="http://www.sajithmr.me/jrecorder-jquery" target="_blank">jRecorder</a></p>
<p>I got many responses and requests to maintain the code with new enhancements and some bug fixes.</p>
<p>Based on that, a new version (<a title="jRecorder with Preview" href="http://www.sajithmr.me/jrecorder/index.html" target="_blank">1.1</a>) is released which has the capability to preview the recorded audio before sending to the server.</p>
<p>See the example implementation and documentation <a title="jRecorder - jQuery Plugin" href="http://www.sajithmr.me/jrecorder/index.html" target="_blank">here</a>.</p>
<p>Also I made this source open and available for anybody to develop at: https://github.com/sythoos/jRecorder/</p>
<p>Thanks</p>
<p>Sajith</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/jrecorder1-1-with-preview-option-is-released/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Adobe Air 3 Beta for Flash Builder</title>
		<link>http://www.sajithmr.me/adobe-air-3-beta-for-flash-builder</link>
		<comments>http://www.sajithmr.me/adobe-air-3-beta-for-flash-builder#comments</comments>
		<pubDate>Sat, 08 Oct 2011 14:48:52 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=1003</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p>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.</p>
<p>Thanks CrosByMichaela for sharing this.</p>
<p>Air 3 has many support for mobile development. For example, it has now support of iPhone application background running features such as play audio, access internet, use voice service, and location based services.</p>
<p>Flash build iPhone profile xml file now supports properties like:</p>
<pre>    &lt;key&gt;UIDeviceFamily&lt;/key&gt;
         &lt;array&gt;
                    &lt;string&gt;1&lt;/string&gt;
                    &lt;string&gt;2&lt;/string&gt;
          &lt;/array&gt;
     &lt;key&gt;UIBackgroundModes&lt;/key&gt;
     &lt;array&gt;
                &lt;string&gt;audio&lt;/string&gt;
     &lt;/array&gt;
     &lt;key&gt;UIRequiresPersistentWiFi&lt;/key&gt;
     &lt;string&gt;YES&lt;/string&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/adobe-air-3-beta-for-flash-builder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Audio recording using Flash</title>
		<link>http://www.sajithmr.me/audio-recording-using-flash</link>
		<comments>http://www.sajithmr.me/audio-recording-using-flash#comments</comments>
		<pubDate>Fri, 08 Jul 2011 10:46:19 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[media server]]></category>
		<category><![CDATA[recording]]></category>
		<category><![CDATA[red5]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/audio-recording-using-flash/</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both;"><strong>Audio recording using Flash</strong><br />
======================</p>
<p style="clear: both;">To Record voice from web we need the following thing:</p>
<p style="clear: both;">1) A flash media server (eg: Adobe Media Server [paid] or Red 5 [free])</p>
<p style="clear: both;">2) Java6</p>
<p style="clear: both;">3) Webserver (eg, Apache, PHP)</p>
<p style="clear: both;">4) A flash client app to record voice</p>
<p style="clear: both;"><strong>The one I used</strong><br />
=========</p>
<p style="clear: both;">We used Red 5 Server, because it is FREE and Open Source</p>
<p style="clear: both;">We can proceed with our Apache + PHP</p>
<p style="clear: both;">Flash Recorder APP from AVChat (They have Free Trial recorder for 30 days and the Full version costs around £50)</p>
<p style="clear: both;"><strong>Installation</strong><br />
=======</p>
<p style="clear: both;">Install Java 6 (find the correct build based on 64 bit or 32 bit processor)</p>
<p style="clear: both;">install RED 5 (Download from http://code.google.com/p/red5/)</p>
<p style="clear: both;">Run RED 5 and test the installation</p>
<p style="clear: both;">Open a browser and type: http://127.0.0.1:5080/</p>
<p style="clear: both;">If the installation is success, you can see the RED5 page</p>
<p style="clear: both;">Try to install some demo app and try those demos</p>
<p style="clear: both;">You need a Browser with Flash support to test the demos (Allow the security options)</p>
<p style="clear: both;"><strong>Voice Recorder Client App</strong><br />
=================<br />
You can many FREE recording app over internet. Even you can get the Action Script for Voice recording and you can create your-own Flash recorder if you know Flash</p>
<p style="clear: both;">A better voice recorder app can be found at http://flvar.com/ which has PHP and ASP support where you can save/manipulate the recorded file</p>
<p style="clear: both;"><strong>The AVChat App</strong><br />
===========</p>
<p style="clear: both;">Download the chat app from the site http://flvar.com/</p>
<p style="clear: both;">There are two sets of folders, on for red5 and one for web server.</p>
<p style="clear: both;">Put the red5 projects in your webapps folder of RED5 server root</p>
<p style="clear: both;">When you download the app, you&#8217;ll get a license key. Enter this key to the property file inside the red5 server app.</p>
<p style="clear: both;">Put the web server folder in your apache web root</p>
<p style="clear: both;">Open avc_settings.php and update the path of RED5 with your RED5 server path (see the example in the document)</p>
<p style="clear: both;">Try accessing this project with your web browser, if you can see the flash player , it means your web app works fine</p>
<p style="clear: both;">Try start recording, and if you can record, which means your RED5 server configuration is fine</p>
<p style="clear: both;">Stop recording and click &#8220;Save&#8221;</p>
<p style="clear: both;">Check for the recorded flv file in the RED5 stream folder.</p>
<p style="clear: both;">This &#8220;Save&#8221; action trigger save_audio_to_db.php where we get details of the recorded stream and we can use PHP to manipulate that.</p>
<p style="clear: both;">For example, to move the flv file into webserver root, or use FFMPEG to convert the FLV format to WAV or MP3 etc</p>
<p style="clear: both;">Enjoy Voice Recording <img src='http://www.sajithmr.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="clear: both;">&#8211; Sajith</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/audio-recording-using-flash/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Find and Remove a particular folder or file in Mac/Linux</title>
		<link>http://www.sajithmr.me/find-and-remove-a-particular-folder-or-file-in-maclinux</link>
		<comments>http://www.sajithmr.me/find-and-remove-a-particular-folder-or-file-in-maclinux#comments</comments>
		<pubDate>Tue, 05 Jul 2011 13:32:28 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/find-and-remove-a-particular-folder-or-file-in-maclinux/</guid>
		<description><![CDATA[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 &#8220;.svn&#8221; &#124; xargs rm -Rf &#160;]]></description>
			<content:encoded><![CDATA[<p style="clear: both;">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</p>
<p>find ./ -name &#8220;.svn&#8221; | xargs rm -Rf</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/find-and-remove-a-particular-folder-or-file-in-maclinux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QR Code Generator</title>
		<link>http://www.sajithmr.me/qr-code-generator</link>
		<comments>http://www.sajithmr.me/qr-code-generator#comments</comments>
		<pubDate>Sun, 22 May 2011 17:21:06 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=952</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sajithmr.me/wp-content/uploads/2011/05/sajithmr.png"><img class="alignnone size-full wp-image-954" title="sajithmr" src="http://www.sajithmr.me/wp-content/uploads/2011/05/sajithmr.png" alt="" width="239" height="239" /></a></p>
<p>A PHP based tool to generate QR Code for your website URL.</p>
<p><a title="QR Code Generator" href="http://qrcode-factory.com/" target="_self">http://qrcode-factory.com/</a></p>
<p>Now a days, the usage of QR code is higher and this is becoming one of the PR generating mechanisms.</p>
<p>QR code is another kind of bar code called matrix bar code.  QR stands for Quick Reader (source: <a href="http://en.wikipedia.org/wiki/QR_code" target="_blank">WikiPedia</a>)</p>
<p>The tool is created using <a href="http://phpqrcode.sourceforge.net/" target="_blank">PHP QR code library</a>.</p>
<p>Use RedLaser Apps for mobile devices to read QR codes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/qr-code-generator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install FFMPEG in MAC</title>
		<link>http://www.sajithmr.me/install-ffmpeg-in-mac</link>
		<comments>http://www.sajithmr.me/install-ffmpeg-in-mac#comments</comments>
		<pubDate>Fri, 29 Apr 2011 15:34:41 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[ports]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/install-ffmpeg-in-mac/</guid>
		<description><![CDATA[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]]></description>
			<content:encoded><![CDATA[<p style="clear: both">Install port first </p>
<p style="clear: both">Run: sudo port -fvds selfupdate (to get the recent list)</p>
<p style="clear: both">port search ffmpeg</p>
<p style="clear: both">port variants ffmpeg</p>
<p style="clear: both">sudo port install ffmpeg +gpl +lame +x264 +xvid</p>
<p style="clear: both">Install java before these steps</p>
<p><br class="final-break" style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/install-ffmpeg-in-mac/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New URL Shortener</title>
		<link>http://www.sajithmr.me/new-url-shortener</link>
		<comments>http://www.sajithmr.me/new-url-shortener#comments</comments>
		<pubDate>Fri, 22 Apr 2011 09:50:44 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phurl]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[short url]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=942</guid>
		<description><![CDATA[I recently started a new URL shortener service. If you&#8217;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 [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://zip.ms/logo.jpg" alt="" width="240" height="68" /></p>
<p>I recently started a new URL shortener service. If you&#8217;re bored with old short-url services, you can start using this <img src='http://www.sajithmr.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://zip.ms">http://zip.ms</a></p>
<p>Here you can set your-own custom alias, than some random string.</p>
<p>I used <a href="http://code.google.com/p/phurl/">Phurl</a> library to create this website.</p>
<p>I have no spam guard added in the site, please be a real human, I trust you <img src='http://www.sajithmr.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&#8211; Sajith</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/new-url-shortener/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Check Public IP in Unix (Linux)</title>
		<link>http://www.sajithmr.me/check-public-ip-in-unix-linux</link>
		<comments>http://www.sajithmr.me/check-public-ip-in-unix-linux#comments</comments>
		<pubDate>Tue, 05 Apr 2011 13:54:16 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[public]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/check-public-ip-in-unix-linux/</guid>
		<description><![CDATA[Use the below code to check your public IP from your linux console. wget -q -O &#8211; checkip.dyndns.org&#124;sed -e &#8216;s/.*Current IP Address: //&#8217; -e &#8216;s/]]></description>
			<content:encoded><![CDATA[<p style="clear: both">Use the below code to check your public IP from your linux console. </p>
<p style="clear: both">wget -q -O &#8211; checkip.dyndns.org|sed -e &#8216;s/.*Current IP Address: //&#8217; -e &#8216;s/<.*$//'</p>
<p><br class="final-break" style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/check-public-ip-in-unix-linux/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

