<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Ping.sg  - Latest Pings From psybermonkey</title>
<link>http://ping.sg/user/psybermonkey</link>
<description>Ping.sg - The Community Meta Blog for Singapore Bloggers</description>
<copyright>Copyright 2012 ping.sg</copyright>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>

<item>
	<title><![CDATA[Perl – How to change @INC to include non-standard path]]></title>
	<link>http://ping.sg/item/Perl-How-to-change-INC-to-include-non-standard-path</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[Have been playing around with local::lib and bootstrap a few directories. After switching a few local::lib directories, I tend to forget which cpan module is installed in which local::lib directory and this make perl don&#8217;t know where to find the cpan module. This is how to set the environment variable @INC so that perl can ...]]></description>
	<pubDate>Sat, 03 Apr 2010 13:48:51 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/Perl-How-to-change-INC-to-include-non-standard-path</guid>
</item>
<item>
	<title><![CDATA[Perl – How to list installed modules]]></title>
	<link>http://ping.sg/item/Perl-How-to-list-installed-modules</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[A note for myself. This is how to list out what perl modules are installed.Way 1 :perl -MFile::Find=find -MFile::Spec::Functi ons -Tlwe 'find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC'Way 2 :perldoc perllocal*** these are all taken from &#8220;http://perldo c.perl.org/perlmodli b.html&#8221;]]></description>
	<pubDate>Fri, 26 Mar 2010 23:28:24 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/Perl-How-to-list-installed-modules</guid>
</item>
<item>
	<title><![CDATA[Perl – How to install perl module without root or super user]]></title>
	<link>http://ping.sg/item/Perl-How-to-install-perl-module-without-root-or-super-user</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[By default, perl modules installed through cpanX (cpanm, cpanp & cpan) utilities are install into system wide perl directory. Although this will make the module available through out all users on this box, it also means if there&#8217;s a problem with particular module, it affects all users. Some other problem hit me as well :Problem ...]]></description>
	<pubDate>Sat, 20 Mar 2010 11:49:25 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/Perl-How-to-install-perl-module-without-root-or-super-user</guid>
</item>
<item>
	<title><![CDATA[Perl – How to install CPAN module, the easier way]]></title>
	<link>http://ping.sg/item/Perl-How-to-install-CPAN-module-the-easier-way</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[Following IronMan Challenge posts not only for the sake of seeing What Color of Hair & Shirt ends up with Matt but the posts have been much enlightening. Recently in IronMan Challenge, there&#8217;s been much talk about one of Miyagawa&#8217;s project, App::cpanminus. Basically, cpanminus is a tool to install perl module from CPAN, without the ...]]></description>
	<pubDate>Fri, 12 Mar 2010 09:32:00 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/Perl-How-to-install-CPAN-module-the-easier-way</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – Make ports not to include X11 or GUI related library]]></title>
	<link>http://ping.sg/item/FreeBSD-Make-ports-not-to-include-X11-or-GUI-related-library-2</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[FreeBSD is an excellent operating system, be it on a Desktop (PC-BSD) or Server. Its stability and flexibility was never an issue, nor even software availability (21135 ports currently available to deploy). Most of the time, ports will install the necessary dependencies to fulfill its requirement. But certain ports installs the X11 (X window system) ...]]></description>
	<pubDate>Fri, 15 Jan 2010 17:12:54 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-Make-ports-not-to-include-X11-or-GUI-related-library-2</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – Make ports not to include X11 or GUI related library]]></title>
	<link>http://ping.sg/item/FreeBSD-Make-ports-not-to-include-X11-or-GUI-related-library</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[FreeBSD is an excellent operating system, be it on a Desktop (PC-BSD) or Server. Its stability and flexibility was never an issue, nor even software availability (21135 ports currently available to deploy). Most of the time, ports will install the necessary dependencies to fulfill its requirement. But certain ports installs the X11 (X window system) ...]]></description>
	<pubDate>Fri, 15 Jan 2010 17:12:54 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-Make-ports-not-to-include-X11-or-GUI-related-library</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – How to manage ports in FreeBSD using portmanager]]></title>
	<link>http://ping.sg/item/FreeBSD-How-to-manage-ports-in-FreeBSD-using-portmanager-2</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[There are various way of managing ports, using utilities. The usual &#8220;cd /usr/ports/<port s directory>; make; make install; make clean&#8220;, portmaster, portupgrade and others. Today, this post will brief on how to use portmanager to install, upgrade and delete ports.Using portmanager to manage ports have a few advantage :portmanager scans for what dependencies …]]></description>
	<pubDate>Thu, 14 Jan 2010 07:21:47 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-How-to-manage-ports-in-FreeBSD-using-portmanager-2</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – How to manage ports in FreeBSD using portmanager]]></title>
	<link>http://ping.sg/item/FreeBSD-How-to-manage-ports-in-FreeBSD-using-portmanager</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[There are various way of managing ports, using utilities. The usual &#8220;cd /usr/ports/<port s directory>; make; make install; make clean&#8220;, portmaster, portupgrade and others. Today, this post will brief on how to use portmanager to install, upgrade and delete ports.Using portmanager to manage ports have a few advantage :portmanager scans for what dependencies …]]></description>
	<pubDate>Thu, 14 Jan 2010 07:21:47 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-How-to-manage-ports-in-FreeBSD-using-portmanager</guid>
