<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: One line publishing</title>
	<atom:link href="http://labnotes.org/2007/08/17/one-line-publishing/feed/" rel="self" type="application/rss+xml" />
	<link>http://labnotes.org/2007/08/17/one-line-publishing/</link>
	<description></description>
	<lastBuildDate>Tue, 09 Mar 2010 02:39:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Assaf</title>
		<link>http://labnotes.org/2007/08/17/one-line-publishing/comment-page-1/#comment-138287</link>
		<dc:creator>Assaf</dc:creator>
		<pubDate>Thu, 23 Aug 2007 23:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.labnotes.org/2007/08/17/one-line-publishing/#comment-138287</guid>
		<description>Generally speaking, Web browsers wouldn&#039;t have a problem uploading images to SPP using multipart/form-data.  To get the same effect using curl:

curl -F &#039;content=@inurprotocolz.jpg;type=image/jpg&#039;

I much prefer image/png, but otherwise looks fine to me :-)</description>
		<content:encoded><![CDATA[<p>Generally speaking, Web browsers wouldn&#8217;t have a problem uploading images to SPP using multipart/form-data.  To get the same effect using curl:</p>
<p>curl -F &#8216;content=@inurprotocolz.jpg;type=image/jpg&#8217;</p>
<p>I much prefer image/png, but otherwise looks fine to me :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristotle</title>
		<link>http://labnotes.org/2007/08/17/one-line-publishing/comment-page-1/#comment-138284</link>
		<dc:creator>Aristotle</dc:creator>
		<pubDate>Thu, 23 Aug 2007 13:48:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.labnotes.org/2007/08/17/one-line-publishing/#comment-138284</guid>
		<description>Err, dâ€™oh, I forgot to escape the angle brackets:

&lt;code&gt;curl -H &#039;Content-Type: application/atom+xml;type=entry&#039; \
    --data-binary &#039;&lt;entry xmlns=&quot;http://www.w3.org/2005/Atom&quot;&gt;&lt;title&gt;HAI!&lt;/title&gt;&lt;content&gt;I has APP&lt;/content&gt;&lt;id&gt;urn:null:&lt;/id&gt;&lt;updated&gt;&quot;&#039;$(date -Is)&quot;&#039;&lt;/updated&gt;&lt;/entry&gt;&#039; \
    https://labotes.org/publish&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Err, dâ€™oh, I forgot to escape the angle brackets:</p>
<p><code>curl -H 'Content-Type: application/atom+xml;type=entry' \<br />
    --data-binary '&lt;entry xmlns="http://www.w3.org/2005/Atom"&gt;&lt;title&gt;HAI!&lt;/title&gt;&lt;content&gt;I has APP&lt;/content&gt;&lt;id&gt;urn:null:&lt;/id&gt;&lt;updated&gt;"'$(date -Is)"'&lt;/updated&gt;&lt;/entry&gt;' \<br />
    <a href="https://labotes.org/publish" rel="nofollow">https://labotes.org/publish</a></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristotle</title>
		<link>http://labnotes.org/2007/08/17/one-line-publishing/comment-page-1/#comment-138283</link>
		<dc:creator>Aristotle</dc:creator>
		<pubDate>Thu, 23 Aug 2007 13:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.labnotes.org/2007/08/17/one-line-publishing/#comment-138283</guid>
		<description>Actually with an 8px font on my 1400Ã—1050 screen (regular 20â€³ TFT), it fits on a single line:

&lt;code&gt;curl -H &#039;Content-Type: application/atom+xml;type=entry&#039; \
    --data-binary &#039;HAI!I has APPurn:null:&quot;&#039;$(date -Is)&quot;&#039;&#039; \
    https://labotes.org/publish&lt;/code&gt;

So nyah. Now use some real text with actual HTML tags in the content instead of just 12 characters of filler total and weâ€™ll see how much contrast remains.

Or how about uploading a picture:

&lt;code&gt;curl -H &#039;Content-Type: image/jpeg&#039; --data-binary @inurprotocolz.jpg https://labotes.org/publish&lt;/code&gt;

Thatâ€™s actually shorter! Errm, oops, I forgot SPP canâ€™t even do that. :&lt;b&gt;&lt;/b&gt;-)</description>
		<content:encoded><![CDATA[<p>Actually with an 8px font on my 1400Ã—1050 screen (regular 20â€³ TFT), it fits on a single line:</p>
<p><code>curl -H 'Content-Type: application/atom+xml;type=entry' \<br />
    --data-binary 'HAI!I has APPurn:null:"'$(date -Is)"'' \<br />
    <a href="https://labotes.org/publish" rel="nofollow">https://labotes.org/publish</a></code></p>
<p>So nyah. Now use some real text with actual HTML tags in the content instead of just 12 characters of filler total and weâ€™ll see how much contrast remains.</p>
<p>Or how about uploading a picture:</p>
<p><code>curl -H 'Content-Type: image/jpeg' --data-binary @inurprotocolz.jpg <a href="https://labotes.org/publish" rel="nofollow">https://labotes.org/publish</a></code></p>
<p>Thatâ€™s actually shorter! Errm, oops, I forgot SPP canâ€™t even do that. :<b></b>-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Assaf</title>
		<link>http://labnotes.org/2007/08/17/one-line-publishing/comment-page-1/#comment-138282</link>
		<dc:creator>Assaf</dc:creator>
		<pubDate>Thu, 23 Aug 2007 05:11:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.labnotes.org/2007/08/17/one-line-publishing/#comment-138282</guid>
		<description>I&#039;d like to see that one-liner, though I&#039;ll need a 40&quot; monitor and very narrow font to fit it all in one line :-)</description>
		<content:encoded><![CDATA[<p>I&#8217;d like to see that one-liner, though I&#8217;ll need a 40&#8243; monitor and very narrow font to fit it all in one line :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aristotle</title>
		<link>http://labnotes.org/2007/08/17/one-line-publishing/comment-page-1/#comment-138281</link>
		<dc:creator>Aristotle</dc:creator>
		<pubDate>Thu, 23 Aug 2007 03:40:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.labnotes.org/2007/08/17/one-line-publishing/#comment-138281</guid>
		<description>You can write Atompub POSTs with a &lt;code&gt;curl&lt;/code&gt; one-liner too. The line will just be a little longer. :&lt;b&gt;&lt;/b&gt;-)

Of course, that ignores hypermedia, and hence itâ€™s impossible to decide whether the  protocol demonstrated by a &lt;code&gt;curl&lt;/code&gt; one-liner uses HTTP merely as a transport or in fact as the application protocol.</description>
		<content:encoded><![CDATA[<p>You can write Atompub POSTs with a <code>curl</code> one-liner too. The line will just be a little longer. :<b></b>-)</p>
<p>Of course, that ignores hypermedia, and hence itâ€™s impossible to decide whether the  protocol demonstrated by a <code>curl</code> one-liner uses HTTP merely as a transport or in fact as the application protocol.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Assaf</title>
		<link>http://labnotes.org/2007/08/17/one-line-publishing/comment-page-1/#comment-138263</link>
		<dc:creator>Assaf</dc:creator>
		<pubDate>Sat, 18 Aug 2007 04:21:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.labnotes.org/2007/08/17/one-line-publishing/#comment-138263</guid>
		<description>:w</description>
		<content:encoded><![CDATA[<p>:w</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: http://technorati.com/people/technorati/ryansking</title>
		<link>http://labnotes.org/2007/08/17/one-line-publishing/comment-page-1/#comment-138262</link>
		<dc:creator>http://technorati.com/people/technorati/ryansking</dc:creator>
		<pubDate>Sat, 18 Aug 2007 03:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.labnotes.org/2007/08/17/one-line-publishing/#comment-138262</guid>
		<description>s/cotent/content/</description>
		<content:encoded><![CDATA[<p>s/cotent/content/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Assaf</title>
		<link>http://labnotes.org/2007/08/17/one-line-publishing/comment-page-1/#comment-138259</link>
		<dc:creator>Assaf</dc:creator>
		<pubDate>Fri, 17 Aug 2007 20:05:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.labnotes.org/2007/08/17/one-line-publishing/#comment-138259</guid>
		<description>I use Akismet and it works wonders, except for the occasional hiccups.  I guess I should take the plunge and de-moderate comments.</description>
		<content:encoded><![CDATA[<p>I use Akismet and it works wonders, except for the occasional hiccups.  I guess I should take the plunge and de-moderate comments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sujal</title>
		<link>http://labnotes.org/2007/08/17/one-line-publishing/comment-page-1/#comment-138257</link>
		<dc:creator>sujal</dc:creator>
		<pubDate>Fri, 17 Aug 2007 20:02:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.labnotes.org/2007/08/17/one-line-publishing/#comment-138257</guid>
		<description>Great point.  Love the illustration, and that&#039;s why I love REST-like (though GET/POST only) web services like Amazons.

(how come you can&#039;t beat the comment spam with Spam Karma or Akismet?)</description>
		<content:encoded><![CDATA[<p>Great point.  Love the illustration, and that&#8217;s why I love REST-like (though GET/POST only) web services like Amazons.</p>
<p>(how come you can&#8217;t beat the comment spam with Spam Karma or Akismet?)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
