<?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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Singpolyma » Tech</title>
	
	<link>https://singpolyma.net</link>
	<description />
	<lastBuildDate>Sat, 07 Nov 2009 23:59:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image><link>http://singpolyma.net/</link><url>http://www.gravatar.com/avatar/3ab4d3a66e470ce10eb7ec812fab3c46</url><title>Stephen Paul Weber</title></image>		<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/singpolyma-techblog" type="application/rss+xml" /><feedburner:emailServiceId>singpolyma-techblog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Anonymous SFTP on Ubuntu</title>
		<link>https://singpolyma.net/2009/11/anonymous-sftp-on-ubuntu/</link>
		<comments>https://singpolyma.net/2009/11/anonymous-sftp-on-ubuntu/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 23:45:53 +0000</pubDate>
		<dc:creator>Stephen Paul Weber</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">https://singpolyma.net/?p=520</guid>
		<description><![CDATA[I spent some time today getting anonymous SFTP setup on my home server.  Why would I want to do that, you ask?  Well, for file shares.  I have an HTTP server and anonymous FTP server set up to make it easier for people to get at the public shares on the system, [...]]]></description>
			<content:encoded><![CDATA[<p>I spent some time today getting anonymous SFTP setup on my home server.  Why would I want to do that, you ask?  Well, for file shares.  I have an HTTP server and anonymous FTP server set up to make it easier for people to get at the public shares on the system, but really I&#039;m a big fan of consolidating the protocols in this space.  FTP is old and clunky, SFTP has solved many of the issues and is widely deployed.  In fact, all my PCs are running an SFTP server, only one currently runs an FTP server.</p>
<p>This how-to uses the command line.  It&#039;s really not that hard, just type exactly what I tell you to.</p>
<p>First, make sure you have the SSH server installed:</p>
<p><kbd>sudo apt-get install openssh-server</kbd></p>
<p>Next, create a new user:</p>
<p><kbd>sudo adduser --disabled-password anonymous</kbd></p>
<p>Then, edit the /etc/shadow file to make the password actually empty:</p>
<p><kbd>sudo ${EDITOR=gedit} /etc/shadow</kbd></p>
<p>Go to the last line and change the <tt>anonymous:*:</tt> to <tt>anonymous::</tt></p>
<p>Edit /etc/passwd to make the empty password allowed and the login shell is set to /usr/lib/sftp-server</p>
<p><kbd>sudo ${EDITOR=gedit} /etc/passwd</kbd></p>
<p>Go to the last line and change <tt>anonymous:x:</tt> to <tt>anonymous::</tt> and also change the value on the end of the line (it will either be <tt>/bin/bash</tt> or <tt>/bin/sh</tt>) to /usr/lib/sftp-server.</p>
<p>Next, you need to allow sftp-server as a valid shell.</p>
<p><kbd>sudo su<br />
echo /usr/lib/sftp-server >> /etc/shells<br />
exit</kbd></p>
<p>You also need to allow PAM to accept blank passwords for SSH sessions, so:</p>
<p><kbd>sudo ${EDITOR=gedit} /etc/pam.d/sshd</kbd></p>
<p>Change the line that reads <tt><span class="reply vcard tag">@<a class="url fn" href="http://twitter.com/include">include</a></span> common-auth</tt> and replace it with:</p>
<p><code>auth  [success=1 default=ignore] pam_unix.so nullok<br />
auth  requisite         pam_deny.so<br />
auth  required       pam_permit.so</code></p>
<p>Finally, you need to set the SSH server to allow blank passwords.</p>
<p><kbd>sudo ${EDITOR=gedit} /etc/ssh/sshd_config</kbd></p>
<p>Find the line that reads <tt>PermitEmptyPasswords no</tt> and change the <tt>no</tt> to a <tt>yes</tt>.</p>
<p>Restart sshd with:</p>
<p><kbd>sudo /etc/init.d/ssh restart</kbd></p>
<p>And you&#039;re done!</p>
<p><strong>Warning:</strong> make sure the anonymous user does not have access to files you do not want it anyone to have access to!  Ubuntu by default makes way too many things world-readable.  This how-to is not about file permissions, but make sure your private files are set so that only your user can read them!</p>
 <div class="ccline"><a href="http://creativecommons.org/licenses/by/2.5/ca/" rel="license"><img alt="Creative Commons Licence" src="http://i.creativecommons.org/l/by/2.5/ca/88x31.png" /></a> &copy; 2006-2008 Stephen Paul Weber.  Some Rights Reserved.</div> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=z-uqKEmfd7A:M70U1KXzCeM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=z-uqKEmfd7A:M70U1KXzCeM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=z-uqKEmfd7A:M70U1KXzCeM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=z-uqKEmfd7A:M70U1KXzCeM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=z-uqKEmfd7A:M70U1KXzCeM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=z-uqKEmfd7A:M70U1KXzCeM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=z-uqKEmfd7A:M70U1KXzCeM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=z-uqKEmfd7A:M70U1KXzCeM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=z-uqKEmfd7A:M70U1KXzCeM:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=z-uqKEmfd7A:M70U1KXzCeM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/singpolyma-techblog/~4/z-uqKEmfd7A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>https://singpolyma.net/2009/11/anonymous-sftp-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple HTTP-based File Shares for Ubuntu</title>
		<link>https://singpolyma.net/2009/11/simple-http-based-file-shares-for-ubuntu/</link>
		<comments>https://singpolyma.net/2009/11/simple-http-based-file-shares-for-ubuntu/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 20:53:05 +0000</pubDate>
		<dc:creator>Stephen Paul Weber</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">https://singpolyma.net/?p=518</guid>
		<description><![CDATA[This is a simple how-to for setting up automatic file sharing for users&#039; ~/Public folders in Ubuntu over HTTP with minimal overhead.
While this how-to is simple, it does use the command line.  I happen to believe the command line is not so scary as the GUI marketing people would have you think, even to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a simple how-to for setting up automatic file sharing for users&#039; ~/Public folders in Ubuntu over HTTP with minimal overhead.</p>
<p>While this how-to is simple, it does use the command line.  I happen to believe the command line is not so scary as the GUI marketing people would have you think, even to new users.  It&#039;s much easier to say &#034;type this&#034; and have a user understand than it is to try to describe the GUI actions.</p>
<p>First, install my subdirs script.  This script finds a list of directories containing some other directory, and prints out the path to the subdirectory (if you don&#039;t get that, never mind, you just need to know that you need in installed for this how-to).</p>
<p><kbd>sudo wget -O /usr/local/bin/subdirs http://github.com/singpolyma/singpolyma/raw/master/scripts/subdirs<br />
sudo chmod +X /usr/local/bin/subdirs</kbd></p>
<p>Then, install the webfs HTTP server.</p>
<p><kbd>sudo apt-get install webfs</kbd></p>
<p>Edit the config file a bit:</p>
<p><kbd>sudo ${EDITOR=gedit} /etc/webfsd.conf</kbd></p>
<p>Change the line starting with web_root= to say:</p>
<p><tt>web_root=/var/www</tt></p>
<p>And the line starting with web_port= to say:</p>
<p><tt>web_port=80</tt></p>
<p>Then restart the server by running:</p>
<p><kbd>sudo /etc/init.d/webfs restart</kbd></p>
<p>Finally, to symlink the shares, run:</p>
<p><kbd>subdirs /home Public | while read DIR; do ln -s "$DIR" /var/www/$(basename "`dirname "$DIR"`"); done</kbd></p>
<p>You&#039;re done!</p>
<p>The last command will have to be re-run every time you add a new user.  Or you could add it as the second-last line in your /etc/rc.local file to make it run every time you boot.</p>
<p>Now people can just visit your computer in their webbrowser (if they&#039;re on your local network&#8230; to get access from the Internet you have to configure your router, but you probably don&#039;t want that anyway).  The address of any Ubuntu computer in a webbrowser (on a computer than supports mDNS, such as other Ubuntu systems or Apple systems) is just <tt>hostname.local</tt>.  For example, my computer is <tt>singpolyma-mini.local</tt>.  For Windows users, they&#039;ll have to type in your IP address (unless they install Bonjour for Windows).</p>
<p>You can find your IP address by running:</p>
<p><kbd>ifconfig | grep 'inet addr' | grep -v 127.0.0.1 | awk '{ print $2 }'</kbd></p>
 <div class="ccline"><a href="http://creativecommons.org/licenses/by/2.5/ca/" rel="license"><img alt="Creative Commons Licence" src="http://i.creativecommons.org/l/by/2.5/ca/88x31.png" /></a> &copy; 2006-2008 Stephen Paul Weber.  Some Rights Reserved.</div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=jqSxYZDz6d8:fTGv4L1wncY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=jqSxYZDz6d8:fTGv4L1wncY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=jqSxYZDz6d8:fTGv4L1wncY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=jqSxYZDz6d8:fTGv4L1wncY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=jqSxYZDz6d8:fTGv4L1wncY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=jqSxYZDz6d8:fTGv4L1wncY:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=jqSxYZDz6d8:fTGv4L1wncY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=jqSxYZDz6d8:fTGv4L1wncY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=jqSxYZDz6d8:fTGv4L1wncY:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=jqSxYZDz6d8:fTGv4L1wncY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/singpolyma-techblog/~4/jqSxYZDz6d8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>https://singpolyma.net/2009/11/simple-http-based-file-shares-for-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PostRank "Buckets"</title>
		<link>https://singpolyma.net/2009/10/postrank-buckets/</link>
		<comments>https://singpolyma.net/2009/10/postrank-buckets/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 17:38:02 +0000</pubDate>
		<dc:creator>Stephen Paul Weber</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[Communications]]></category>
		<category><![CDATA[PostRank]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">https://singpolyma.net/?p=516</guid>
		<description><![CDATA[After an incredible amount of time working with, and for, PostRank, I think I have finally landed on what I would like to do with their technology that would be useful to me.
Back when I was working a lot on their Google Reader Greasemonkey overlay, one of the features requested was &#034;sort by PostRank&#034;, which [...]]]></description>
			<content:encoded><![CDATA[<p>After an incredible amount of time working with, and for, <span class="vcard"><a class="fn url org" rel="employer" href="http://postrank.com">PostRank</a></span>, I think I have finally landed on what I would like to do with their technology that would be useful <strong>to me</strong>.</p>
<p>Back when I was working a lot on their Google Reader Greasemonkey overlay, one of the features requested was &#034;sort by PostRank&#034;, which never made a lot of sense to me.  Sort <strong>what</strong> by PostRank?</p>
<p>Buckets.</p>
<p>I want to read basically everything that comes through my feedreader, or at least see the headlines, but I may not care about it all at this moment.  I don&#039;t want an interestingness sort or filter, I want a bucketizer.  I want to be able to say &#034;I&#039;ll read the best stuff right now when I&#039;ve got a few seconds, and the rest later.&#034;</p>
<p>I may never read the rest, which then amounts to filtering, but I may, and that&#039;s different.</p>
<p>The best way to implement something like this would be to allow for &#034;filtering&#034; by PostRank <strong>ranges</strong> instead of having a max cutoff.  That way I could have a 7+ feed, a 3-7 feed, and a 3- feed, for each feed.  I&#039;d then make (in my reader) a &#034;Best&#034; folder, a &#034;Good&#034; folder, and a &#034;Bottomfeeder&#034; folder.  I&#039;d process the content in &#034;Best&#034; a few times a day, &#034;Good&#034; at least once a week, &#034;Bottomfeeder&#034; whenever I had extra time to read stuff.</p>
<p>I actually really like this idea.  A lot.</p>
 <div class="ccline"><a href="http://creativecommons.org/licenses/by/2.5/ca/" rel="license"><img alt="Creative Commons Licence" src="http://i.creativecommons.org/l/by/2.5/ca/88x31.png" /></a> &copy; 2006-2008 Stephen Paul Weber.  Some Rights Reserved.</div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=d476VT-ZKI4:jhpWTncmETw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=d476VT-ZKI4:jhpWTncmETw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=d476VT-ZKI4:jhpWTncmETw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=d476VT-ZKI4:jhpWTncmETw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=d476VT-ZKI4:jhpWTncmETw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=d476VT-ZKI4:jhpWTncmETw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=d476VT-ZKI4:jhpWTncmETw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=d476VT-ZKI4:jhpWTncmETw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=d476VT-ZKI4:jhpWTncmETw:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=d476VT-ZKI4:jhpWTncmETw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/singpolyma-techblog/~4/d476VT-ZKI4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>https://singpolyma.net/2009/10/postrank-buckets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DiSo Dashboards and the Future</title>
		<link>https://singpolyma.net/2009/10/diso-dashboards-and-the-future/</link>
		<comments>https://singpolyma.net/2009/10/diso-dashboards-and-the-future/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 16:49:09 +0000</pubDate>
		<dc:creator>Stephen Paul Weber</dc:creator>
				<category><![CDATA[Aggregation]]></category>
		<category><![CDATA[DiSo]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">https://singpolyma.net/?p=514</guid>
		<description><![CDATA[So, finally someone talking about the future of distributed social networking.  The tech and the connecty bits we want have really been mostly there for some time now, the problem is, no one has been very clear on what the next step is.  Chris Messina has been a bit distracted with the Activity [...]]]></description>
			<content:encoded><![CDATA[<p>So, finally someone talking about the future of distributed social networking.  The tech and the connecty bits we want have really been mostly there for some time now, the problem is, no one has been very clear on what the next step is.  Chris Messina has been a bit distracted with the Activity Streams project, and no one else has really been saying much about DiSo.</p>
<p>The next step, however, is really coherent UI.  I&#039;ve been talking about it off and on as my &#034;ultimate aggregator&#034;, <a href="http://www.slideshare.net/marccanter/diso-dashboard-outline-presentation">Marc Canter is calling it &#034;dashboards&#034;</a>.</p>
<p>One of the things he talks about in the presentation is &#034;distributed friending&#034;.  This is something I&#039;ve brought up before.  IMHO, the best way to go about this is to have magical buttons that, when clicked, take the user to their &#034;dashboard&#034; with the target&#039;s URI (or one of them, anyway) already filled in.  At that point, you have an asynchronous friending model.  The local software can then do different things (like permissions, autofilling searches, pulling in content, just making the list available to other services than then do these things, whatever) based on this data, but no magical &#034;protocol&#034; or anything is needed, because with an asynchronous model all you&#039;re really doing is making a note of the relationship in a data model and letting the software use that list for whatever.</p>
<p>Past integrating the posting/following/aggregation UI a bit more, I&#039;m not really sure there&#039;s anything left, conceptually.  I&#039;d like to dig up some code and make OAuth+AtomPub work for sure with the newest version (so that any aggregator can talk to my WP blog <img src='https://singpolyma.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ), and code can always be improved, but really, what is a social network?  It&#039;s an aggregator of sorts, a posting mechanism of sorts, and email.  We&#039;ve had the later two for ages, which is why so much work has been dancing around the first one.</p>
 <div class="ccline"><a href="http://creativecommons.org/licenses/by/2.5/ca/" rel="license"><img alt="Creative Commons Licence" src="http://i.creativecommons.org/l/by/2.5/ca/88x31.png" /></a> &copy; 2006-2008 Stephen Paul Weber.  Some Rights Reserved.</div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=8E05sPnnRC8:hzxycr803gU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=8E05sPnnRC8:hzxycr803gU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=8E05sPnnRC8:hzxycr803gU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=8E05sPnnRC8:hzxycr803gU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=8E05sPnnRC8:hzxycr803gU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=8E05sPnnRC8:hzxycr803gU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=8E05sPnnRC8:hzxycr803gU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=8E05sPnnRC8:hzxycr803gU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=8E05sPnnRC8:hzxycr803gU:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=8E05sPnnRC8:hzxycr803gU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/singpolyma-techblog/~4/8E05sPnnRC8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>https://singpolyma.net/2009/10/diso-dashboards-and-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BitTorrent Monitization Proposal</title>
		<link>https://singpolyma.net/2009/10/bittorrent-monitization-proposal/</link>
		<comments>https://singpolyma.net/2009/10/bittorrent-monitization-proposal/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 14:26:38 +0000</pubDate>
		<dc:creator>Stephen Paul Weber</dc:creator>
				<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">https://singpolyma.net/?p=502</guid>
		<description><![CDATA[There are lots of &#034;monitize p2p&#034; proposals floating around out there.  Most of them look like a levy.  The problem with this model is that, using existing p2p networks, there is no particularly good way to know what music is popular, and thus, who gets the money.  Also, since some will download [...]]]></description>
			<content:encoded><![CDATA[<p>There are lots of &#034;monitize p2p&#034; proposals floating around out there.  Most of them look like a levy.  The problem with this model is that, using existing p2p networks, there is no particularly good way to know what music is popular, and thus, who gets the money.  Also, since some will download far more than others, and there&#039;s no good way to measure how much anyone should pay.</p>
<p>The solution from the private sector so far looks like the Amazon MP3 store or Apple&#039;s iTunes.  Much less content, in fewer formats.  The big argument from media is that online distribution is a <em>hard problem</em> one that will take <em>research to solve</em>.  However, we know quite well that the p2p networks, and especially BitTorrent, have solved this problem.</p>
<p>My proposal?  Marry the distribution power of BitTorrent with a sales model.  Create a modified tracker that requires authentication.  Seed high-quality versions of movies, music, books, and everything on this tracker.  Set prices per download/sample and/or membership plans (10 ¤/mo for 3 movies/mo).  People have to either have money on their account, a PayPal/credit card associated, or be on some kind of plan, otherwise the tracker refuses them service.</p>
<p>The big media from the big companies gets seeded, and people get it and pay for it.  All the old media, small media, etc that becomes available through p2p still shows up as users connect to the network and start seeding stuff, but it too gets paid for, with the money routed to the right people.</p>
<p>Some will argue that there are those who will still pirate if such a system should exist.  Of course there will.  There will always be those who justify breaking the law.  I&#039;m talking about giving people a better option, which right now  they don&#039;t really have.</p>
 <div class="ccline"><a href="http://creativecommons.org/licenses/by/2.5/ca/" rel="license"><img alt="Creative Commons Licence" src="http://i.creativecommons.org/l/by/2.5/ca/88x31.png" /></a> &copy; 2006-2008 Stephen Paul Weber.  Some Rights Reserved.</div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=XoP_pcwbFoM:sZB-tNhfXk4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=XoP_pcwbFoM:sZB-tNhfXk4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=XoP_pcwbFoM:sZB-tNhfXk4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=XoP_pcwbFoM:sZB-tNhfXk4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=XoP_pcwbFoM:sZB-tNhfXk4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=XoP_pcwbFoM:sZB-tNhfXk4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=XoP_pcwbFoM:sZB-tNhfXk4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?i=XoP_pcwbFoM:sZB-tNhfXk4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=XoP_pcwbFoM:sZB-tNhfXk4:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/singpolyma-techblog?a=XoP_pcwbFoM:sZB-tNhfXk4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/singpolyma-techblog?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/singpolyma-techblog/~4/XoP_pcwbFoM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>https://singpolyma.net/2009/10/bittorrent-monitization-proposal/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
