<?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>Sems.org</title>
	<atom:link href="http://www.sems.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sems.org</link>
	<description>Adventures in Gadgetland</description>
	<lastBuildDate>Sun, 05 Feb 2012 04:03:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing Asterisk 1.8.9 on Centos 6</title>
		<link>http://www.sems.org/2012/02/installing-asterisk-1-8-9-on-centos-6/</link>
		<comments>http://www.sems.org/2012/02/installing-asterisk-1-8-9-on-centos-6/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 04:01:13 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Asterisk]]></category>

		<guid isPermaLink="false">http://www.sems.org/?p=487</guid>
		<description><![CDATA[It has been a while since I installed Asterisk from scratch and I like to keep my skills sharpened. So for this exercise, I grabbed a base Centos 6 Virtual Box image and installed Asterisk from sources. There might be a few steps not fully explained below, but this should get you going. First step [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a while since I installed Asterisk from scratch and I like to keep my skills sharpened. So for this exercise, I grabbed a base Centos 6 Virtual Box image and installed Asterisk from sources. There might be a few steps not fully explained below, but this should get you going.</p>
<p>First step is to set static IP by edit /etc/sysconfig/network-scripts/ifcfg-eth0. Then get the latest updates via:</p>
<p>yum update</p>
<p><strong>Get Asterisk Source:</strong></p>
<p>cd /usr/src<br />
wget http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-1.8.9.0.tar.gz<br />
tar xvzf asterisk-1.8.9.0.tar.gz</p>
<p><strong>Install dependencies/libraries:</strong></p>
<p>yum install unixODBC unixODBC-devel mysql-server mysql-devel nano ncurses-devel patch gcc gcc-c++ kernel-devel libtiff-devel libtermcap-devel bison flex curl-devel  libtool-ltdl-devel gmime-devel wget make svn libxml2-devel</p>
<p>ln -s /usr/src/kernels/&lt;your kernel version&gt; linux</p>
<p><strong>Install iksemel libs for Google Talk/Jabber:</strong></p>
<p>Install rpm-forge repo via:<br />
rpm -Uhv http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm</p>
<p>yum install iksemel-devel</p>
<p><strong>Install Speex (required by Speex codec and RedHat/Centos rpms miss certain files):</strong></p>
<p>cd /usr/src<br />
wget http://downloads.xiph.org/releases/speex/speex-1.2rc1.tar.gz<br />
tar xvzf speex-1.2rc1.tar.gz<br />
cd speex-1.2rc1</p>
<p>./configure<br />
make<br />
make install</p>
<p><strong>Install Cepstral Swift (this requires a license, if you don&#8217;t have one or don&#8217;t want to use Cepstral Text to Speech engine, you can skip it):</strong></p>
<p>cd /usr/src<br />
wget http://downloads.cepstral.com/cepstral/i386-linux/Cepstral_Allison_i386-linux_5.1.0.tar.gz<br />
tar xvzf Cepstral_Allison_i386-linux_5.1.0.tar.gz<br />
cd /usr/src/Cepstral_Allison_i386-linux_5.1.0</p>
<p>./install.sh<br />
/opt/swift/bin/swift &#8211;reg-voice &#8211;customer-name &#8220;xxx&#8221; &#8211;company-name &#8220;xxx&#8221; &#8211;voice-name Allison &#8211;license-key &#8220;xxx&#8221;</p>
<p><strong>Configure libs:</strong></p>
<p>Edit /etc/ld.so.conf and insert:</p>
<p>/opt/swift/lib<br />
/usr/local/lib<br />
/usr/lib</p>
<p>Save the file, then run ldconfig</p>
<p><strong>Install Dahdi:</strong></p>
<p>Get and install latest dahdi-tools and dahdi-linux</p>
<p>* dahdi-linux: kernel modules<br />
* dahdi-tools: userspace tools</p>
<p>cd /usr/src<br />
wget http://downloads.asterisk.org/pub/telephony/dahdi-linux/releases/dahdi-linux-2.6.0.tar.gz<br />
wget http://downloads.asterisk.org/pub/telephony/dahdi-tools/releases/dahdi-tools-2.6.0.tar.gz<br />
tar xvzf dahdi-linux-2.6.0.tar.gz<br />
tar xvzf dahdi-tools-2.6.0.tar.gz</p>
<p>cd /usr/src/dahdi-linux-2.6.0<br />
make<br />
make install</p>
<p>cd /usr/src/dahdi-tools-2.6.0<br />
./configure<br />
make menuselect<br />
make all<br />
make install<br />
make config</p>
<p>nano /etc/dahdi/modules (comment out hardware cards, unless you have them)<br />
chkconfig dahdi on</p>
<p><strong>Install Asterisk 1.8.9:</strong></p>
<p>cd /usr/src/asterisk-1.8.9.0<br />
contrib/scripts/get_ilbc_source.sh<br />
contrib/scripts/get_mp3_source.sh<br />
./bootstrap.sh<br />
./configure<br />
make menuselect (here select the options you want, you&#8217;ll be fine with defaults in most cases, I added couple of missing ones)<br />
make<br />
make install<br />
make progdocs<br />
make samples<br />
make config</p>
<p>chkconfig asterisk on</p>
<p>Create Asterisk user/group and edit permissions:</p>
<p>groupadd -g 5060 asterisk<br />
adduser -c &#8220;Asterisk Telephone Server&#8221; -d /var/lib/asterisk -g asterisk -u 5060 asterisk</p>
<p>chown &#8211;recursive asterisk:asterisk /var/lib/asterisk<br />
chown &#8211;recursive asterisk:asterisk /var/log/asterisk<br />
chown &#8211;recursive asterisk:asterisk /var/run/asterisk<br />
chown &#8211;recursive asterisk:asterisk /var/spool/asterisk<br />
chown &#8211;recursive asterisk:asterisk /usr/lib/asterisk</p>
<p>chmod &#8211;recursive u=rwX,g=rX,o= /var/lib/asterisk<br />
chmod &#8211;recursive u=rwX,g=rX,o= /var/log/asterisk<br />
chmod &#8211;recursive u=rwX,g=rX,o= /var/run/asterisk<br />
chmod &#8211;recursive u=rwX,g=rX,o= /var/spool/asterisk<br />
chmod &#8211;recursive u=rwX,g=rX,o= /usr/lib/asterisk</p>
<p>Edit /etc/asterisk/asterisk.conf:</p>
<p>astrundir =&gt; /var/run/asterisk<br />
runuser = asterisk ; The user to run as<br />
rungroup = asterisk ; The group to run as</p>
<p>Edit /etc/sysconfig/asterisk:</p>
<p>Remove comment out</p>
<p>AST_USER=&#8221;asterisk&#8221;<br />
AST_GROUP=&#8221;asterisk&#8221;</p>
<p><strong>Install app_swift:</strong></p>
<p>Appswift is at http://76.164.171.235/gf/project/app_swift/frs/?action=FrsReleaseBrowse&amp;frs_package_id=7, it adds app_swift, which integrates with Cepstral TTS and makes creating prompts in your dialplan easy.</p>
<p>cd /usr/src<br />
wget http://76.164.171.235/gf/download/frsrelease/110/142/app_swift-2.0.1-ast1.8.tar.gz<br />
tar -xvzf app_swift-2.0.1-ast1.8.tar.gz<br />
cd app_swift-2.0.1-ast1.8<br />
make<br />
make install</p>
<p><strong>Install php5 for scripting:</strong></p>
<p>yum install php php-cli</p>
<p><strong>Install g729 and g723 codecs:</strong></p>
<p>cd /usr/src<br />
wget http://asterisk.hosting.lv/bin/codec_g723-ast18-gcc4-glibc-pentium4.so<br />
wget http://asterisk.hosting.lv/bin/codec_g729-ast18-gcc4-glibc-pentium4.so<br />
cp codec_g729-ast18-gcc4-glibc-pentium4.so /usr/lib/asterisk/modules/codec_g729.so<br />
cp codec_g723-ast18-gcc4-glibc-pentium4.so /usr/lib/asterisk/modules/codec_g723.so</p>
<p><strong>Asterisk Fax:</strong></p>
<p>Order free license key from digium at store.digium.com first.</p>
<p>Then:</p>
<p>cd /usr/src/<br />
mkdir astfax<br />
cd astfax<br />
wget http://downloads.digium.com/pub/register/x86-32/register<br />
wget http://downloads.digium.com/pub/telephony/fax/benchfax/x86-32/benchfax-1.1.0-x86_32</p>
<p>chmod 500 register<br />
chmod 500 benchfax-1.1.0-x86_32</p>
<p>./benchfax-1.1.0-x86_32</p>
<p>This will tell you which version of Asterisk Fax to use. Then go to the fax selector at   http://www.digium.com/en/docs/FAX/faa-download.php</p>
<p>Pick the one suggested by bench fax, in our case (a 32 bit i686 Linux):</p>
<p>wget http://downloads.digium.com/pub/telephony/fax/res_fax_digium/asterisk-1.8.4/x86-32/res_fax_digium-1.8.4_1.3.0-i686_32.tar.gz</p>
<p>tar xvzf res_fax_digium-1.8.4_1.3.0-i686_32.tar.gz</p>
<p>cd /usr/src/astfax/res_fax_digium-1.8.4_1.3.0-i686_32<br />
cp res_fax_digium.so /usr/lib/asterisk/modules/<br />
cp res_fax_digium.conf /etc/asterisk/</p>
<p>Now you can test your basic installation via</p>
<p>asterisk -vvv -c</p>
<p>If all is well, you can run</p>
<p>service asterisk start</p>
<p>to run it as a service. I have my config files from previous installs, so I first copied them back to /etc/asterisk and I was good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2012/02/installing-asterisk-1-8-9-on-centos-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sugarsync Crash on Mac OS X 10.7 &#8211; Lion</title>
		<link>http://www.sems.org/2011/10/sugarsync-crash-on-mac-os-x-10-7-lion/</link>
		<comments>http://www.sems.org/2011/10/sugarsync-crash-on-mac-os-x-10-7-lion/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 22:27:14 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Sems]]></category>

		<guid isPermaLink="false">http://www.sems.org/?p=484</guid>
		<description><![CDATA[Yesterday, Sugarsync prompted me to install an update. After installation, it complained parts of it was installed separately and refused to run. I uninstalled it via /Applications/SugarSync\ Manager.app/Contents/Resources/SugarSyncUninstaller.command Then I did a fresh install. Still no luck, it kept crashing. I fired up the Console to see if I can find any errors. I found some [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, Sugarsync prompted me to install an update. After installation, it complained parts of it was installed separately and refused to run. I uninstalled it via /Applications/SugarSync\ Manager.app/Contents/Resources/SugarSyncUninstaller.command</p>
<p>Then I did a fresh install. Still no luck, it kept crashing. I fired up the Console to see if I can find any errors. I found some errors related to xfsmond, particularly:</p>
<pre>10/11/11 5:43:46.788 PM [0x0-0x57057].com.SugarSync.Manager: launchctl: Error unloading: com.sharpcast.xfsmond</pre>
<p>I fixed the permissions of the Launch Daemon for it via</p>
<p>sudo chmod 644 /Library/LaunchDaemons/com.sharpcast.xfsmond.plist</p>
<p>And loaded it via</p>
<p>launchctl load /Library/LaunchDaemons/com.sharpcast.xfsmond.plist</p>
<p>Voila, now SugarSync Manager runs fine, no more crashes. Hope this post helps someone&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2011/10/sugarsync-crash-on-mac-os-x-10-7-lion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ICANN Registrants Rights and Responsibilities</title>
		<link>http://www.sems.org/2011/07/478/</link>
		<comments>http://www.sems.org/2011/07/478/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 00:33:07 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Sems]]></category>

		<guid isPermaLink="false">http://www.sems.org/?p=478</guid>
		<description><![CDATA[Recently, ICANN finalized and published a new document titled &#8220;Registrants Rights and Responsibilities.&#8221; The 2009 RAA included a provision that would require both registrars and their resellers to link to this new document from their website as a way both educate and protect domain registrants by ensuring they understand their rights and responsibilities when it [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, ICANN finalized and published a new document titled &#8220;Registrants Rights and Responsibilities.&#8221; The 2009 RAA included a provision that would require both registrars and their resellers to link to this new document from their website as a way both educate and protect domain registrants by ensuring they understand their rights and responsibilities when it comes to their domain names.</p>
<p>So here is the <a href="http://www.icann.org/en/registrars/registrant-rights-responsibilities-en.htmfcd9b10843d0730cd33b670af0c136658fcb884">link</a> to the document for those who are interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2011/07/478/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress plugin updates and IIS 7 errors</title>
		<link>http://www.sems.org/2011/05/wordpress-plugin-updates-and-iis-7-errors/</link>
		<comments>http://www.sems.org/2011/05/wordpress-plugin-updates-and-iis-7-errors/#comments</comments>
		<pubDate>Wed, 18 May 2011 00:54:36 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Sems]]></category>

		<guid isPermaLink="false">http://www.sems.org/?p=475</guid>
		<description><![CDATA[Whenever you upgrade a plugin in WordPress or WordPress itself while running under IIS 7, you get an error. This usually happens as the process was unable to delete the folder for the plugin or such. This issue is related to WinCache plugin for PHP and latest version fixes the issue. Install the latest one [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever you upgrade a plugin in WordPress or WordPress itself while running under IIS 7, you get an error. This usually happens as the process was unable to delete the folder for the plugin or such. This issue is related to WinCache plugin for PHP and latest version fixes the issue.</p>
<p>Install the latest one at: https://sourceforge.net/projects/wincache/files/development/</p>
<p>Happy blogging <img src='http://www.sems.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2011/05/wordpress-plugin-updates-and-iis-7-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making Mac OS X Terminal Behave Like DOS/Linux</title>
		<link>http://www.sems.org/2011/03/making-mac-os-x-terminal-behave-like-doslinux/</link>
		<comments>http://www.sems.org/2011/03/making-mac-os-x-terminal-behave-like-doslinux/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 10:27:30 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sems.org/?p=472</guid>
		<description><![CDATA[I was going through my bookmarks and such and I remembered an old gem. The default key settings in Mac OS X terminal will drive you nuts, if you are used to DOS or Linux terminal. Especially Home, End, Page Up and Page Down keys. Fire up your Terminal, go to Preferences -&#62; Settings &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>I was going through my bookmarks and such and I remembered an old gem. The default key settings in Mac OS X terminal will drive you nuts, if you are used to DOS or Linux terminal. Especially Home, End, Page Up and Page Down keys.</p>
<p>Fire up your Terminal, go to Preferences -&gt; Settings &#8211; Keyboard and modify the following keys, so that their action matches the value  shown. You can edit the keystroke for an item by double clicking on it,  selecting &#8220;send string to shell&#8221;, and typing the indicated keys.</p>
<table>
<tbody>
<tr>
<th align="left">Key</th>
<th align="left">Action</th>
<th align="left">Keystrokes</th>
</tr>
<tr>
<td>control cursor left</td>
<td>\033b</td>
<td>ESC b</td>
</tr>
<tr>
<td>control cursor right</td>
<td>\033f</td>
<td>ESC f</td>
</tr>
<tr>
<td>end</td>
<td>\005</td>
<td>CTRL+e</td>
</tr>
<tr>
<td>home</td>
<td>\001</td>
<td>CTRL+a</td>
</tr>
<tr>
<td>page down</td>
<td>\026</td>
<td>CTRL+v</td>
</tr>
<tr>
<td>page up</td>
<td>\033v</td>
<td>ESC v</td>
</tr>
</tbody>
</table>
<p>That will be give you back the settings you are used to <img src='http://www.sems.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , kudos goes to <a title="Brian Duff" href="http://blog.dubh.org/2007/11/configuring-mac-os-x-terminal.html" target="_blank">Brian Duff</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2011/03/making-mac-os-x-terminal-behave-like-doslinux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to start a Blackberry in Safe Mode</title>
		<link>http://www.sems.org/2011/03/how-to-start-a-blackberry-in-safe-mode/</link>
		<comments>http://www.sems.org/2011/03/how-to-start-a-blackberry-in-safe-mode/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 23:14:06 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Safe Mode]]></category>

		<guid isPermaLink="false">http://www.sems.org/2011/03/how-to-start-a-blackberry-in-safe-mode/</guid>
		<description><![CDATA[There are times some third party applications starting automatically can cause havoc on your Blackberry device. If you are using a device with OS 4.6 or higher, you are in luck. You can simply start the device in safe mode, similar to Windows. This disables the automatically starting apps and allow you to troubleshoot. The [...]]]></description>
			<content:encoded><![CDATA[<p>There are times some third party applications starting automatically can cause havoc on your Blackberry device. If you are using a device with OS 4.6 or higher, you are in luck. You can simply start the device in safe mode, similar to Windows. This disables the automatically starting apps and allow you to troubleshoot.</p>
<p>The steps are really simple.</p>
<p>1. Remove and reinsert battery.<br />
2. Wait for the red light go off.<br />
3. As soon as red light is off, press and hold Escape key as the OS continues to load.<br />
4. Shortly you´ll see a dialog box stating you are in safe mode, click OK to continue.</p>
<p>And to exit, you can simply reset the phone again.</p>
<p>See the details at Blackberry <a href="http://www.blackberry.com/btsc/search.do?cmd=displayKC&amp;docType=kc&amp;externalId=KB17877">KB Article 17877</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2011/03/how-to-start-a-blackberry-in-safe-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New Year</title>
		<link>http://www.sems.org/2010/12/happy-new-year/</link>
		<comments>http://www.sems.org/2010/12/happy-new-year/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 04:46:16 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sems.org/?p=464</guid>
		<description><![CDATA[Happy New Year everyone, may the new year bring all the best for all of you&#8230;]]></description>
			<content:encoded><![CDATA[<p>Happy New Year everyone, may the new year bring all the best for all of you&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2010/12/happy-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Thanksgiving everyone&#8230;</title>
		<link>http://www.sems.org/2010/11/happy-thanksgiving-everyone/</link>
		<comments>http://www.sems.org/2010/11/happy-thanksgiving-everyone/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 16:45:28 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sems.org/?p=458</guid>
		<description><![CDATA[Happy Thanksgiving from sems.org to all of my family, friends and visitors. It has been a tough year for me but I have many blessings that I am thankful for. Don&#8217;t overstuff yourselves with Turkey and don&#8217;t miss tomorrow&#8217;s great deals&#8230;]]></description>
			<content:encoded><![CDATA[<p>Happy Thanksgiving from sems.org to all of my family, friends and visitors. It has been a tough year for me but I have many blessings that I am thankful for.</p>
<p>Don&#8217;t overstuff yourselves with Turkey and don&#8217;t miss tomorrow&#8217;s great deals&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2010/11/happy-thanksgiving-everyone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handango &#8211; Early Black Friday Sale</title>
		<link>http://www.sems.org/2010/11/handango-early-black-friday-sale/</link>
		<comments>http://www.sems.org/2010/11/handango-early-black-friday-sale/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 16:04:45 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sems.org/?p=456</guid>
		<description><![CDATA[Very nice, if you are looking to buy some apps/games for your mobile device, Handango has 20% off site wide. Just use the BLKFRI20 coupon code PS. This Black Friday offer expires at midnight C.S.T. 11.26.2010 and is only available on Handango.com]]></description>
			<content:encoded><![CDATA[<p>Very nice, if you are looking to buy some apps/games for your mobile device, Handango has 20% off site wide. Just use the BLKFRI20 coupon code <img src='http://www.sems.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img class="alignnone" title="Handango Early Black Friday" src="http://www.handango.com/pictures/promos/11_BlkFriEarly_Home.jpg" alt="" width="716" height="218" />PS. This Black Friday offer expires at midnight C.S.T. 11.26.2010 and is only available on Handango.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2010/11/handango-early-black-friday-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revamping the site</title>
		<link>http://www.sems.org/2010/11/revamping-the-site/</link>
		<comments>http://www.sems.org/2010/11/revamping-the-site/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 22:16:16 +0000</pubDate>
		<dc:creator>Sems</dc:creator>
				<category><![CDATA[Sems]]></category>

		<guid isPermaLink="false">http://www.sems.org/?p=365</guid>
		<description><![CDATA[It was about time to change from old blog system, which is no longer supported. So, welcome to new software and design. I am keeping the old links up, but eventually will remove them. If for some reason you need to view the old site, the link is: http://sems.org/index.asp So excuse the mess while I [...]]]></description>
			<content:encoded><![CDATA[<p>It was about time to change from old blog system, which is no longer supported. So, welcome to new software and design. I am keeping the old links up, but eventually will remove them. If for some reason you need to view the old site, the link is:</p>
<p><a href="http://sems.org/index.asp">http://sems.org/index.asp</a></p>
<p>So excuse the mess while I clean up. Feel free to post about any errors and I&#8217;ll fix them asap <img src='http://www.sems.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sems.org/2010/11/revamping-the-site/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

