<?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>Ewdison Then &#187; Technology</title>
	<atom:link href="http://www.ewdisonthen.com/topic/technology/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ewdisonthen.com</link>
	<description>an entrepreneur, blogger, and tech enthusiast</description>
	<lastBuildDate>Tue, 07 Sep 2010 16:59:12 +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>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>15</slash:comments>
		</item>
		<item>
		<title>Wikio Top Technology Blog Ranking for February 2010</title>
		<link>http://www.ewdisonthen.com/wikio-top-technology-blog-ranking-for-february-2010-03539.php</link>
		<comments>http://www.ewdisonthen.com/wikio-top-technology-blog-ranking-for-february-2010-03539.php#comments</comments>
		<pubDate>Wed, 03 Feb 2010 17:18:41 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[slashgear]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=539</guid>
		<description><![CDATA[I keep track on how our network sites are doing around the analytic realm. The reason for this is not to stroke my own ego, but to understand the trend and gather information on how our users reacts to content published on our sites. One of my favorite place to find these analytic information is [...]]]></description>
			<content:encoded><![CDATA[<p>I keep track on how our network sites are doing around the analytic realm. The reason for this is not to stroke my own ego, but to understand the trend and gather information on how our users reacts to content published on our sites. One of my favorite place to find these analytic information is a site call <a href="http://wikio.com">Wikio</a>. To understand more on how the ranking are being calculated, I asked Wikio&#8217;s Community Executive Marjorie Montillon about the ranking&#8217;s placement. Here is what she has to said on this matter:</p>
<blockquote><p>The position of a blog in the Wikio ranking depends on the number and weight of the incoming links from other blogs. These links are dynamic, which means that they are backlinks or links found within articles. </p>
<p>Only links found in the RSS feed are included. Blogrolls are not taken into account, and the weight of any given link increases according to how recently it was published. We thus hope to provide a classification that is more representative of the current influence levels of the blogs therein. </p>
<p>Moreover, the weight of a link depends on the linking blog’s position in the Wikio ranking. With our algorithm, the weight of a link from a blog that is more highly ranked is greater than that of a link from a blog that is less well ranked. </p>
<p>The rankings are updated on a monthly basis.</p>
<p>The Wikio rankings do not take into account either the Google PageRank or traffic of your blog. We use our own algorithm.
</p></blockquote>
<p>In another words, Wikio is an upstream analytics provider and gather their own data rather than aggregating it from other services. Below is the Feb 2010 Ranking that Marjorie sent to me for sneak preview before it goes up on Wikio this Friday. Wikio publishes ranking monthly on the 5th of each month. <a href="http://www.slashgear.com">SlashGear</a> seats at #16 this month.</p>
<table width="420">
<tr>
<td valign="top" width="50%">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr class="bg">
<td class="td1" valign="top" width="30">1</td>
<td class="td2"><a href="http://www.techcrunch.com" target="_blank">TechCrunch</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">2</td>
<td class="td2"><a href="http://us.gizmodo.com/" target="_blank">Gizmodo</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">3</td>
<td class="td2"><a href="http://www.boingboing.net" target="_blank">Boing Boing</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">4</td>
<td class="td2"><a href="http://googleblog.blogspot.com" target="_blank">The Official Google Blog</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">5</td>
<td class="td2"><a href="http://mashable.com" target="_blank">Mashable!</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">6</td>
<td class="td2"><a href="http://valleywag.com" target="_blank">Valleywag</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">7</td>
<td class="td2"><a href="http://www.readwriteweb.com" target="_blank">ReadWriteWeb</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">8</td>
<td class="td2"><a href="http://crunchgear.com" target="_blank">CrunchGear</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">9</td>
<td class="td2"><a href="http://bits.blogs.nytimes.com" target="_blank">Bits &#8211; New York Times blog</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">10</td>
<td class="td2"><a href="http://www.lifehacker.com" target="_blank">Lifehacker</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">11</td>
<td class="td2"><a href="http://gigaom.com" target="_blank">GigaOM</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">12</td>
<td class="td2"><a href="http://blog.wired.com/gadgets" target="_blank">Gadget Lab &#8211; Wired Blog</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">13</td>
<td class="td2"><a href="http://venturebeat.com" target="_blank">VentureBeat</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">14</td>
<td class="td2"><a href="http://www.boygeniusreport.com" target="_blank">The Boy Genius Report</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">15</td>
<td class="td2"><a href="http://www.kottke.org" target="_blank">Kottke</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">16</td>
<td class="td2"><a href="http://www.slashgear.com" target="_blank">SlashGear</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">17</td>
<td class="td2"><a href="http://blog.twitter.com/" target="_blank">Twitter Blog</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">18</td>
<td class="td2"><a href="http://makezine.com/blog/" target="_blank">MAKE: Blog &#8211; Make: Magazine</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">19</td>
<td class="td2"><a href="http://googlemobile.blogspot.com" target="_blank">Official Google Mobile Blog</a></td>
<td class="td3"></td>
</tr>
<tr class="bg">
<td class="td1" valign="top" width="30">20</td>
<td class="td2"><a href="http://blog.wired.com/business/" target="_blank">Epicenter</a></td>
<td class="td3"></td>
</tr>
</table>
<p><a href="http://www.wikio.com" target="_blank" title="Ranking by Wikio">Ranking by Wikio</a></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/wikio-top-technology-blog-ranking-for-february-2010-03539.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m on Google Nexus One &#8211; 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>
<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></p>
]]></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>Controversy over Phorm continues to grow</title>
		<link>http://www.ewdisonthen.com/controversy-over-phorm-continues-to-grow-06465.php</link>
		<comments>http://www.ewdisonthen.com/controversy-over-phorm-continues-to-grow-06465.php#comments</comments>
		<pubDate>Mon, 06 Apr 2009 18:56:51 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=465</guid>
		<description><![CDATA[Phorm has created a new type of technology that will essentially allow ISPs to track their users’ activity online. ISPs will then be able to take the information that has been generated by users and sell it to online advertisers. This will allow them to use advertisements that fit more appropriately with a user’s interests. [...]]]></description>
			<content:encoded><![CDATA[<p>Phorm has <a href="http://www.guardian.co.uk/technology/2009/apr/02/dotcom-boycott-advertising-phorm">created</a> a new type of technology that will essentially allow ISPs to track their users’ activity online.  ISPs will then be able to take the information that has been generated by users and sell it to online advertisers.  This will allow them to use advertisements that fit more appropriately with a user’s interests.  </p>
<p>Many people have expressed outrage at the technology which could easily be seen as a gross invasion of privacy.  Not too long ago, the Open Rights Group sent several large internet companies a letter that asked them to avoid Phorm’s technology.  Those who received the letter included Bebo, Google, Facebook, and Yahoo.</p>
<p>Several companies are beginning to respond to the letter and it looks like Phorm might have a problem on their hands.  A Bebo spokesperson said &#8220;We have received the letter and are giving it careful consideration from privacy and business perspectives.&#8221;  Chris Kelly with Facebook added that &#8220;If [web browsers] are deeply unhappy with it we hope they express that as clearly as possible to the ISPs.&#8221;</p>
<p>It is also easy to assume that companies like Google will want nothing to do with Phorm.  This is mainly because the technology that Phorm developed will be competing with their own.  Although the technologies used by both companies may be different, the end result is more or less the same.  Both will enable behavioral advertising to take place.  The Open Rights Group is expecting a response from Google shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/controversy-over-phorm-continues-to-grow-06465.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online journalists believe that web advertisements will save the news</title>
		<link>http://www.ewdisonthen.com/online-journalists-believe-that-web-advertisements-will-save-the-news-02463.php</link>
		<comments>http://www.ewdisonthen.com/online-journalists-believe-that-web-advertisements-will-save-the-news-02463.php#comments</comments>
		<pubDate>Thu, 02 Apr 2009 23:39:14 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=463</guid>
		<description><![CDATA[It is no secret that the newspaper industry is suffering but several journalists who work with online newspapers believe that the future of the industry will be saved with the help of web advertisements. The Online News Association conducted a survey of approximately 300 journalists and the vast majority of them said that the news [...]]]></description>
			<content:encoded><![CDATA[<p>It is no secret that the newspaper industry is suffering but several journalists who work with online newspapers believe that the future of the industry will be saved with the help of web advertisements.  The Online News Association <a href="http://www.thestandard.com/news/2009/03/31/survey-online-journalists-still-hopeful-web-advertising-will-save-day">conducted</a> a survey of approximately 300 journalists and the vast majority of them said that the news industry will find a way to stay profitable.</p>
<p>The survey questioned the journalists as to how online news sites would be able to turn a profit in the future.  Around 60 per cent of respondents said that web advertisements would be the most likely way to generate revenue in the next few years.</p>
<p>Print publications have slowly begun to realize that their readership base is shrinking.  In most cases, the good news is that these same readers are heading online to read the information.  A great example of this is a major newspaper like the New York Times.  Every month this site receives millions and millions of unique clicks.  </p>
<p>While their subscriber bases might have receded, the customers are still reading the news.  The only thing that print publications need to do now is figure out how to generate the revenues from their online readers to make up for what they might have lost through the print side.  With web advertising continually growing, it seems like the perfect opportunity for a number of these publications to cash in on.</p>
<p>Perhaps this strategy is oversimplified and it could prove to be ineffective.  Rupert Murdoch recently noted that web advertising rates were simply too low.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/online-journalists-believe-that-web-advertisements-will-save-the-news-02463.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NeXplore brings interactive video to web advertisements</title>
		<link>http://www.ewdisonthen.com/nexplore-brings-interactive-video-to-web-advertisements-02456.php</link>
		<comments>http://www.ewdisonthen.com/nexplore-brings-interactive-video-to-web-advertisements-02456.php#comments</comments>
		<pubDate>Thu, 02 Apr 2009 22:12:35 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=456</guid>
		<description><![CDATA[NeXplore has just launched the latest beta version of its web advertising software called NeXplore Ads which focuses on search capabilities. In what the company is calling a “lifecycle platform”, marketers will be able to utilize NeXplore Ads to create web advertisements and then manage their ad campaign going forward. NeXplore Ads will allow marketers [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nexplore.com/">NeXplore</a> has just <a href="http://www.foxbusiness.com/story/markets/industries/technology/nexplore-ads-brings-interactive-video-commercials-search-advertising/">launched</a> the latest beta version of its web advertising software called NeXplore Ads which focuses on search capabilities.  In what the company is calling a “lifecycle platform”, marketers will be able to utilize NeXplore Ads to create web advertisements and then manage their ad campaign going forward.  </p>
<p><img src="http://www.ewdisonthen.com/wp-content/uploads/2009/04/picture-4-460x244.png" alt="picture-4" title="picture-4" width="460" height="244" class="aligncenter size-medium wp-image-457" /></p>
<p>NeXplore Ads will allow marketers to engage in advertising campaigns that include a variety of different advertisement formats including simple text, video, instant message, and email.  The new advertising platform will integrate with the company’s web browser called NeXplore Search which users will enjoy simply because of its aesthetic qualities.</p>
<p>The chief marketing officer for NeXplore, Scott Grizzle, said that with the help of NeXplore Ads, marketers will be able to create engaging advertisements that people will enjoy.  He added that “With a simple click consumers can watch a brief video commercial and can click again to initiate a real-time video chat with a call center representative of the advertiser. With NeXplore Ads, targeted consumers are engaged, relationships forged and transactions consummated within seconds, with absolute privacy and without leaving the search results page.&#8221;</p>
<p>One of NeXplore’s consultants is Rowland Hanson who previously worked with Microsoft on their branding effort for Windows.  Hanson has said that NeXplore Ads has really changed the way in which search advertisements can be delivered.  He added that companies who take advantage of the interactive advertisements that NeXplore can generate will likely see a great return on their investment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/nexplore-brings-interactive-video-to-web-advertisements-02456.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wedding Mapper introduces new type of web advertising</title>
		<link>http://www.ewdisonthen.com/wedding-mapper-introduces-new-type-of-web-advertising-01449.php</link>
		<comments>http://www.ewdisonthen.com/wedding-mapper-introduces-new-type-of-web-advertising-01449.php#comments</comments>
		<pubDate>Wed, 01 Apr 2009 16:02:59 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=449</guid>
		<description><![CDATA[Popular website Wedding Mapper is changing the way web advertising is conducted. In what is considered to be a first in the advertising industry, Wedding Mapper is going to start auctioning off space for web advertisements that will be placed on a variety of different local sites. The President of Wedding Mapper said of the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-450" title="gi_0_kswichitastatandads" src="http://www.ewdisonthen.com/wp-content/uploads/2009/04/gi_0_kswichitastatandads.jpg" alt="gi_0_kswichitastatandads" width="250" height="145" />Popular website Wedding Mapper is changing the way web advertising is conducted.  In what is considered to be a first in the advertising industry, Wedding Mapper is going to start <a href="http://www.emediawire.com/releases/2009/3/prweb2274014.htm">auctioning</a> off space for web advertisements that will be placed on a variety of different local sites.</p>
<p>The President of Wedding Mapper said of the new web advertising scheme that &#8220;Most industry websites cannot afford to cater to small, local businesses due to the overhead required to penetrate such markets with a sales team.  Because we are fully automated, Wedding Mapper can serve diverse markets and support large and small businesses delivering the industry&#8217;s most competitive pricing structure with stronger results.&#8221;</p>
<p>Wedding Mapper uses a sophisticated algorithm to determine price levels.  This algorithm takes into account things like web traffic and even the city which the site might be geared toward.  Any company that wants to participate in the web advertising auction is required to create a budget.  After the bidding process is over, Wedding Mapper will chose the winners who will then receive premium advertising space.</p>
<p>Those that win the auctions will receive an update every other month which details how well their advertisements are doing.  Various statistics are included in this report such as the click-through rate.</p>
<p>So far the auction scheme seems to be working out well for Wedding Mapper.  The site has already received around 250,000 bids for advertising space which covers approximately 7,000 markets.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/wedding-mapper-introduces-new-type-of-web-advertising-01449.php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 8 may complicate web advertising</title>
		<link>http://www.ewdisonthen.com/internet-explorer-8-may-complicate-web-advertising-30443.php</link>
		<comments>http://www.ewdisonthen.com/internet-explorer-8-may-complicate-web-advertising-30443.php#comments</comments>
		<pubDate>Mon, 30 Mar 2009 14:30:32 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=443</guid>
		<description><![CDATA[Microsoft has just released the latest version of its popular web browser. Those who choose to download Internet Explorer 8 will enjoy several new measures that were designed to protect your privacy while you browse the web. These measures just might have a negative impact on web advertisers which rely on collecting data from web [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft has just released the latest version of its popular web browser.  Those who choose to download Internet Explorer 8 will enjoy several new measures that were designed to protect your privacy while you browse the web.  These measures just might have a <a href="http://online.wsj.com/article/BT-CO-20090323-704920.html">negative impact</a> on web advertisers which rely on collecting data from web browsers.</p>
<p><img src="http://www.ewdisonthen.com/wp-content/uploads/2009/03/ie8-install-460x344.jpg" alt="ie8-install" title="ie8-install" width="460" height="344" class="aligncenter size-medium wp-image-444" /></p>
<p>If you choose to turn on certain features of Internet Explorer 8 you can stop behavioral web advertisers from tracking your web usage.  A number of people have recently expressed concerns about this type of web advertising and some have gone as far as to call for government regulation in the industry.  With this new version of Internet Explorer 8, it might be possible to alleviate some of the growing pressure to regulate web advertising.</p>
<p>While many might be excited at the prospect of greater privacy while browsing the web, be prepared for a headache.  Finding the privacy features and turning them on is no easy task.  Web browsers should keep in mind that Microsoft engages in behavioral advertising as well.  This might suggest it is not in the best interest of the software giant to make this an easy task for users.</p>
<p>For those of you that are frustrated by cookies, look out for a feature called InPrivate Browsing.  When you activate this handy little feature you will be able to prevent these cookies from being placed onto your computer.  These cookies are frequently the keystones of behavioral advertising.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/internet-explorer-8-may-complicate-web-advertising-30443.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meebo to implement advertising service on the web</title>
		<link>http://www.ewdisonthen.com/meebo-to-implement-advertising-service-on-the-web-25437.php</link>
		<comments>http://www.ewdisonthen.com/meebo-to-implement-advertising-service-on-the-web-25437.php#comments</comments>
		<pubDate>Wed, 25 Mar 2009 13:23:51 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=437</guid>
		<description><![CDATA[There are many sites that have added the functionality of Meebo so that their users can take advantage of the chat service. This is great for sites like Flixster because their users are not forced to navigate away from the site if they want to chat online with another person. It now appears that Meebo [...]]]></description>
			<content:encoded><![CDATA[<p>There are many sites that have added the functionality of Meebo so that their users can take advantage of the chat service.  This is great for sites like Flixster because their users are not forced to navigate away from the site if they want to chat online with another person.  It now appears that Meebo will be <a href="http://venturebeat.com/2009/03/23/meebos-chat-advertising-service-expands-to-the-web/">adding</a> some web advertisements to the handy interface by the end of the month.</p>
<p><img src="http://www.ewdisonthen.com/wp-content/uploads/2009/03/meebo-460x273.png" alt="meebo" title="meebo" width="460" height="273" class="aligncenter size-medium wp-image-438" /></p>
<p>Users who take advantage of the chat feature will notice the appearance of banner advertisements.  Once they click on the banner, a larger advertisement will appear on the screen which measures around 900 x 400 pixels in size.  At the moment, the concept appears to be a good idea on behalf of Meebo although there is no clear indication as to the amount of money that the advertisements could bring in.</p>
<p>For those that choose to use Meebo’s chat service directly from their site, the banner advertisements may look a bit familiar.  The company first implemented them there and after a successful experience they will be pushing the advertising service further.  </p>
<p>Many people seem pleased with the advertising capabilities that Meebo is providing.  Because a larger box appears when you click on the banner, there is more flexibility as to what advertisers can do with it.  This means you could play a game in one of these boxes or watch a trailer for a new movie that is coming out.  At the moment, advertisements on Meebo’s sites have about one percent of users clicking on the banners.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/meebo-to-implement-advertising-service-on-the-web-25437.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interactive marketing is still growing while online ads spending decline</title>
		<link>http://www.ewdisonthen.com/interactive-marketing-is-still-growing-while-online-ads-spending-decline-20421.php</link>
		<comments>http://www.ewdisonthen.com/interactive-marketing-is-still-growing-while-online-ads-spending-decline-20421.php#comments</comments>
		<pubDate>Fri, 20 Mar 2009 14:08:17 +0000</pubDate>
		<dc:creator>Ewdison Then</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[marketing]]></category>

		<guid isPermaLink="false">http://www.ewdisonthen.com/?p=421</guid>
		<description><![CDATA[Many smaller companies find it difficult to determine what makes the most sense in terms of advertising. As these companies all have a limited marketing budget, it is important that the money is spent in the best possible way to promote the company. A new report indicates that many smaller companies are spending their marketing [...]]]></description>
			<content:encoded><![CDATA[<p>Many smaller companies find it difficult to determine what makes the most sense in terms of advertising.  As these companies all have a limited marketing budget, it is important that the money is spent in the best possible way to promote the company.  A new report <a href="http://www.mediapost.com/publications/?fa=Articles.showArticle&#038;art_aid=102323">indicates</a> that many smaller companies are spending their marketing budget on alternatives to web advertising.  This could mean that a company invests some of their budget into improving their web presence overall.</p>
<p><img src="http://www.ewdisonthen.com/wp-content/uploads/2009/03/marketing.jpg" alt="marketing" title="marketing" width="450" height="303" class="alignright size-full wp-image-422" /></p>
<p>The report, which is named ‘Main Street Goes Interactive’, was generated by Borrell Associates.  If its forecasts are accurate, five years from now spending on marketing that is not related to online advertising will reach over $1.6 billion.  The report also suggested that some web advertising sectors will see much slower growth than they have in the past.</p>
<p>According to the report, “The blurring borders between what is advertising in the interactive world and what is not added to the shift of &#8216;non-ad&#8217; marketing dollars.  Businesses large and smaller&#8211;but especially smaller ones&#8211;don&#8217;t even try to make the distinction. To them, whatever they spend or do on the Web is advertising, whether it goes through an intermediary or not.&#8221;</p>
<p>The forms of online advertising that are popular today, such as the paid search advertisement, are expected to remain popular in the near future.  There has been some speculation that banner ads may fall in popularity to more interactive forms of advertising like video.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ewdisonthen.com/interactive-marketing-is-still-growing-while-online-ads-spending-decline-20421.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