</item>
<item>
	<title><![CDATA[OSX – How to arrange Menu Bar icons]]></title>
	<link>http://ping.sg/item/OSX-How-to-arrange-Menu-Bar-icons-2</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[When too many icon clogging on the Menu Bar, re-arrange them might look better. The shortcut key to arrange the icons is :Cmd + mouse left clickon an icon then start arranging them. Adios !!!]]></description>
	<pubDate>Wed, 13 Jan 2010 08:19:58 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/OSX-How-to-arrange-Menu-Bar-icons-2</guid>
</item>
<item>
	<title><![CDATA[OSX – How to arrange Menu Bar icons]]></title>
	<link>http://ping.sg/item/OSX-How-to-arrange-Menu-Bar-icons</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[When too many icon clogging on the Menu Bar, re-arrange them might look better. The shortcut key to arrange the icons is :Cmd + mouse left clickon an icon then start arranging them. Adios !!!]]></description>
	<pubDate>Wed, 13 Jan 2010 08:19:58 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/OSX-How-to-arrange-Menu-Bar-icons</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – How to setup ports using wget to download]]></title>
	<link>http://ping.sg/item/FreeBSD-How-to-setup-ports-using-wget-to-download-2</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[The default download program for ports is using fetch. fetch is fine but my personal preference is wget. wget uses 1 connection to download, unlike my previous post that mentioned &#8220;Download ports simultaneously with multiple connections&#8220;.But wget gives extra bell and whistle like date/time of the download, log to file, continue from a partially downloaded ...]]></description>
	<pubDate>Tue, 12 Jan 2010 08:42:44 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-How-to-setup-ports-using-wget-to-download-2</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – How to setup ports using wget to download]]></title>
	<link>http://ping.sg/item/FreeBSD-How-to-setup-ports-using-wget-to-download</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[The default download program for ports is using fetch. fetch is fine but my personal preference is wget. wget uses 1 connection to download, unlike my previous post that mentioned &#8220;Download ports simultaneously with multiple connections&#8220;.But wget gives extra bell and whistle like date/time of the download, log to file, continue from a partially downloaded ...]]></description>
	<pubDate>Tue, 12 Jan 2010 08:42:44 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-How-to-setup-ports-using-wget-to-download</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – Tips to prepare large ports installation]]></title>
	<link>http://ping.sg/item/FreeBSD-Tips-to-prepare-large-ports-installation-2</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[Ports gets it&#8217;s sources from internet. If the sources is big or there are multiple tens of sources, the tendency to fail in the mid of the ports installation increases.Scenario 1:Bumpy internet broadband internet connection, like mine, will disconnect halfway when downloading big files (> 10 MB)Scenario 2:Large ports that depends on tens if not ...]]></description>
	<pubDate>Sun, 10 Jan 2010 20:52:51 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-Tips-to-prepare-large-ports-installation-2</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – Tips to prepare large ports installation]]></title>
	<link>http://ping.sg/item/FreeBSD-Tips-to-prepare-large-ports-installation</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[Ports gets it&#8217;s sources from internet. If the sources is big or there are multiple tens of sources, the tendency to fail in the mid of the ports installation increases.Scenario 1:Bumpy internet broadband internet connection, like mine, will disconnect halfway when downloading big files (> 10 MB)Scenario 2:Large ports that depends on tens if not ...]]></description>
	<pubDate>Sun, 10 Jan 2010 20:52:51 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-Tips-to-prepare-large-ports-installation</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – Ports is fetching from slow servers]]></title>
	<link>http://ping.sg/item/FreeBSD-Ports-is-fetching-from-slow-servers-2</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[Ports randomly gets it&#8217;s source server list from /usr/ports/Mk/bsd.si tes.mk, as defined by the port maintainer. But the top 1st choice of the list may not be the one physically near to us and thus the download speed is much desirable. Most of the time compiling ports doesn&#8217;t necessary takes a long time (like my 3 ...]]></description>
	<pubDate>Fri, 08 Jan 2010 08:46:34 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-Ports-is-fetching-from-slow-servers-2</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – Ports is fetching from slow servers]]></title>
	<link>http://ping.sg/item/FreeBSD-Ports-is-fetching-from-slow-servers</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[Ports randomly gets it&#8217;s source server list from /usr/ports/Mk/bsd.si tes.mk, as defined by the port maintainer. But the top 1st choice of the list may not be the one physically near to us and thus the download speed is much desirable. Most of the time compiling ports doesn&#8217;t necessary takes a long time (like my 3 ...]]></description>
	<pubDate>Fri, 08 Jan 2010 08:46:34 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-Ports-is-fetching-from-slow-servers</guid>
