<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://notiz.blog/wp-content/plugins/pretty-feeds/pretty-feed-v4.xsl" type="text/xsl" media="screen" ?>


<!--

	Feeds whisper secrets,
	In the RSS Club's embrace,
	Knowledge blooms in grace.

-->

<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/"
	xmlns:source="http://source.scripting.com/"
xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Social Network Portability &#8211; notizBlog</title>
	<atom:link href="https://notiz.blog/tag/social-network-portability/feed/" rel="self" type="application/rss+xml" />
	<link>https://notiz.blog</link>
	<description>a weblog mainly about the open, portable, interoperable, small, social, synaptic, semantic, structured, distributed, (re-)decentralized, independent, microformatted and federated social web</description>
	<lastBuildDate>Tue, 16 Apr 2024 14:56:28 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://notiz.blog/wp-content/uploads/2019/10/cropped-notizblog-icon-1-32x32.png</url>
	<title>Social Network Portability &#8211; notizBlog</title>
	<link>https://notiz.blog</link>
	<width>32</width>
	<height>32</height>
</image> 
<source:blogroll>https://reader.pfefferle.org/i/?a=opml&amp;get=c_2</source:blogroll>
<creativeCommons:license>https://creativecommons.org/licenses/by-sa/4.0/</creativeCommons:license>
<atom:link rel="hub" href="https://pubsubhubbub.appspot.com"/>
<atom:link rel="hub" href="https://pubsubhubbub.superfeedr.com"/>
<atom:link rel="hub" href="https://switchboard.p3k.io/"/>
<atom:link rel="self" href="https://notiz.blog/tag/social-network-portability/feed/"/>
<atom:link rel="search" type="application/opensearchdescription+xml" title="Search notizBlog" href="https://notiz.blog/wp-api/opensearch/1.1/document" />	<item>
		<title>SingleUser NoseRub</title>
		<link>https://notiz.blog/2008/04/14/singleuser-noserub/</link>
					<comments>https://notiz.blog/2008/04/14/singleuser-noserub/#respond</comments>
		
		<dc:creator><![CDATA[Matthias Pfefferle]]></dc:creator>
		<pubDate>Mon, 14 Apr 2008 17:22:10 +0000</pubDate>
				<category><![CDATA[Open Web]]></category>
		<category><![CDATA[DataPortability]]></category>
		<category><![CDATA[FediBlog]]></category>
		<category><![CDATA[Lifestream]]></category>
		<category><![CDATA[noserub]]></category>
		<category><![CDATA[SingleUser]]></category>
		<category><![CDATA[Social Network Portability]]></category>
		<guid isPermaLink="false">http://notizblog.org/?p=812</guid>

					<description><![CDATA[Eigentlich wollte ich NoseRub schon vor ner ganze Weile mal testen, jetzt habe ich die seit vorgestern erhältliche Version 0.6 zum Anlass genommen, NoseRub mal auf meinem Server zu installieren: pfefferle.org Wer NoseRub, wie ich als SingleUser-System auf seinem Server/Webspace hosten will (anstatt als Service wie Identoo.com) muss nur zwei Dinge beachten: NoseRub Registration Type [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Eigentlich wollte ich <a href="https://web.archive.org/web/20091026135343/http://noserub.com/">NoseRub</a> schon vor ner ganze Weile mal testen, jetzt habe ich die seit vorgestern erhältliche <a href="https://web.archive.org/web/20080924163937/http://noserub.com:80/blog/archives/52-NoseRub-0.6-released.html">Version 0.6</a> zum Anlass genommen, NoseRub mal auf meinem Server zu installieren: <a href="https://pfefferle.org">pfefferle.org</a></p>



<p>Wer NoseRub, wie ich als SingleUser-System auf seinem Server/Webspace hosten will (anstatt als Service wie <a href="https://web.archive.org/web/20100507140906/http://identoo.com:80/">Identoo.com</a>) muss nur zwei Dinge beachten:</p>



<h4 class="wp-block-heading">NoseRub Registration Type</h4>



<p>Zuerst sollte man sicherstellen dass sich keiner bei NoseRub registrieren kann, dazu einfach die Datei &#8222;<code>app/config/noserub.php</code>&#8220; öffnen und den <code>NOSERUB_REGISTRATION_TYPE</code> auf <code>none</code> setzen.</p>


<pre class="wp-block-code"><span><code class="hljs language-javascript">define(<span class="hljs-string">'NOSERUB_REGISTRATION_TYPE'</span>, <span class="hljs-string">'none'</span>);</code></span></pre>


<h4 class="wp-block-heading">SocialStream durch &#8222;My Profile&#8220; ersetzen</h4>



<p>Im zweiten Schritt kann man die Startseite (SocialStream) durch sein eigenes Profil ersetzen. Hierzu muss man in der &#8222;<code>app/config/routes.php</code>&#8220; einfach nur die Zeile</p>


<pre class="wp-block-code"><span><code class="hljs language-php">Router::connect(<span class="hljs-string">'/'</span>, <span class="hljs-keyword">array</span>(<span class="hljs-string">'controller'</span> =&gt; <span class="hljs-string">'identities'</span>, <span class="hljs-string">'action'</span> =&gt; <span class="hljs-string">'social_stream'</span>));</code></span></pre>


<p>&#8230;mit&#8230;</p>


<pre class="wp-block-code"><span><code class="hljs language-php">Router::connect(<span class="hljs-string">'/'</span>, <span class="hljs-keyword">array</span>(<span class="hljs-string">'controller'</span> =&gt; <span class="hljs-string">'identities'</span>, <span class="hljs-string">'action'</span> =&gt; <span class="hljs-string">'index'</span>, <span class="hljs-string">'username'</span> =&gt; <span class="hljs-string">'USERNAME'</span>));</code></span></pre>


<p>&#8230;ersetzen und statt <strong>USERNAME</strong> den eigenen Benutzernamen eintragen. Das wars eigentlich schon.</p>



<p>Viel Spaß beim ausprobieren 🙂</p>
<p>Thanks for reading this post via RSS. RSS is great, and you’re great for using it. ♥️</p>]]></content:encoded>
					
					<wfw:commentRss>https://notiz.blog/2008/04/14/singleuser-noserub/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The GraphSync Project</title>
		<link>https://notiz.blog/2007/12/20/the-graphsync-project/</link>
					<comments>https://notiz.blog/2007/12/20/the-graphsync-project/#respond</comments>
		
		<dc:creator><![CDATA[Matthias Pfefferle]]></dc:creator>
		<pubDate>Thu, 20 Dec 2007 08:38:53 +0000</pubDate>
				<category><![CDATA[Open Web]]></category>
		<category><![CDATA[Data Portability]]></category>
		<category><![CDATA[DataPortability]]></category>
		<category><![CDATA[DiSo]]></category>
		<category><![CDATA[FediBlog]]></category>
		<category><![CDATA[Social Network Portability]]></category>
		<guid isPermaLink="false">http://notizblog.org/2007/12/20/the-graphsync-project/</guid>

					<description><![CDATA[GraphSync ist ein weiteres DataPortability Projekt und richtet sich hauptsächlich an Entwickler. Das Projekt hat das Ziel, ähnlich wie auch DiSo, Daten wie z.B. Profile oder IM Kontakte wiederverwertbar zu machen (Social Network Portability oder Data Portability). Bei GraphSync geht es aber nicht, wie beim DiSo, darum seine Daten und Netze an zentraler Stelle zu [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-image"><figure class="alignright"><img decoding="async" width="204" height="114" sizes="(max-width: 204px) 100vw, 204px" src="https://notiz.blog/wp-content/uploads/2007/12/graph-sync.gif" alt="" class="wp-image-684"/></figure></div>



<p><a href="https://web.archive.org/web/20080417163032/http://www.dataportability.org/graphsync/">GraphSync</a> ist ein weiteres <a href="https://web.archive.org/web/20080729053116/http://www.dataportability.com/">DataPortability</a> Projekt und richtet sich hauptsächlich an Entwickler. Das Projekt hat das Ziel, ähnlich wie auch DiSo, Daten wie z.B. Profile oder <abbr title="Instant Messaging">IM</abbr> Kontakte wiederverwertbar zu machen (<em>Social Network Portability</em> oder <em>Data Portability</em>).</p>



<p>Bei GraphSync geht es aber nicht, wie beim <abbr title="distributed social networking"><a href="http://www.diso-project.org/">DiSo</a></abbr>, darum seine Daten und Netze an zentraler Stelle zu vereinen um sie mit in die verschiedenen Communities zu nehmen, sondern um das genaue Gegenteil:</p>



<ol class="wp-block-list"><li>Pick a proprietary silo of user&#8217;s personal social data</li><li>Write some open source code to extract their data</li><li>Place their data into the open formats listed below.</li><li>Link to the code repository on the DataPortability Wiki.</li><li>Win the love and admiration of a grateful community</li></ol>



<p>Ziel ist es, proprietäre Daten aus Communities zu extrahieren, um sie dann mit Hilfe von Offenen Standards <em>portabel</em> zu machen. Die von GraphSync vorgeschlagenen Formate sind:</p>



<ol class="wp-block-list"><li>User Details: <a href="http://microformats.org/wiki/hcard">hCard</a></li><li>Friends List: <a href="http://www.gmpg.org/xfn/">XFN</a></li><li>Interests: <a href="https://web.archive.org/web/20071001030709/http://www.apml.org/">APML</a></li><li>Updates: <a href="http://cyber.law.harvard.edu/rss/rss.html">RSS</a></li></ol>



<p>Weitere Infos gibts im Wiki oder in der <a href="http://groups.google.com/group/graphsync">Google Group</a>.</p>



<p>Bin sehr gespannt auf die ersten Services&#8230;</p>
<p>Hey there, RSS reader! You’re cool. Keep being awesome! 😎</p>]]></content:encoded>
					
					<wfw:commentRss>https://notiz.blog/2007/12/20/the-graphsync-project/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>DiSo &#8211; Microformats, OpenID, Portable Social Networks</title>
		<link>https://notiz.blog/2007/12/05/diso-microformats-openid-portable-social-networks/</link>
					<comments>https://notiz.blog/2007/12/05/diso-microformats-openid-portable-social-networks/#comments</comments>
		
		<dc:creator><![CDATA[Matthias Pfefferle]]></dc:creator>
		<pubDate>Wed, 05 Dec 2007 18:22:37 +0000</pubDate>
				<category><![CDATA[Open Web]]></category>
		<category><![CDATA[Data Portability]]></category>
		<category><![CDATA[DataPortability]]></category>
		<category><![CDATA[Microformats]]></category>
		<category><![CDATA[Mikroformate]]></category>
		<category><![CDATA[OpenID]]></category>
		<category><![CDATA[Social Network Portability]]></category>
		<category><![CDATA[XFN]]></category>
		<guid isPermaLink="false">http://notizblog.org/2007/12/05/diso-microformats-openid-portable-social-networks/</guid>

					<description><![CDATA[DiSo steht für distributed social networking concepts und ist ein Schirm-Projekt für Open Source Social Networking Tools/Plugins haupsächlich für WordPress: DiSo (dee • so) is an umbrella project for a group of open source implementations of these distributed social networking concepts. Genauer gesagt geht es darum, offene Standards wie z.B. XFN, OpenID oder sonstige Microformats [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><a href="https://github.com/diso">DiSo</a> steht für <em>distributed social networking concepts</em> und ist ein Schirm-Projekt für Open Source Social Networking Tools/Plugins haupsächlich für <a href="https://wordpress.org">WordPress</a>:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>DiSo</strong> (dee • so) is an umbrella project for a group of open source implementations of these distributed social networking concepts.</p>
</blockquote>



<p>Genauer gesagt geht es darum, offene Standards wie z.B. <a href="http://gmpg.org/xfn/">XFN</a>, <a href="http://openid.net/">OpenID</a> oder sonstige <a href="http://microformats.org">Microformats</a> in z.B. WordPress zu integrieren, um einen weiteren Schritt in Richtung <a href="https://de.wikipedia.org/wiki/Dataportability#Das_Projekt">portabler Netze</a> zu gehen. Es wäre also denkbar, dass in Zukunft die Blog-URL der zentrale Identity Manager für die verschiedensten <em>Networks</em> und <em>Communities</em> wird.</p>



<p>Ein paar Gedanken zu möglichen Plugins findet man im Wiki von <a href="https://factoryjoe.com/">Chris Messina</a> und einige fertige Plugins befindet sich auch schon im <a href="https://github.com/diso/">Git</a>.</p>



<p>Vielleicht macht es ja auch Sinn, das <a href="https://notiz.blog/2007/11/28/apml-support-for-wordpress/">APML WordPress Plugin</a> zu integrieren.</p>



<p>Weitere interessante Artikel zu dem Thema von <a href="https://web.archive.org/web/20080730152357/http://redmonk.net/">Steve Ivy</a>:</p>



<ul class="wp-block-list">
<li><a href="https://web.archive.org/web/20080202063617/http://redmonk.net/archives/2007/12/05/diso/">DiSo</a></li>



<li><a href="https://web.archive.org/web/20080623062011/http://redmonk.net/archives/2007/11/07/if-you-love-your-users-set-them-free-portable-social-networks/">If You Love Your Users, Set Them Free — Portable Social Networks</a></li>



<li><a href="https://web.archive.org/web/20071128153216/http://redmonk.net/archives/2007/11/25/making-a-list-whitelisting-with-openid-and-xfn/">Making a list: Whitelisting with OpenId and XFN</a></li>



<li><a href="https://web.archive.org/web/20071203092251/http://redmonk.net/archives/2007/11/26/blogrolls-xfn-and-openid-uris/">Blogrolls, XFN, and OpenID URIs</a></li>



<li><a href="https://web.archive.org/web/20071203092300/http://redmonk.net/archives/2007/11/29/more-xfnopenid/">More XFN+OpenID</a></li>



<li><a href="https://web.archive.org/web/20071208194021/http://redmonk.net/more_monkinetic/xfn-blogroll">XFN Blogroll</a></li>
</ul>
<p>Congratulations on being an RSS reader! You are part of an elite group of people who know how to stay updated in style.</p>]]></content:encoded>
					
					<wfw:commentRss>https://notiz.blog/2007/12/05/diso-microformats-openid-portable-social-networks/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
