<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Ewdison Then</title>
	
	<link>http://www.ewdisonthen.com</link>
	<description>an entrepreneur, tech enthusiast, &amp; foodie obsessed with haute horology</description>
	<lastBuildDate>Fri, 02 Nov 2012 07:47:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ewdisonthen" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="ewdisonthen" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Watch.am – A new horology blog</title>
		<link>http://www.ewdisonthen.com/watch-am-a-new-horology-blog-02628.php</link>
		<comments>http://www.ewdisonthen.com/watch-am-a-new-horology-blog-02628.php#comments</comments>
		<pubDate>Fri, 02 Nov 2012 07:41:31 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[watches]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=628</guid>
		<description><![CDATA[Vincent Nguyen and I have been talking about starting a watch/horology site, a passion he and I shared; we dragged Chris Davies and recruited Radhika Seth from Yanko Design to launch Watch.am &#8211; I aimed for a simple minimalistic design on Watch.am. We will be updating the blog daily, so enjoy!]]></description>
				<content:encoded><![CDATA[<p>Vincent Nguyen and I have been talking about starting a watch/horology site, a passion he and I shared; we dragged Chris Davies and recruited Radhika Seth from Yanko Design to launch <a href="http://watch.am">Watch.am</a> &#8211; I aimed for a simple minimalistic design on Watch.am. We will be updating the blog daily, so enjoy!</p>
<a href="http://watch.am"><img src="http://www.ewdisonthen.com/wp-content/uploads/2012/11/watch_amlogo-600x95.png" alt="" title="watch_amlogo" width="600" height="95" class="aligncenter size-medium wp-image-634" /></a>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/watch-am-a-new-horology-blog-02628.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup pptp VPN server on Linux [Tutorial]</title>
		<link>http://www.ewdisonthen.com/how-to-setup-pptp-vpn-server-on-linux-tutorial-07577.php</link>
		<comments>http://www.ewdisonthen.com/how-to-setup-pptp-vpn-server-on-linux-tutorial-07577.php#comments</comments>
		<pubDate>Tue, 07 Sep 2010 16:45:19 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[google voice]]></category>
		<category><![CDATA[hulu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[netflix]]></category>
		<category><![CDATA[pptpd]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tunneling]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=577</guid>
		<description><![CDATA[I&#8217;m moving to Japan very soon and remembered that Google Voice won&#8217;t be working once I step onto Land of the Rising Sun. So I figured I should setup a VPN tunneling for me to access services that is available only in the US. Setting up PPTPD is fairly easy and straight forward. I&#8217;m using [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.ewdisonthen.com/wp-content/uploads/2010/09/Screen-shot-2010-09-07-at-11.43.15-AM-150x150.png" alt="" title="Screen shot 2010-09-07 at 11.43.15 AM" width="150" height="150" class="alignright size-thumbnail wp-image-601" />I&#8217;m moving to Japan very soon and remembered that Google Voice won&#8217;t be working once I step onto Land of the Rising Sun. So I figured I should setup a VPN tunneling for me to access services that is available only in the US. Setting up PPTPD is fairly easy and straight forward. I&#8217;m using SoftLayer BYOC (Build Your Own Cloud) which cost $70/month for 2TB bandwidth (inbound bandwidth is free &#8211; unlike Rackspace cloud).</p>
<p>I picked the Ubuntu 10.04 Lucid Lynx for this example, but you can use any distro you prefer.</p>
<p>First, you need to install the PPTP daemon (server), and we are going to use apt-get to install it.</p>
<pre class="brush:bash">apt-get install pptpd</pre>
<p>Once it is installed, let&#8217;s create user accounts for your VPN server by editing the chap-secrets file. Use any editor you like, I personally prefer Nano.</p>
<pre class="brush:bash">nano -w /etc/ppp/chap-secrets</pre>
<p>Each users should be added in new line with following structure</p>
<pre class="brush:bash">yourusername pptpd yourpassword *</pre>
<p>Next step is to configure localip/remoteip assignment on pptpd.conf</p>
<pre class="brush:bash">nano -w /etc/pptpd.conf</pre>
<p>Since my local router is on 192.168.0.1, I wanted to avoid using the same IP assignment for my VPN connection. so I&#8217;m using 192.168.111.xxx instead on pptpd.conf</p>
<pre class="brush:bash">
localip 192.168.111.1
remoteip 192.168.111.234-238,192.168.111.245</pre>
<p>Now, let&#8217;s get IP forwarding working by editing sysctl.conf file</p>
<pre class="brush:bash">nano -w /etc/sysctl.conf</pre>
<p>then uncomment this line</p>
<pre class="brush:bash">net.ipv4.ip_forward=1</pre>
<p>Save the file and reload the configuration.</p>
<pre class="brush:bash">sysctl -p</pre>
<p>Next is to edit rc.local file for iptables rule</p>
<pre class="brush:bash">nano -w /etc/rc.local</pre>
<p>Add these line right above exit line. (eth1 is my public ethernet port, adjust as needed)</p>
<pre class="brush:bash">/sbin/iptables -t nat -A POSTROUTING -s 192.168.111.0/24 -o eth1 -j MASQUERADE
/sbin/iptables -I FORWARD -p tcp -syn -i ppp+ -j TCPMSS -set-mss 1356</pre>
<p>Last but not least, let&#8217;s define the DNS to use with our pptpd. Currently I&#8217;m using Google Public DNS &#8211; It is fast and reliable; I know some of you prefer OpenDNS.</p>
<pre class="brush:bash">nano -w /etc/ppp/options</pre>
<p>Uncomment the entries with ms-dns 192.168.1.1 and 192.168.1.2 then replace the IP with Google Public DNS IPs so it look like this</p>
<pre class="brush:bash">ms-dns 8.8.8.8
ms-dns 8.8.4.4</pre>
<p>You are done! Next is just <strong>reboot</strong> your server and you should be able to connect to using PPTPD and send all your traffic thru this server. For more pptpd.conf reference, you can find them <a href="http://www.linux.org.au/~quozl/pptp/pptpd.conf.5.html">here</a>.</p>
<p>If you have tips,comment, or unable to get it to work feel free to post them here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/how-to-setup-pptp-vpn-server-on-linux-tutorial-07577.php/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>SlashGear iPad App RC1 video demo</title>
		<link>http://www.ewdisonthen.com/slashgear-ipad-app-rc1-video-demo-22570.php</link>
		<comments>http://www.ewdisonthen.com/slashgear-ipad-app-rc1-video-demo-22570.php#comments</comments>
		<pubDate>Sat, 22 May 2010 17:08:21 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[slashgear]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=570</guid>
		<description><![CDATA[So we are almost there with the SlashGear iPad app. The RC1 still has some bugs to iron out, but it&#8217;s getting there. Enjoy the video demo. Overview In App Advertisement]]></description>
				<content:encoded><![CDATA[<p>So we are almost there with the SlashGear iPad app. The RC1 still has some bugs to iron out, but it&#8217;s getting there. Enjoy the video demo.</p>
<p><strong>Overview</strong></p>
<p><center><object width="480" height="300"><param name="movie" value="http://asset.slashgear.tv/sgplayer.swf"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://asset.slashgear.tv/sgplayer.swf" quality="high" width="480" height="300" allowFullScreen="true" allowScriptAccess="always" flashvars="config=http://asset.slashgear.tv/sgtv.php?vkey=3ae8cef33961c34144f8" name="SlashGearTV" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object></center>
</p>
<p><strong>In App Advertisement</strong></p>
<p><center><object width="480" height="300"><param name="movie" value="http://asset.slashgear.tv/sgplayer.swf"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://asset.slashgear.tv/sgplayer.swf" quality="high" width="480" height="300" allowFullScreen="true" allowScriptAccess="always" flashvars="config=http://asset.slashgear.tv/sgtv.php?vkey=1e305170616ba3d3dac3" name="SlashGearTV" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object></center>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/slashgear-ipad-app-rc1-video-demo-22570.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SlashGear iPad App is launching soon – RC Screenshots</title>
		<link>http://www.ewdisonthen.com/slashgear-ipad-app-is-launching-soon-rc-screenshots-19562.php</link>
		<comments>http://www.ewdisonthen.com/slashgear-ipad-app-is-launching-soon-rc-screenshots-19562.php#comments</comments>
		<pubDate>Wed, 19 May 2010 16:15:32 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[slashgear]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=562</guid>
		<description><![CDATA[We launched SlashGear iPhone app last month and will be launching our iPad app in a week or so. The iPad App would be so much different than the iPhone counterpart. Here are some screenshots.]]></description>
				<content:encoded><![CDATA[<p>We launched SlashGear iPhone app last month and will be launching our iPad app in a week or so. The iPad App would be so much different than the iPhone counterpart. Here are some screenshots.</p>

<a href='http://www.ewdisonthen.com/slashgear-ipad-app-is-launching-soon-rc-screenshots-19562.php/screen-shot-2010-05-19-at-11-07-38-am' title='Screen shot 2010-05-19 at 11.07.38 AM'><img width="150" height="150" src="http://www.ewdisonthen.com/wp-content/uploads/2010/05/Screen-shot-2010-05-19-at-11.07.38-AM-150x150.png" class="attachment-thumbnail" alt="Screen shot 2010-05-19 at 11.07.38 AM" /></a>
<a href='http://www.ewdisonthen.com/slashgear-ipad-app-is-launching-soon-rc-screenshots-19562.php/screen-shot-2010-05-19-at-11-06-20-am' title='Screen shot 2010-05-19 at 11.06.20 AM'><img width="150" height="150" src="http://www.ewdisonthen.com/wp-content/uploads/2010/05/Screen-shot-2010-05-19-at-11.06.20-AM-150x150.png" class="attachment-thumbnail" alt="Screen shot 2010-05-19 at 11.06.20 AM" /></a>
<a href='http://www.ewdisonthen.com/slashgear-ipad-app-is-launching-soon-rc-screenshots-19562.php/screen-shot-2010-05-19-at-11-05-33-am' title='Screen shot 2010-05-19 at 11.05.33 AM'><img width="150" height="150" src="http://www.ewdisonthen.com/wp-content/uploads/2010/05/Screen-shot-2010-05-19-at-11.05.33-AM-150x150.png" class="attachment-thumbnail" alt="Screen shot 2010-05-19 at 11.05.33 AM" /></a>
<a href='http://www.ewdisonthen.com/slashgear-ipad-app-is-launching-soon-rc-screenshots-19562.php/screen-shot-2010-05-19-at-11-05-13-am' title='Screen shot 2010-05-19 at 11.05.13 AM'><img width="150" height="150" src="http://www.ewdisonthen.com/wp-content/uploads/2010/05/Screen-shot-2010-05-19-at-11.05.13-AM-150x150.png" class="attachment-thumbnail" alt="Screen shot 2010-05-19 at 11.05.13 AM" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/slashgear-ipad-app-is-launching-soon-rc-screenshots-19562.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding the right CDN for SlashGear</title>
		<link>http://www.ewdisonthen.com/finding-the-right-cdn-for-slashgear-20550.php</link>
		<comments>http://www.ewdisonthen.com/finding-the-right-cdn-for-slashgear-20550.php#comments</comments>
		<pubDate>Wed, 21 Apr 2010 00:12:22 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[slashgear]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=550</guid>
		<description><![CDATA[It has been interesting and educational two months; I had the chance to use several major CDN services on SlashGear. Choosing the right CDN is a matter of pricing/budget, delivery technology or features and POP availability. The CDN vendors I had the opportunity to try are MaxCDN, InterNAP, Highwinds, Akamai, and EdgeCast. MaxCDN has the [...]]]></description>
				<content:encoded><![CDATA[<p>It has been interesting and educational two months; I had the chance to use several major CDN services on SlashGear. Choosing the right CDN is a matter of pricing/budget, delivery technology or features and POP availability. The CDN vendors I had the opportunity to try are MaxCDN, InterNAP, Highwinds, Akamai, and EdgeCast. </p>
<a href="http://www.ewdisonthen.com/wp-content/uploads/2010/04/Screen-shot-2010-04-20-at-7.09.21-PM.png"><img src="http://www.ewdisonthen.com/wp-content/uploads/2010/04/Screen-shot-2010-04-20-at-7.09.21-PM-460x252.png" alt="" title="Screen shot 2010-04-20 at 7.09.21 PM" width="460" height="252" class="alignnone size-medium wp-image-551" /></a>
<p><a href="http://maxcdn.com">MaxCDN</a> has the best implementation of web based management console. I really enjoy using them and still do use them on R3 Media sites (SlashPhone and AndroidCommunity). The cache-hit number is pretty impressive at 96.62%. Unfortunately MaxCDN does not have presence in Asia where 12% of our traffic came from (95% for SlashGear Japan). Last I heard, they are planning POPs in Asia.</p>
<p>I don’t have many complainw on InterNAP, however they are not the fastest of bunch, but not the slowest either -routing sometimes does not provide the best route.. Pricing is pretty competitive. </p>
<p><a href="http://highwinds.com">HighWinds</a> is a very affordable CDN vendor, unfortunately it rewrites files URL rather than sticking with predefined CNAME you have setup for the account. Great reporting tools (entirely made of Flash) and control panel.</p>
<p>Akamai is the big dog in CDN business; I was very excited when giving it a try. It has robust control panel, fast aggregation of content when setting up origin pull, and it has many POP around the world. Speed is impressive, however I was disappointed to find out it was not the fastest out of the bunch and pricing is amazingly high unless you commit to a high bandwidth bucket. If you don’t need much bandwidth you can try <a href="http://vps.net">VPS.NET</a>, they are Akamai reseller with reasonable price.</p>
<p><a href="http://edgecast.com">EdgeCast</a> was one of the CDN I didn’t plan to include in my search for CDN vendor, but I’m glad I did. Sales were very accommodating and responsive. Setup was quick and simple, however I wish their management control panel would provide origin pull progress and detail reporting. They performed the best during my usage (Pulling data from Dallas, LA and Nagoya), almost 28 percent faster compared to InterNAP and 14 percent faster compared to Akamai. I was very surprised by the delivery speed on small object (has not tested video delivery yet – large file object). Pricing is very competitive and they will work it out depending on your situation and usage.</p>
<p>So by the end of the day, I picked EdgeCast CDN to power SlashGear.com, and SlashGear.jp due to its performance and pricing. However video files are still being serve-using HighWinds as part of UK2Group sponsorship.</p>
<p><em>Disclosure :  MaxCDN sponsored SlashPhone &#038; AndroidCommunity CDN bandwidth. UK2Group sponsored SlashGear TV videos bandwidth using HighWinds CDN.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/finding-the-right-cdn-for-slashgear-20550.php/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Welcome Ben Bajarin to SlashGear Team!</title>
		<link>http://www.ewdisonthen.com/welcome-ben-bajarin-to-slashgear-team-12544.php</link>
		<comments>http://www.ewdisonthen.com/welcome-ben-bajarin-to-slashgear-team-12544.php#comments</comments>
		<pubDate>Fri, 12 Feb 2010 18:33:30 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[slashgear]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=544</guid>
		<description><![CDATA[It is a privilege to have Ben Bajarin from Creative Strategies on SlashGear. Looking forward to read his thoughts on the tech industry with his column at SlashGear Ben also blog about technology on his tech blog here. About Ben Bajarin Since joining Creative Strategies in 2000 Ben has researched the global transition from analog [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.ewdisonthen.com/wp-content/uploads/2010/02/Screen-shot-2010-02-12-at-11.41.30-AM.png"><img src="http://www.ewdisonthen.com/wp-content/uploads/2010/02/Screen-shot-2010-02-12-at-11.41.30-AM.png" alt="" title="Screen shot 2010-02-12 at 11.41.30 AM" width="116" height="93" class="alignright size-full wp-image-545" /></a>It is a privilege to have Ben Bajarin from <a href="http://www.creativestrategies.com">Creative Strategies</a> on SlashGear. Looking forward to read his thoughts on the tech industry with his <a href="http://www.slashgear.com/author/benbajarin/">column at SlashGear</a> Ben also blog about technology on his tech blog <a href="http://benbajarin.blogs.com/">here</a>.</p>
<p><strong>About Ben Bajarin</strong></p>
<blockquote><p>Since joining Creative Strategies in 2000 Ben has researched the global transition from analog to digital in consumer technologies and entertainment media. He has focused on projects and developed strategies in the markets of the digital home ecosystem, mobile computing, digital lifestyle and interactive entertainment, trying to understand how and why consumers will use new digital technologies in their everyday lives. His expertise is in understanding the Gen X and Millenial consumers and their present and future demands for technology.</p>
<p>His research and strategic work spans digital entertainment and media, brand marketing and awareness, social media and consumer products and services. Ben manages Creative Strategies behavioural analysis and digital home research center where the impacts of many consumer behaviours, digital home / family and digital lifestyle technologies are studied.</p>
<p>His current and past clients have included Sony, HP, Dell, Toshiba, Philips, Palm, NVIDIA, Intel, AMD and Microsoft to name a few. He speaks regularly at industry events and trade shows, appears frequently on technology radio shows, is quoted frequently by the press and has regular television appearances commenting on the latest technology news. </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/welcome-ben-bajarin-to-slashgear-team-12544.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I’m on Google Nexus One – Said my goodbye to the iPhone 3GS</title>
		<link>http://www.ewdisonthen.com/im-on-google-nexus-one-said-my-goodbye-to-the-iphone-3gs-13535.php</link>
		<comments>http://www.ewdisonthen.com/im-on-google-nexus-one-said-my-goodbye-to-the-iphone-3gs-13535.php#comments</comments>
		<pubDate>Thu, 14 Jan 2010 05:22:17 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[editorial]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=535</guid>
		<description><![CDATA[Read on why I switched to Google&#8217;s Nexus One. Not saying I would not use the iPhone x.x version in the future, but for now, Nexus One fits me like a glove.]]></description>
				<content:encoded><![CDATA[<p>Read on <a href="http://www.slashgear.com/iswitched-iphone-3gs-to-nexus-one-1269679/">why I switched</a> to Google&#8217;s Nexus One. Not saying I would not use the iPhone x.x version in the future, but for now, Nexus One fits me like a glove.</p>
<a href="http://www.slashgear.com/iswitched-iphone-3gs-to-nexus-one-1269679/"><img src="http://www.ewdisonthen.com/wp-content/uploads/2010/01/ewdi_editorial_1-540x408-460x347.jpg" alt="" title="ewdi_editorial_1-540x408" width="460" height="347" class="alignnone size-medium wp-image-536" /></a>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/im-on-google-nexus-one-said-my-goodbye-to-the-iphone-3gs-13535.php/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SlashGear is on WordPress Showcase</title>
		<link>http://www.ewdisonthen.com/slashgear-is-on-wordpress-showcase-27529.php</link>
		<comments>http://www.ewdisonthen.com/slashgear-is-on-wordpress-showcase-27529.php#comments</comments>
		<pubDate>Sun, 27 Dec 2009 20:42:42 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[press]]></category>
		<category><![CDATA[slashgear]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=529</guid>
		<description><![CDATA[I&#8217;m honored that SlashGear was added to WordPress showcase for our unique implementation of WordPress &#038; BBPress. Quoted from WordPress Showcase Why it’s in the Showcase: SlashGear is a major gadget and technology blog that receives millions of readers per month and uses WordPress to power its entire site, including main site, bbPress-powered forums, and [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m honored that SlashGear was added to <a href="http://wordpress.org/showcase/slashgear/">WordPress showcase</a> for our unique implementation of WordPress &#038; BBPress.</p>
<a href="http://www.ewdisonthen.com/wp-content/uploads/2009/12/Screen-shot-2009-12-27-at-2.38.50-PM.png"><img src="http://www.ewdisonthen.com/wp-content/uploads/2009/12/Screen-shot-2009-12-27-at-2.38.50-PM-423x400.png" alt="" title="Screen shot 2009-12-27 at 2.38.50 PM" width="423" height="400" class="aligncenter size-medium wp-image-530" /></a>
<p><strong>Quoted from WordPress Showcase</strong></p>
<blockquote><p><strong>Why it’s in the Showcase:</strong> SlashGear is a major gadget and technology blog that receives millions of readers per month and uses WordPress to power its entire site, including main site, bbPress-powered forums, and video site. All three sites have integrated user tables and login session sharing.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/slashgear-is-on-wordpress-showcase-27529.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eGether.com Launched – multi-dimensional social platform for consumers, reporters, analysts and PR practitioners</title>
		<link>http://www.ewdisonthen.com/egether-com-launched-multi-dimensional-social-platform-for-consumers-reporters-analysts-and-pr-practitioners-08496.php</link>
		<comments>http://www.ewdisonthen.com/egether-com-launched-multi-dimensional-social-platform-for-consumers-reporters-analysts-and-pr-practitioners-08496.php#comments</comments>
		<pubDate>Tue, 08 Dec 2009 17:23:06 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[egether]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=496</guid>
		<description><![CDATA[For the past 6 months I&#8217;ve been working on a new project outside R3 Media LLC with my business partner Vincent Nguyen and a great developer Daniel Lim. The project is called eGether; a multi-dimensional social portal for consumers, reporters, analysts and PR practitioners. Curious? Then head over to eGether now! FOR IMMEDIATE RELEASE Come [...]]]></description>
				<content:encoded><![CDATA[<p>For the past 6 months I&#8217;ve been working on a new project outside R3 Media LLC with my business partner Vincent Nguyen and a great developer Daniel Lim. The project is called eGether; a multi-dimensional social portal for consumers, reporters, analysts and PR practitioners. Curious? Then head over to <a href="http://egether.com">eGether</a> now!</p>
<img class="aligncenter size-medium wp-image-501" title="Screen shot 2009-12-08 at 11.21.02 AM" src="http://www.ewdisonthen.com/wp-content/uploads/2009/12/Screen-shot-2009-12-08-at-11.21.02-AM-460x307.png" alt="Screen shot 2009-12-08 at 11.21.02 AM" width="460" height="307" />
<blockquote><p>FOR IMMEDIATE RELEASE</p>
<p><em>Come together with eGether a collaborative multi-dimensional service combining the best functionality from Twitter, Facebook, YouTube, Flickr and LinkedIn.</em></p>
<p>Scottsdale, AZ, and Dallas, TX &#8212; December 8, 2009 &#8212; Addressing consumer demand to have one site that links to Twitter, Facebook, YouTube, Flickr and LinkedIn, eGether is launching today in public beta (http://egether.com/). A collaborative multi-dimensional social portal for consumers, reporters, analysts and PR practitioners, eGether is centered around an Activity Pitching Engine (APE) that combines 255 character status updates and 999 character pitches, using familiar @ status messaging for inter-user communication. Status updates can include one image, while pitches can include image and video content (including embedded YouTube), documents such as DOC, PDF and ZIP, and hyperlinks.</p>
<p>eGether was founded by Vincent Nguyen and Ewdison Then after they had grown frustrated using a combination of existing networking tools to collaborate. They developed eGether to bring the best of Twitter, Facebook, YouTube, Flickr and LinkedIn functionality and features into one easy-to-manage social networking service structured around Activities and Connections. Activities originate from user status updates and pitches, combined with user-defined contact information, online galleries that can be tagged with people and products. Connections include private and public circles &#8212; groups of other eGether users with whom they collaborate, or topics about which they are interested.</p>
<p>eGether also allows consumers to obtain product and service information direct from the source, rather than second-hand. Consumers can use global search for the latest company news and reviews, and PR firms can freely pitch their clients&#8217; products and services, rather than sending out individual alerts.</p>
<p>eGether offers a single information point with a custom URL for users that can be shared via email, Twitter, Facebook and elsewhere. Visitors can then engage in discussions with everyone from consumers, to people in the media, to analysts, or even engineers involved in the company. eGether also empowers users to connect and share what&#8217;s on their mind, or even just to share their thoughts on the shiny new gadget they received over the holidays.</p>
<p>To start taking advantage of eGether’s powerful social networking tools, sign up at http://egether.com/signup.</p>
<p>eGether is supported by an advisory board including Tim Bajarin, president of Creative Strategies, Inc. (www.creativestrategies.com); Michael Gartenberg, vice president of strategy and analysis at Interpret, LLC (www.gartenblog.net); Seth Combs, interactive brand strategist(www.sethcombs.com); and Judie Lipsett, tech blogger and founder of GearDiary (www.geardiary.com).</p>
<p>###<br />
For more information, contact</p>
<p>Vincent Nguyen<br />
vincent [at] r3media.com<br />
+1 (917) 477-7911</p>
<p>http://eGether.com/Vincent</p>
<p>Ewdison Then<br />
ethen [at] r3media.com<br />
+1 (917) 720-8281</p>
<p>http://eGether.com/Ewdi</p>
<p>All marks are the property of their respective owners.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/egether-com-launched-multi-dimensional-social-platform-for-consumers-reporters-analysts-and-pr-practitioners-08496.php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Introducing SlashGear new columnists</title>
		<link>http://www.ewdisonthen.com/introducing-slashgear-new-columnists-27486.php</link>
		<comments>http://www.ewdisonthen.com/introducing-slashgear-new-columnists-27486.php#comments</comments>
		<pubDate>Tue, 27 Oct 2009 21:52:18 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[r3 media]]></category>
		<category><![CDATA[slashgear]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=486</guid>
		<description><![CDATA[I know I’m a little late on this, but late announcement is better than no announcement at all; SlashGear has added its editorial agenda with columns written by industry experts. While our focus is still up to date tech and gadget news, we wanted to diversify our content with opinions and analysis on digital lifestyle. [...]]]></description>
				<content:encoded><![CDATA[<p><img class="size-full wp-image-488 aligncenter" title="slashgear_columnist" src="http://www.ewdisonthen.com/wp-content/uploads/2009/10/slashgear_columnist.jpg" alt="slashgear_columnist" width="367" height="155" /><br />
I know I’m a little late on this, but late announcement is better than no announcement at all; SlashGear has added its editorial agenda with <a href="http://www.slashgear.com/section/columns/">columns written by industry experts</a>. While our focus is still up to date tech and gadget news, we wanted to diversify our content with opinions and analysis on digital lifestyle. I would like to welcome <a href="http://gartenblog.net/">Michael Gartenberg</a>, <a href="http://www.greengart.com/">Avi Greengart</a>, and <a href="http://twitter.com/joannastern">Joanna Stern</a> to SlashGear family.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/introducing-slashgear-new-columnists-27486.php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