</item>
<item>
	<title><![CDATA[Gimp – How to convert background of logo or picture into tran …]]></title>
	<link>http://ping.sg/item/Gimp-How-to-convert-background-of-logo-or-picture-into-trans-2</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[Gimp stands for &#8220;GNU Image Manipulation Program&#8220;, which is an open source image editing problem. It&#8217;s capability often compare to professional software but fortunately, Gimp acceptance as Pro image editing software is getting better. Even so, Gimp is still popular among beginner up to hobbyist user.Gimp&#8217;s available on multiple platform and since it is …]]></description>
	<pubDate>Thu, 07 Jan 2010 08:58:49 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/Gimp-How-to-convert-background-of-logo-or-picture-into-trans-2</guid>
</item>
<item>
	<title><![CDATA[Gimp – How to convert background of logo or picture into tran …]]></title>
	<link>http://ping.sg/item/Gimp-How-to-convert-background-of-logo-or-picture-into-trans</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[Gimp stands for &#8220;GNU Image Manipulation Program&#8220;, which is an open source image editing problem. It&#8217;s capability often compare to professional software but fortunately, Gimp acceptance as Pro image editing software is getting better. Even so, Gimp is still popular among beginner up to hobbyist user.Gimp&#8217;s available on multiple platform and since it is …]]></description>
	<pubDate>Thu, 07 Jan 2010 08:58:49 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/Gimp-How-to-convert-background-of-logo-or-picture-into-trans</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – Compilation errors on port KDE4 in FreeBSD 8.0]]></title>
	<link>http://ping.sg/item/FreeBSD-Compilation-errors-on-port-KDE4-in-FreeBSD-8-0-3</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[While adding GUI Desktop environment into my development box, an error encountered when compiling KDE4, the stable and nice looking Desktop environment. Compiling KDE4 can take quite some time as it depends on few hundred other ports. Alternatively, you can install KDE4 from the packages by using the command :pkg_add -r kde4But installing programs using ...]]></description>
	<pubDate>Wed, 06 Jan 2010 08:40:43 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-Compilation-errors-on-port-KDE4-in-FreeBSD-8-0-3</guid>
</item>
<item>
	<title><![CDATA[FreeBSD – Compilation errors on port KDE4 in FreeBSD 8.0]]></title>
	<link>http://ping.sg/item/FreeBSD-Compilation-errors-on-port-KDE4-in-FreeBSD-8-0-2</link>
	<dc:creator>psybermonkey</dc:creator>
	<description><![CDATA[While adding GUI Desktop environment into my development box, an error encountered when compiling KDE4, the stable and nice looking Desktop environment. Compiling KDE4 can take quite some time as it depends on few hundred other ports. Alternatively, you can install KDE4 from the packages by using the command :pkg_add -r kde4But installing programs using ...]]></description>
	<pubDate>Wed, 06 Jan 2010 08:40:43 +0800</pubDate>
	<guid isPermaLink="false">http://ping.sg/itemA/FreeBSD-Compilation-errors-on-port-KDE4-in-FreeBSD-8-0-2</guid>
</item>

</channel>
</rss>
