<?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: QR Codes + Wikipedia</title>
	<atom:link href="http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/</link>
	<description>News from the Wikimedia Foundation and about the Wikimedia movement</description>
	<lastBuildDate>Sun, 19 May 2013 08:00:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta2-24176</generator>
	<item>
		<title>By: There&#8217;s an app for that&#8230; &#124; careycuratorialstudies</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-3/#comment-24552</link>
		<dc:creator>There&#8217;s an app for that&#8230; &#124; careycuratorialstudies</dc:creator>
		<pubDate>Wed, 12 Oct 2011 23:30:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-24552</guid>
		<description><![CDATA[[...] article also highlights the fact that QRpedia, as the creators are calling it, will allow museum professionals to provide information about any [...]]]></description>
		<content:encoded><![CDATA[<p>[...] article also highlights the fact that QRpedia, as the creators are calling it, will allow museum professionals to provide information about any [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qr code generator</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-2/#comment-24432</link>
		<dc:creator>qr code generator</dc:creator>
		<pubDate>Wed, 12 Oct 2011 13:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-24432</guid>
		<description><![CDATA[Hi, have you tryied http://uqr.me? Is one of the best qr code generator world wide... Permit to link to urls, files, a full customizable mobile ready page, a paypal payment, a vCard and they permit to beautify your QR with rounded corners, gradients, centered image etc..]]></description>
		<content:encoded><![CDATA[<p>Hi, have you tryied <a href="http://uqr.me" rel="nofollow">http://uqr.me</a>? Is one of the best qr code generator world wide&#8230; Permit to link to urls, files, a full customizable mobile ready page, a paypal payment, a vCard and they permit to beautify your QR with rounded corners, gradients, centered image etc..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: All about SEO &#187; Blog Archive &#187; Create Multi-lingual QR Codes With Wikipedia</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-2/#comment-22555</link>
		<dc:creator>All about SEO &#187; Blog Archive &#187; Create Multi-lingual QR Codes With Wikipedia</dc:creator>
		<pubDate>Tue, 04 Oct 2011 18:09:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-22555</guid>
		<description><![CDATA[[...] smartphone users to access their articles through unique QR codes. Each QR code, or QRpedia code as Wikipedia is calling them, accesses one specific article on the Wikipedia database. If you’re unsure as to what you’re [...]]]></description>
		<content:encoded><![CDATA[<p>[...] smartphone users to access their articles through unique QR codes. Each QR code, or QRpedia code as Wikipedia is calling them, accesses one specific article on the Wikipedia database. If you’re unsure as to what you’re [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jussi Judin</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-2/#comment-22503</link>
		<dc:creator>Jussi Judin</dc:creator>
		<pubDate>Tue, 04 Oct 2011 12:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-22503</guid>
		<description><![CDATA[A few days ago I created a small shell script that reads data from clipboard and displays it as QR code. I did it to enable transfer of long passwords from my desktop computer to my mobile devices (so I don&#039;t have to slowly type long and complex passwords on those bad on screen keyboards) but it also works with all kinds of data (like links). Here&#039;s the freely usable code if someone wants to use it:

QRENCODE=&quot;$(which qrencode)&quot;

if test -z &quot;$QRENCODE&quot;; then
    echo &quot;Could not find qrencode program.&quot;
    exit 1
fi

CLIPBOARD_READER=&quot;&quot;

XSEL=&quot;$(which xsel)&quot;
if test -z &quot;$CLIPBOARD_READER&quot; &amp;&amp; test -n &quot;$XSEL&quot;; then
    CLIPBOARD_READER=&quot;$XSEL&quot;
fi

XCLIP=&quot;$(which xclip)&quot;
if test -z &quot;$CLIPBOARD_READER&quot; &amp;&amp; test -n &quot;$XCLIP&quot;; then
    CLIPBOARD_READER=&quot;$XCLIP -o&quot;
fi

if test -z &quot;$CLIPBOARD_READER&quot;; then
    echo &quot;Could not find program to read clipboard data.&quot;
    exit 1
fi

DISPLAY_PROGRAM=&quot;&quot;

FEH=&quot;$(which feh)&quot;
if test -z &quot;$DISPLAY_PROGRAM&quot; &amp;&amp; test -n &quot;$FEH&quot;; then
   DISPLAY_PROGRAM=&quot;$FEH -F&quot;
fi

XLOADIMAGE=&quot;$(which xloadimage)&quot;
if test -z &quot;$DISPLAY_PROGRAM&quot; &amp;&amp; test -n &quot;$XLOADIMAGE&quot;; then
    DISPLAY_PROGRAM=&quot;$XLOADIMAGE -fullscreen&quot;
fi

PDISPLAY=&quot;$(which display)&quot;
if test -z &quot;$DISPLAY_PROGRAM&quot; &amp;&amp; test -n &quot;$PDISPLAY&quot;; then
    DISPLAY_PROGRAM=&quot;$PDISPLAY -backdrop -flatten -background #000000&quot;
fi

if test -z &quot;$DISPLAY_PROGRAM&quot;; then
    echo &quot;Could not find program to display images.&quot;
    exit 1
fi

CLIPBOARD_DATA=&quot;$($CLIPBOARD_READER)&quot;

if test -z &quot;$CLIPBOARD_DATA&quot;; then
    echo &quot;There was no data on clipboard.&quot;
    exit 1
fi

MODULE_SIZE=5
TARGET_FILE=&quot;$(tempfile -p .qr-code- -s .png)&quot;

&quot;$QRENCODE&quot; -o &quot;$TARGET_FILE&quot; -s &quot;$MODULE_SIZE&quot; &quot;$CLIPBOARD_DATA&quot; &amp;&amp; $DISPLAY_PROGRAM &quot;$TARGET_FILE&quot;
rm &quot;$TARGET_FILE&quot;]]></description>
		<content:encoded><![CDATA[<p>A few days ago I created a small shell script that reads data from clipboard and displays it as QR code. I did it to enable transfer of long passwords from my desktop computer to my mobile devices (so I don&#8217;t have to slowly type long and complex passwords on those bad on screen keyboards) but it also works with all kinds of data (like links). Here&#8217;s the freely usable code if someone wants to use it:</p>
<p>QRENCODE=&#8221;$(which qrencode)&#8221;</p>
<p>if test -z &#8220;$QRENCODE&#8221;; then<br />
    echo &#8220;Could not find qrencode program.&#8221;<br />
    exit 1<br />
fi</p>
<p>CLIPBOARD_READER=&#8221;"</p>
<p>XSEL=&#8221;$(which xsel)&#8221;<br />
if test -z &#8220;$CLIPBOARD_READER&#8221; &amp;&amp; test -n &#8220;$XSEL&#8221;; then<br />
    CLIPBOARD_READER=&#8221;$XSEL&#8221;<br />
fi</p>
<p>XCLIP=&#8221;$(which xclip)&#8221;<br />
if test -z &#8220;$CLIPBOARD_READER&#8221; &amp;&amp; test -n &#8220;$XCLIP&#8221;; then<br />
    CLIPBOARD_READER=&#8221;$XCLIP -o&#8221;<br />
fi</p>
<p>if test -z &#8220;$CLIPBOARD_READER&#8221;; then<br />
    echo &#8220;Could not find program to read clipboard data.&#8221;<br />
    exit 1<br />
fi</p>
<p>DISPLAY_PROGRAM=&#8221;"</p>
<p>FEH=&#8221;$(which feh)&#8221;<br />
if test -z &#8220;$DISPLAY_PROGRAM&#8221; &amp;&amp; test -n &#8220;$FEH&#8221;; then<br />
   DISPLAY_PROGRAM=&#8221;$FEH -F&#8221;<br />
fi</p>
<p>XLOADIMAGE=&#8221;$(which xloadimage)&#8221;<br />
if test -z &#8220;$DISPLAY_PROGRAM&#8221; &amp;&amp; test -n &#8220;$XLOADIMAGE&#8221;; then<br />
    DISPLAY_PROGRAM=&#8221;$XLOADIMAGE -fullscreen&#8221;<br />
fi</p>
<p>PDISPLAY=&#8221;$(which display)&#8221;<br />
if test -z &#8220;$DISPLAY_PROGRAM&#8221; &amp;&amp; test -n &#8220;$PDISPLAY&#8221;; then<br />
    DISPLAY_PROGRAM=&#8221;$PDISPLAY -backdrop -flatten -background #000000&#8243;<br />
fi</p>
<p>if test -z &#8220;$DISPLAY_PROGRAM&#8221;; then<br />
    echo &#8220;Could not find program to display images.&#8221;<br />
    exit 1<br />
fi</p>
<p>CLIPBOARD_DATA=&#8221;$($CLIPBOARD_READER)&#8221;</p>
<p>if test -z &#8220;$CLIPBOARD_DATA&#8221;; then<br />
    echo &#8220;There was no data on clipboard.&#8221;<br />
    exit 1<br />
fi</p>
<p>MODULE_SIZE=5<br />
TARGET_FILE=&#8221;$(tempfile -p .qr-code- -s .png)&#8221;</p>
<p>&#8220;$QRENCODE&#8221; -o &#8220;$TARGET_FILE&#8221; -s &#8220;$MODULE_SIZE&#8221; &#8220;$CLIPBOARD_DATA&#8221; &amp;&amp; $DISPLAY_PROGRAM &#8220;$TARGET_FILE&#8221;<br />
rm &#8220;$TARGET_FILE&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Traroth</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-2/#comment-22479</link>
		<dc:creator>Traroth</dc:creator>
		<pubDate>Tue, 04 Oct 2011 09:21:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-22479</guid>
		<description><![CDATA[And who is QRpedia? The site is Whoisguard protected!]]></description>
		<content:encoded><![CDATA[<p>And who is QRpedia? The site is Whoisguard protected!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: QRPedia. Wikipedia lancia il proprio portale per i codici QR</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-2/#comment-22451</link>
		<dc:creator>QRPedia. Wikipedia lancia il proprio portale per i codici QR</dc:creator>
		<pubDate>Tue, 04 Oct 2011 05:37:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-22451</guid>
		<description><![CDATA[[...] tratta di un sistema particolarmente utile in tutta una serie di contesti, primo tra tutti, secondo gli stessi sviluppatori di Wikimedia, nei musei. Non per nulla, esso è già in funzione nel museo dell&#8217;Archivio Nazionale del [...]]]></description>
		<content:encoded><![CDATA[<p>[...] tratta di un sistema particolarmente utile in tutta una serie di contesti, primo tra tutti, secondo gli stessi sviluppatori di Wikimedia, nei musei. Non per nulla, esso è già in funzione nel museo dell&#8217;Archivio Nazionale del [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weekly News Roundup (Mindshift) &#8211; Oct 2 &#171; Education Headlines</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-2/#comment-22314</link>
		<dc:creator>Weekly News Roundup (Mindshift) &#8211; Oct 2 &#171; Education Headlines</dc:creator>
		<pubDate>Mon, 03 Oct 2011 13:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-22314</guid>
		<description><![CDATA[[...] a cool new project this week that’s bound to please fans of QR codes. QRpedia will allow anyone to access a [...]]]></description>
		<content:encoded><![CDATA[<p>[...] a cool new project this week that’s bound to please fans of QR codes. QRpedia will allow anyone to access a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terence Eden has a Blog &#187; QRpedia In The News</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-2/#comment-22288</link>
		<dc:creator>Terence Eden has a Blog &#187; QRpedia In The News</dc:creator>
		<pubDate>Mon, 03 Oct 2011 11:24:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-22288</guid>
		<description><![CDATA[[...] It all started with a blog post on Wikimedia. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] It all started with a blog post on Wikimedia. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: QRpedia, Wikipedia a portata di smartphone - Io Chiamo</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-2/#comment-22284</link>
		<dc:creator>QRpedia, Wikipedia a portata di smartphone - Io Chiamo</dc:creator>
		<pubDate>Mon, 03 Oct 2011 10:54:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-22284</guid>
		<description><![CDATA[[...]      Si chiama QRpedia la nuova applicazione web che promette di portare i contenuti di Wikipedia nel mondo fisico. Il [...]]]></description>
		<content:encoded><![CDATA[<p>[...]      Si chiama QRpedia la nuova applicazione web che promette di portare i contenuti di Wikipedia nel mondo fisico. Il [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Is QRpedia really that great? &#124; Non-Commercial Use</title>
		<link>http://blog.wikimedia.org/2011/09/28/qr-codes-wikipedia/comment-page-2/#comment-22199</link>
		<dc:creator>Is QRpedia really that great? &#124; Non-Commercial Use</dc:creator>
		<pubDate>Sun, 02 Oct 2011 21:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.wikimedia.org/?p=6585#comment-22199</guid>
		<description><![CDATA[[...] quite a bit of fuss at the moment about QR codes and QRPedia, with the WMF, ReadWriteWeb and a couple of blogs nattering on about it. It&#8217;s &#8220;probably the Coolest [...]]]></description>
		<content:encoded><![CDATA[<p>[...] quite a bit of fuss at the moment about QR codes and QRPedia, with the WMF, ReadWriteWeb and a couple of blogs nattering on about it. It&#8217;s &#8220;probably the Coolest [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: blog.wikimedia.org @ 2013-05-19 20:43:28 by W3 Total Cache -->