<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.trustroots.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Matrixpoint</id>
	<title>Trustroots Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.trustroots.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Matrixpoint"/>
	<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/wiki/Special:Contributions/Matrixpoint"/>
	<updated>2026-05-08T00:13:30Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=874</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=874"/>
		<updated>2009-10-21T15:30:07Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Dedicated Search engines? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
===Intro===&lt;br /&gt;
Yeah, things are moving!&lt;br /&gt;
&lt;br /&gt;
Some questions I have:&lt;br /&gt;
&lt;br /&gt;
===Where do you want to store member profiles?===&lt;br /&gt;
A fundamental design specification is to keep Nexus as lightweight and as fast as possible. An &#039;&#039;identity record&#039;&#039; on Nexus would be not much more than a handle, a set of descriptive tags, a link to a profile on a social website, an expiration date, a public encryption key, and a digital signature.&lt;br /&gt;
&lt;br /&gt;
If applying the public key to the record (less the signature) produces a match to the signature, then it is confirmed that the owner of the private key corresponding to the public key is the individual who created the record. This step is automatically performed by Nexus.&lt;br /&gt;
&lt;br /&gt;
The website profile would include a means of contact (such as email). If an email containing some random data (or just a unique message) is encrypted with the public key and sent to the owner of the profile, and that person responds with an email containing the random data, then the original sender now has a reliable means of contacting the true owner of the Nexus record and has the option of having a private (encrypted) communication with that owner. That owner can confirm that the profile used to contact him is legitimate.&lt;br /&gt;
&lt;br /&gt;
Typically, the owner of a Nexus record would have many profiles on different social websites. That owner would pick one of them to represent his identity to Nexus. He could actually create several independent Nexus identities if he chooses.&lt;br /&gt;
&lt;br /&gt;
The essence of a virtual identity on Nexus is the public key. It can be used to reliably connect to the real person behind the identity as long as that person keeps his private key secret. A virtual identity starts out with no reputation and must acquire one over time. This is done through a second kind of record, a &#039;&#039;reference record&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Nexus reference record contains at least a rating code but perhaps also a text reference. It also contains the handles and public keys of the owner of the reference and the object of the reference, an expiration date, and a signature made from the owner&#039;s private key.&lt;br /&gt;
&lt;br /&gt;
Each record stored in Nexus has a search key (probably invisible to the end-user). A search key can have multiple records associated with it. Identity records can be retrieved with keys like &#039;&#039;identity:handle&#039;&#039;, reference records with keys like &#039;&#039;reference-for:handle&#039;&#039; or &#039;&#039;reference-by:handle&#039;&#039;. Several different identities might use the same handle, so a handle is only a convenient approximation to an identity. The retrieved references are matched to the correct identities using the public keys.&lt;br /&gt;
&lt;br /&gt;
There are also &#039;&#039;tag records&#039;&#039; in Nexus, used for searching for identities using descriptive tags. The design of this could go several ways, but the basic idea is that these records only contain handles.&lt;br /&gt;
&lt;br /&gt;
So, all of the data that is moved and stored on Nexus is relatively small in size. No web pages, no pictures or other media. This is important for speed especially since there is much redundancy.&lt;br /&gt;
&lt;br /&gt;
Please note that I have not actually implemented the layer that manages structured records yet. What is currently implemented can only store (with redundancy) and retrieve unstructured data records using a search key. But the lower-level mechanisms for bootstrapping and maintaining a  distributed network with many nodes frequently entering and leaving is now implemented.&lt;br /&gt;
&lt;br /&gt;
===Will there be redundant copies on different machines, or will each profile live on one machine?===&lt;br /&gt;
There will be redundant copies of all nexus records, probably about 20 live (online) copies. No profile information is stored. If the owner of a nexus identity record wants to change the link to his profile, he must create a new identity record. All records on nexus have an expiration date. So two competing records referring to the same identity are resolved by the most recent update. It is up to the owner of an identity to periodically refresh or update his identity and the references he creates. He can specify the lifetime of his records, but there would be a system-wide maximum time limit.&lt;br /&gt;
&lt;br /&gt;
===What about people switching off their home computers - will that disrupt anything?===&lt;br /&gt;
The Nexus network frequently refreshes itself. If one of the twenty copies of a record goes offline, it would soon be automatically replaced. The current version does &#039;&#039;not&#039;&#039; store any records offline. It is very dynamic, almost like a living thing. In the even of a total simultaneous internet failure, or the unlikely event that all twenty copies would disappear before the next refresh cycle, the worst consequence is that the searchable data is gone until the owner goes online and refreshes it (automatically). For this application, I don&#039;t think that&#039;s very serious. It would be easy enough to provide for local storage of records on multiple PC&#039;s, but it would be interesting to try to avoid this.&lt;br /&gt;
&lt;br /&gt;
Right now, the only things locally stored between sessions are:&lt;br /&gt;
*a list of IP addresses to enable quick reconnection to the network. This list is updated every session with known active nodes.&lt;br /&gt;
*the identity record and reference records created by the local node owner.&lt;br /&gt;
*the public/private key pair of the owner.&lt;br /&gt;
&lt;br /&gt;
===How can I know that the network node I&#039;m currently connected to delivers authentic information?===&lt;br /&gt;
The Nexus network is a swarm of interconnected computers. Anyone who can run a java program on their computer can become a node in the network if they have even one IP address of another live node. The could get this in a number of ways:&lt;br /&gt;
*from the saved list of nodes from the last session&lt;br /&gt;
*someone gives them a live node address via email, chat, web page, etc.&lt;br /&gt;
*automatically from a range of dyndns.com domain names with a predetermined pattern like nexus-001.dyndns.com, nexus-002.dyndns.com, etc. that the Nexus software can automatically scan. Some members of the network would have to set up one of the domains for the benefit of the whole network. But this measure would only be needed for first contact or after a long absence.&lt;br /&gt;
&lt;br /&gt;
One of the unique features of Nexus is that the hash codes of its DHT (Dynamic Hash Table) are computed from the IP addresses of the nodes. This is a protection against manipulation of the network, such as introducing a split in the node grid.&lt;br /&gt;
&lt;br /&gt;
But the data itself can always be verified by making use of the public encryption keys and digital signatures that are part of each identity or reference record.&lt;br /&gt;
&lt;br /&gt;
The network could allow for access through an XML-RPC port on nodes with known domain names (such as from dyndns.com), but they would not be peers in the network, and could probably be tricked by an impostor. But in the end the data acquired would not stand up to validity checks. &lt;br /&gt;
&lt;br /&gt;
I&#039;m not sure it&#039;s a good idea to allow such access to the network. An individual node might be overwhelmed with requests (unless the requests were automatically dished off to other nodes). I would rather have all users of Nexus also be peer nodes. Since the Nexus platform is Java, the big hospex websites could participate in Nexus by embedding a Java applet in one of their web pages (making each of their users a node of Nexus) (this is another reason to keep Nexus very lightweight), or else by creating a PHP version of Nexus to run on their server, or at least making it available to download.&lt;br /&gt;
&lt;br /&gt;
===How does a search work? Where do you want to store the search index?===&lt;br /&gt;
As explained above, there would be no centralized index residing on a server somewhere. The index would be distributed across the Nexus network in the form of &#039;&#039;tag records&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This is probably the most challenging and interesting part of the project. It is really still an open question in P2P network technology. I haven&#039;t worked out the details yet but I have several ideas. &lt;br /&gt;
&lt;br /&gt;
There are some fairly good open-source implementations in use such as [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] that we could imitate. P2P range searches are the most challenging, and they are an active area of academic research already producing usable results. A few recent papers are available on the internet.&lt;br /&gt;
&lt;br /&gt;
In keeping with the minimalist philosophy of this project, I suggest that searching should be highly structured according to a standardized format suitable for hospex, which would make implementation much easier. But innovative ideas are welcome.&lt;br /&gt;
&lt;br /&gt;
====Dedicated Search engines?====&lt;br /&gt;
If I understand right, there is nothing that would stop a bigger player (such as Google) to crawl all the records and store them on a central server, with a search index, and associated with the profile information on the social networks - if this profile information is publicly available. Maybe that is not what you intended, but this would be a possible solution for search: Have one or more services that offer search features.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;I hadn&#039;t thought of it, but you are right.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Although the 3M&#039;s talked a lot about privacy and dark nets, this particular project is for people who want to be found (up to the level of detail provided in their profile), and don&#039;t mind being the subject of references. So there&#039;s no need to protect the network even from Google. Third-party server-based searching would enhance the network, providing speed and caching, and reducing the network load. But I would want to design the network so that it &#039;&#039;could&#039;&#039; function completely independently of any third-party server.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;As for persons who are sensitive about privacy, they can hide within a community. The community can create a profile which gains a reputation on the trust network based on how well they internally vouch for their own members.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
If I leave a negative reference to someone, how can I be sure that it will be displayed on this person&#039;s profile? And, how can you prevent anonymous people from leaving fake negative references?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;A universal problem with P2P networks is that there is no guarantee that all records corresponding to a key will be found on any given attempt, especially when first connected when the DHT is only partially filled. (P2P file sharing networks take a few minutes to get up to speed). Redundancy does a lot to offset this weakness. The reliability is quite high, but not perfect. The positive side is that there is no censoring possible.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I think the magic needs to happen at the moment that the profile is rendered: The system will have some rules to find those references that are relevant to the visitor, and then decorate the social network profile with this additional information.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Yes, there needs to be an algorithm that gives more weight to references by those you highly trust, somewhat less weight to references by friends of those you highly trust and so on. A reference by someone with whom there is no prior trust relationship would carry little or no weight. There are trust metrics already well-established that take into account the various paths of trust between two entities.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;I imagined that the result of a search would be a list of candidates (along with perhaps a thumbprint picture that could be part of the identity record or obtained from the profile), a link to the profile, and a trust ranking, and maybe a display of trust paths to this person. Clicking on a link would render a profile in a browser and as you say some magic might be needed to embed the trust info into the rendering.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Typically, the results of a P2P search are displayed as they come in over some seconds or minutes. Visually on the display, that would correspond to a growing list of entities, with  possibly changing values of the trust measures as the results come in. This is not like what people are used to from a central database, and is one of the reasons why P2P networks have limited popularity. Anything we can do to improve on this would help popularity.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This means: Either the social network where you created your account needs to be aware of Nexus, or you need to view the profile information through another service that adds the Nexus information - which can be a Firefox extension, or a website.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;It might be possible to handle the rendering within the Nexus platform. (Java is known for it&#039;s vast range of libraries. There must be a rendering engine. Java can do almost anything.) Or, Nexus can fetch the html page, modify it, and then pipe it to the browser in some way. This would be a nice little piece of magic.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There could be &amp;quot;reference realms&amp;quot;, their purpose being to decide which references are relevant and which are not. In addition, these entities could offer services similar to couchsurfing&#039;s MDST. The difference being that you can switch to a different reference realm if you feel they do a bad job.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Possibly, a whole digital eco-system could spring up around this. That&#039;s fine with me. I like your concept of competing reference realms. I used to study genetic algorithms, and it&#039;s amazing what self-organized complexity that can spontaneously occur if you create the right kind of framework for that to happen. Incidentally, from the beginning we&#039;ve kept the possibility in mind that this trust network could grow beyond hospex into bartering, etc.; anything requiring trust.&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Great thoughts. Thanks!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
Basically, I would like to see answered all the questions I posted on [[Decentralized networks]].&lt;br /&gt;
&lt;br /&gt;
Each time when I thought myself about decentralized networks, it was these questions that stopped me.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
-- [[User:Lemon-head|Lemon-head]] 22:17, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest! [[User:Matrixpoint|Matrixpoint]] 12:01, 21 October 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=873</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=873"/>
		<updated>2009-10-21T15:03:50Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
===Intro===&lt;br /&gt;
Yeah, things are moving!&lt;br /&gt;
&lt;br /&gt;
Some questions I have:&lt;br /&gt;
&lt;br /&gt;
===Where do you want to store member profiles?===&lt;br /&gt;
A fundamental design specification is to keep Nexus as lightweight and as fast as possible. An &#039;&#039;identity record&#039;&#039; on Nexus would be not much more than a handle, a set of descriptive tags, a link to a profile on a social website, an expiration date, a public encryption key, and a digital signature.&lt;br /&gt;
&lt;br /&gt;
If applying the public key to the record (less the signature) produces a match to the signature, then it is confirmed that the owner of the private key corresponding to the public key is the individual who created the record. This step is automatically performed by Nexus.&lt;br /&gt;
&lt;br /&gt;
The website profile would include a means of contact (such as email). If an email containing some random data (or just a unique message) is encrypted with the public key and sent to the owner of the profile, and that person responds with an email containing the random data, then the original sender now has a reliable means of contacting the true owner of the Nexus record and has the option of having a private (encrypted) communication with that owner. That owner can confirm that the profile used to contact him is legitimate.&lt;br /&gt;
&lt;br /&gt;
Typically, the owner of a Nexus record would have many profiles on different social websites. That owner would pick one of them to represent his identity to Nexus. He could actually create several independent Nexus identities if he chooses.&lt;br /&gt;
&lt;br /&gt;
The essence of a virtual identity on Nexus is the public key. It can be used to reliably connect to the real person behind the identity as long as that person keeps his private key secret. A virtual identity starts out with no reputation and must acquire one over time. This is done through a second kind of record, a &#039;&#039;reference record&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Nexus reference record contains at least a rating code but perhaps also a text reference. It also contains the handles and public keys of the owner of the reference and the object of the reference, an expiration date, and a signature made from the owner&#039;s private key.&lt;br /&gt;
&lt;br /&gt;
Each record stored in Nexus has a search key (probably invisible to the end-user). A search key can have multiple records associated with it. Identity records can be retrieved with keys like &#039;&#039;identity:handle&#039;&#039;, reference records with keys like &#039;&#039;reference-for:handle&#039;&#039; or &#039;&#039;reference-by:handle&#039;&#039;. Several different identities might use the same handle, so a handle is only a convenient approximation to an identity. The retrieved references are matched to the correct identities using the public keys.&lt;br /&gt;
&lt;br /&gt;
There are also &#039;&#039;tag records&#039;&#039; in Nexus, used for searching for identities using descriptive tags. The design of this could go several ways, but the basic idea is that these records only contain handles.&lt;br /&gt;
&lt;br /&gt;
So, all of the data that is moved and stored on Nexus is relatively small in size. No web pages, no pictures or other media. This is important for speed especially since there is much redundancy.&lt;br /&gt;
&lt;br /&gt;
Please note that I have not actually implemented the layer that manages structured records yet. What is currently implemented can only store (with redundancy) and retrieve unstructured data records using a search key. But the lower-level mechanisms for bootstrapping and maintaining a  distributed network with many nodes frequently entering and leaving is now implemented.&lt;br /&gt;
&lt;br /&gt;
===Will there be redundant copies on different machines, or will each profile live on one machine?===&lt;br /&gt;
There will be redundant copies of all nexus records, probably about 20 live (online) copies. No profile information is stored. If the owner of a nexus identity record wants to change the link to his profile, he must create a new identity record. All records on nexus have an expiration date. So two competing records referring to the same identity are resolved by the most recent update. It is up to the owner of an identity to periodically refresh or update his identity and the references he creates. He can specify the lifetime of his records, but there would be a system-wide maximum time limit.&lt;br /&gt;
&lt;br /&gt;
===What about people switching off their home computers - will that disrupt anything?===&lt;br /&gt;
The Nexus network frequently refreshes itself. If one of the twenty copies of a record goes offline, it would soon be automatically replaced. The current version does &#039;&#039;not&#039;&#039; store any records offline. It is very dynamic, almost like a living thing. In the even of a total simultaneous internet failure, or the unlikely event that all twenty copies would disappear before the next refresh cycle, the worst consequence is that the searchable data is gone until the owner goes online and refreshes it (automatically). For this application, I don&#039;t think that&#039;s very serious. It would be easy enough to provide for local storage of records on multiple PC&#039;s, but it would be interesting to try to avoid this.&lt;br /&gt;
&lt;br /&gt;
Right now, the only things locally stored between sessions are:&lt;br /&gt;
*a list of IP addresses to enable quick reconnection to the network. This list is updated every session with known active nodes.&lt;br /&gt;
*the identity record and reference records created by the local node owner.&lt;br /&gt;
*the public/private key pair of the owner.&lt;br /&gt;
&lt;br /&gt;
===How can I know that the network node I&#039;m currently connected to delivers authentic information?===&lt;br /&gt;
The Nexus network is a swarm of interconnected computers. Anyone who can run a java program on their computer can become a node in the network if they have even one IP address of another live node. The could get this in a number of ways:&lt;br /&gt;
*from the saved list of nodes from the last session&lt;br /&gt;
*someone gives them a live node address via email, chat, web page, etc.&lt;br /&gt;
*automatically from a range of dyndns.com domain names with a predetermined pattern like nexus-001.dyndns.com, nexus-002.dyndns.com, etc. that the Nexus software can automatically scan. Some members of the network would have to set up one of the domains for the benefit of the whole network. But this measure would only be needed for first contact or after a long absence.&lt;br /&gt;
&lt;br /&gt;
One of the unique features of Nexus is that the hash codes of its DHT (Dynamic Hash Table) are computed from the IP addresses of the nodes. This is a protection against manipulation of the network, such as introducing a split in the node grid.&lt;br /&gt;
&lt;br /&gt;
But the data itself can always be verified by making use of the public encryption keys and digital signatures that are part of each identity or reference record.&lt;br /&gt;
&lt;br /&gt;
The network could allow for access through an XML-RPC port on nodes with known domain names (such as from dyndns.com), but they would not be peers in the network, and could probably be tricked by an impostor. But in the end the data acquired would not stand up to validity checks. &lt;br /&gt;
&lt;br /&gt;
I&#039;m not sure it&#039;s a good idea to allow such access to the network. An individual node might be overwhelmed with requests (unless the requests were automatically dished off to other nodes). I would rather have all users of Nexus also be peer nodes. Since the Nexus platform is Java, the big hospex websites could participate in Nexus by embedding a Java applet in one of their web pages (making each of their users a node of Nexus) (this is another reason to keep Nexus very lightweight), or else by creating a PHP version of Nexus to run on their server, or at least making it available to download.&lt;br /&gt;
&lt;br /&gt;
===How does a search work? Where do you want to store the search index?===&lt;br /&gt;
As explained above, there would be no centralized index residing on a server somewhere. The index would be distributed across the Nexus network in the form of &#039;&#039;tag records&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This is probably the most challenging and interesting part of the project. It is really still an open question in P2P network technology. I haven&#039;t worked out the details yet but I have several ideas. &lt;br /&gt;
&lt;br /&gt;
There are some fairly good open-source implementations in use such as [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] that we could imitate. P2P range searches are the most challenging, and they are an active area of academic research already producing usable results. A few recent papers are available on the internet.&lt;br /&gt;
&lt;br /&gt;
In keeping with the minimalist philosophy of this project, I suggest that searching should be highly structured according to a standardized format suitable for hospex, which would make implementation much easier. But innovative ideas are welcome.&lt;br /&gt;
&lt;br /&gt;
====Dedicated Search engines?====&lt;br /&gt;
If I understand right, there is nothing that would stop a bigger player (such as Google) to crawl all the records and store them on a central server, with a search index, and associated with the profile information on the social networks - if this profile information is publicly available. Maybe that is not what you intended, but this would be a possible solution for search: Have one or more services that offer search features.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;I hadn&#039;t thought of it, but you are right.&lt;br /&gt;
&lt;br /&gt;
Although the 3M&#039;s talked a lot about privacy and dark nets, this particular project is for people who want to be found (up to the level of detail provided in their profile), and don&#039;t mind being the subject of references. So there&#039;s no need to protect the network even from Google. Third-party server-based searching would enhance the network, providing speed and caching, and reducing the network load. But I would want to design the network so that it &#039;&#039;could&#039;&#039; function completely independently of any third-party server.&lt;br /&gt;
&lt;br /&gt;
As for persons who are sensitive about privacy, they can hide within a community. The community can create a profile which gains a reputation on the trust network based on how well they internally vouch for their own members.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
If I leave a negative reference to someone, how can I be sure that it will be displayed on this person&#039;s profile? And, how can you prevent anonymous people from leaving fake negative references?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;A universal problem with P2P networks is that there is no guarantee that all records corresponding to a key will be found on any given attempt, especially when first connected when the DHT is only partially filled. (P2P file sharing networks take a few minutes to get up to speed). Redundancy does a lot to offset this weakness. The reliability is quite high, but not perfect. The positive side is that there is no censoring possible.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I think the magic needs to happen at the moment that the profile is rendered: The system will have some rules to find those references that are relevant to the visitor, and then decorate the social network profile with this additional information.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Yes, there needs to be an algorithm that gives more weight to references by those you highly trust, somewhat less weight to references by friends of those you highly trust and so on. A reference by someone with whom there is no prior trust relationship would carry little or no weight. There are trust metrics already well-established that take into account the various paths of trust between two entities.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;I imagined that the result of a search would be a list of candidates (along with perhaps a thumbprint picture that could be part of the identity record or obtained from the profile), a link to the profile, and a trust ranking, and maybe a display of trust paths to this person. Clicking on a link would render a profile in a browser and as you say some magic might be needed to embed the trust info into the rendering.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Typically, the results of a P2P search are displayed as they come in over some seconds or minutes. Visually on the display, that would correspond to a growing list of entities, with  possibly changing values of the trust measures as the results come in. This is not like what people are used to from a central database, and is one of the reasons why P2P networks have limited popularity. Anything we can do to improve on this would help popularity.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This means: Either the social network where you created your account needs to be aware of Nexus, or you need to view the profile information through another service that adds the Nexus information - which can be a Firefox extension, or a website.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;It might be possible to handle the rendering within the Nexus platform. (Java is known for it&#039;s vast range of libraries. There must be a rendering engine. Java can do almost anything.) Or, Nexus can fetch the html page, modify it, and then pipe it to the browser in some way. This would be a nice little piece of magic.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There could be &amp;quot;reference realms&amp;quot;, their purpose being to decide which references are relevant and which are not. In addition, these entities could offer services similar to couchsurfing&#039;s MDST. The difference being that you can switch to a different reference realm if you feel they do a bad job.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Possibly, a whole digital eco-system could spring up around this. That&#039;s fine with me. I like your concept of competing reference realms. I used to study genetic algorithms, and it&#039;s amazing what self-organized complexity that can spontaneously occur if you create the right kind of framework for that to happen. Incidentally, from the beginning we&#039;ve kept the possibility in mind that this trust network could grow beyond hospex into bartering, etc.; anything requiring trust.&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Great thoughts. Thanks!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
Basically, I would like to see answered all the questions I posted on [[Decentralized networks]].&lt;br /&gt;
&lt;br /&gt;
Each time when I thought myself about decentralized networks, it was these questions that stopped me.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
-- [[User:Lemon-head|Lemon-head]] 22:17, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest! [[User:Matrixpoint|Matrixpoint]] 12:01, 21 October 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=872</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=872"/>
		<updated>2009-10-21T15:02:11Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
===Intro===&lt;br /&gt;
Yeah, things are moving!&lt;br /&gt;
&lt;br /&gt;
Some questions I have:&lt;br /&gt;
&lt;br /&gt;
===Where do you want to store member profiles?===&lt;br /&gt;
A fundamental design specification is to keep Nexus as lightweight and as fast as possible. An &#039;&#039;identity record&#039;&#039; on Nexus would be not much more than a handle, a set of descriptive tags, a link to a profile on a social website, an expiration date, a public encryption key, and a digital signature.&lt;br /&gt;
&lt;br /&gt;
If applying the public key to the record (less the signature) produces a match to the signature, then it is confirmed that the owner of the private key corresponding to the public key is the individual who created the record. This step is automatically performed by Nexus.&lt;br /&gt;
&lt;br /&gt;
The website profile would include a means of contact (such as email). If an email containing some random data (or just a unique message) is encrypted with the public key and sent to the owner of the profile, and that person responds with an email containing the random data, then the original sender now has a reliable means of contacting the true owner of the Nexus record and has the option of having a private (encrypted) communication with that owner. That owner can confirm that the profile used to contact him is legitimate.&lt;br /&gt;
&lt;br /&gt;
Typically, the owner of a Nexus record would have many profiles on different social websites. That owner would pick one of them to represent his identity to Nexus. He could actually create several independent Nexus identities if he chooses.&lt;br /&gt;
&lt;br /&gt;
The essence of a virtual identity on Nexus is the public key. It can be used to reliably connect to the real person behind the identity as long as that person keeps his private key secret. A virtual identity starts out with no reputation and must acquire one over time. This is done through a second kind of record, a &#039;&#039;reference record&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Nexus reference record contains at least a rating code but perhaps also a text reference. It also contains the handles and public keys of the owner of the reference and the object of the reference, an expiration date, and a signature made from the owner&#039;s private key.&lt;br /&gt;
&lt;br /&gt;
Each record stored in Nexus has a search key (probably invisible to the end-user). A search key can have multiple records associated with it. Identity records can be retrieved with keys like &#039;&#039;identity:handle&#039;&#039;, reference records with keys like &#039;&#039;reference-for:handle&#039;&#039; or &#039;&#039;reference-by:handle&#039;&#039;. Several different identities might use the same handle, so a handle is only a convenient approximation to an identity. The retrieved references are matched to the correct identities using the public keys.&lt;br /&gt;
&lt;br /&gt;
There are also &#039;&#039;tag records&#039;&#039; in Nexus, used for searching for identities using descriptive tags. The design of this could go several ways, but the basic idea is that these records only contain handles.&lt;br /&gt;
&lt;br /&gt;
So, all of the data that is moved and stored on Nexus is relatively small in size. No web pages, no pictures or other media. This is important for speed especially since there is much redundancy.&lt;br /&gt;
&lt;br /&gt;
Please note that I have not actually implemented the layer that manages structured records yet. What is currently implemented can only store (with redundancy) and retrieve unstructured data records using a search key. But the lower-level mechanisms for bootstrapping and maintaining a  distributed network with many nodes frequently entering and leaving is now implemented.&lt;br /&gt;
&lt;br /&gt;
===Will there be redundant copies on different machines, or will each profile live on one machine?===&lt;br /&gt;
There will be redundant copies of all nexus records, probably about 20 live (online) copies. No profile information is stored. If the owner of a nexus identity record wants to change the link to his profile, he must create a new identity record. All records on nexus have an expiration date. So two competing records referring to the same identity are resolved by the most recent update. It is up to the owner of an identity to periodically refresh or update his identity and the references he creates. He can specify the lifetime of his records, but there would be a system-wide maximum time limit.&lt;br /&gt;
&lt;br /&gt;
===What about people switching off their home computers - will that disrupt anything?===&lt;br /&gt;
The Nexus network frequently refreshes itself. If one of the twenty copies of a record goes offline, it would soon be automatically replaced. The current version does &#039;&#039;not&#039;&#039; store any records offline. It is very dynamic, almost like a living thing. In the even of a total simultaneous internet failure, or the unlikely event that all twenty copies would disappear before the next refresh cycle, the worst consequence is that the searchable data is gone until the owner goes online and refreshes it (automatically). For this application, I don&#039;t think that&#039;s very serious. It would be easy enough to provide for local storage of records on multiple PC&#039;s, but it would be interesting to try to avoid this.&lt;br /&gt;
&lt;br /&gt;
Right now, the only things locally stored between sessions are:&lt;br /&gt;
*a list of IP addresses to enable quick reconnection to the network. This list is updated every session with known active nodes.&lt;br /&gt;
*the identity record and reference records created by the local node owner.&lt;br /&gt;
*the public/private key pair of the owner.&lt;br /&gt;
&lt;br /&gt;
===How can I know that the network node I&#039;m currently connected to delivers authentic information?===&lt;br /&gt;
The Nexus network is a swarm of interconnected computers. Anyone who can run a java program on their computer can become a node in the network if they have even one IP address of another live node. The could get this in a number of ways:&lt;br /&gt;
*from the saved list of nodes from the last session&lt;br /&gt;
*someone gives them a live node address via email, chat, web page, etc.&lt;br /&gt;
*automatically from a range of dyndns.com domain names with a predetermined pattern like nexus-001.dyndns.com, nexus-002.dyndns.com, etc. that the Nexus software can automatically scan. Some members of the network would have to set up one of the domains for the benefit of the whole network. But this measure would only be needed for first contact or after a long absence.&lt;br /&gt;
&lt;br /&gt;
One of the unique features of Nexus is that the hash codes of its DHT (Dynamic Hash Table) are computed from the IP addresses of the nodes. This is a protection against manipulation of the network, such as introducing a split in the node grid.&lt;br /&gt;
&lt;br /&gt;
But the data itself can always be verified by making use of the public encryption keys and digital signatures that are part of each identity or reference record.&lt;br /&gt;
&lt;br /&gt;
The network could allow for access through an XML-RPC port on nodes with known domain names (such as from dyndns.com), but they would not be peers in the network, and could probably be tricked by an impostor. But in the end the data acquired would not stand up to validity checks. &lt;br /&gt;
&lt;br /&gt;
I&#039;m not sure it&#039;s a good idea to allow such access to the network. An individual node might be overwhelmed with requests (unless the requests were automatically dished off to other nodes). I would rather have all users of Nexus also be peer nodes. Since the Nexus platform is Java, the big hospex websites could participate in Nexus by embedding a Java applet in one of their web pages (making each of their users a node of Nexus) (this is another reason to keep Nexus very lightweight), or else by creating a PHP version of Nexus to run on their server, or at least making it available to download.&lt;br /&gt;
&lt;br /&gt;
===How does a search work? Where do you want to store the search index?===&lt;br /&gt;
As explained above, there would be no centralized index residing on a server somewhere. The index would be distributed across the Nexus network in the form of &#039;&#039;tag records&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This is probably the most challenging and interesting part of the project. It is really still an open question in P2P network technology. I haven&#039;t worked out the details yet but I have several ideas. &lt;br /&gt;
&lt;br /&gt;
There are some fairly good open-source implementations in use such as [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] that we could imitate. P2P range searches are the most challenging, and they are an active area of academic research already producing usable results. A few recent papers are available on the internet.&lt;br /&gt;
&lt;br /&gt;
In keeping with the minimalist philosophy of this project, I suggest that searching should be highly structured according to a standardized format suitable for hospex, which would make implementation much easier. But innovative ideas are welcome.&lt;br /&gt;
&lt;br /&gt;
====Dedicated Search engines?====&lt;br /&gt;
If I understand right, there is nothing that would stop a bigger player (such as Google) to crawl all the records and store them on a central server, with a search index, and associated with the profile information on the social networks - if this profile information is publicly available. Maybe that is not what you intended, but this would be a possible solution for search: Have one or more services that offer search features.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;I hadn&#039;t thought of it, but you are right.&lt;br /&gt;
&lt;br /&gt;
Although the 3M&#039;s talked a lot about privacy and dark nets, this particular project is for people who want to be found (up to the level of detail provided in their profile), and don&#039;t mind being the subject of references. So there&#039;s no need to protect the network even from Google. Third-party server-based searching would enhance the network, providing speed and caching, and reducing the network load. But I would want to design the network so that it &#039;&#039;could&#039;&#039; function completely independently of any third-party server.&lt;br /&gt;
&lt;br /&gt;
As for persons who are sensitive about privacy, they can hide within a community. The community can create a profile which gains a reputation on the trust network based on how well they internally vouch for their own members.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
If I leave a negative reference to someone, how can I be sure that it will be displayed on this person&#039;s profile? And, how can you prevent anonymous people from leaving fake negative references?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;A universal problem with P2P networks is that there is no guarantee that all records corresponding to a key will be found on any given attempt, especially when first connected when the DHT is only partially filled. (P2P file sharing networks take a few minutes to get up to speed). Redundancy does a lot to offset this weakness. The reliability is quite high, but not perfect. The positive side is that there is no censoring possible.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I think the magic needs to happen at the moment that the profile is rendered: The system will have some rules to find those references that are relevant to the visitor, and then decorate the social network profile with this additional information.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Yes, there needs to be an algorithm that gives more weight to references by those you highly trust, somewhat less weight to references by friends of those you highly trust and so on. A reference by someone with whom there is no prior trust relationship would carry little or no weight. There are trust metrics already well-established that take into account the various paths of trust between two entities.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;I imagined that the result of a search would be a list of candidates (along with perhaps a thumbprint picture that could be part of the identity record or obtained from the profile), a link to the profile, and a trust ranking, and maybe a display of trust paths to this person. Clicking on a link would render a profile in a browser and as you say some magic might be needed to embed the trust info into the rendering.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Typically, the results of a P2P search are displayed as they come in over some seconds or minutes. Visually on the display, that would correspond to a growing list of entities, with  possibly changing values of the trust measures as the results come in. This is not like what people are used to from a central database, and is one of the reasons why P2P networks have limited popularity. Anything we can do to improve on this would help popularity.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This means: Either the social network where you created your account needs to be aware of Nexus, or you need to view the profile information through another service that adds the Nexus information - which can be a Firefox extension, or a website.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;It might be possible to handle the rendering within the Nexus platform. (Java is known for it&#039;s vast range of libraries. There must be a rendering engine. Java can do almost anything.) Or, Nexus can fetch the html page, modify it, and then pipe it to the browser in some way. This would be a nice little piece of magic.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
There could be &amp;quot;reference realms&amp;quot;, their purpose being to decide which references are relevant and which are not. In addition, these entities could offer services similar to couchsurfing&#039;s MDST. The difference being that you can switch to a different reference realm if you feel they do a bad job.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Possibly, a whole digital eco-system could spring up around this. That&#039;s fine with me. Incidentally, from the beginning we&#039;ve kept the possibility in mind that this trust network could grow beyond hospex into bartering, etc.; anything requiring trust. I like your concept of competing reference realms. I used to study genetic algorithms, and it&#039;s amazing what self-organized complexity that can spontaneously occur if you create the right kind of framework for that to happen.&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Great thoughts. Thanks!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
Basically, I would like to see answered all the questions I posted on [[Decentralized networks]].&lt;br /&gt;
&lt;br /&gt;
Each time when I thought myself about decentralized networks, it was these questions that stopped me.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
-- [[User:Lemon-head|Lemon-head]] 22:17, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest! [[User:Matrixpoint|Matrixpoint]] 12:01, 21 October 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=871</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=871"/>
		<updated>2009-10-21T14:36:20Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
===Intro===&lt;br /&gt;
Yeah, things are moving!&lt;br /&gt;
&lt;br /&gt;
Some questions I have:&lt;br /&gt;
&lt;br /&gt;
===Where do you want to store member profiles?===&lt;br /&gt;
A fundamental design specification is to keep Nexus as lightweight and as fast as possible. An &#039;&#039;identity record&#039;&#039; on Nexus would be not much more than a handle, a set of descriptive tags, a link to a profile on a social website, an expiration date, a public encryption key, and a digital signature.&lt;br /&gt;
&lt;br /&gt;
If applying the public key to the record (less the signature) produces a match to the signature, then it is confirmed that the owner of the private key corresponding to the public key is the individual who created the record. This step is automatically performed by Nexus.&lt;br /&gt;
&lt;br /&gt;
The website profile would include a means of contact (such as email). If an email containing some random data (or just a unique message) is encrypted with the public key and sent to the owner of the profile, and that person responds with an email containing the random data, then the original sender now has a reliable means of contacting the true owner of the Nexus record and has the option of having a private (encrypted) communication with that owner. That owner can confirm that the profile used to contact him is legitimate.&lt;br /&gt;
&lt;br /&gt;
Typically, the owner of a Nexus record would have many profiles on different social websites. That owner would pick one of them to represent his identity to Nexus. He could actually create several independent Nexus identities if he chooses.&lt;br /&gt;
&lt;br /&gt;
The essence of a virtual identity on Nexus is the public key. It can be used to reliably connect to the real person behind the identity as long as that person keeps his private key secret. A virtual identity starts out with no reputation and must acquire one over time. This is done through a second kind of record, a &#039;&#039;reference record&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Nexus reference record contains at least a rating code but perhaps also a text reference. It also contains the handles and public keys of the owner of the reference and the object of the reference, an expiration date, and a signature made from the owner&#039;s private key.&lt;br /&gt;
&lt;br /&gt;
Each record stored in Nexus has a search key (probably invisible to the end-user). A search key can have multiple records associated with it. Identity records can be retrieved with keys like &#039;&#039;identity:handle&#039;&#039;, reference records with keys like &#039;&#039;reference-for:handle&#039;&#039; or &#039;&#039;reference-by:handle&#039;&#039;. Several different identities might use the same handle, so a handle is only a convenient approximation to an identity. The retrieved references are matched to the correct identities using the public keys.&lt;br /&gt;
&lt;br /&gt;
There are also &#039;&#039;tag records&#039;&#039; in Nexus, used for searching for identities using descriptive tags. The design of this could go several ways, but the basic idea is that these records only contain handles.&lt;br /&gt;
&lt;br /&gt;
So, all of the data that is moved and stored on Nexus is relatively small in size. No web pages, no pictures or other media. This is important for speed especially since there is much redundancy.&lt;br /&gt;
&lt;br /&gt;
Please note that I have not actually implemented the layer that manages structured records yet. What is currently implemented can only store (with redundancy) and retrieve unstructured data records using a search key. But the lower-level mechanisms for bootstrapping and maintaining a  distributed network with many nodes frequently entering and leaving is now implemented.&lt;br /&gt;
&lt;br /&gt;
===Will there be redundant copies on different machines, or will each profile live on one machine?===&lt;br /&gt;
There will be redundant copies of all nexus records, probably about 20 live (online) copies. No profile information is stored. If the owner of a nexus identity record wants to change the link to his profile, he must create a new identity record. All records on nexus have an expiration date. So two competing records referring to the same identity are resolved by the most recent update. It is up to the owner of an identity to periodically refresh or update his identity and the references he creates. He can specify the lifetime of his records, but there would be a system-wide maximum time limit.&lt;br /&gt;
&lt;br /&gt;
===What about people switching off their home computers - will that disrupt anything?===&lt;br /&gt;
The Nexus network frequently refreshes itself. If one of the twenty copies of a record goes offline, it would soon be automatically replaced. The current version does &#039;&#039;not&#039;&#039; store any records offline. It is very dynamic, almost like a living thing. In the even of a total simultaneous internet failure, or the unlikely event that all twenty copies would disappear before the next refresh cycle, the worst consequence is that the searchable data is gone until the owner goes online and refreshes it (automatically). For this application, I don&#039;t think that&#039;s very serious. It would be easy enough to provide for local storage of records on multiple PC&#039;s, but it would be interesting to try to avoid this.&lt;br /&gt;
&lt;br /&gt;
Right now, the only things locally stored between sessions are:&lt;br /&gt;
*a list of IP addresses to enable quick reconnection to the network. This list is updated every session with known active nodes.&lt;br /&gt;
*the identity record and reference records created by the local node owner.&lt;br /&gt;
*the public/private key pair of the owner.&lt;br /&gt;
&lt;br /&gt;
===How can I know that the network node I&#039;m currently connected to delivers authentic information?===&lt;br /&gt;
The Nexus network is a swarm of interconnected computers. Anyone who can run a java program on their computer can become a node in the network if they have even one IP address of another live node. The could get this in a number of ways:&lt;br /&gt;
*from the saved list of nodes from the last session&lt;br /&gt;
*someone gives them a live node address via email, chat, web page, etc.&lt;br /&gt;
*automatically from a range of dyndns.com domain names with a predetermined pattern like nexus-001.dyndns.com, nexus-002.dyndns.com, etc. that the Nexus software can automatically scan. Some members of the network would have to set up one of the domains for the benefit of the whole network. But this measure would only be needed for first contact or after a long absence.&lt;br /&gt;
&lt;br /&gt;
One of the unique features of Nexus is that the hash codes of its DHT (Dynamic Hash Table) are computed from the IP addresses of the nodes. This is a protection against manipulation of the network, such as introducing a split in the node grid.&lt;br /&gt;
&lt;br /&gt;
But the data itself can always be verified by making use of the public encryption keys and digital signatures that are part of each identity or reference record.&lt;br /&gt;
&lt;br /&gt;
The network could allow for access through an XML-RPC port on nodes with known domain names (such as from dyndns.com), but they would not be peers in the network, and could probably be tricked by an impostor. But in the end the data acquired would not stand up to validity checks. &lt;br /&gt;
&lt;br /&gt;
I&#039;m not sure it&#039;s a good idea to allow such access to the network. An individual node might be overwhelmed with requests (unless the requests were automatically dished off to other nodes). I would rather have all users of Nexus also be peer nodes. Since the Nexus platform is Java, the big hospex websites could participate in Nexus by embedding a Java applet in one of their web pages (making each of their users a node of Nexus) (this is another reason to keep Nexus very lightweight), or else by creating a PHP version of Nexus to run on their server, or at least making it available to download.&lt;br /&gt;
&lt;br /&gt;
===How does a search work? Where do you want to store the search index?===&lt;br /&gt;
As explained above, there would be no centralized index residing on a server somewhere. The index would be distributed across the Nexus network in the form of &#039;&#039;tag records&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This is probably the most challenging and interesting part of the project. It is really still an open question in P2P network technology. I haven&#039;t worked out the details yet but I have several ideas. &lt;br /&gt;
&lt;br /&gt;
There are some fairly good open-source implementations in use such as [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] that we could imitate. P2P range searches are the most challenging, and they are an active area of academic research already producing usable results. A few recent papers are available on the internet.&lt;br /&gt;
&lt;br /&gt;
In keeping with the minimalist philosophy of this project, I suggest that searching should be highly structured according to a standardized format suitable for hospex, which would make implementation much easier. But innovative ideas are welcome.&lt;br /&gt;
&lt;br /&gt;
====Dedicated Search engines?====&lt;br /&gt;
If I understand right, there is nothing that would stop a bigger player (such as Google) to crawl all the records and store them on a central server, with a search index, and associated with the profile information on the social networks - if this profile information is publicly available. Maybe that is not what you intended, but this would be a possible solution for search: Have one or more services that offer search features.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;I hadn&#039;t thought of it, but you are right.&lt;br /&gt;
&lt;br /&gt;
Although the 3M&#039;s talked a lot about privacy and dark nets, this particular project is for people who &#039;&#039;want&#039;&#039; to be found (up to the level of detail provided in their profile), and don&#039;t mind being the subject of references. So there&#039;s no need to protect the network even from Google. Third-party server-based searching would enhance the network, providing speed and caching, and reducing the network load. But I would want to design the network so that it &#039;&#039;could&#039;&#039; function completely independently of any third-party server.&lt;br /&gt;
&lt;br /&gt;
As for persons who are sensitive about privacy, they can hide within a community. The community can create a profile which gains a reputation on the trust network based on how well they internally vouch for their own members.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
If I leave a negative reference to someone, how can I be sure that it will be displayed on this person&#039;s profile? And, how can you prevent anonymous people from leaving fake negative references?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;A universal problem with P2P networks is that there is no guarantee that all records corresponding to a key will be found on any given attempt, especially when first connected when the DHT is only partially filled. (P2P file sharing networks take a few minutes to get up to speed). Redundancy does a lot to offset this weakness. The reliability is quite high, but not perfect. The positive side is that there is no censoring possible.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I think the magic needs to happen at the moment that the profile is rendered: The system will have some rules to find those references that are relevant to the visitor, and then decorate the social network profile with this additional information.&lt;br /&gt;
&lt;br /&gt;
This means: Either the social network where you created your account needs to be aware of Nexus, or you need to view the profile information through another service that adds the Nexus information - which can be a Firefox extension, or a website.&lt;br /&gt;
&lt;br /&gt;
There could be &amp;quot;reference realms&amp;quot;, their purpose being to decide which references are relevant and which are not. In addition, these entities could offer services similar to couchsurfing&#039;s MDST. The difference being that you can switch to a different reference realm if you feel they do a bad job.&lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
Basically, I would like to see answered all the questions I posted on [[Decentralized networks]].&lt;br /&gt;
&lt;br /&gt;
Each time when I thought myself about decentralized networks, it was these questions that stopped me.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
-- [[User:Lemon-head|Lemon-head]] 22:17, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest! [[User:Matrixpoint|Matrixpoint]] 12:01, 21 October 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=870</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=870"/>
		<updated>2009-10-21T14:27:38Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Good point! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
===Intro===&lt;br /&gt;
Yeah, things are moving!&lt;br /&gt;
&lt;br /&gt;
Some questions I have:&lt;br /&gt;
&lt;br /&gt;
===Where do you want to store member profiles?===&lt;br /&gt;
A fundamental design specification is to keep Nexus as lightweight and as fast as possible. An &#039;&#039;identity record&#039;&#039; on Nexus would be not much more than a handle, a set of descriptive tags, a link to a profile on a social website, an expiration date, a public encryption key, and a digital signature.&lt;br /&gt;
&lt;br /&gt;
If applying the public key to the record (less the signature) produces a match to the signature, then it is confirmed that the owner of the private key corresponding to the public key is the individual who created the record. This step is automatically performed by Nexus.&lt;br /&gt;
&lt;br /&gt;
The website profile would include a means of contact (such as email). If an email containing some random data (or just a unique message) is encrypted with the public key and sent to the owner of the profile, and that person responds with an email containing the random data, then the original sender now has a reliable means of contacting the true owner of the Nexus record and has the option of having a private (encrypted) communication with that owner. That owner can confirm that the profile used to contact him is legitimate.&lt;br /&gt;
&lt;br /&gt;
Typically, the owner of a Nexus record would have many profiles on different social websites. That owner would pick one of them to represent his identity to Nexus. He could actually create several independent Nexus identities if he chooses.&lt;br /&gt;
&lt;br /&gt;
The essence of a virtual identity on Nexus is the public key. It can be used to reliably connect to the real person behind the identity as long as that person keeps his private key secret. A virtual identity starts out with no reputation and must acquire one over time. This is done through a second kind of record, a &#039;&#039;reference record&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Nexus reference record contains at least a rating code but perhaps also a text reference. It also contains the handles and public keys of the owner of the reference and the object of the reference, an expiration date, and a signature made from the owner&#039;s private key.&lt;br /&gt;
&lt;br /&gt;
Each record stored in Nexus has a search key (probably invisible to the end-user). A search key can have multiple records associated with it. Identity records can be retrieved with keys like &#039;&#039;identity:handle&#039;&#039;, reference records with keys like &#039;&#039;reference-for:handle&#039;&#039; or &#039;&#039;reference-by:handle&#039;&#039;. Several different identities might use the same handle, so a handle is only a convenient approximation to an identity. The retrieved references are matched to the correct identities using the public keys.&lt;br /&gt;
&lt;br /&gt;
There are also &#039;&#039;tag records&#039;&#039; in Nexus, used for searching for identities using descriptive tags. The design of this could go several ways, but the basic idea is that these records only contain handles.&lt;br /&gt;
&lt;br /&gt;
So, all of the data that is moved and stored on Nexus is relatively small in size. No web pages, no pictures or other media. This is important for speed especially since there is much redundancy.&lt;br /&gt;
&lt;br /&gt;
Please note that I have not actually implemented the layer that manages structured records yet. What is currently implemented can only store (with redundancy) and retrieve unstructured data records using a search key. But the lower-level mechanisms for bootstrapping and maintaining a  distributed network with many nodes frequently entering and leaving is now implemented.&lt;br /&gt;
&lt;br /&gt;
===Will there be redundant copies on different machines, or will each profile live on one machine?===&lt;br /&gt;
There will be redundant copies of all nexus records, probably about 20 live (online) copies. No profile information is stored. If the owner of a nexus identity record wants to change the link to his profile, he must create a new identity record. All records on nexus have an expiration date. So two competing records referring to the same identity are resolved by the most recent update. It is up to the owner of an identity to periodically refresh or update his identity and the references he creates. He can specify the lifetime of his records, but there would be a system-wide maximum time limit.&lt;br /&gt;
&lt;br /&gt;
===What about people switching off their home computers - will that disrupt anything?===&lt;br /&gt;
The Nexus network frequently refreshes itself. If one of the twenty copies of a record goes offline, it would soon be automatically replaced. The current version does &#039;&#039;not&#039;&#039; store any records offline. It is very dynamic, almost like a living thing. In the even of a total simultaneous internet failure, or the unlikely event that all twenty copies would disappear before the next refresh cycle, the worst consequence is that the searchable data is gone until the owner goes online and refreshes it (automatically). For this application, I don&#039;t think that&#039;s very serious. It would be easy enough to provide for local storage of records on multiple PC&#039;s, but it would be interesting to try to avoid this.&lt;br /&gt;
&lt;br /&gt;
Right now, the only things locally stored between sessions are:&lt;br /&gt;
*a list of IP addresses to enable quick reconnection to the network. This list is updated every session with known active nodes.&lt;br /&gt;
*the identity record and reference records created by the local node owner.&lt;br /&gt;
*the public/private key pair of the owner.&lt;br /&gt;
&lt;br /&gt;
===How can I know that the network node I&#039;m currently connected to delivers authentic information?===&lt;br /&gt;
The Nexus network is a swarm of interconnected computers. Anyone who can run a java program on their computer can become a node in the network if they have even one IP address of another live node. The could get this in a number of ways:&lt;br /&gt;
*from the saved list of nodes from the last session&lt;br /&gt;
*someone gives them a live node address via email, chat, web page, etc.&lt;br /&gt;
*automatically from a range of dyndns.com domain names with a predetermined pattern like nexus-001.dyndns.com, nexus-002.dyndns.com, etc. that the Nexus software can automatically scan. Some members of the network would have to set up one of the domains for the benefit of the whole network. But this measure would only be needed for first contact or after a long absence.&lt;br /&gt;
&lt;br /&gt;
One of the unique features of Nexus is that the hash codes of its DHT (Dynamic Hash Table) are computed from the IP addresses of the nodes. This is a protection against manipulation of the network, such as introducing a split in the node grid.&lt;br /&gt;
&lt;br /&gt;
But the data itself can always be verified by making use of the public encryption keys and digital signatures that are part of each identity or reference record.&lt;br /&gt;
&lt;br /&gt;
The network could allow for access through an XML-RPC port on nodes with known domain names (such as from dyndns.com), but they would not be peers in the network, and could probably be tricked by an impostor. But in the end the data acquired would not stand up to validity checks. &lt;br /&gt;
&lt;br /&gt;
I&#039;m not sure it&#039;s a good idea to allow such access to the network. An individual node might be overwhelmed with requests (unless the requests were automatically dished off to other nodes). I would rather have all users of Nexus also be peer nodes. Since the Nexus platform is Java, the big hospex websites could participate in Nexus by embedding a Java applet in one of their web pages (making each of their users a node of Nexus) (this is another reason to keep Nexus very lightweight), or else by creating a PHP version of Nexus to run on their server, or at least making it available to download.&lt;br /&gt;
&lt;br /&gt;
===How does a search work? Where do you want to store the search index?===&lt;br /&gt;
As explained above, there would be no centralized index residing on a server somewhere. The index would be distributed across the Nexus network in the form of &#039;&#039;tag records&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This is probably the most challenging and interesting part of the project. It is really still an open question in P2P network technology. I haven&#039;t worked out the details yet but I have several ideas. &lt;br /&gt;
&lt;br /&gt;
There are some fairly good open-source implementations in use such as [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] that we could imitate. P2P range searches are the most challenging, and they are an active area of academic research already producing usable results. A few recent papers are available on the internet.&lt;br /&gt;
&lt;br /&gt;
In keeping with the minimalist philosophy of this project, I suggest that searching should be highly structured according to a standardized format suitable for hospex, which would make implementation much easier. But innovative ideas are welcome.&lt;br /&gt;
&lt;br /&gt;
====Dedicated Search engines?====&lt;br /&gt;
If I understand right, there is nothing that would stop a bigger player (such as Google) to crawl all the records and store them on a central server, with a search index, and associated with the profile information on the social networks - if this profile information is publicly available. Maybe that is not what you intended, but this would be a possible solution for search: Have one or more services that offer search features.&lt;br /&gt;
&lt;br /&gt;
=====Good point!=====&lt;br /&gt;
I hadn&#039;t thought of it, but you are right.&lt;br /&gt;
&lt;br /&gt;
Although the 3M&#039;s talked a lot about privacy and dark nets, this particular project is for people who &#039;&#039;want&#039;&#039; to be found (up to the level of detail provided in their profile), and don&#039;t mind being the subject of references. So there&#039;s no need to protect the network even from Google. Third-party server-based searching would enhance the network, providing speed and caching, and reducing the network load. But I would want to design the network so that it &#039;&#039;could&#039;&#039; function completely independently of any third-party server.&lt;br /&gt;
&lt;br /&gt;
As for persons who are sensitive about privacy, they can hide within a community. The community can create a profile which gains a reputation on the trust network based on how well they internally vouch for their own members.&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
If I leave a negative reference to someone, how can I be sure that it will be displayed on this person&#039;s profile? And, how can you prevent anonymous people from leaving fake negative references?&lt;br /&gt;
&lt;br /&gt;
I think the magic needs to happen at the moment that the profile is rendered: The system will have some rules to find those references that are relevant to the visitor, and then decorate the social network profile with this additional information.&lt;br /&gt;
&lt;br /&gt;
This means: Either the social network where you created your account needs to be aware of Nexus, or you need to view the profile information through another service that adds the Nexus information - which can be a Firefox extension, or a website.&lt;br /&gt;
&lt;br /&gt;
There could be &amp;quot;reference realms&amp;quot;, their purpose being to decide which references are relevant and which are not. In addition, these entities could offer services similar to couchsurfing&#039;s MDST. The difference being that you can switch to a different reference realm if you feel they do a bad job.&lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
Basically, I would like to see answered all the questions I posted on [[Decentralized networks]].&lt;br /&gt;
&lt;br /&gt;
Each time when I thought myself about decentralized networks, it was these questions that stopped me.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
-- [[User:Lemon-head|Lemon-head]] 22:17, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest! [[User:Matrixpoint|Matrixpoint]] 12:01, 21 October 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=869</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=869"/>
		<updated>2009-10-21T14:23:34Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Good point! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
===Intro===&lt;br /&gt;
Yeah, things are moving!&lt;br /&gt;
&lt;br /&gt;
Some questions I have:&lt;br /&gt;
&lt;br /&gt;
===Where do you want to store member profiles?===&lt;br /&gt;
A fundamental design specification is to keep Nexus as lightweight and as fast as possible. An &#039;&#039;identity record&#039;&#039; on Nexus would be not much more than a handle, a set of descriptive tags, a link to a profile on a social website, an expiration date, a public encryption key, and a digital signature.&lt;br /&gt;
&lt;br /&gt;
If applying the public key to the record (less the signature) produces a match to the signature, then it is confirmed that the owner of the private key corresponding to the public key is the individual who created the record. This step is automatically performed by Nexus.&lt;br /&gt;
&lt;br /&gt;
The website profile would include a means of contact (such as email). If an email containing some random data (or just a unique message) is encrypted with the public key and sent to the owner of the profile, and that person responds with an email containing the random data, then the original sender now has a reliable means of contacting the true owner of the Nexus record and has the option of having a private (encrypted) communication with that owner. That owner can confirm that the profile used to contact him is legitimate.&lt;br /&gt;
&lt;br /&gt;
Typically, the owner of a Nexus record would have many profiles on different social websites. That owner would pick one of them to represent his identity to Nexus. He could actually create several independent Nexus identities if he chooses.&lt;br /&gt;
&lt;br /&gt;
The essence of a virtual identity on Nexus is the public key. It can be used to reliably connect to the real person behind the identity as long as that person keeps his private key secret. A virtual identity starts out with no reputation and must acquire one over time. This is done through a second kind of record, a &#039;&#039;reference record&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Nexus reference record contains at least a rating code but perhaps also a text reference. It also contains the handles and public keys of the owner of the reference and the object of the reference, an expiration date, and a signature made from the owner&#039;s private key.&lt;br /&gt;
&lt;br /&gt;
Each record stored in Nexus has a search key (probably invisible to the end-user). A search key can have multiple records associated with it. Identity records can be retrieved with keys like &#039;&#039;identity:handle&#039;&#039;, reference records with keys like &#039;&#039;reference-for:handle&#039;&#039; or &#039;&#039;reference-by:handle&#039;&#039;. Several different identities might use the same handle, so a handle is only a convenient approximation to an identity. The retrieved references are matched to the correct identities using the public keys.&lt;br /&gt;
&lt;br /&gt;
There are also &#039;&#039;tag records&#039;&#039; in Nexus, used for searching for identities using descriptive tags. The design of this could go several ways, but the basic idea is that these records only contain handles.&lt;br /&gt;
&lt;br /&gt;
So, all of the data that is moved and stored on Nexus is relatively small in size. No web pages, no pictures or other media. This is important for speed especially since there is much redundancy.&lt;br /&gt;
&lt;br /&gt;
Please note that I have not actually implemented the layer that manages structured records yet. What is currently implemented can only store (with redundancy) and retrieve unstructured data records using a search key. But the lower-level mechanisms for bootstrapping and maintaining a  distributed network with many nodes frequently entering and leaving is now implemented.&lt;br /&gt;
&lt;br /&gt;
===Will there be redundant copies on different machines, or will each profile live on one machine?===&lt;br /&gt;
There will be redundant copies of all nexus records, probably about 20 live (online) copies. No profile information is stored. If the owner of a nexus identity record wants to change the link to his profile, he must create a new identity record. All records on nexus have an expiration date. So two competing records referring to the same identity are resolved by the most recent update. It is up to the owner of an identity to periodically refresh or update his identity and the references he creates. He can specify the lifetime of his records, but there would be a system-wide maximum time limit.&lt;br /&gt;
&lt;br /&gt;
===What about people switching off their home computers - will that disrupt anything?===&lt;br /&gt;
The Nexus network frequently refreshes itself. If one of the twenty copies of a record goes offline, it would soon be automatically replaced. The current version does &#039;&#039;not&#039;&#039; store any records offline. It is very dynamic, almost like a living thing. In the even of a total simultaneous internet failure, or the unlikely event that all twenty copies would disappear before the next refresh cycle, the worst consequence is that the searchable data is gone until the owner goes online and refreshes it (automatically). For this application, I don&#039;t think that&#039;s very serious. It would be easy enough to provide for local storage of records on multiple PC&#039;s, but it would be interesting to try to avoid this.&lt;br /&gt;
&lt;br /&gt;
Right now, the only things locally stored between sessions are:&lt;br /&gt;
*a list of IP addresses to enable quick reconnection to the network. This list is updated every session with known active nodes.&lt;br /&gt;
*the identity record and reference records created by the local node owner.&lt;br /&gt;
*the public/private key pair of the owner.&lt;br /&gt;
&lt;br /&gt;
===How can I know that the network node I&#039;m currently connected to delivers authentic information?===&lt;br /&gt;
The Nexus network is a swarm of interconnected computers. Anyone who can run a java program on their computer can become a node in the network if they have even one IP address of another live node. The could get this in a number of ways:&lt;br /&gt;
*from the saved list of nodes from the last session&lt;br /&gt;
*someone gives them a live node address via email, chat, web page, etc.&lt;br /&gt;
*automatically from a range of dyndns.com domain names with a predetermined pattern like nexus-001.dyndns.com, nexus-002.dyndns.com, etc. that the Nexus software can automatically scan. Some members of the network would have to set up one of the domains for the benefit of the whole network. But this measure would only be needed for first contact or after a long absence.&lt;br /&gt;
&lt;br /&gt;
One of the unique features of Nexus is that the hash codes of its DHT (Dynamic Hash Table) are computed from the IP addresses of the nodes. This is a protection against manipulation of the network, such as introducing a split in the node grid.&lt;br /&gt;
&lt;br /&gt;
But the data itself can always be verified by making use of the public encryption keys and digital signatures that are part of each identity or reference record.&lt;br /&gt;
&lt;br /&gt;
The network could allow for access through an XML-RPC port on nodes with known domain names (such as from dyndns.com), but they would not be peers in the network, and could probably be tricked by an impostor. But in the end the data acquired would not stand up to validity checks. &lt;br /&gt;
&lt;br /&gt;
I&#039;m not sure it&#039;s a good idea to allow such access to the network. An individual node might be overwhelmed with requests (unless the requests were automatically dished off to other nodes). I would rather have all users of Nexus also be peer nodes. Since the Nexus platform is Java, the big hospex websites could participate in Nexus by embedding a Java applet in one of their web pages (making each of their users a node of Nexus) (this is another reason to keep Nexus very lightweight), or else by creating a PHP version of Nexus to run on their server, or at least making it available to download.&lt;br /&gt;
&lt;br /&gt;
===How does a search work? Where do you want to store the search index?===&lt;br /&gt;
As explained above, there would be no centralized index residing on a server somewhere. The index would be distributed across the Nexus network in the form of &#039;&#039;tag records&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This is probably the most challenging and interesting part of the project. It is really still an open question in P2P network technology. I haven&#039;t worked out the details yet but I have several ideas. &lt;br /&gt;
&lt;br /&gt;
There are some fairly good open-source implementations in use such as [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] that we could imitate. P2P range searches are the most challenging, and they are an active area of academic research already producing usable results. A few recent papers are available on the internet.&lt;br /&gt;
&lt;br /&gt;
In keeping with the minimalist philosophy of this project, I suggest that searching should be highly structured according to a standardized format suitable for hospex, which would make implementation much easier. But innovative ideas are welcome.&lt;br /&gt;
&lt;br /&gt;
====Dedicated Search engines?====&lt;br /&gt;
If I understand right, there is nothing that would stop a bigger player (such as Google) to crawl all the records and store them on a central server, with a search index, and associated with the profile information on the social networks - if this profile information is publicly available. Maybe that is not what you intended, but this would be a possible solution for search: Have one or more services that offer search features.&lt;br /&gt;
&lt;br /&gt;
=====Good point!=====&lt;br /&gt;
I hadn&#039;t thought of it, but you are right.&lt;br /&gt;
&lt;br /&gt;
Although the 3M&#039;s talked a lot about privacy and dark nets, this particular project is for people who &#039;&#039;want&#039;&#039; to be found (up to the level of detail provided in their profile), and don&#039;t mind being the subject of references. So there&#039;s no need to protect the network even from Google. Third-party server-based searching would enhance the network, providing speed and caching, and reducing the network load. But I would want to design the network so that it &#039;&#039;could&#039;&#039; function completely independently of any third-party server.&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
If I leave a negative reference to someone, how can I be sure that it will be displayed on this person&#039;s profile? And, how can you prevent anonymous people from leaving fake negative references?&lt;br /&gt;
&lt;br /&gt;
I think the magic needs to happen at the moment that the profile is rendered: The system will have some rules to find those references that are relevant to the visitor, and then decorate the social network profile with this additional information.&lt;br /&gt;
&lt;br /&gt;
This means: Either the social network where you created your account needs to be aware of Nexus, or you need to view the profile information through another service that adds the Nexus information - which can be a Firefox extension, or a website.&lt;br /&gt;
&lt;br /&gt;
There could be &amp;quot;reference realms&amp;quot;, their purpose being to decide which references are relevant and which are not. In addition, these entities could offer services similar to couchsurfing&#039;s MDST. The difference being that you can switch to a different reference realm if you feel they do a bad job.&lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
Basically, I would like to see answered all the questions I posted on [[Decentralized networks]].&lt;br /&gt;
&lt;br /&gt;
Each time when I thought myself about decentralized networks, it was these questions that stopped me.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
-- [[User:Lemon-head|Lemon-head]] 22:17, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest! [[User:Matrixpoint|Matrixpoint]] 12:01, 21 October 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=868</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=868"/>
		<updated>2009-10-21T14:23:04Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Dedicated Search engines? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
===Intro===&lt;br /&gt;
Yeah, things are moving!&lt;br /&gt;
&lt;br /&gt;
Some questions I have:&lt;br /&gt;
&lt;br /&gt;
===Where do you want to store member profiles?===&lt;br /&gt;
A fundamental design specification is to keep Nexus as lightweight and as fast as possible. An &#039;&#039;identity record&#039;&#039; on Nexus would be not much more than a handle, a set of descriptive tags, a link to a profile on a social website, an expiration date, a public encryption key, and a digital signature.&lt;br /&gt;
&lt;br /&gt;
If applying the public key to the record (less the signature) produces a match to the signature, then it is confirmed that the owner of the private key corresponding to the public key is the individual who created the record. This step is automatically performed by Nexus.&lt;br /&gt;
&lt;br /&gt;
The website profile would include a means of contact (such as email). If an email containing some random data (or just a unique message) is encrypted with the public key and sent to the owner of the profile, and that person responds with an email containing the random data, then the original sender now has a reliable means of contacting the true owner of the Nexus record and has the option of having a private (encrypted) communication with that owner. That owner can confirm that the profile used to contact him is legitimate.&lt;br /&gt;
&lt;br /&gt;
Typically, the owner of a Nexus record would have many profiles on different social websites. That owner would pick one of them to represent his identity to Nexus. He could actually create several independent Nexus identities if he chooses.&lt;br /&gt;
&lt;br /&gt;
The essence of a virtual identity on Nexus is the public key. It can be used to reliably connect to the real person behind the identity as long as that person keeps his private key secret. A virtual identity starts out with no reputation and must acquire one over time. This is done through a second kind of record, a &#039;&#039;reference record&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Nexus reference record contains at least a rating code but perhaps also a text reference. It also contains the handles and public keys of the owner of the reference and the object of the reference, an expiration date, and a signature made from the owner&#039;s private key.&lt;br /&gt;
&lt;br /&gt;
Each record stored in Nexus has a search key (probably invisible to the end-user). A search key can have multiple records associated with it. Identity records can be retrieved with keys like &#039;&#039;identity:handle&#039;&#039;, reference records with keys like &#039;&#039;reference-for:handle&#039;&#039; or &#039;&#039;reference-by:handle&#039;&#039;. Several different identities might use the same handle, so a handle is only a convenient approximation to an identity. The retrieved references are matched to the correct identities using the public keys.&lt;br /&gt;
&lt;br /&gt;
There are also &#039;&#039;tag records&#039;&#039; in Nexus, used for searching for identities using descriptive tags. The design of this could go several ways, but the basic idea is that these records only contain handles.&lt;br /&gt;
&lt;br /&gt;
So, all of the data that is moved and stored on Nexus is relatively small in size. No web pages, no pictures or other media. This is important for speed especially since there is much redundancy.&lt;br /&gt;
&lt;br /&gt;
Please note that I have not actually implemented the layer that manages structured records yet. What is currently implemented can only store (with redundancy) and retrieve unstructured data records using a search key. But the lower-level mechanisms for bootstrapping and maintaining a  distributed network with many nodes frequently entering and leaving is now implemented.&lt;br /&gt;
&lt;br /&gt;
===Will there be redundant copies on different machines, or will each profile live on one machine?===&lt;br /&gt;
There will be redundant copies of all nexus records, probably about 20 live (online) copies. No profile information is stored. If the owner of a nexus identity record wants to change the link to his profile, he must create a new identity record. All records on nexus have an expiration date. So two competing records referring to the same identity are resolved by the most recent update. It is up to the owner of an identity to periodically refresh or update his identity and the references he creates. He can specify the lifetime of his records, but there would be a system-wide maximum time limit.&lt;br /&gt;
&lt;br /&gt;
===What about people switching off their home computers - will that disrupt anything?===&lt;br /&gt;
The Nexus network frequently refreshes itself. If one of the twenty copies of a record goes offline, it would soon be automatically replaced. The current version does &#039;&#039;not&#039;&#039; store any records offline. It is very dynamic, almost like a living thing. In the even of a total simultaneous internet failure, or the unlikely event that all twenty copies would disappear before the next refresh cycle, the worst consequence is that the searchable data is gone until the owner goes online and refreshes it (automatically). For this application, I don&#039;t think that&#039;s very serious. It would be easy enough to provide for local storage of records on multiple PC&#039;s, but it would be interesting to try to avoid this.&lt;br /&gt;
&lt;br /&gt;
Right now, the only things locally stored between sessions are:&lt;br /&gt;
*a list of IP addresses to enable quick reconnection to the network. This list is updated every session with known active nodes.&lt;br /&gt;
*the identity record and reference records created by the local node owner.&lt;br /&gt;
*the public/private key pair of the owner.&lt;br /&gt;
&lt;br /&gt;
===How can I know that the network node I&#039;m currently connected to delivers authentic information?===&lt;br /&gt;
The Nexus network is a swarm of interconnected computers. Anyone who can run a java program on their computer can become a node in the network if they have even one IP address of another live node. The could get this in a number of ways:&lt;br /&gt;
*from the saved list of nodes from the last session&lt;br /&gt;
*someone gives them a live node address via email, chat, web page, etc.&lt;br /&gt;
*automatically from a range of dyndns.com domain names with a predetermined pattern like nexus-001.dyndns.com, nexus-002.dyndns.com, etc. that the Nexus software can automatically scan. Some members of the network would have to set up one of the domains for the benefit of the whole network. But this measure would only be needed for first contact or after a long absence.&lt;br /&gt;
&lt;br /&gt;
One of the unique features of Nexus is that the hash codes of its DHT (Dynamic Hash Table) are computed from the IP addresses of the nodes. This is a protection against manipulation of the network, such as introducing a split in the node grid.&lt;br /&gt;
&lt;br /&gt;
But the data itself can always be verified by making use of the public encryption keys and digital signatures that are part of each identity or reference record.&lt;br /&gt;
&lt;br /&gt;
The network could allow for access through an XML-RPC port on nodes with known domain names (such as from dyndns.com), but they would not be peers in the network, and could probably be tricked by an impostor. But in the end the data acquired would not stand up to validity checks. &lt;br /&gt;
&lt;br /&gt;
I&#039;m not sure it&#039;s a good idea to allow such access to the network. An individual node might be overwhelmed with requests (unless the requests were automatically dished off to other nodes). I would rather have all users of Nexus also be peer nodes. Since the Nexus platform is Java, the big hospex websites could participate in Nexus by embedding a Java applet in one of their web pages (making each of their users a node of Nexus) (this is another reason to keep Nexus very lightweight), or else by creating a PHP version of Nexus to run on their server, or at least making it available to download.&lt;br /&gt;
&lt;br /&gt;
===How does a search work? Where do you want to store the search index?===&lt;br /&gt;
As explained above, there would be no centralized index residing on a server somewhere. The index would be distributed across the Nexus network in the form of &#039;&#039;tag records&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This is probably the most challenging and interesting part of the project. It is really still an open question in P2P network technology. I haven&#039;t worked out the details yet but I have several ideas. &lt;br /&gt;
&lt;br /&gt;
There are some fairly good open-source implementations in use such as [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] that we could imitate. P2P range searches are the most challenging, and they are an active area of academic research already producing usable results. A few recent papers are available on the internet.&lt;br /&gt;
&lt;br /&gt;
In keeping with the minimalist philosophy of this project, I suggest that searching should be highly structured according to a standardized format suitable for hospex, which would make implementation much easier. But innovative ideas are welcome.&lt;br /&gt;
&lt;br /&gt;
====Dedicated Search engines?====&lt;br /&gt;
If I understand right, there is nothing that would stop a bigger player (such as Google) to crawl all the records and store them on a central server, with a search index, and associated with the profile information on the social networks - if this profile information is publicly available. Maybe that is not what you intended, but this would be a possible solution for search: Have one or more services that offer search features.&lt;br /&gt;
&lt;br /&gt;
====Good point!====&lt;br /&gt;
I hadn&#039;t thought of it, but you are right.&lt;br /&gt;
&lt;br /&gt;
Although the 3M&#039;s talked a lot about privacy and dark nets, this particular project is for people who &#039;&#039;want&#039;&#039; to be found (up to the level of detail provided in their profile), and don&#039;t mind being the subject of references. So there&#039;s no need to protect the network even from Google. Third-party server-based searching would enhance the network, providing speed and caching, and reducing the network load. But I would want to design the network so that it &#039;&#039;could&#039;&#039; function completely independently of any third-party server.&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
If I leave a negative reference to someone, how can I be sure that it will be displayed on this person&#039;s profile? And, how can you prevent anonymous people from leaving fake negative references?&lt;br /&gt;
&lt;br /&gt;
I think the magic needs to happen at the moment that the profile is rendered: The system will have some rules to find those references that are relevant to the visitor, and then decorate the social network profile with this additional information.&lt;br /&gt;
&lt;br /&gt;
This means: Either the social network where you created your account needs to be aware of Nexus, or you need to view the profile information through another service that adds the Nexus information - which can be a Firefox extension, or a website.&lt;br /&gt;
&lt;br /&gt;
There could be &amp;quot;reference realms&amp;quot;, their purpose being to decide which references are relevant and which are not. In addition, these entities could offer services similar to couchsurfing&#039;s MDST. The difference being that you can switch to a different reference realm if you feel they do a bad job.&lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
Basically, I would like to see answered all the questions I posted on [[Decentralized networks]].&lt;br /&gt;
&lt;br /&gt;
Each time when I thought myself about decentralized networks, it was these questions that stopped me.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
-- [[User:Lemon-head|Lemon-head]] 22:17, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest! [[User:Matrixpoint|Matrixpoint]] 12:01, 21 October 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=865</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=865"/>
		<updated>2009-10-21T12:01:30Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Questions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
===Intro===&lt;br /&gt;
Yeah, things are moving!&lt;br /&gt;
&lt;br /&gt;
Some questions I have:&lt;br /&gt;
&lt;br /&gt;
===Where do you want to store member profiles?===&lt;br /&gt;
A fundamental design specification is to keep Nexus as lightweight and as fast as possible. An &#039;&#039;identity record&#039;&#039; on Nexus would be not much more than a handle, a set of descriptive tags, a link to a profile on a social website, an expiration date, a public encryption key, and a digital signature.&lt;br /&gt;
&lt;br /&gt;
If applying the public key to the record (less the signature) produces a match to the signature, then it is confirmed that the owner of the private key corresponding to the public key is the individual who created the record. This step is automatically performed by Nexus.&lt;br /&gt;
&lt;br /&gt;
The website profile would include a means of contact (such as email). If an email containing some random data (or just a unique message) is encrypted with the public key and sent to the owner of the profile, and that person responds with an email containing the random data, then the original sender now has a reliable means of contacting the true owner of the Nexus record and has the option of having a private (encrypted) communication with that owner. That owner can confirm that the profile used to contact him is legitimate.&lt;br /&gt;
&lt;br /&gt;
Typically, the owner of a Nexus record would have many profiles on different social websites. That owner would pick one of them to represent his identity to Nexus. He could actually create several independent Nexus identities if he chooses.&lt;br /&gt;
&lt;br /&gt;
The essence of a virtual identity on Nexus is the public key. It can be used to reliably connect to the real person behind the identity as long as that person keeps his private key secret. A virtual identity starts out with no reputation and must acquire one over time. This is done through a second kind of record, a &#039;&#039;reference record&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
A Nexus reference record contains at least a rating code but perhaps also a text reference. It also contains the handles and public keys of the owner of the reference and the object of the reference, an expiration date, and a signature made from the owner&#039;s private key.&lt;br /&gt;
&lt;br /&gt;
Each record stored in Nexus has a search key (probably invisible to the end-user). A search key can have multiple records associated with it. Identity records can be retrieved with keys like &#039;&#039;identity:handle&#039;&#039;, reference records with keys like &#039;&#039;reference-for:handle&#039;&#039; or &#039;&#039;reference-by:handle&#039;&#039;. Several different identities might use the same handle, so a handle is only a convenient approximation to an identity. The retrieved references are matched to the correct identities using the public keys.&lt;br /&gt;
&lt;br /&gt;
There are also &#039;&#039;tag records&#039;&#039; in Nexus, used for searching for identities using descriptive tags. The design of this could go several ways, but the basic idea is that these records only contain handles.&lt;br /&gt;
&lt;br /&gt;
So, all of the data that is moved and stored on Nexus is relatively small in size. No web pages, no pictures or other media. This is important for speed especially since there is much redundancy.&lt;br /&gt;
&lt;br /&gt;
Please note that I have not actually implemented the layer that manages structured records yet. What is currently implemented can only store (with redundancy) and retrieve unstructured data records using a search key. But the lower-level mechanisms for bootstrapping and maintaining a  distributed network with many nodes frequently entering and leaving is now implemented.&lt;br /&gt;
&lt;br /&gt;
===Will there be redundant copies on different machines, or will each profile live on one machine?===&lt;br /&gt;
There will be redundant copies of all nexus records, probably about 20 live (online) copies. No profile information is stored. If the owner of a nexus identity record wants to change the link to his profile, he must create a new identity record. All records on nexus have an expiration date. So two competing records referring to the same identity are resolved by the most recent update. It is up to the owner of an identity to periodically refresh or update his identity and the references he creates. He can specify the lifetime of his records, but there would be a system-wide maximum time limit.&lt;br /&gt;
&lt;br /&gt;
===What about people switching off their home computers - will that disrupt anything?===&lt;br /&gt;
The Nexus network frequently refreshes itself. If one of the twenty copies of a record goes offline, it would soon be automatically replaced. The current version does &#039;&#039;not&#039;&#039; store any records offline. It is very dynamic, almost like a living thing. In the even of a total simultaneous internet failure, or the unlikely event that all twenty copies would disappear before the next refresh cycle, the worst consequence is that the searchable data is gone until the owner goes online and refreshes it (automatically). For this application, I don&#039;t think that&#039;s very serious. It would be easy enough to provide for local storage of records on multiple PC&#039;s, but it would be interesting to try to avoid this.&lt;br /&gt;
&lt;br /&gt;
Right now, the only things locally stored between sessions are:&lt;br /&gt;
*a list of IP addresses to enable quick reconnection to the network. This list is updated every session with known active nodes.&lt;br /&gt;
*the identity record and reference records created by the local node owner.&lt;br /&gt;
*the public/private key pair of the owner.&lt;br /&gt;
&lt;br /&gt;
===How can I know that the network node I&#039;m currently connected to delivers authentic information?===&lt;br /&gt;
The Nexus network is a swarm of interconnected computers. Anyone who can run a java program on their computer can become a node in the network if they have even one IP address of another live node. The could get this in a number of ways:&lt;br /&gt;
*from the saved list of nodes from the last session&lt;br /&gt;
*someone gives them a live node address via email, chat, web page, etc.&lt;br /&gt;
*automatically from a range of dyndns.com domain names with a predetermined pattern like nexus-001.dyndns.com, nexus-002.dyndns.com, etc. that the Nexus software can automatically scan. Some members of the network would have to set up one of the domains for the benefit of the whole network. But this measure would only be needed for first contact or after a long absence.&lt;br /&gt;
&lt;br /&gt;
One of the unique features of Nexus is that the hash codes of its DHT (Dynamic Hash Table) are computed from the IP addresses of the nodes. This is a protection against manipulation of the network, such as introducing a split in the node grid.&lt;br /&gt;
&lt;br /&gt;
But the data itself can always be verified by making use of the public encryption keys and digital signatures that are part of each identity or reference record.&lt;br /&gt;
&lt;br /&gt;
The network could allow for access through an XML-RPC port on nodes with known domain names (such as from dyndns.com), but they would not be peers in the network, and could probably be tricked by an impostor. But in the end the data acquired would not stand up to validity checks. &lt;br /&gt;
&lt;br /&gt;
I&#039;m not sure it&#039;s a good idea to allow such access to the network. An individual node might be overwhelmed with requests (unless the requests were automatically dished off to other nodes). I would rather have all users of Nexus also be peer nodes. Since the Nexus platform is Java, the big hospex websites could participate in Nexus by embedding a Java applet in one of their web pages (making each of their users a node of Nexus) (this is another reason to keep Nexus very lightweight), or else by creating a PHP version of Nexus to run on their server, or at least making it available to download.&lt;br /&gt;
&lt;br /&gt;
===How does a search work? Where do you want to store the search index?===&lt;br /&gt;
As explained above, there would be no centralized index residing on a server somewhere. The index would be distributed across the Nexus network in the form of &#039;&#039;tag records&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
This is probably the most challenging and interesting part of the project. It is really still an open question in P2P network technology. I haven&#039;t worked out the details yet but I have several ideas. &lt;br /&gt;
&lt;br /&gt;
There are some fairly good open-source implementations in use such as [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] that we could imitate. P2P range searches are the most challenging, and they are an active area of academic research already producing usable results. A few recent papers are available on the internet.&lt;br /&gt;
&lt;br /&gt;
In keeping with the minimalist philosophy of this project, I suggest that searching should be highly structured according to a standardized format suitable for hospex, which would make implementation much easier. But innovative ideas are welcome.&lt;br /&gt;
&lt;br /&gt;
===Conclusion===&lt;br /&gt;
Basically, I would like to see answered all the questions I posted on [[Decentralized networks]].&lt;br /&gt;
&lt;br /&gt;
Each time when I thought myself about decentralized networks, it was these questions that stopped me.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
-- [[User:Lemon-head|Lemon-head]] 22:17, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
Thanks for your interest! [[User:Matrixpoint|Matrixpoint]] 12:01, 21 October 2009 (UTC)&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Drupal_Hospex_Features&amp;diff=860</id>
		<title>Drupal Hospex Features</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Drupal_Hospex_Features&amp;diff=860"/>
		<updated>2009-10-21T07:23:33Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Drupal&#039;&#039;&#039; is a versatile [[free software]] content management system. It has quite a bit of social network functionality in the form of modules.&lt;br /&gt;
&lt;br /&gt;
On [[BeWelcome]] there have been some calls to explore the possibilities of Drupal as an alternative to the home-grown BW-Rox platform that the network currently runs on. More generally speaking, Drupal is a possible option for any initiative to set up a new social network.&lt;br /&gt;
&lt;br /&gt;
This page is adapted from [http://www.bevolunteer.org/wiki/Drupal], but unlike the source page, this article should be less about BeWelcome and more about the general idea of using Drupal for hospex purposes.&lt;br /&gt;
&lt;br /&gt;
While a lot can be done with existing modules, it will be interesting to see where it makes sense or is necessary to have dedicated new modules built for hospex purposes.&lt;br /&gt;
&lt;br /&gt;
Some of this article will be puzzling for people who don&#039;t know Drupal lingo. If you (yes, you!) feel like it, you can add links and explanations where they make sense.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
We&#039;d like to have user profiles, (location-based) member search, messages between members, trust links between members (references, friend links etc), and general community features such as groups, events, wiki-like editing etc.&lt;br /&gt;
&lt;br /&gt;
Nice to have would be [[Decentralized networks|decentralization]] features, where different sites can interact with each other. Or even [[P2P]], but that would better be solved by something else (not Drupal).&lt;br /&gt;
&lt;br /&gt;
Other nice-to-haves are couch/location objects that are independent from member profiles: One member can have more than one couch/location, and a group of members can share the responsibility for a couch/location (such as, in a shared flat. The pros and cons of that can be debated, but it&#039;s nice to have the technical possibility.&lt;br /&gt;
&lt;br /&gt;
== User profiles and couches/locations ==&lt;br /&gt;
&lt;br /&gt;
Drupal has a built-in user and profile system that allows for arbitrary custom fields, user avatar images etc. If that is not enough, the [http://drupal.org/project/content_profile Content Profile module] allows to unleash the full powers of the famous [http://drupal.org/project/content_profile Content Construction Kit (&amp;quot;CCK&amp;quot;)].&lt;br /&gt;
&lt;br /&gt;
A separate node type &amp;quot;couch&amp;quot; or &amp;quot;location&amp;quot; or &amp;quot;shared place&amp;quot; could be created and connected to user profiles via node reference or user reference.&lt;br /&gt;
&lt;br /&gt;
== Location features ==&lt;br /&gt;
Drupal has a bunch of location modules working with CCK, Google Maps, etc.&lt;br /&gt;
&lt;br /&gt;
See also http://www.openstreetmap.org (have not checked this link, it was in the wiki page on BW)&lt;br /&gt;
&lt;br /&gt;
== Searching members and couches ==&lt;br /&gt;
Drupal core has a built-in search that searches everything (users, nodes, etc). More powerful and customized things are possible with [http://drupal.org/project/views Views] in combination with one of the location modules - but still needs to be explored.&lt;br /&gt;
&lt;br /&gt;
It can make sense to write a &#039;&#039;custom search module&#039;&#039;, for a better performance and flexibility, and so that site owners don&#039;t have the trouble of customization. This custom module could even define a custom view (based on Views module)&lt;br /&gt;
&lt;br /&gt;
== Messages between Members ==&lt;br /&gt;
Need to check existing modules.&lt;br /&gt;
&lt;br /&gt;
== Menu / Navigation ==&lt;br /&gt;
Basically, I don&#039;t see any technical limitations for this. The Drupal menu system + [http://drupal.org/project/menu_block Menu Blocks] module are usually sufficient, and some custom functionality can be implemented where this is not enough.&lt;br /&gt;
&lt;br /&gt;
Admin links: The nice thing with Drupal&#039;s menu system is that it filters out links to pages that you are not allowed to see. So, admin links can simply be added in the normal menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Multi-language features ==&lt;br /&gt;
Drupal has a lot of language features already built-in (core locale module). You can get more with the [http://drupal.org/project/i18n Internationalization (&amp;quot;i18n&amp;quot;) module] and a bunch of other extra modules.&lt;br /&gt;
&lt;br /&gt;
=== Translated content (nodes) ===&lt;br /&gt;
If you want to translate a node, Drupal creates a new node for each language version.&lt;br /&gt;
&lt;br /&gt;
=== Translated text ===&lt;br /&gt;
Drupal, similar to WordPress, has a translation function used inside core and module code, used this way:&lt;br /&gt;
&lt;br /&gt;
  t(&#039;Please translate this piece of text&#039;);&lt;br /&gt;
&lt;br /&gt;
Consequence: If you change one letter of this text, all the translations need to be re-done. And, if two texts are the same in the code, the translations will also be the same - even if the context is different.&lt;br /&gt;
&lt;br /&gt;
The BW system works differently, because the translation function does not get the English string as an argument, but a keyword. In some way this is more flexible, because you can have different keywords for two texts that might be the same in English, but different in Russian. And, you can change the English translation without flushing all other translations, and without changing the code. On the other hand, if you implement a new page you always have to add some english translations, otherwise it will look horribly broken.&lt;br /&gt;
&lt;br /&gt;
=== Interface for translators ===&lt;br /&gt;
The current platform running [[BeWelcome]] has some nice features for translators, where translation links are placed directly in the content. The BW system does work even if the text to translate is in a html tag attribute (such as, an image &#039;&#039;&#039;alt&#039;&#039;&#039; attribute, or a link &#039;&#039;&#039;title&#039;&#039;&#039; attribute - the link is placed somewhere where it doesn&#039;t break the layout.&lt;br /&gt;
&lt;br /&gt;
Drupal has some similar features, but I have not checked out how they work exactly. Would be a good idea to do some research.&lt;br /&gt;
&lt;br /&gt;
== Trust links / Friend links / References ==&lt;br /&gt;
Modules to check for friend links:&lt;br /&gt;
* http://drupal.org/project/drupal_universal_relation_api&lt;br /&gt;
* http://drupal.org/project/user_relationships&lt;br /&gt;
* http://drupal.org/project/friendlist&lt;br /&gt;
&lt;br /&gt;
References could be modeled as comments, but maybe it&#039;s better to have a dedicated custom module for that.&lt;br /&gt;
&lt;br /&gt;
== Other features ==&lt;br /&gt;
&lt;br /&gt;
=== Groups ===&lt;br /&gt;
Check the &amp;quot;organic groups&amp;quot; module.&lt;br /&gt;
&lt;br /&gt;
=== Forum ===&lt;br /&gt;
Ideally this should work together with &amp;quot;groups&amp;quot;.. or for smaller sites it can make sense to have one big forum.&lt;br /&gt;
&lt;br /&gt;
Check the &amp;quot;Advanced Forum&amp;quot; module.&lt;br /&gt;
&lt;br /&gt;
=== Wiki ===&lt;br /&gt;
Check http://drupal.org/project/wikitools and a bunch of other wiki-related modules.&lt;br /&gt;
&lt;br /&gt;
=== Chat ===&lt;br /&gt;
Check out the different available modules&lt;br /&gt;
&lt;br /&gt;
=== Blog (for users and groups) ===&lt;br /&gt;
Site-wide blogs are easily possible with Drupal. User blogs are possible with the blog module (shipped with core). I&#039;m sure that group blogs are possible with some contrib module..&lt;br /&gt;
&lt;br /&gt;
=== Galleries ===&lt;br /&gt;
Usually you will make each picture node with filefield, and with any number of extra fields you want, plus comments. OR you can make each node have a collection of pictures, using flexifield or just multiple imagefields. Or make a custom data structure for that (but why?)&lt;br /&gt;
&lt;br /&gt;
There is a bunch of modules to make this easier for you and that provide different ways to browse these pictures. Some of them based on Views. And if that is not enough, a custom module can make everything possible.&lt;br /&gt;
&lt;br /&gt;
== Customized pages and forms ==&lt;br /&gt;
Sometimes we want to have a page or a form (such as, user profiles, or a signup form, etc) almost exactly like it is delivered by Drupal + contributed modules, but we want to change some tiny bits: For instance, add an option to the signup form to sign up for specific groups, etc. Or disable some fields. Or, split the profile page up to several different pages.&lt;br /&gt;
&lt;br /&gt;
Luckily, this is all possible by creating custom modules! You can grab the data for generating a form or a page, modify it, and let Drupal render the modified form. Or you can intercept the usual process of rendering a page, do your modifications, and give back to Drupal to do the rest. The nice thing is, you only implement what you want to change, and leave the rest to Drupal core + contrib.&lt;br /&gt;
&lt;br /&gt;
And of course, you can theme every bit of a Drupal page. You can even do a lot of the above mentioned customizations with themes alone, but beware! This can bloat your theme and makes it hard to provide alternative themes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Migration (Import / Export) ==&lt;br /&gt;
Drupal does have various import and export features to import data from other platforms.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Release Management ==&lt;br /&gt;
&lt;br /&gt;
(written from a BW-Rox perspective - please adapt)&lt;br /&gt;
&lt;br /&gt;
Right now release management in BW is based on SVN. Most changes live in the code, so it&#039;s easy to track things via SVN, and a release is mostly code.&lt;br /&gt;
&lt;br /&gt;
DB changes are done via dbupdate.php - which is not the nicest way to do it, but it keeps things more or less transparent by only looking at SVN.&lt;br /&gt;
&lt;br /&gt;
=== Problem: How to deploy configuration changes? ===&lt;br /&gt;
&lt;br /&gt;
Drupal works quite differently, as a lot of things happen in the DB, and will thus not show up on SVN. Releasing a new version will mean both changes to the code (CSS files, theme templates, modules), and changes in the DB via the admin backend. This makes things a bit more difficult and less transparent for developers who want to keep track of things via SVN.&lt;br /&gt;
&lt;br /&gt;
And quite often you get heavy dependencies of DB and code - for instance, if template files refer to content type names that only exist in the DB.&lt;br /&gt;
&lt;br /&gt;
=== Solution: Custom modules instead of admin configuration ===&lt;br /&gt;
&lt;br /&gt;
It is possible to define a lot of stuff in Drupal in the code, instead of the DB, via custom modules. I would very much vote for this option. It requires some Drupal expertise, though.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
* [http://www.bewelcome.org/forums/s630?sidTB=OZUdxsHBu7pWxdTf6KfFrqYPf9c Technical alternatives: bw.rox, drupal and whatever]&lt;br /&gt;
* [http://bw-drupal.midsch.net/node/34 Drupallinks and Tutorials]&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P_Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=859</id>
		<title>P2P Hospitality initiatives and proposals</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=859"/>
		<updated>2009-10-21T07:22:24Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* 3M&amp;#039;s Brainstorming notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a directory to various P2P Hospitality initiatives and proposals. There is a [[Why decentralization in hospex? | philosophical overview]] elsewhere.&lt;br /&gt;
&lt;br /&gt;
==3M&#039;s Brainstorming notes==&lt;br /&gt;
[[User:Midsch | Midsch]], Mahouni2000 and [[User:matrixpoint | Matrixpoint]] have been brainstorming about decentralization and privacy solutions for the past 6 months (as of 10/2009). A few more pages may appear here summarizing our explorations, such as this [[P2P Resources | P2P resources page]]. Our goal was to make use of existing systems, but we haven&#039;t yet found a ready-to-deploy solution. Thus, more work needs to be done. (The less, the better.) Very briefly, we see three main areas of technical activity to pursue:&lt;br /&gt;
&lt;br /&gt;
* Customize [http://noserub.com Noserub] (or [http://drupal.org Drupal] or [http://buddypress.org BuddyPress] or whatever) for localized or special-interest hospex communities, packaging it so that is very easy to deploy. For example, see the [[Drupal_Hospex_Features | Drupal hospex features]] page.&lt;br /&gt;
&lt;br /&gt;
* Encourage sub-communities within the big social sites like [http://facebook.com Facebook], perhaps by developing custom apps for them.&lt;br /&gt;
&lt;br /&gt;
* Develop a decentralized (P2P) trust/search network. A Java-based solution named [[Nexus P2P trust network | Nexus]] is under development.&lt;br /&gt;
&lt;br /&gt;
Some non-technical areas to explore are:&lt;br /&gt;
&lt;br /&gt;
* Universal standards or guidelines for trust, safety, and privacy.&lt;br /&gt;
&lt;br /&gt;
* What constitutes an identity/reputation in the virtual world?&lt;br /&gt;
&lt;br /&gt;
==A P2P hospitality proposal by [[User:Robino | Robino]] on [http://sharewiki.org ShareWiki.org]==&lt;br /&gt;
&lt;br /&gt;
[http://sharewiki.org/en/P2P_hospitality P2P hospitality]&lt;br /&gt;
&lt;br /&gt;
==A Decentralized networks discussion by [[User:Lemon-Head | Lemon-head]]==&lt;br /&gt;
&lt;br /&gt;
[[Decentralized networks]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=858</id>
		<title>P2P Hospitality initiatives and proposals</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=858"/>
		<updated>2009-10-21T07:20:29Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a directory to various P2P Hospitality initiatives and proposals. There is a [[Why decentralization in hospex? | philosophical overview]] elsewhere.&lt;br /&gt;
&lt;br /&gt;
==3M&#039;s Brainstorming notes==&lt;br /&gt;
[[User:Midsch | Midsch]], Mahouni2000 and [[User:matrixpoint | Matrixpoint]] have been brainstorming about decentralization and privacy solutions for the past 6 months (as of 10/2009). A few more pages may appear here summarizing our explorations, such as this [[P2P Resources | P2P resources page]]. Our goal was to make use of existing systems, but we haven&#039;t yet found a ready-to-deploy solution. Thus, more work needs to be done. (The less, the better.) Very briefly, we see three main areas of technical activity to pursue:&lt;br /&gt;
&lt;br /&gt;
* Customize [http://noserub.com Noserub] (or [http://drupal.org Drupal] or [http://buddypress.org BuddyPress] or whatever) for localized or special-interest hospex communities, packaging it so that is very easy to deploy. See this [[Drupal_Hospex_Features | analysis]] of hospex features in Drupal.&lt;br /&gt;
&lt;br /&gt;
* Encourage sub-communities within the big social sites like [http://facebook.com Facebook], perhaps by developing custom apps for them.&lt;br /&gt;
&lt;br /&gt;
* Develop a decentralized (P2P) trust/search network. A Java-based solution named [[Nexus P2P trust network | Nexus]] is under development.&lt;br /&gt;
&lt;br /&gt;
Some non-technical areas to explore are:&lt;br /&gt;
&lt;br /&gt;
* Universal standards or guidelines for trust, safety, and privacy.&lt;br /&gt;
&lt;br /&gt;
* What constitutes an identity/reputation in the virtual world?&lt;br /&gt;
&lt;br /&gt;
==A P2P hospitality proposal by [[User:Robino | Robino]] on [http://sharewiki.org ShareWiki.org]==&lt;br /&gt;
&lt;br /&gt;
[http://sharewiki.org/en/P2P_hospitality P2P hospitality]&lt;br /&gt;
&lt;br /&gt;
==A Decentralized networks discussion by [[User:Lemon-Head | Lemon-head]]==&lt;br /&gt;
&lt;br /&gt;
[[Decentralized networks]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=847</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=847"/>
		<updated>2009-10-20T12:58:15Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Status */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=846</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=846"/>
		<updated>2009-10-20T12:57:31Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Status */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
===Status===&lt;br /&gt;
The heart of &#039;&#039;&#039;Nexus&#039;&#039;&#039; is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like distributed P2P network and is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=845</id>
		<title>Nexus P2P trust network</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Nexus_P2P_trust_network&amp;diff=845"/>
		<updated>2009-10-20T12:42:46Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: Created page with &amp;#039;&amp;#039;&amp;#039;This is a preliminary draft description of the&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;Nexus P2P trust network&amp;#039;&amp;#039;&amp;#039;.  After a long search for an easily deploy-able existing solution, I did not find one and so bega…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;This is a preliminary draft description of the&#039;&#039; &#039;&#039;&#039;Nexus P2P trust network&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After a long search for an easily deploy-able existing solution, I did not find one and so began developing one. So far, I am the only developer working on it. I&#039;m about half-way through.&lt;br /&gt;
&lt;br /&gt;
==Design goals==&lt;br /&gt;
&lt;br /&gt;
===Hardware configuration===&lt;br /&gt;
Operates on a swarm of networked personal computers, like existing file-sharing networks. Minimal or no corporate server involvement. The heart of the system is a [http://en.wikipedia.org/wiki/Kademlia Kademlia]-like network. There is an unavoidable trade-off of speed vs. privacy and immunity from control. I opted for the later, but will try to optimize speed.&lt;br /&gt;
&lt;br /&gt;
===License===&lt;br /&gt;
Free and open software. I&#039;m not familiar with licenses, but am leaning toward GPL2. &#039;&#039;Could use some advice&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===Software platform===&lt;br /&gt;
Should be as universal as possible. Considered a Firefox browser add-on, but went with Java because of the availability of the UDP data protocol and many other advantages.&lt;br /&gt;
&lt;br /&gt;
===Functionality===&lt;br /&gt;
Functionality limited to searching for and evaluating the reputation of individuals or communities. Usable from a GUI or XML-RPC interface.&lt;br /&gt;
&lt;br /&gt;
===Status===&lt;br /&gt;
The heart of *Nexus*, a Kademlia-like distributed P2P network, is awaiting large scale testing. Data can be stored and retrieved from it. One or more layers will be built on top of it to complete the functionality.&lt;br /&gt;
&lt;br /&gt;
I would like to set this up for community development once a license is chosen and if anyone else wants to help.&lt;br /&gt;
&lt;br /&gt;
[[User:Matrixpoint|Matrixpoint]] 12:42, 20 October 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=830</id>
		<title>P2P Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=830"/>
		<updated>2009-10-19T23:04:31Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General information==&lt;br /&gt;
===The Foundation for P2P Alternatives===&lt;br /&gt;
[http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P Foundation wiki]&lt;br /&gt;
&lt;br /&gt;
[http://blog.p2pfoundation.net/ P2P Foundation blog]&lt;br /&gt;
&lt;br /&gt;
[http://p2pfoundation.ning.com/ P2P Foundation ning social website]&lt;br /&gt;
&lt;br /&gt;
The P2P foundation is probably the best resource for information about the Peer-to-Peer movement. The wiki has articles covering many subjects such as Governance, Business, Design, Manufacturing, Production, Energy, Money, Politics, Spirituality, Technology.&lt;br /&gt;
&lt;br /&gt;
===WatchUsNow film===&lt;br /&gt;
The [http://watch.usnowfilm.com/subtitled WatchUsNow film] is a documentary examining the impact of the social web on society. Couchsurfing is covered, along with P2P-related examples.&lt;br /&gt;
&lt;br /&gt;
===Life Inc.===&lt;br /&gt;
[http://vimeo.com/4655092 Life Inc. The Movie] is a short video version of the best selling book by Douglass Rushkoff. Great insights into the value of decentralization to our society.&lt;br /&gt;
&lt;br /&gt;
===Daemon: Bot-mediated reality talk===&lt;br /&gt;
Daniel Suarez, author of the best selling techno-thriller &#039;&#039;[http://thedaemon.com/ Daemon]&#039;&#039; gave an interesting [http://fora.tv/2008/08/08/Daniel_Suarez_Daemon_Bot-Mediated_Reality talk] at the Long Now Foundation. It makes us take decentralization and privacy seriously.&lt;br /&gt;
&lt;br /&gt;
==Hardware/Software platforms==&lt;br /&gt;
===Ning===&lt;br /&gt;
[http://www.ning.com/ Ning] is a ready-to-go professionally run (not open-source) site that provides the tools to quickly set up a fully-functional customizable social web site. It might be a good interim solution for communities who just want a quick alternative to the big sites.&lt;br /&gt;
&lt;br /&gt;
===Noserub===&lt;br /&gt;
[http://noserub.com Noserub] is an open-source social web site that can be set up on a single PC (configured as a server) or on a server. It aggregates user activity from any other Noserub sites or popular big social web sites that the user has an account on. Besides being convenient as an aggregator, it has a big privacy advantage in that the user has potentially much more control over his data (profile, messages, friend connections).&lt;br /&gt;
&lt;br /&gt;
A demonstration (and practically useful) implementation of Noserub is [http://identoo.com Identoo]. You can open an account there to test it&#039;s features.&lt;br /&gt;
&lt;br /&gt;
A drawback is that Noserub doesn&#039;t yet have built-in groups, but they are in the works for future release. Noserub only has a handful of part-time developers, so progress can be slow.&lt;br /&gt;
&lt;br /&gt;
===RetroShare===&lt;br /&gt;
[http://retroshare.sourceforge.net/ RetroShare] is an open-source P2P network with a strong emphasis on privacy. It&#039;s actually closer to F2F (Friend-to-Friend), meant to be very private. &lt;br /&gt;
&lt;br /&gt;
===Open-source file-sharing===&lt;br /&gt;
&lt;br /&gt;
We are not really interested in file sharing &#039;&#039;per se&#039;&#039;, but the file sharing community has led the way technically with P2P and privacy solutions, so we may be able to borrow some techniques. Here is a list of noteworthy examples:&lt;br /&gt;
&lt;br /&gt;
*[http://www.emule-project.net/home/perl/general.cgi?l=1 eMule]&lt;br /&gt;
*[http://oneswarm.cs.washington.edu/ OneSwarm]&lt;br /&gt;
*[http://anomos.info/ Anomos]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Anonet Anonet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/ANts_P2P ANts]&lt;br /&gt;
*[http://gnunet.org/ Gnunet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/I2P I2P]&lt;br /&gt;
*[http://www.lifesocial.org/ Lifesocial]&lt;br /&gt;
*[http://allmydata.org/trac/tahoe Tahoe]&lt;br /&gt;
&lt;br /&gt;
===Wuala===&lt;br /&gt;
[http://www.wuala.com/ Wuala] is not open-source, but has an advanced and professional-quality partly-P2P file storage system. It has some nice privacy and social features.&lt;br /&gt;
&lt;br /&gt;
===Portable apps===&lt;br /&gt;
[http://portableapps.com/ Portable Apps] is an open-source solution which allows a user to take not only their data, but their applications with them when they travel on a USB stick. This has implications for P2P hospitality. Besides the general convenience for travelers, our proposed P2P trust network would probably have a private identity key. You could take not only the key, but the P2P trust network software itself on the road with you, making it easier to use from any PC.&lt;br /&gt;
&lt;br /&gt;
[http://www.lupopensuite.com/ Lupo PenSuite] is another portability solution which has a long list of [http://www.lupopensuite.com/a-internet.htm portable apps].&lt;br /&gt;
&lt;br /&gt;
===Popeye adaptive grid network===&lt;br /&gt;
[http://www.ist-popeye.eu/ Popeye] is an open-source product of academia supported by the EU. Over two years they developed a working demo. Computers in physical proximity automatically form a network which adapts to nodes moving, entering and leaving, while providing file sharing, messaging, voting, etc., services useful to a working group. Includes a video of a real-world demonstration.&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
===Zembly===&lt;br /&gt;
[http://zembly.com/ Zembly] is a tool for creating widgets for some of the big social sites. Could help get hospitality-specific apps into them.&lt;br /&gt;
&lt;br /&gt;
===Overlay Weaver===&lt;br /&gt;
[http://overlayweaver.sourceforge.net/ Overlay Weaver] is a tool for designing and testing overlay networks like [http://en.wikipedia.org/wiki/Kademlia Kademlia], which are used in many P2P systems.&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=823</id>
		<title>P2P Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=823"/>
		<updated>2009-10-19T19:35:36Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Daemon: Bot-mediated reality talk */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General information==&lt;br /&gt;
===The Foundation for P2P Alternatives===&lt;br /&gt;
[http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P Foundation wiki]&lt;br /&gt;
&lt;br /&gt;
[http://blog.p2pfoundation.net/ P2P Foundation blog]&lt;br /&gt;
&lt;br /&gt;
[http://p2pfoundation.ning.com/ P2P Foundation ning social website]&lt;br /&gt;
&lt;br /&gt;
The P2P foundation is probably the best resource for information about the Peer-to-Peer movement. The wiki has articles covering many subjects such as Governance, Business, Design, Manufacturing, Production, Energy, Money, Politics, Spirituality, Technology.&lt;br /&gt;
&lt;br /&gt;
===WatchUsNow film===&lt;br /&gt;
The [http://watch.usnowfilm.com/subtitled WatchUsNow film] is a documentary examining the impact of the social web on society. Couchsurfing is covered, along with P2P-related examples.&lt;br /&gt;
&lt;br /&gt;
===Life Inc.===&lt;br /&gt;
[http://vimeo.com/4655092 Life Inc. The Movie] is a short video version of the best selling book by Douglass Rushkoff. Great insights into the value of decentralization to our society.&lt;br /&gt;
&lt;br /&gt;
===Daemon: Bot-mediated reality talk===&lt;br /&gt;
Daniel Suarez, author of the best selling techno-thriller &#039;&#039;[http://thedaemon.com/ Daemon]&#039;&#039; gave an interesting [http://fora.tv/2008/08/08/Daniel_Suarez_Daemon_Bot-Mediated_Reality talk] at the Long Now Foundation. It makes us take decentralization and privacy seriously.&lt;br /&gt;
&lt;br /&gt;
==Hardware/Software platforms==&lt;br /&gt;
===Ning===&lt;br /&gt;
[http://www.ning.com/ Ning] is a ready-to-go professionally run (not open-source) site that provides the tools to quickly set up a fully-functional customizable social web site. It might be a good interim solution for communities who just want a quick alternative to the big sites.&lt;br /&gt;
&lt;br /&gt;
===Noserub===&lt;br /&gt;
[http://noserub.com Noserub] is an open-source social web site that can be set up on a single PC (configured as a server) or on a server. It aggregates user activity from any other Noserub sites or popular big social web sites that the user has an account on. Besides being convenient as an aggregator, it has a big privacy advantage in that the user has potentially much more control over his data (profile, messages, friend connections).&lt;br /&gt;
&lt;br /&gt;
A demonstration (and practically useful) implementation of Noserub is [http://identoo.com Identoo]. You can open an account there to test it&#039;s features.&lt;br /&gt;
&lt;br /&gt;
A drawback is that Noserub doesn&#039;t yet have built-in groups, but they are in the works for future release. Noserub only has a handful of part-time developers, so progress can be slow.&lt;br /&gt;
&lt;br /&gt;
===RetroShare===&lt;br /&gt;
[http://retroshare.sourceforge.net/ RetroShare] is an open-source P2P network with a strong emphasis on privacy. It&#039;s actually closer to F2F (Friend-to-Friend), meant to be very private. Development is more active and it is more socially oriented than the P2P [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] file sharing network.&lt;br /&gt;
&lt;br /&gt;
===Open-source file-sharing===&lt;br /&gt;
&lt;br /&gt;
We are not really interested in file sharing &#039;&#039;per se&#039;&#039;, but the file sharing community has led the way technically with P2P and privacy solutions, so we may be able to borrow some techniques. Here is a list of noteworthy examples:&lt;br /&gt;
&lt;br /&gt;
*[http://oneswarm.cs.washington.edu/ OneSwarm]&lt;br /&gt;
*[http://anomos.info/ Anomos]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Anonet Anonet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/ANts_P2P ANts]&lt;br /&gt;
*[http://gnunet.org/ Gnunet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/I2P I2P]&lt;br /&gt;
*[http://www.lifesocial.org/ Lifesocial]&lt;br /&gt;
*[http://allmydata.org/trac/tahoe Tahoe]&lt;br /&gt;
&lt;br /&gt;
===Wuala===&lt;br /&gt;
[http://www.wuala.com/ Wuala] is not open-source, but has an advanced and professional-quality partly-P2P file storage system. It has some nice privacy and social features.&lt;br /&gt;
&lt;br /&gt;
===Portable apps===&lt;br /&gt;
[http://portableapps.com/ Portable Apps] is an open-source solution which allows a user to take not only their data, but their applications with them when they travel on a USB stick. This has implications for P2P hospitality. Besides the general convenience for travelers, our proposed P2P trust network would probably have a private identity key. You could take not only the key, but the P2P trust network software itself on the road with you, making it easier to use from any PC.&lt;br /&gt;
&lt;br /&gt;
[http://www.lupopensuite.com/ Lupo PenSuite] is another portability solution which has a long list of [http://www.lupopensuite.com/a-internet.htm portable apps].&lt;br /&gt;
&lt;br /&gt;
===Popeye adaptive grid network===&lt;br /&gt;
[http://www.ist-popeye.eu/ Popeye] is an open-source product of academia supported by the EU. Over two years they developed a working demo. Computers in physical proximity automatically form a network which adapts to nodes moving, entering and leaving, while providing file sharing, messaging, voting, etc., services useful to a working group. Includes a video of a real-world demonstration.&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
===Zembly===&lt;br /&gt;
[http://zembly.com/ Zembly] is a tool for creating widgets for some of the big social sites. Could help get hospitality-specific apps into them.&lt;br /&gt;
&lt;br /&gt;
===Overlay Weaver===&lt;br /&gt;
[http://overlayweaver.sourceforge.net/ Overlay Weaver] is a tool for designing and testing overlay networks like [http://en.wikipedia.org/wiki/Kademlia Kademlia], which are used in many P2P systems.&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=822</id>
		<title>P2P Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=822"/>
		<updated>2009-10-19T19:26:25Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General information==&lt;br /&gt;
===The Foundation for P2P Alternatives===&lt;br /&gt;
[http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P Foundation wiki]&lt;br /&gt;
&lt;br /&gt;
[http://blog.p2pfoundation.net/ P2P Foundation blog]&lt;br /&gt;
&lt;br /&gt;
[http://p2pfoundation.ning.com/ P2P Foundation ning social website]&lt;br /&gt;
&lt;br /&gt;
The P2P foundation is probably the best resource for information about the Peer-to-Peer movement. The wiki has articles covering many subjects such as Governance, Business, Design, Manufacturing, Production, Energy, Money, Politics, Spirituality, Technology.&lt;br /&gt;
&lt;br /&gt;
===WatchUsNow film===&lt;br /&gt;
The [http://watch.usnowfilm.com/subtitled WatchUsNow film] is a documentary examining the impact of the social web on society. Couchsurfing is covered, along with P2P-related examples.&lt;br /&gt;
&lt;br /&gt;
===Life Inc.===&lt;br /&gt;
[http://vimeo.com/4655092 Life Inc. The Movie] is a short video version of the best selling book by Douglass Rushkoff. Great insights into the value of decentralization to our society.&lt;br /&gt;
&lt;br /&gt;
===Daemon: Bot-mediated reality talk===&lt;br /&gt;
Daniel Suarez, author of the best selling techno-thriller Daemon gave an interesting [http://fora.tv/2008/08/08/Daniel_Suarez_Daemon_Bot-Mediated_Reality talk] at the Long Now Foundation. It makes us take decentralization and privacy seriously.&lt;br /&gt;
&lt;br /&gt;
==Hardware/Software platforms==&lt;br /&gt;
===Ning===&lt;br /&gt;
[http://www.ning.com/ Ning] is a ready-to-go professionally run (not open-source) site that provides the tools to quickly set up a fully-functional customizable social web site. It might be a good interim solution for communities who just want a quick alternative to the big sites.&lt;br /&gt;
&lt;br /&gt;
===Noserub===&lt;br /&gt;
[http://noserub.com Noserub] is an open-source social web site that can be set up on a single PC (configured as a server) or on a server. It aggregates user activity from any other Noserub sites or popular big social web sites that the user has an account on. Besides being convenient as an aggregator, it has a big privacy advantage in that the user has potentially much more control over his data (profile, messages, friend connections).&lt;br /&gt;
&lt;br /&gt;
A demonstration (and practically useful) implementation of Noserub is [http://identoo.com Identoo]. You can open an account there to test it&#039;s features.&lt;br /&gt;
&lt;br /&gt;
A drawback is that Noserub doesn&#039;t yet have built-in groups, but they are in the works for future release. Noserub only has a handful of part-time developers, so progress can be slow.&lt;br /&gt;
&lt;br /&gt;
===RetroShare===&lt;br /&gt;
[http://retroshare.sourceforge.net/ RetroShare] is an open-source P2P network with a strong emphasis on privacy. It&#039;s actually closer to F2F (Friend-to-Friend), meant to be very private. Development is more active and it is more socially oriented than the P2P [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] file sharing network.&lt;br /&gt;
&lt;br /&gt;
===Open-source file-sharing===&lt;br /&gt;
&lt;br /&gt;
We are not really interested in file sharing &#039;&#039;per se&#039;&#039;, but the file sharing community has led the way technically with P2P and privacy solutions, so we may be able to borrow some techniques. Here is a list of noteworthy examples:&lt;br /&gt;
&lt;br /&gt;
*[http://oneswarm.cs.washington.edu/ OneSwarm]&lt;br /&gt;
*[http://anomos.info/ Anomos]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Anonet Anonet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/ANts_P2P ANts]&lt;br /&gt;
*[http://gnunet.org/ Gnunet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/I2P I2P]&lt;br /&gt;
*[http://www.lifesocial.org/ Lifesocial]&lt;br /&gt;
*[http://allmydata.org/trac/tahoe Tahoe]&lt;br /&gt;
&lt;br /&gt;
===Wuala===&lt;br /&gt;
[http://www.wuala.com/ Wuala] is not open-source, but has an advanced and professional-quality partly-P2P file storage system. It has some nice privacy and social features.&lt;br /&gt;
&lt;br /&gt;
===Portable apps===&lt;br /&gt;
[http://portableapps.com/ Portable Apps] is an open-source solution which allows a user to take not only their data, but their applications with them when they travel on a USB stick. This has implications for P2P hospitality. Besides the general convenience for travelers, our proposed P2P trust network would probably have a private identity key. You could take not only the key, but the P2P trust network software itself on the road with you, making it easier to use from any PC.&lt;br /&gt;
&lt;br /&gt;
[http://www.lupopensuite.com/ Lupo PenSuite] is another portability solution which has a long list of [http://www.lupopensuite.com/a-internet.htm portable apps].&lt;br /&gt;
&lt;br /&gt;
===Popeye adaptive grid network===&lt;br /&gt;
[http://www.ist-popeye.eu/ Popeye] is an open-source product of academia supported by the EU. Over two years they developed a working demo. Computers in physical proximity automatically form a network which adapts to nodes moving, entering and leaving, while providing file sharing, messaging, voting, etc., services useful to a working group. Includes a video of a real-world demonstration.&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
===Zembly===&lt;br /&gt;
[http://zembly.com/ Zembly] is a tool for creating widgets for some of the big social sites. Could help get hospitality-specific apps into them.&lt;br /&gt;
&lt;br /&gt;
===Overlay Weaver===&lt;br /&gt;
[http://overlayweaver.sourceforge.net/ Overlay Weaver] is a tool for designing and testing overlay networks like [http://en.wikipedia.org/wiki/Kademlia Kademlia], which are used in many P2P systems.&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=821</id>
		<title>P2P Hospitality initiatives and proposals</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=821"/>
		<updated>2009-10-19T19:26:10Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* 3M&amp;#039;s Brainstorming notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a directory to various P2P Hospitality initiatives and proposals. There is a [[Why decentralization in hospex? | philosophical overview]] elsewhere.&lt;br /&gt;
&lt;br /&gt;
==3M&#039;s Brainstorming notes==&lt;br /&gt;
[[User:Midsch | Midsch]], Mahouni2000 and [[User:matrixpoint | Matrixpoint]] have been brainstorming about decentralization and privacy solutions for the past 6 months (as of 10/2009). A few more pages may appear here summarizing our explorations, such as this [[P2P Resources | P2P resources page]]. Our goal was to make use of existing systems, but we haven&#039;t yet found a ready-to-deploy solution. Thus, more work needs to be done. (The less, the better.) Very briefly, we see three main areas of technical activity to pursue:&lt;br /&gt;
&lt;br /&gt;
* Customize [http://noserub.com Noserub] (or [http://drupal.org Drupal] or [http://buddypress.org BuddyPress] or whatever) for localized or special-interest hospex communities, packaging it so that is very easy to deploy.&lt;br /&gt;
&lt;br /&gt;
* Encourage sub-communities within the big social sites like [http://facebook.com Facebook], perhaps by developing custom apps for them.&lt;br /&gt;
&lt;br /&gt;
* Develop a decentralized (P2P) trust/search network. (A Java-based solution is under development. More info later.)&lt;br /&gt;
&lt;br /&gt;
Some non-technical areas to explore are:&lt;br /&gt;
&lt;br /&gt;
* Universal standards or guidelines for trust, safety, and privacy.&lt;br /&gt;
&lt;br /&gt;
* What constitutes an identity/reputation in the virtual world?&lt;br /&gt;
&lt;br /&gt;
==A P2P hospitality proposal by [[User:Robino | Robino]] on [http://sharewiki.org ShareWiki.org]==&lt;br /&gt;
&lt;br /&gt;
[http://sharewiki.org/en/P2P_hospitality P2P hospitality]&lt;br /&gt;
&lt;br /&gt;
==A Decentralized networks discussion by [[User:Lemon-Head | Lemon-head]]==&lt;br /&gt;
&lt;br /&gt;
[[Decentralized networks]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=820</id>
		<title>P2P Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=820"/>
		<updated>2009-10-19T19:23:49Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General information==&lt;br /&gt;
===The Foundation for P2P Alternatives===&lt;br /&gt;
[http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P Foundation wiki]&lt;br /&gt;
&lt;br /&gt;
[http://blog.p2pfoundation.net/ P2P Foundation blog]&lt;br /&gt;
&lt;br /&gt;
[http://p2pfoundation.ning.com/ P2P Foundation ning social website]&lt;br /&gt;
&lt;br /&gt;
The P2P foundation is probably the best resource for information about the Peer-to-Peer movement. The wiki has articles covering many subjects such as Governance, Business, Design, Manufacturing, Production, Energy, Money, Politics, Spirituality, Technology.&lt;br /&gt;
&lt;br /&gt;
===WatchUsNow film===&lt;br /&gt;
The [http://watch.usnowfilm.com/subtitled WatchUsNow film] is a documentary examining the impact of the social web on society. Couchsurfing is covered, along with P2P-related examples.&lt;br /&gt;
&lt;br /&gt;
===Life Inc.===&lt;br /&gt;
[http://vimeo.com/4655092 Life Inc. The Movie] is a short video version of the best selling book by Douglass Rushkoff. Great insights into the value of decentralization to our society.&lt;br /&gt;
&lt;br /&gt;
===Daemon: Bot-mediated reality talk===&lt;br /&gt;
Daniel Suarez, author of the best selling techno-thriller Daemon gave an interesting [http://fora.tv/2008/08/08/Daniel_Suarez_Daemon_Bot-Mediated_Reality talk] at the Long Now Foundation. It makes us take decentralization and privacy seriously.&lt;br /&gt;
&lt;br /&gt;
==Hardware/Software platforms==&lt;br /&gt;
===Ning===&lt;br /&gt;
[http://www.ning.com/ Ning] is a ready-to-go professionally run (not open-source) site that provides the tools to quickly set up a fully-functional customizable social web site. It might be a good interim solution for communities who just want a quick alternative to the big sites.&lt;br /&gt;
&lt;br /&gt;
===Noserub===&lt;br /&gt;
[http://noserub.com Noserub] is an open-source social web site that can be set up on a single PC (configured as a server) or on a server. It aggregates user activity from any other Noserub sites or popular big social web sites that the user has an account on. Besides being convenient as an aggregator, it has a big privacy advantage in that the user has potentially much more control over his data (profile, messages, friend connections).&lt;br /&gt;
&lt;br /&gt;
A demonstration (and practically useful) implementation of Noserub is [http://identoo.com Identoo]. You can open an account there to test it&#039;s features.&lt;br /&gt;
&lt;br /&gt;
A drawback is that Noserub doesn&#039;t yet have built-in groups, but they are in the works for future release. Noserub only has a handful of part-time developers, so progress can be slow.&lt;br /&gt;
&lt;br /&gt;
===RetroShare===&lt;br /&gt;
[http://retroshare.sourceforge.net/ RetroShare] is an open-source P2P network with a strong emphasis on privacy. It&#039;s actually closer to F2F (Friend-to-Friend), meant to be very private. Development is more active and it is more socially oriented than the P2P [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] file sharing network.&lt;br /&gt;
&lt;br /&gt;
===Open-source file-sharing===&lt;br /&gt;
&lt;br /&gt;
We are not really interested in file sharing &#039;&#039;per se&#039;&#039;, but the file sharing community has led the way technically with P2P and privacy solutions, so we may be able to borrow some techniques. Here is a list of noteworthy examples:&lt;br /&gt;
&lt;br /&gt;
*[http://oneswarm.cs.washington.edu/ OneSwarm]&lt;br /&gt;
*[http://anomos.info/ Anomos]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Anonet Anonet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/ANts_P2P ANts]&lt;br /&gt;
*[http://gnunet.org/ Gnunet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/I2P I2P]&lt;br /&gt;
*[http://www.lifesocial.org/ Lifesocial]&lt;br /&gt;
*[http://allmydata.org/trac/tahoe Tahoe]&lt;br /&gt;
&lt;br /&gt;
===Wuala===&lt;br /&gt;
[http://www.wuala.com/ Wuala] is not open-source, but has an advanced and professional-quality partly-P2P file storage system. It has some nice privacy and social features.&lt;br /&gt;
&lt;br /&gt;
===Portable apps===&lt;br /&gt;
[http://portableapps.com/ Portable Apps] is an open-source solution which allows a user to take not only their data, but their applications with them when they travel on a USB stick. This has implications for P2P hospitality. Besides the general convenience for travelers, our proposed P2P trust network would probably have a private identity key. You could take not only the key, but the P2P trust network software itself on the road with you, making it easier to use from any PC.&lt;br /&gt;
&lt;br /&gt;
[http://www.lupopensuite.com/ Lupo PenSuite] is another portability solution which has a long list of [http://www.lupopensuite.com/a-internet.htm portable apps].&lt;br /&gt;
&lt;br /&gt;
===Popeye adaptive grid network===&lt;br /&gt;
[http://www.ist-popeye.eu/ Popeye] is an open-source product of academia supported by the EU. Over two years they developed a working demo. Computers in physical proximity automatically form a network which adapts to nodes moving, entering and leaving, while providing file sharing, messaging, voting, etc., services useful to a working group. Includes a video of a real-world demonstration.&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
===Zembly===&lt;br /&gt;
[http://zembly.com/ Zembly] is a tool for creating widgets for some of the big social sites. Could help get hospitality-specific apps into them.&lt;br /&gt;
&lt;br /&gt;
===Overlay Weaver===&lt;br /&gt;
[http://overlayweaver.sourceforge.net/ Overlay Weaver] is a tool for designing and testing overlay networks like [http://en.wikipedia.org/wiki/Kademlia Kademlia], which are used in many P2P systems.&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=819</id>
		<title>P2P Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=819"/>
		<updated>2009-10-19T19:14:09Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Information==&lt;br /&gt;
===The Foundation for P2P Alternatives===&lt;br /&gt;
[http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P Foundation wiki]&lt;br /&gt;
&lt;br /&gt;
[http://blog.p2pfoundation.net/ P2P Foundation blog]&lt;br /&gt;
&lt;br /&gt;
[http://p2pfoundation.ning.com/ P2P Foundation ning social website]&lt;br /&gt;
&lt;br /&gt;
The P2P foundation is probably the best resource for information about the Peer-to-Peer movement. The wiki has articles covering many subjects such as Governance, Business, Design, Manufacturing, Production, Energy, Money, Politics, Spirituality, Technology.&lt;br /&gt;
&lt;br /&gt;
===WatchUsNow film===&lt;br /&gt;
The [http://watch.usnowfilm.com/subtitled WatchUsNow film] is a documentary examining the impact of the social web on society. Couchsurfing is covered, along with P2P-related examples.&lt;br /&gt;
&lt;br /&gt;
===Life Inc.===&lt;br /&gt;
[http://vimeo.com/4655092 Life Inc. The Movie] is a short video version of the best selling book by Douglass Rushkoff. Great insights into the value of decentralization to our society.&lt;br /&gt;
&lt;br /&gt;
===Daemon: Bot-mediated reality talk===&lt;br /&gt;
Daniel Suarez, author of the best selling techno-thriller Daemon gave an interesting [http://fora.tv/2008/08/08/Daniel_Suarez_Daemon_Bot-Mediated_Reality talk] at the Long Now Foundation. It makes us take decentralization and privacy seriously.&lt;br /&gt;
&lt;br /&gt;
==Hardware/Software platforms==&lt;br /&gt;
&lt;br /&gt;
===Ning===&lt;br /&gt;
[http://www.ning.com/ Ning] is a ready-to-go professionally run (not open-source) site that provides the tools to quickly set up a fully-functional customizable social web site. It might be a good interim solution for communities who just want a quick alternative to the big sites.&lt;br /&gt;
&lt;br /&gt;
===Noserub===&lt;br /&gt;
[http://noserub.com Noserub] is an open-source social web site that can be set up on a single PC (configured as a server) or on a server. It aggregates user activity from any other Noserub sites or popular big social web sites that the user has an account on. Besides being convenient as an aggregator, it has a big privacy advantage in that the user has potentially much more control over his data (profile, messages, friend connections).&lt;br /&gt;
&lt;br /&gt;
A demonstration (and practically useful) implementation of Noserub is [http://identoo.com Identoo]. You can open an account there to test it&#039;s features.&lt;br /&gt;
&lt;br /&gt;
A drawback is that Noserub doesn&#039;t yet have built-in groups, but they are in the works for future release. Noserub only has a handful of part-time developers, so progress can be slow.&lt;br /&gt;
&lt;br /&gt;
===RetroShare===&lt;br /&gt;
[http://retroshare.sourceforge.net/ RetroShare] is an open-source P2P network with a strong emphasis on privacy. It&#039;s actually closer to F2F (Friend-to-Friend), meant to be very private. Development is more active and it is more socially oriented than the P2P [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] file sharing network.&lt;br /&gt;
&lt;br /&gt;
===Open-source file-sharing===&lt;br /&gt;
&lt;br /&gt;
We are not really interested in file sharing per se, but the file sharing community has led the way technically with P2P and privacy solutions, so we be able to borrow some techniques. Here is a list of noteworthy examples:&lt;br /&gt;
&lt;br /&gt;
*[http://oneswarm.cs.washington.edu/ OneSwarm]&lt;br /&gt;
*[http://anomos.info/ Anomos]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Anonet Anonet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/ANts_P2P ANts]&lt;br /&gt;
*[http://gnunet.org/ Gnunet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/I2P I2P]&lt;br /&gt;
*[http://www.lifesocial.org/ Lifesocial]&lt;br /&gt;
*[http://allmydata.org/trac/tahoe Tahoe]&lt;br /&gt;
&lt;br /&gt;
===Wuala===&lt;br /&gt;
[http://www.wuala.com/ Wuala] is not open-source, but has an advanced and professional-quality partly-P2P file storage system. It has some nice privacy and social features.&lt;br /&gt;
&lt;br /&gt;
===Portable apps===&lt;br /&gt;
[http://portableapps.com/ Portable Apps] is an open-source solution which allows a user to take not only their data, but their applications with them when they travel on a USB stick. This has implications for P2P hospitality. Besides the general convenience for travelers, our proposed P2P trust network would probably have a private identity key. You could take not only the key, but the P2P trust network software itself on the road with you, making it easier to use from any PC.&lt;br /&gt;
&lt;br /&gt;
[http://www.lupopensuite.com/ Lupo PenSuite] is another portability solution which has a long list of [http://www.lupopensuite.com/a-internet.htm portable apps].&lt;br /&gt;
&lt;br /&gt;
===Popeye adaptive grid network===&lt;br /&gt;
[http://www.ist-popeye.eu/ Popeye] is an open-source product of academia supported by the EU. Over two years they developed a working demo. Computers in physical proximity automatically form a network which adapts to nodes moving, entering and leaving, while providing file sharing, messaging, voting, etc., services useful to a working group. Includes a video of a real-world demonstration.&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=816</id>
		<title>P2P Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=816"/>
		<updated>2009-10-19T18:59:05Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Information==&lt;br /&gt;
===The Foundation for P2P Alternatives===&lt;br /&gt;
[http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P Foundation wiki]&lt;br /&gt;
&lt;br /&gt;
[http://blog.p2pfoundation.net/ P2P Foundation blog]&lt;br /&gt;
&lt;br /&gt;
[http://p2pfoundation.ning.com/ P2P Foundation ning social website]&lt;br /&gt;
&lt;br /&gt;
The P2P foundation is probably the best resource for information about the Peer-to-Peer movement. The wiki has articles covering many subjects such as Governance, Business, Design, Manufacturing, Production, Energy, Money, Politics, Spirituality, Technology.&lt;br /&gt;
&lt;br /&gt;
===WatchUsNow film===&lt;br /&gt;
The [http://watch.usnowfilm.com/subtitled WatchUsNow film] is a documentary examining the impact of the social web on society. Couchsurfing is covered, along with P2P-related examples.&lt;br /&gt;
&lt;br /&gt;
===Life Inc.===&lt;br /&gt;
[http://vimeo.com/4655092 Life Inc. The Movie] is a short video version of the best selling book by Douglass Rushkoff. Great insights into the value of decentralization to our society.&lt;br /&gt;
&lt;br /&gt;
==Hardware/Software platforms==&lt;br /&gt;
&lt;br /&gt;
===Ning===&lt;br /&gt;
[http://www.ning.com/ Ning] is a ready-to-go professionally run (not open-source) site that provides the tools to quickly set up a fully-functional customizable social web site. It might be a good interim solution for communities who just want a quick alternative to the big sites.&lt;br /&gt;
&lt;br /&gt;
===Noserub===&lt;br /&gt;
[http://noserub.com Noserub] is an open-source social web site that can be set up on a single PC (configured as a server) or on a server. It aggregates user activity from any other Noserub sites or popular big social web sites that the user has an account on. Besides being convenient as an aggregator, it has a big privacy advantage in that the user has potentially much more control over his data (profile, messages, friend connections).&lt;br /&gt;
&lt;br /&gt;
A demonstration (and practically useful) implementation of Noserub is [http://identoo.com Identoo]. You can open an account there to test it&#039;s features.&lt;br /&gt;
&lt;br /&gt;
A drawback is that Noserub doesn&#039;t yet have built-in groups, but they are in the works for future release. Noserub only has a handful of part-time developers, so progress can be slow.&lt;br /&gt;
&lt;br /&gt;
===RetroShare===&lt;br /&gt;
[http://retroshare.sourceforge.net/ RetroShare] is an open-source P2P network with a strong emphasis on privacy. It&#039;s actually closer to F2F (Friend-to-Friend), meant to be very private. Development is more active and it is more socially oriented than the P2P [http://www.emule-project.net/home/perl/general.cgi?l=1 eMule] file sharing network.&lt;br /&gt;
&lt;br /&gt;
===Open-source file-sharing===&lt;br /&gt;
&lt;br /&gt;
We are not really interested in file sharing per se, but the file sharing community has led the way technically with P2P and privacy solutions, so we be able to borrow some techniques. Here is a list of noteworthy examples:&lt;br /&gt;
&lt;br /&gt;
*[http://oneswarm.cs.washington.edu/ OneSwarm]&lt;br /&gt;
*[http://anomos.info/ Anomos]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Anonet Anonet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/ANts_P2P ANts]&lt;br /&gt;
*[http://gnunet.org/ Gnunet]&lt;br /&gt;
*[http://en.wikipedia.org/wiki/I2P I2P]&lt;br /&gt;
&lt;br /&gt;
===Wuala===&lt;br /&gt;
[http://www.wuala.com/ Wuala] is not open-source, but has an advanced and professional-quality partly-P2P file storage system. It has some nice privacy and social features.&lt;br /&gt;
&lt;br /&gt;
===Portable apps===&lt;br /&gt;
[http://portableapps.com/ Portable Apps] is an open-source solution which allows a user to take not only their data, but their applications with them when they travel on a USB stick. This has implications for P2P hospitality. Besides the general convenience for travelers, our proposed P2P trust network would probably have a private identity key. You could take not only the key, but the P2P trust network software itself on the road with you, making it easier to use from any PC.&lt;br /&gt;
&lt;br /&gt;
[http://www.lupopensuite.com/ Lupo PenSuite] is another portability solution which has a long list of [http://www.lupopensuite.com/a-internet.htm portable apps].&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=808</id>
		<title>P2P Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=808"/>
		<updated>2009-10-19T18:26:02Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Information==&lt;br /&gt;
===The Foundation for P2P Alternatives===&lt;br /&gt;
[http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P Foundation wiki]&lt;br /&gt;
&lt;br /&gt;
[http://blog.p2pfoundation.net/ P2P Foundation blog]&lt;br /&gt;
&lt;br /&gt;
[http://p2pfoundation.ning.com/ P2P Foundation ning social website]&lt;br /&gt;
&lt;br /&gt;
The P2P foundation is probably the best resource for information about the Peer-to-Peer movement. The wiki has articles covering many subjects such as Governance, Business, Design, Manufacturing, Production, Energy, Money, Politics, Spirituality, Technology.&lt;br /&gt;
&lt;br /&gt;
===WatchUsNow film===&lt;br /&gt;
The [http://watch.usnowfilm.com/subtitled WatchUsNow film] is a documentary examining the impact of the social web on society. Couchsurfing is covered, along with P2P-related examples.&lt;br /&gt;
&lt;br /&gt;
===Life Inc.===&lt;br /&gt;
[http://vimeo.com/4655092 Life Inc. The Movie] is a short video version of the best selling book by Douglass Rushkoff. Great insights into the value of decentralization to our society.&lt;br /&gt;
&lt;br /&gt;
==Hardware/Software platforms==&lt;br /&gt;
&lt;br /&gt;
===Noserub===&lt;br /&gt;
[http://noserub.com Noserub] is an open-source social web site that can be set up on a single PC (configured as a server) or on a server. It aggregates user activity from any other Noserub sites or popular big social web sites that the user has an account on. Besides being convenient as an aggregator, it has a big privacy advantage in that the user has potentially much more control over his data (profile, messages, friend connections).&lt;br /&gt;
&lt;br /&gt;
A demonstration (and practically useful) implementation of Noserub is [http://identoo.com Identoo]. You can open an account there to test it&#039;s features.&lt;br /&gt;
&lt;br /&gt;
A drawback is that Noserub doesn&#039;t yet have built-in groups, but they are in the works for future release. Noserub only has a handful of part-time developers, so progress can be slow.&lt;br /&gt;
&lt;br /&gt;
===OneSwarm===&lt;br /&gt;
&lt;br /&gt;
[http://oneswarm.cs.washington.edu/ OneSwarm] is an open-source privacy-preserving file sharing system. We are not really interested in file sharing per se, but the file sharing community has led the way technically with P2P and privacy solutions, so we be able to borrow some techniques.&lt;br /&gt;
&lt;br /&gt;
===Wuala===&lt;br /&gt;
[http://www.wuala.com/ Wuala] is not open-source, but has an advanced and professional-quality partly-P2P file storage system. It has some nice privacy and social features.&lt;br /&gt;
&lt;br /&gt;
===Portable apps===&lt;br /&gt;
[http://portableapps.com/ Portable Apps] is an open-source solution which allows a user to take not only their data, but their applications with them when they travel on a USB stick. This has implications for P2P hospitality. Besides the general convenience for travelers, our proposed P2P trust network would probably have a private identity key. You could take not only the key, but the P2P trust network software itself on the road with you, making it easier to use from any PC.&lt;br /&gt;
&lt;br /&gt;
[http://www.lupopensuite.com/ Lupo PenSuite] is another portability solution which has a long list of [http://www.lupopensuite.com/a-internet.htm portable apps].&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=807</id>
		<title>P2P Resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Resources&amp;diff=807"/>
		<updated>2009-10-19T17:53:55Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: Created page with &amp;#039;==Information== ===The Foundation for P2P Alternatives=== [http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P Foundation wiki]  [http://blog.p2pfoundation.net/ P2P …&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Information==&lt;br /&gt;
===The Foundation for P2P Alternatives===&lt;br /&gt;
[http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P Foundation wiki]&lt;br /&gt;
&lt;br /&gt;
[http://blog.p2pfoundation.net/ P2P Foundation blog]&lt;br /&gt;
&lt;br /&gt;
[http://p2pfoundation.ning.com/ P2P Foundation ning social website]&lt;br /&gt;
&lt;br /&gt;
The P2P foundation is probably the best resource for information about the Peer-to-Peer movement. The wiki has articles covering many subjects such as Governance, Business, Design, Manufacturing, Production, Energy, Money, Politics, Spirituality, Technology.&lt;br /&gt;
&lt;br /&gt;
===WatchUsNow film===&lt;br /&gt;
The [http://watch.usnowfilm.com/subtitled WatchUsNow film] is a documentary examining the impact of the social web on society. Couchsurfing is covered, along with P2P-related examples.&lt;br /&gt;
&lt;br /&gt;
===Life Inc.===&lt;br /&gt;
[http://vimeo.com/4655092 Life Inc. The Movie] is a short video version of the best selling book by Douglass Rushkoff. Great insights into the value of decentralization to our society.&lt;br /&gt;
&lt;br /&gt;
==Hardware/Software platforms==&lt;br /&gt;
===Noserub===&lt;br /&gt;
[http://noserub.com Noserub] is an open-source social web site that can be set up on a single PC (configured as a server) or on a server. It aggregates user activity from any other Noserub sites or popular big social web sites that the user has an account on. Besides being convenient as an aggregator, it has a big privacy advantage in that the user has potentially much more control over his data (profile, messages, friend connections).&lt;br /&gt;
&lt;br /&gt;
A demonstration (and practically useful) implementation of Noserub is [http://identoo.com Identoo]. You can open an account there to test it&#039;s features.&lt;br /&gt;
&lt;br /&gt;
A drawback is that Noserub doesn&#039;t yet have built-in groups, but they are in the works for future release. Noserub only has a handful of part-time developers, so progress can be slow.&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=806</id>
		<title>P2P Hospitality initiatives and proposals</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=806"/>
		<updated>2009-10-19T16:55:56Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* 3M&amp;#039;s Brainstorming notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a directory to various P2P Hospitality initiatives and proposals. There is a [[Why decentralization in hospex? | philosophical overview]] elsewhere.&lt;br /&gt;
&lt;br /&gt;
==3M&#039;s Brainstorming notes==&lt;br /&gt;
[[User:Midsch | Midsch]], Mahouni2000 and [[User:matrixpoint | Matrixpoint]] have been brainstorming about decentralization and privacy solutions for the past 6 months (as of 10/2009). A few more pages may appear here summarizing our explorations, including links to many [[P2P Resources | resources]]. Our goal was to make use of existing systems, but we haven&#039;t yet found a ready-to-deploy solution. Thus, more work needs to be done. (The less, the better.) Very briefly, we see three main areas of technical activity to pursue:&lt;br /&gt;
&lt;br /&gt;
* Customize [http://noserub.com Noserub] (or [http://drupal.org Drupal] or [http://buddypress.org BuddyPress] or whatever) for localized or special-interest hospex communities, packaging it so that is very easy to deploy.&lt;br /&gt;
&lt;br /&gt;
* Encourage sub-communities within the big social sites like [http://facebook.com Facebook], perhaps by developing custom apps for them.&lt;br /&gt;
&lt;br /&gt;
* Develop a decentralized (P2P) trust/search network. (A Java-based solution is under development. More info later.)&lt;br /&gt;
&lt;br /&gt;
Some non-technical areas to explore are:&lt;br /&gt;
&lt;br /&gt;
* Universal standards or guidelines for trust, safety, and privacy.&lt;br /&gt;
&lt;br /&gt;
* What constitutes an identity/reputation in the virtual world?&lt;br /&gt;
&lt;br /&gt;
==A P2P hospitality proposal by [[User:Robino | Robino]] on [http://sharewiki.org ShareWiki.org]==&lt;br /&gt;
&lt;br /&gt;
[http://sharewiki.org/en/P2P_hospitality P2P hospitality]&lt;br /&gt;
&lt;br /&gt;
==A Decentralized networks discussion by [[User:Lemon-Head | Lemon-head]]==&lt;br /&gt;
&lt;br /&gt;
[[Decentralized networks]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=785</id>
		<title>Why decentralization in hospex?</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=785"/>
		<updated>2009-10-18T05:01:14Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a philosophical overview related to P2P hospitality.&lt;br /&gt;
&lt;br /&gt;
Ongoing [[P2P Hospitality initiatives and proposals]] are elsewhere.&lt;br /&gt;
&lt;br /&gt;
==The case for decentralization==&lt;br /&gt;
&lt;br /&gt;
Decentralization encourages diversity, resiliency, and adaptability; it discourages uniformity, fragility, and unresponsiveness. The tremendous abundance and richness of the natural world is a case study in the benefits of a web of interconnected sub-ecosystems, each of which is quasi-independent.&lt;br /&gt;
&lt;br /&gt;
Human society is in the midst of a crisis which, on one level, is the consequence of centralized power and wealth. Wherever concentrated power exists, it attracts parasites and predators who feed or prey upon those they dominate. Even well-intended people can be seduced and corrupted by power, and so measures to counteract its corrupting influence are always necessary. &lt;br /&gt;
&lt;br /&gt;
The best defense against concentrated power is decentralization. To whatever extent a centralized social structure is deemed necessary, checking and balancing mechanisms should always be incorporated. Since no system is perfect for all times and circumstances, the ultimate success of a society depends on the willingness of its members to constantly monitor and upgrade their system as needed.&lt;br /&gt;
&lt;br /&gt;
When a few control the many, everyone loses in the long run. Individual creativity and initiative are stifled and replaced by a robotic uniformity and conformity. Bottlenecks occur as information attempts to transit layers of bureaucracy and chains of command. Serial processing replaces parallel processing, reducing productivity and effectiveness. The whole system becomes monolithic, sluggish, and vulnerable.&lt;br /&gt;
&lt;br /&gt;
What&#039;s good for the ruling elite becomes what&#039;s good for the ruled. A class of bureaucrats and sycophants arises which must demonstrate loyalty to the rulers or be demoted or expelled. The mission of the organization becomes subverted in favor of perpetuating the positions of power and wealth of a privileged few. Secrecy and unaccountability prevail over integrity. &#039;&#039;Honor dies where self-interest lies&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The problems associated with centralized power in the world are more visible every day, in virtually every sector, but especially finance. There is a movement afoot that amounts to a world-wide paradigm shift away from centralized power: the Peer-to-Peer or P2P movement. The best resource for learning about it is probably the [http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives The Foundation for P2P Alternatives]. Some believe that a transformation from a pyramidal social structure to a holographic structure is the best hope for humanity to enter a new Renaissance. &#039;&#039;Unity in diversity; transparency with respect for privacy.&#039;&#039; Let&#039;s include the hospex movement in this paradigm shift.&lt;br /&gt;
&lt;br /&gt;
==Holographic hospitality==&lt;br /&gt;
&lt;br /&gt;
Hospitality is naturally decentralized. It can and does happen spontaneously between people all over our planet. The fundamental principle involved is sharing; typically shelter, food, information and guidance for strangers or travelers. In a broader sense, hospitality includes any gesture of kindness and welcome, when offered without expectation of immediate reciprocation other than perhaps simple appreciation and respect. If there is any movement which should be protected from predators and parasites, it is the hospex movement.&lt;br /&gt;
&lt;br /&gt;
In the context of hospex, decentralization would manifest as many loosely-connected but autonomous communities. There is already a trend in this direction with a handful of traditional web-sites now available ([[:cs:|CS]], [http://hospitalityclub.org HC], [http://bewelcome.org BW], [http://belodged.com BL], [http://servas.org Servas], [http://www.internations.org InterNations], etc.). Further decentralization might be encouraged if technological barriers were reduced and if universal standards, protocols and tools were established for interaction between hospex networks.&lt;br /&gt;
&lt;br /&gt;
One beneficial innovation would be a distributed (P2P) global trust/reputation network. The nodes of such a network would be individuals or sub-networks, both searchable using descriptive tags. It should be free and open-source and operate on distributed personal computers, much the way the bittorrent file-sharing system works (but without server-based trackers). Its only role would be to provide global interconnectivity between diverse hospex entities. Everything else is left to the discretion of the sub-networks. No one could own or control it.&lt;br /&gt;
&lt;br /&gt;
Sub-networks might include geographically-localized communities or special-interest peer-groups. The hardware/software platforms used by such sub-networks could be varied: anything available and adaptable to hospex needs. One promising platform is [http://noserub.com Noserub], which can be run by an individual on a PC, by a small community on a distributed network of PC&#039;s (in principle) or on a server. It has the advantage of allowing an individual or group to maintain control over their personal data while still participating in multiple Noserub communities or any of the big social websites like [http://facebook.com Facebook], [http://myspace.com Myspace], [http://orkut.com Orkut], etc.&lt;br /&gt;
&lt;br /&gt;
Some communities might focus on humanitarian projects. Others might focus on travel and/or cultural exchange, or perhaps on shared recreational, religious, lifestyle or professional interests. Some may have high standards of integrity and trust, while others emphasize privacy or safety. Governance could range from authoritarian to democratic to anarchist, but no one person or group could dominate all others. There would be something for everyone and the entire hospex movement would be enriched. Trust relations between communities would naturally evolve through diplomacy, exchanges and cooperative endeavors.&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;br /&gt;
[[Category:Philosophy]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=784</id>
		<title>Why decentralization in hospex?</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=784"/>
		<updated>2009-10-17T15:59:06Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Holographic hospitality */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a philosophical overview related to P2P hospitality.&lt;br /&gt;
&lt;br /&gt;
Ongoing [[P2P Hospitality initiatives and proposals]] are elsewhere.&lt;br /&gt;
&lt;br /&gt;
==The case for decentralization==&lt;br /&gt;
&lt;br /&gt;
Decentralization encourages diversity, resiliency, and adaptability; it discourages uniformity, fragility, and unresponsiveness. The tremendous abundance and richness of the natural world is a case study in the benefits of a web of interconnected sub-ecosystems, each of which is quasi-independent.&lt;br /&gt;
&lt;br /&gt;
Human society is in the midst of a crisis which, on one level, is the consequence of centralized power and wealth. Wherever concentrated power exists, it attracts parasites and predators who feed or prey upon those they dominate. Even well-intended people can be seduced and corrupted by power, and so measures to counteract its corrupting influence are always necessary. &lt;br /&gt;
&lt;br /&gt;
The best defense against concentrated power is decentralization. To whatever extent a centralized social structure is deemed necessary, checking and balancing mechanisms should always be incorporated. Since no system is perfect for all times and circumstances, the ultimate success of a society depends on the willingness of its members to constantly monitor and upgrade their system as needed.&lt;br /&gt;
&lt;br /&gt;
When a few control the many, everyone loses in the long run. Individual creativity and initiative are stifled and replaced by a robotic uniformity and conformity. Bottlenecks occur as information attempts to transit layers of bureaucracy and chains of command. Serial processing replaces parallel processing, reducing productivity and effectiveness. The whole system becomes monolithic, sluggish, and vulnerable.&lt;br /&gt;
&lt;br /&gt;
What&#039;s good for the ruling elite becomes what&#039;s good for the ruled. A class of bureaucrats and sycophants arises which must demonstrate loyalty to the rulers or be demoted or expelled. The mission of the organization becomes subverted in favor of perpetuating the positions of power and wealth of a privileged few. Secrecy and unaccountability prevail over integrity. &#039;&#039;Honor dies where self-interest lies&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The problems associated with centralized power in the world are more visible every day, in virtually every sector, but especially finance. There is a movement afoot that amounts to a world-wide paradigm shift away from centralized power: the Peer-to-Peer or P2P movement. The best resource for learning about it is probably the [http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives The Foundation for P2P Alternatives]. Some believe that a transformation from a pyramidal social structure to a holographic structure is the best hope for humanity to enter a new Renaissance. &#039;&#039;Unity in diversity; transparency with respect for privacy.&#039;&#039; Let&#039;s include the hospex movement in this paradigm shift.&lt;br /&gt;
&lt;br /&gt;
==Holographic hospitality==&lt;br /&gt;
&lt;br /&gt;
Hospitality is naturally decentralized. It can and does happen spontaneously between people all over our planet. The fundamental principle involved is sharing; typically shelter, food, information and guidance for strangers or travelers. In a broader sense, hospitality includes any gesture of kindness and welcome, when offered without expectation of immediate reciprocation other than perhaps simple appreciation and respect. If there is any movement which should be protected from predators and parasites, it is the hospex movement.&lt;br /&gt;
&lt;br /&gt;
In the context of hospex, decentralization would manifest as many loosely-connected but autonomous communities. There is already a trend in this direction with a handful of traditional web-sites now available ([[:cs:|CS]], [http://hospitalityclub.org HC], [http://bewelcome.org BW], [http://belodged.com BL], [http://servas.org Servas], [http://www.internations.org InterNations], etc.). Further decentralization might be encouraged if technological barriers were reduced and if universal standards, protocols and tools were established for interaction between hospex networks.&lt;br /&gt;
&lt;br /&gt;
One beneficial innovation would be a distributed (P2P) global trust/reputation network. The nodes of such a network would be individuals or sub-networks, both searchable using descriptive tags. It should be free and open-source and operate on distributed personal computers, much the way the bittorrent file-sharing system works (but without server-based trackers). Its only role would be to provide global interconnectivity between diverse hospex entities. Everything else is left to the discretion of the sub-networks. No one could own or control it.&lt;br /&gt;
&lt;br /&gt;
Sub-networks might include geographically-localized communities or special-interest peer-groups. The hardware/software platforms used by such sub-networks could be varied: anything available and adaptable to hospex needs. One promising platform is [http://noserub.com Noserub], which can be run by an individual on a PC, by a small community on a distributed network of PC&#039;s (in principle) or on a server. It has the advantage of allowing an individual or group to maintain control over their personal data while still participating in multiple Noserub communities or any of the big social websites like [http://facebook.com Facebook], [http://myspace.com Myspace], [http://orkut.com Orkut], etc.&lt;br /&gt;
&lt;br /&gt;
Some communities might focus on humanitarian projects. Others might focus on travel and/or cultural exchange, or perhaps on shared recreational, religious, lifestyle or professional interests. Some may have high standards of integrity and trust, while others emphasize privacy or safety. Governance could range from authoritarian to democratic to anarchist, but no one person or group could dominate all others. There would be something for everyone and the entire hospex movement would be enriched. Trust relations between communities would naturally evolve through diplomacy, exchanges and cooperative endeavors.&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=779</id>
		<title>Why decentralization in hospex?</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=779"/>
		<updated>2009-10-17T12:18:16Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Holographic hospex */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a philosophical overview related to P2P hospitality.&lt;br /&gt;
&lt;br /&gt;
Ongoing [[P2P Hospitality initiatives and proposals]] are elsewhere.&lt;br /&gt;
&lt;br /&gt;
==The case for decentralization==&lt;br /&gt;
&lt;br /&gt;
Decentralization encourages diversity, resiliency, and adaptability; it discourages uniformity, fragility, and unresponsiveness. The tremendous abundance and richness of the natural world is a case study in the benefits of a web of interconnected sub-ecosystems, each of which is quasi-independent.&lt;br /&gt;
&lt;br /&gt;
Human society is in the midst of a crisis which, on one level, is the consequence of centralized power and wealth. Wherever concentrated power exists, it attracts parasites and predators who feed or prey upon those they dominate. Even well-intended people can be seduced and corrupted by power, and so measures to counteract its corrupting influence are always necessary. &lt;br /&gt;
&lt;br /&gt;
The best defense against concentrated power is decentralization. To whatever extent a centralized social structure is deemed necessary, checking and balancing mechanisms should always be incorporated. Since no system is perfect for all times and circumstances, the ultimate success of a society depends on the willingness of its members to constantly monitor and upgrade their system as needed.&lt;br /&gt;
&lt;br /&gt;
When a few control the many, everyone loses in the long run. Individual creativity and initiative are stifled and replaced by a robotic uniformity and conformity. Bottlenecks occur as information attempts to transit layers of bureaucracy and chains of command. Serial processing replaces parallel processing, reducing productivity and effectiveness. The whole system becomes monolithic, sluggish, and vulnerable.&lt;br /&gt;
&lt;br /&gt;
What&#039;s good for the ruling elite becomes what&#039;s good for the ruled. A class of bureaucrats and sycophants arises which must demonstrate loyalty to the rulers or be demoted or expelled. The mission of the organization becomes subverted in favor of perpetuating the positions of power and wealth of a privileged few. Secrecy and unaccountability prevail over integrity. &#039;&#039;Honor dies where self-interest lies&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The problems associated with centralized power in the world are more visible every day, in virtually every sector, but especially finance. There is a movement afoot that amounts to a world-wide paradigm shift away from centralized power: the Peer-to-Peer or P2P movement. The best resource for learning about it is probably the [http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives The Foundation for P2P Alternatives]. Some believe that a transformation from a pyramidal social structure to a holographic structure is the best hope for humanity to enter a new Renaissance. &#039;&#039;Unity in diversity; transparency with respect for privacy.&#039;&#039; Let&#039;s include the hospex movement in this paradigm shift.&lt;br /&gt;
&lt;br /&gt;
==Holographic hospex==&lt;br /&gt;
&lt;br /&gt;
Hospex (hospitality exchange) is naturally decentralized. It can and does happen spontaneously between people all over our planet. The fundamental principle involved is sharing; typically shelter, food, information and guidance for strangers or travelers. In a broader sense, hospitality includes any gesture of kindness and welcome, when offered without expectation of immediate reciprocation other than perhaps simple appreciation and respect. If there is any movement which should be protected from predators and parasites, it is the hospex movement.&lt;br /&gt;
&lt;br /&gt;
In the context of hospex, decentralization would manifest as many loosely-connected but autonomous communities. There is already a trend in this direction with a handful of traditional web-sites now available ([[:cs:|CS]], [http://hospitalityclub.org HC], [http://bewelcome.org BW], [http://belodged.com BL], [http://servas.org Servas], [http://www.internations.org InterNations], etc.). Further decentralization might be encouraged if technological barriers were reduced and if universal standards, protocols and tools were established for interaction between hospex networks.&lt;br /&gt;
&lt;br /&gt;
One beneficial innovation would be a distributed (P2P) global trust/reputation network. The nodes of such a network would be individuals or sub-networks, both searchable using descriptive tags. It should be free and open-source and operate on distributed personal computers, much the way the bittorrent file-sharing system works (but without server-based trackers). Its only role would be to provide global interconnectivity between diverse hospex entities. Everything else is left to the discretion of the sub-networks. No one could own or control it.&lt;br /&gt;
&lt;br /&gt;
Sub-networks might include geographically-localized communities or special-interest peer-groups. The hardware/software platforms used by such sub-networks could be varied: anything available and adaptable to hospex needs. One promising platform is [http://noserub.com Noserub], which can be run by an individual on a PC, by a small community on a distributed network of PC&#039;s (in principle) or on a server. It has the advantage of allowing an individual or group to maintain control over their personal data while still participating in multiple Noserub communities or any of the big social websites like [http://facebook.com Facebook], [http://myspace.com Myspace], [http://orkut.com Orkut], etc.&lt;br /&gt;
&lt;br /&gt;
Some communities might focus on humanitarian projects. Others might focus on travel and/or cultural exchange, or perhaps on shared recreational, religious, lifestyle or professional interests. Some may have high standards of integrity and trust, while others emphasize privacy or safety. Governance could range from authoritarian to democratic to anarchist, but no one person or group could dominate all others. There would be something for everyone and the entire hospex movement would be enriched. Trust relations between communities would naturally evolve through diplomacy, exchanges and cooperative endeavors.&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=778</id>
		<title>Why decentralization in hospex?</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=778"/>
		<updated>2009-10-17T11:53:42Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* Holographic hospex */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a philosophical overview related to P2P hospitality.&lt;br /&gt;
&lt;br /&gt;
Ongoing [[P2P Hospitality initiatives and proposals]] are elsewhere.&lt;br /&gt;
&lt;br /&gt;
==The case for decentralization==&lt;br /&gt;
&lt;br /&gt;
Decentralization encourages diversity, resiliency, and adaptability; it discourages uniformity, fragility, and unresponsiveness. The tremendous abundance and richness of the natural world is a case study in the benefits of a web of interconnected sub-ecosystems, each of which is quasi-independent.&lt;br /&gt;
&lt;br /&gt;
Human society is in the midst of a crisis which, on one level, is the consequence of centralized power and wealth. Wherever concentrated power exists, it attracts parasites and predators who feed or prey upon those they dominate. Even well-intended people can be seduced and corrupted by power, and so measures to counteract its corrupting influence are always necessary. &lt;br /&gt;
&lt;br /&gt;
The best defense against concentrated power is decentralization. To whatever extent a centralized social structure is deemed necessary, checking and balancing mechanisms should always be incorporated. Since no system is perfect for all times and circumstances, the ultimate success of a society depends on the willingness of its members to constantly monitor and upgrade their system as needed.&lt;br /&gt;
&lt;br /&gt;
When a few control the many, everyone loses in the long run. Individual creativity and initiative are stifled and replaced by a robotic uniformity and conformity. Bottlenecks occur as information attempts to transit layers of bureaucracy and chains of command. Serial processing replaces parallel processing, reducing productivity and effectiveness. The whole system becomes monolithic, sluggish, and vulnerable.&lt;br /&gt;
&lt;br /&gt;
What&#039;s good for the ruling elite becomes what&#039;s good for the ruled. A class of bureaucrats and sycophants arises which must demonstrate loyalty to the rulers or be demoted or expelled. The mission of the organization becomes subverted in favor of perpetuating the positions of power and wealth of a privileged few. Secrecy and unaccountability prevail over integrity. &#039;&#039;Honor dies where self-interest lies&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The problems associated with centralized power in the world are more visible every day, in virtually every sector, but especially finance. There is a movement afoot that amounts to a world-wide paradigm shift away from centralized power: the Peer-to-Peer or P2P movement. The best resource for learning about it is probably the [http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives The Foundation for P2P Alternatives]. Some believe that a transformation from a pyramidal social structure to a holographic structure is the best hope for humanity to enter a new Renaissance. &#039;&#039;Unity in diversity; transparency with respect for privacy.&#039;&#039; Let&#039;s include the hospex movement in this paradigm shift.&lt;br /&gt;
&lt;br /&gt;
==Holographic hospex==&lt;br /&gt;
&lt;br /&gt;
Hospex (hospitality exchange) is naturally decentralized. It can and does happen spontaneously between people all over our planet. The fundamental principle involved is sharing; typically shelter, food, information and guidance for strangers or travelers. In a broader sense, hospitality includes any gesture of kindness and welcome, when offered without expectation of immediate reciprocation other than perhaps simple appreciation and respect. If there is any movement which should be protected from predators and parasites, it is the hospex movement.&lt;br /&gt;
&lt;br /&gt;
In the context of hospex, decentralization would manifest as many loosely-connected but autonomous communities. There is already a trend in this direction with a handful of traditional web-sites now available ([[:cs:|CS]], [http://hospitalityclub.org HC], [http://bewelcome.org BW], [http://belodged.com BL], [http://servas.org Servas], etc.). Further decentralization might be encouraged if technological barriers were reduced and if universal standards, protocols and tools were established for interaction between hospex networks.&lt;br /&gt;
&lt;br /&gt;
One beneficial innovation would be a distributed (P2P) global trust/reputation network. The nodes of such a network would be individuals or sub-networks, both searchable using descriptive tags. It should be free and open-source and operate on distributed personal computers, much the way the bittorrent file-sharing system works (but without server-based trackers). Its only role would be to provide global interconnectivity between diverse hospex entities. Everything else is left to the discretion of the sub-networks. No one could own or control it.&lt;br /&gt;
&lt;br /&gt;
Sub-networks might include geographically-localized communities or special-interest peer-groups. The hardware/software platforms used by such sub-networks could be varied: anything available and adaptable to hospex needs. One promising platform is [http://noserub.com Noserub], which can be run by an individual on a PC, by a small community on a distributed network of PC&#039;s (in principle) or on a server. It has the advantage of allowing an individual or group to maintain control over their personal data while still participating in multiple Noserub communities or any of the big social websites like [http://facebook.com Facebook], [http://myspace.com Myspace], [http://orkut.com Orkut], etc.&lt;br /&gt;
&lt;br /&gt;
Some communities might focus on humanitarian projects. Others might focus on travel and/or cultural exchange, or perhaps on shared recreational, religious, lifestyle or professional interests. Some may have high standards of integrity and trust, while others emphasize privacy or safety. Governance could range from authoritarian to democratic to anarchist, but no one person or group could dominate all others. There would be something for everyone and the entire hospex movement would be enriched. Trust relations between communities would naturally evolve through diplomacy, exchanges and cooperative endeavors.&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=777</id>
		<title>Why decentralization in hospex?</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=777"/>
		<updated>2009-10-17T11:50:53Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* The case for decentralization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a philosophical overview related to P2P hospitality.&lt;br /&gt;
&lt;br /&gt;
Ongoing [[P2P Hospitality initiatives and proposals]] are elsewhere.&lt;br /&gt;
&lt;br /&gt;
==The case for decentralization==&lt;br /&gt;
&lt;br /&gt;
Decentralization encourages diversity, resiliency, and adaptability; it discourages uniformity, fragility, and unresponsiveness. The tremendous abundance and richness of the natural world is a case study in the benefits of a web of interconnected sub-ecosystems, each of which is quasi-independent.&lt;br /&gt;
&lt;br /&gt;
Human society is in the midst of a crisis which, on one level, is the consequence of centralized power and wealth. Wherever concentrated power exists, it attracts parasites and predators who feed or prey upon those they dominate. Even well-intended people can be seduced and corrupted by power, and so measures to counteract its corrupting influence are always necessary. &lt;br /&gt;
&lt;br /&gt;
The best defense against concentrated power is decentralization. To whatever extent a centralized social structure is deemed necessary, checking and balancing mechanisms should always be incorporated. Since no system is perfect for all times and circumstances, the ultimate success of a society depends on the willingness of its members to constantly monitor and upgrade their system as needed.&lt;br /&gt;
&lt;br /&gt;
When a few control the many, everyone loses in the long run. Individual creativity and initiative are stifled and replaced by a robotic uniformity and conformity. Bottlenecks occur as information attempts to transit layers of bureaucracy and chains of command. Serial processing replaces parallel processing, reducing productivity and effectiveness. The whole system becomes monolithic, sluggish, and vulnerable.&lt;br /&gt;
&lt;br /&gt;
What&#039;s good for the ruling elite becomes what&#039;s good for the ruled. A class of bureaucrats and sycophants arises which must demonstrate loyalty to the rulers or be demoted or expelled. The mission of the organization becomes subverted in favor of perpetuating the positions of power and wealth of a privileged few. Secrecy and unaccountability prevail over integrity. &#039;&#039;Honor dies where self-interest lies&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The problems associated with centralized power in the world are more visible every day, in virtually every sector, but especially finance. There is a movement afoot that amounts to a world-wide paradigm shift away from centralized power: the Peer-to-Peer or P2P movement. The best resource for learning about it is probably the [http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives The Foundation for P2P Alternatives]. Some believe that a transformation from a pyramidal social structure to a holographic structure is the best hope for humanity to enter a new Renaissance. &#039;&#039;Unity in diversity; transparency with respect for privacy.&#039;&#039; Let&#039;s include the hospex movement in this paradigm shift.&lt;br /&gt;
&lt;br /&gt;
==Holographic hospex==&lt;br /&gt;
&lt;br /&gt;
Hospex (hospitality exchange) is naturally decentralized. It can and does happen spontaneously between people all over our planet. The fundamental principle involved is sharing; typically shelter, food, information and guidance for strangers or travelers. In a broader sense, hospitality includes any gesture of kindness and welcome, when offered without expectation of immediate reciprocation other than perhaps simple appreciation and respect. If there is any movement which should be protected from predators and parasites, it is the hospex movement.&lt;br /&gt;
&lt;br /&gt;
In the context of hospex, decentralization would manifest as many loosely-connected but autonomous communities. There is already a trend in this direction with a handful of traditional web-sites now available ([[:cs:|CS]], [http://hospitalityclub.org HC], [http://bewelcome.org BW], [http://belodged.com BL], [http://servas.org Servas], etc.). Further decentralization might be encouraged if technological barriers were reduced and if universal standards, protocols and tools were established for interaction between hospex networks.&lt;br /&gt;
&lt;br /&gt;
One beneficial innovation would be a distributed (P2P) global trust/reputation network. The nodes of such a network would be individuals or sub-networks, both searchable using descriptive tags. It should be free and open-source and operate on distributed personal computers, much the way the bittorrent file-sharing system works (but without server-based trackers). Its only role is to provide global interconnectivity between diverse hospex entities. Everything else is left to the discretion of the sub-networks. No one could own or control it.&lt;br /&gt;
&lt;br /&gt;
Sub-networks might include geographically-localized communities or special-interest peer-groups. The hardware/software platforms used by such sub-networks could be varied: anything available and adaptable to hospex needs. One promising platform is [http://noserub.com Noserub], which can be run by an individual on a PC, by a small community on a distributed network of PC&#039;s (in principle) or on a server. It has the advantage of allowing an individual or group to maintain control over their personal data while still participating in multiple Noserub communities or any of the big social websites like [http://facebook.com Facebook], [http://myspace.com Myspace], [http://orkut.com Orkut], etc.&lt;br /&gt;
&lt;br /&gt;
Some communities might focus on humanitarian projects. Others might focus on travel and/or cultural exchange, or perhaps on shared recreational, religious, lifestyle or professional interests. Some may have high standards of integrity and trust, while others emphasize privacy or safety. Governance could range from authoritarian to democratic to anarchist, but no one person or group could dominate all others. There would be something for everyone and the entire hospex movement would be enriched. Trust relations between communities would naturally evolve through diplomacy, exchanges and cooperative endeavors.&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=776</id>
		<title>P2P Hospitality initiatives and proposals</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=776"/>
		<updated>2009-10-17T11:47:07Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* A Decentralized network discussion by  Lemon-head */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a directory to various P2P Hospitality initiatives and proposals. There is a [[Why decentralization in hospex? | philosophical overview]] elsewhere.&lt;br /&gt;
&lt;br /&gt;
==3M&#039;s Brainstorming notes==&lt;br /&gt;
[[User:Midsch | Midsch]], Mahouni2000 and [[User:matrixpoint | Matrixpoint]] have been brainstorming about decentralization and privacy solutions for the past 6 months (as of 10/2009). A few more pages may appear here summarizing our explorations, including links to many resources. Our goal was to make use of existing systems, but we haven&#039;t yet found a ready-to-deploy solution. Thus, more work needs to be done. (The less, the better.) Very briefly, we see three main areas of technical activity to pursue:&lt;br /&gt;
&lt;br /&gt;
* Customize [http://noserub.com Noserub] (or [http://drupal.org Drupal] or [http://buddypress.org BuddyPress] or whatever) for localized or special-interest hospex communities, packaging it so that is very easy to deploy.&lt;br /&gt;
&lt;br /&gt;
* Encourage sub-communities within the big social sites like [http://facebook.com Facebook], perhaps by developing custom apps for them.&lt;br /&gt;
&lt;br /&gt;
* Develop a decentralized (P2P) trust/search network. (A Java-based solution is under development. More info later.)&lt;br /&gt;
&lt;br /&gt;
Some non-technical areas to explore are:&lt;br /&gt;
&lt;br /&gt;
* Universal standards or guidelines for trust, safety, and privacy.&lt;br /&gt;
&lt;br /&gt;
* What constitutes an identity/reputation in the virtual world?&lt;br /&gt;
&lt;br /&gt;
==A P2P hospitality proposal by [[User:Robino | Robino]] on [http://sharewiki.org ShareWiki.org]==&lt;br /&gt;
&lt;br /&gt;
[http://sharewiki.org/en/P2P_hospitality P2P hospitality]&lt;br /&gt;
&lt;br /&gt;
==A Decentralized networks discussion by [[User:Lemon-Head | Lemon-head]]==&lt;br /&gt;
&lt;br /&gt;
[[Decentralized networks]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=775</id>
		<title>P2P Hospitality initiatives and proposals</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=775"/>
		<updated>2009-10-17T11:46:46Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: /* A decentralized network discussion by  Lemon-head */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a directory to various P2P Hospitality initiatives and proposals. There is a [[Why decentralization in hospex? | philosophical overview]] elsewhere.&lt;br /&gt;
&lt;br /&gt;
==3M&#039;s Brainstorming notes==&lt;br /&gt;
[[User:Midsch | Midsch]], Mahouni2000 and [[User:matrixpoint | Matrixpoint]] have been brainstorming about decentralization and privacy solutions for the past 6 months (as of 10/2009). A few more pages may appear here summarizing our explorations, including links to many resources. Our goal was to make use of existing systems, but we haven&#039;t yet found a ready-to-deploy solution. Thus, more work needs to be done. (The less, the better.) Very briefly, we see three main areas of technical activity to pursue:&lt;br /&gt;
&lt;br /&gt;
* Customize [http://noserub.com Noserub] (or [http://drupal.org Drupal] or [http://buddypress.org BuddyPress] or whatever) for localized or special-interest hospex communities, packaging it so that is very easy to deploy.&lt;br /&gt;
&lt;br /&gt;
* Encourage sub-communities within the big social sites like [http://facebook.com Facebook], perhaps by developing custom apps for them.&lt;br /&gt;
&lt;br /&gt;
* Develop a decentralized (P2P) trust/search network. (A Java-based solution is under development. More info later.)&lt;br /&gt;
&lt;br /&gt;
Some non-technical areas to explore are:&lt;br /&gt;
&lt;br /&gt;
* Universal standards or guidelines for trust, safety, and privacy.&lt;br /&gt;
&lt;br /&gt;
* What constitutes an identity/reputation in the virtual world?&lt;br /&gt;
&lt;br /&gt;
==A P2P hospitality proposal by [[User:Robino | Robino]] on [http://sharewiki.org ShareWiki.org]==&lt;br /&gt;
&lt;br /&gt;
[http://sharewiki.org/en/P2P_hospitality P2P hospitality]&lt;br /&gt;
&lt;br /&gt;
==A Decentralized network discussion by [[User:Lemon-Head | Lemon-head]]==&lt;br /&gt;
&lt;br /&gt;
[[Decentralized networks]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Decentralized_networks&amp;diff=774</id>
		<title>Decentralized networks</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Decentralized_networks&amp;diff=774"/>
		<updated>2009-10-17T11:44:41Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;For a long time the idea has been floating around to have independent and &#039;&#039;&#039;decentralized networks&#039;&#039;&#039; as an alternative to the existing centralized (= one user database, one management) [[hospitality]] networks.&lt;br /&gt;
&lt;br /&gt;
The idea is interesting, but has some difficult aspects, that can be discussed on this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Why? ==&lt;br /&gt;
&lt;br /&gt;
Is decentralized always better?&lt;br /&gt;
&lt;br /&gt;
Always? Probably not. But that should not stop anyone from exploring!&lt;br /&gt;
&lt;br /&gt;
The great benefit of decentralized networks is that they allow to experiment with different technology, different styles of moderation, different safety and trust features, different search features, different looks, different peer groups.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How this can work ==&lt;br /&gt;
A lot can be said about decentralized networks, but in the context of [[hospitality exchange]] the most important is user profiles, (location-based) member search, messages between members, and [[trust]] / [[friend]] connections. All of this has to work across different networks, otherwise it won&#039;t be really useful.&lt;br /&gt;
&lt;br /&gt;
The biggest challenges here are [[privacy]] and proof of [[identity]]: How can one restrict the visibility of information that is shared across different networks? And how can I prove that I am the owner of profile A on network X, when interacting with members form network Y?&lt;br /&gt;
&lt;br /&gt;
=== User accounts / profiles ===&lt;br /&gt;
The idea would mean that there is not one big network where you create a user account, but instead you would choose one or more networks where you want to create an account and have the information you define stored in the database.&lt;br /&gt;
&lt;br /&gt;
Problems:&lt;br /&gt;
* Multi-accounts: Duplicate search results, and redundant information to update in different places.&lt;br /&gt;
* Agony of choice: How to choose my favorite network?&lt;br /&gt;
&lt;br /&gt;
Solutions:&lt;br /&gt;
* Tools for import, export and profile migration&lt;br /&gt;
* Auto-update a profile on site X with information from site Y.&lt;br /&gt;
&lt;br /&gt;
=== Searching member profiles ===&lt;br /&gt;
To make member search useful, it has to be cross-network. This means, a search request either has to request information from all connected networks, or you need some kind of search engine that crawls member profiles on different networks and caches the information.&lt;br /&gt;
&lt;br /&gt;
Problems:&lt;br /&gt;
* Privacy: Information that is shared between an arbitrary number of networks is practically public information.&lt;br /&gt;
&lt;br /&gt;
Solutions:&lt;br /&gt;
&lt;br /&gt;
=== Messages from one user to another ===&lt;br /&gt;
You go to someone&#039;s profile on network X, click &amp;quot;send message&amp;quot;, type the message, submit. You leave a link to your own profile on network Y.&lt;br /&gt;
&lt;br /&gt;
Problems:&lt;br /&gt;
* You need to type in the link to your own profile manually, which is inconvenient, and you can make typos.&lt;br /&gt;
* You can type in a fake link to someone else&#039;s profile.&lt;br /&gt;
&lt;br /&gt;
Solutions:&lt;br /&gt;
* OpenID? Does that allow to identify you as a member of a different network?&lt;br /&gt;
&lt;br /&gt;
=== Trust/Friend links between members ===&lt;br /&gt;
Just like the references or friend links in couchsurfing, you could create a trust link from profile A in network X to profile B in network Y.&lt;br /&gt;
&lt;br /&gt;
This can only work if there is a way to prove that your friend link does in fact come from profile A in network X, and not from somewhere else. This is the same problem as with messages.&lt;br /&gt;
&lt;br /&gt;
=== Profile data visibility constraints ===&lt;br /&gt;
In traditional networks it is possible to show some profile information &amp;quot;only to my friends&amp;quot;, or have some other constraints. How can I control that if the friends&#039; profiles are on separate networks?&lt;br /&gt;
&lt;br /&gt;
=== [[Trust]] links between networks ===&lt;br /&gt;
Just like there can be a trust network of people, there can also be a trust network of networks..&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
* Crash at Mine (?)&lt;br /&gt;
* Noserub&lt;br /&gt;
*: Q: How does Noserub solve the above &amp;quot;problems&amp;quot; ?&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=773</id>
		<title>Why decentralization in hospex?</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=773"/>
		<updated>2009-10-17T11:41:49Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a philosophical overview related to P2P hospitality.&lt;br /&gt;
&lt;br /&gt;
Ongoing [[P2P Hospitality initiatives and proposals]] are elsewhere.&lt;br /&gt;
&lt;br /&gt;
==The case for decentralization==&lt;br /&gt;
&lt;br /&gt;
Decentralization encourages diversity, resiliency, and adaptability; it discourages uniformity, fragility, and unresponsiveness. The tremendous abundance and richness of the natural world is a case study in the benefits of a web of interconnected sub-ecosystems, each of which is quasi-independent.&lt;br /&gt;
&lt;br /&gt;
Human society is in the midst of a crisis which, on one level, is the consequence of centralized power and wealth. Wherever concentrated power exists, it attracts parasites and predators who feed or prey upon those they dominate. Even well-intended people can be seduced and corrupted by power, and so measures to counteract its corrupting influence are always necessary. &lt;br /&gt;
&lt;br /&gt;
The best defense against concentrated power is decentralization. To whatever extent a centralized social structure is deemed necessary, checking and balancing mechanisms should always be incorporated. Since no system is perfect for all times and circumstances, the ultimate success of a society depends on the willingness of its members to constantly monitor and upgrade their system as needed.&lt;br /&gt;
&lt;br /&gt;
When a few control the many, everyone loses in the long run. Individual creativity and initiative are stifled and replaced by a robotic uniformity and conformity. Bottlenecks occur as information attempts to transit layers of bureaucracy and chains of command. Serial processing replaces parallel processing, reducing productivity and effectiveness. The whole system becomes monolithic, sluggish, and vulnerable.&lt;br /&gt;
&lt;br /&gt;
What&#039;s good for the ruling elite becomes what&#039;s good for the ruled. A class of bureaucrats and sycophants arises which must demonstrate loyalty to the rulers or be demoted or expelled. The mission of the organization becomes subverted in favor of perpetuating the positions of power and wealth of a privileged few. Secrecy and unaccountability prevail over integrity. &#039;&#039;Honor dies where self-interest lies&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The problems associated with centralized power in the world are more visible every day, in virtually every sector, but especially finance. There is a movement afoot that amounts to a world-wide paradigm shift away from centralized power: the Peer-to-Peer or P2P movement. The best resource for learning about it is probably the [http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P foundation]. Some believe that a transformation from a pyramidal social structure to a holographic structure is the best hope for humanity to enter a new Renaissance. &#039;&#039;Unity in diversity; transparency with respect for privacy.&#039;&#039; Let&#039;s include the hospex movement in this paradigm shift.&lt;br /&gt;
&lt;br /&gt;
==Holographic hospex==&lt;br /&gt;
&lt;br /&gt;
Hospex (hospitality exchange) is naturally decentralized. It can and does happen spontaneously between people all over our planet. The fundamental principle involved is sharing; typically shelter, food, information and guidance for strangers or travelers. In a broader sense, hospitality includes any gesture of kindness and welcome, when offered without expectation of immediate reciprocation other than perhaps simple appreciation and respect. If there is any movement which should be protected from predators and parasites, it is the hospex movement.&lt;br /&gt;
&lt;br /&gt;
In the context of hospex, decentralization would manifest as many loosely-connected but autonomous communities. There is already a trend in this direction with a handful of traditional web-sites now available ([[:cs:|CS]], [http://hospitalityclub.org HC], [http://bewelcome.org BW], [http://belodged.com BL], [http://servas.org Servas], etc.). Further decentralization might be encouraged if technological barriers were reduced and if universal standards, protocols and tools were established for interaction between hospex networks.&lt;br /&gt;
&lt;br /&gt;
One beneficial innovation would be a distributed (P2P) global trust/reputation network. The nodes of such a network would be individuals or sub-networks, both searchable using descriptive tags. It should be free and open-source and operate on distributed personal computers, much the way the bittorrent file-sharing system works (but without server-based trackers). Its only role is to provide global interconnectivity between diverse hospex entities. Everything else is left to the discretion of the sub-networks. No one could own or control it.&lt;br /&gt;
&lt;br /&gt;
Sub-networks might include geographically-localized communities or special-interest peer-groups. The hardware/software platforms used by such sub-networks could be varied: anything available and adaptable to hospex needs. One promising platform is [http://noserub.com Noserub], which can be run by an individual on a PC, by a small community on a distributed network of PC&#039;s (in principle) or on a server. It has the advantage of allowing an individual or group to maintain control over their personal data while still participating in multiple Noserub communities or any of the big social websites like [http://facebook.com Facebook], [http://myspace.com Myspace], [http://orkut.com Orkut], etc.&lt;br /&gt;
&lt;br /&gt;
Some communities might focus on humanitarian projects. Others might focus on travel and/or cultural exchange, or perhaps on shared recreational, religious, lifestyle or professional interests. Some may have high standards of integrity and trust, while others emphasize privacy or safety. Governance could range from authoritarian to democratic to anarchist, but no one person or group could dominate all others. There would be something for everyone and the entire hospex movement would be enriched. Trust relations between communities would naturally evolve through diplomacy, exchanges and cooperative endeavors.&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=767</id>
		<title>Why decentralization in hospex?</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Why_decentralization_in_hospex%3F&amp;diff=767"/>
		<updated>2009-10-17T11:32:21Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: Created page with &amp;#039;==The case for decentralization==  Decentralization encourages diversity, resiliency, and adaptability; it discourages uniformity, fragility, and unresponsiveness. The tremendous…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==The case for decentralization==&lt;br /&gt;
&lt;br /&gt;
Decentralization encourages diversity, resiliency, and adaptability; it discourages uniformity, fragility, and unresponsiveness. The tremendous abundance and richness of the natural world is a case study in the benefits of a web of interconnected sub-ecosystems, each of which is quasi-independent.&lt;br /&gt;
&lt;br /&gt;
Human society is in the midst of a crisis which, on one level, is the consequence of centralized power and wealth. Wherever concentrated power exists, it attracts parasites and predators who feed or prey upon those they dominate. Even well-intended people can be seduced and corrupted by power, and so measures to counteract its corrupting influence are always necessary. &lt;br /&gt;
&lt;br /&gt;
The best defense against concentrated power is decentralization. To whatever extent a centralized social structure is deemed necessary, checking and balancing mechanisms should always be incorporated. Since no system is perfect for all times and circumstances, the ultimate success of a society depends on the willingness of its members to constantly monitor and upgrade their system as needed.&lt;br /&gt;
&lt;br /&gt;
When a few control the many, everyone loses in the long run. Individual creativity and initiative are stifled and replaced by a robotic uniformity and conformity. Bottlenecks occur as information attempts to transit layers of bureaucracy and chains of command. Serial processing replaces parallel processing, reducing productivity and effectiveness. The whole system becomes monolithic, sluggish, and vulnerable.&lt;br /&gt;
&lt;br /&gt;
What&#039;s good for the ruling elite becomes what&#039;s good for the ruled. A class of bureaucrats and sycophants arises which must demonstrate loyalty to the rulers or be demoted or expelled. The mission of the organization becomes subverted in favor of perpetuating the positions of power and wealth of a privileged few. Secrecy and unaccountability prevail over integrity. &#039;&#039;Honor dies where self-interest lies&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The problems associated with centralized power in the world are more visible every day, in virtually every sector, but especially finance. There is a movement afoot that amounts to a world-wide paradigm shift away from centralized power: the Peer-to-Peer or P2P movement. The best resource for learning about it is probably the [http://p2pfoundation.net/The_Foundation_for_P2P_Alternatives P2P foundation]. Some believe that a transformation from a pyramidal social structure to a holographic structure is the best hope for humanity to enter a new Renaissance. &#039;&#039;Unity in diversity; transparency with respect for privacy.&#039;&#039; Let&#039;s include the hospex movement in this paradigm shift.&lt;br /&gt;
&lt;br /&gt;
==Holographic hospex==&lt;br /&gt;
&lt;br /&gt;
Hospex (hospitality exchange) is naturally decentralized. It can and does happen spontaneously between people all over our planet. The fundamental principle involved is sharing; typically shelter, food, information and guidance for strangers or travelers. In a broader sense, hospitality includes any gesture of kindness and welcome, when offered without expectation of immediate reciprocation other than perhaps simple appreciation and respect. If there is any movement which should be protected from predators and parasites, it is the hospex movement.&lt;br /&gt;
&lt;br /&gt;
In the context of hospex, decentralization would manifest as many loosely-connected but autonomous communities. There is already a trend in this direction with a handful of traditional web-sites now available ([[:cs:|CS]], [http://hospitalityclub.org HC], [http://bewelcome.org BW], [http://belodged.com BL], [http://servas.org Servas], etc.). Further decentralization might be encouraged if technological barriers were reduced and if universal standards, protocols and tools were established for interaction between hospex networks.&lt;br /&gt;
&lt;br /&gt;
One beneficial innovation would be a distributed (P2P) global trust/reputation network. The nodes of such a network would be individuals or sub-networks, both searchable using descriptive tags. It should be free and open-source and operate on distributed personal computers, much the way the bittorrent file-sharing system works (but without server-based trackers). Its only role is to provide global interconnectivity between diverse hospex entities. Everything else is left to the discretion of the sub-networks. No one could own or control it.&lt;br /&gt;
&lt;br /&gt;
Sub-networks might include geographically-localized communities or special-interest peer-groups. The hardware/software platforms used by such sub-networks could be varied: anything available and adaptable to hospex needs. One promising platform is [http://noserub.com Noserub], which can be run by an individual on a PC, by a small community on a distributed network of PC&#039;s (in principle) or on a server. It has the advantage of allowing an individual or group to maintain control over their personal data while still participating in multiple Noserub communities or any of the big social websites like [http://facebook.com Facebook], [http://myspace.com Myspace], [http://orkut.com Orkut], etc.&lt;br /&gt;
&lt;br /&gt;
Some communities might focus on humanitarian projects. Others might focus on travel and/or cultural exchange, or perhaps on shared recreational, religious, lifestyle or professional interests. Some may have high standards of integrity and trust, while others emphasize privacy or safety. Governance could range from authoritarian to democratic to anarchist, but no one person or group could dominate all others. There would be something for everyone and the entire hospex movement would be enriched. Trust relations between communities would naturally evolve through diplomacy, exchanges and cooperative endeavors.&lt;br /&gt;
&lt;br /&gt;
This is a philosophical overview.&lt;br /&gt;
&lt;br /&gt;
Ongoing [[P2P Hospitality initiatives and proposals]].&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Category:P2P_Hospitality&amp;diff=764</id>
		<title>Category:P2P Hospitality</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Category:P2P_Hospitality&amp;diff=764"/>
		<updated>2009-10-17T11:30:50Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: Created page with &amp;#039;Category:Browse&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Browse]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=763</id>
		<title>P2P Hospitality initiatives and proposals</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=P2P_Hospitality_initiatives_and_proposals&amp;diff=763"/>
		<updated>2009-10-17T11:29:15Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: Created page with &amp;#039;This is a directory to various P2P Hospitality initiatives and proposals. There is a  philosophical overview elsewhere.  ==3M&amp;#039;s Brainstorming…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a directory to various P2P Hospitality initiatives and proposals. There is a [[Why decentralization in hospex? | philosophical overview]] elsewhere.&lt;br /&gt;
&lt;br /&gt;
==3M&#039;s Brainstorming notes==&lt;br /&gt;
[[User:Midsch | Midsch]], Mahouni2000 and [[User:matrixpoint | Matrixpoint]] have been brainstorming about decentralization and privacy solutions for the past 6 months (as of 10/2009). A few more pages may appear here summarizing our explorations, including links to many resources. Our goal was to make use of existing systems, but we haven&#039;t yet found a ready-to-deploy solution. Thus, more work needs to be done. (The less, the better.) Very briefly, we see three main areas of technical activity to pursue:&lt;br /&gt;
&lt;br /&gt;
* Customize [http://noserub.com Noserub] (or [http://drupal.org Drupal] or [http://buddypress.org BuddyPress] or whatever) for localized or special-interest hospex communities, packaging it so that is very easy to deploy.&lt;br /&gt;
&lt;br /&gt;
* Encourage sub-communities within the big social sites like [http://facebook.com Facebook], perhaps by developing custom apps for them.&lt;br /&gt;
&lt;br /&gt;
* Develop a decentralized (P2P) trust/search network. (A Java-based solution is under development. More info later.)&lt;br /&gt;
&lt;br /&gt;
Some non-technical areas to explore are:&lt;br /&gt;
&lt;br /&gt;
* Universal standards or guidelines for trust, safety, and privacy.&lt;br /&gt;
&lt;br /&gt;
* What constitutes an identity/reputation in the virtual world?&lt;br /&gt;
&lt;br /&gt;
==A P2P hospitality proposal by [[User:Robino | Robino]] on [http://sharewiki.org ShareWiki.org]==&lt;br /&gt;
&lt;br /&gt;
[http://sharewiki.org/en/P2P_hospitality P2P hospitality]&lt;br /&gt;
&lt;br /&gt;
==A decentralized network discussion by [[User:Lemon-Head | Lemon-head]]==&lt;br /&gt;
&lt;br /&gt;
[[Decentralized networks]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:P2P Hospitality]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Category:CS_Organization&amp;diff=667</id>
		<title>Category:CS Organization</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Category:CS_Organization&amp;diff=667"/>
		<updated>2009-10-15T12:18:43Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: New page: Category:Browse&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Browse]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Category:CS_Organization_Netherlands&amp;diff=666</id>
		<title>Category:CS Organization Netherlands</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Category:CS_Organization_Netherlands&amp;diff=666"/>
		<updated>2009-10-15T12:16:43Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: New page: Category:CS Organization&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:CS Organization]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=CS_Organisation_Netherlands&amp;diff=665</id>
		<title>CS Organisation Netherlands</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=CS_Organisation_Netherlands&amp;diff=665"/>
		<updated>2009-10-15T12:12:16Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Netherlands}}&lt;br /&gt;
&lt;br /&gt;
== List of Dutch Ambassadors ==&lt;br /&gt;
===Country Ambassadors===&lt;br /&gt;
[[:cs:users/LIZZIE82ISH|Liza van Kuijk]] (Utrecht)&lt;br /&gt;
 + Support Dutch City ambassadors and the rest of the Netherlands CS community. &lt;br /&gt;
 + Member of [http://www.couchsurfing.com/group.html?gid=3581 New Member Welcome group], greeting new members in Utrecht and around. &lt;br /&gt;
 + Organising meetings and activities in Utrecht and assisting in others in the Netherlands.&lt;br /&gt;
 + Explore the other CS communities in the Netherlands and the rest of the world by surfing and going to meetings&lt;br /&gt;
 + Member of workinggroup for reorganising groups of the Netherlands&lt;br /&gt;
 + Mentor/Buddy for new ambs in the centre of the Netherlands&lt;br /&gt;
 + Moderator of: &lt;br /&gt;
  + [http://www.couchsurfing.com/group.html?gid=238 Netherlands CS group]&lt;br /&gt;
  + [http://www.couchsurfing.com/group.html?gid=5031 Netherlands CS organisation group] &lt;br /&gt;
  + [http://www.couchsurfing.com/group.html?gid=3486 Last minute couch in the Netherlands group] &lt;br /&gt;
  + [http://www.couchsurfing.com/group.html?gid=14572 Dutch lessons in Utrecht group]&lt;br /&gt;
  + [http://www.couchsurfing.com/group.html?gid=1348 Utrecht CS group]&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/VATO_LOCO|Henri Geerman]] (Arnhem)&lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/roseathome|Rose May]] (Amsterdam)&lt;br /&gt;
 + Organising events (the crazier and challenging the better)&lt;br /&gt;
 + Social networking (drinks and dances anyone?)&lt;br /&gt;
 + Introduce hospitalily networks to whoever is interested&lt;br /&gt;
 + Really like to bring people together and see then connect with eachother&lt;br /&gt;
 + Like to work in teams and make things happen&lt;br /&gt;
&lt;br /&gt;
===City Ambassadors===&lt;br /&gt;
&lt;br /&gt;
=====[[Amsterdam]]=====&lt;br /&gt;
[[:cs:users/mab84|Menno]] &lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/SPREEKER|Stephan Preeker]] &lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/JP1978|JP1978]]&lt;br /&gt;
 + [http://www.couchsurfing.com/group_read.html?gid=5031&amp;amp;post=1334189#post1512749 post on the CSNL Group]&lt;br /&gt;
&lt;br /&gt;
=====[[Rotterdam]]=====&lt;br /&gt;
[[:cs:users/ROSSI IN ROTTERDAM|Annemarie Rossi]]&lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/raineybean|Lorraine Sanchez]] &lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/GERALD_ROTTERDAM|Gerard Bosman]] (Lansingerland municipality) &lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
=====[[Utrecht]]=====&lt;br /&gt;
[[:cs:users/KILGORETROUT|Jasper Haenen]] &lt;br /&gt;
 + Moderator of [http://www.couchsurfing.com/group.html?gid=1348 Utrecht CS group] and [http://www.couchsurfing.com/group.html?gid=8029 Utrecht meeting and events team group].&lt;br /&gt;
 + Member of Cs working groups: [http://www.couchsurfing.com/group.html?gid=10128 Events &amp;amp; Outreach - Event Organizers] &amp;amp; [http://www.couchsurfing.com/group.html?gid=3727 couchsurfing Wiki]&lt;br /&gt;
 + Wikiholic; editing Wiki&#039;s of among others [[Utrecht]], [[Netherlands]] and [[Dutch ambassadors]]&lt;br /&gt;
 + Organisation of meetings in Utrecht&lt;br /&gt;
 + trying to keep track on Dutch groups and Ambassadors groups, posting there when necessary&lt;br /&gt;
 + Trying to keep contact with other communities in the Netherlands&lt;br /&gt;
 + Trying to go to meetings in and outside Utrecht when I can&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/SANNEBONGERS|Sanne Bongers]] &lt;br /&gt;
 + Moderator of [http://www.couchsurfing.com/group.html?gid=1348 Utrecht CS group] and [http://www.couchsurfing.com/group.html?gid=14572 Dutch lessons in Utrecht group].&lt;br /&gt;
 + Organiser of the Utrecht CS Dutch Lessons.&lt;br /&gt;
 + Organiser of several events in Utrecht.&lt;br /&gt;
 + Going to many meetings in Utrecht and trying to go to meetings in other communities.&lt;br /&gt;
 + Spreading the word, be a good host/surfer.&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/KIWIA|Tim Straatsma]] &lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
=====[[Den Haag]]=====&lt;br /&gt;
[[:cs:/LIN.|Linda]] &lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
=====[[Groningen]]=====&lt;br /&gt;
[[:cs:users/GPIKKIO|Giuseppe Cimo&#039;]]&lt;br /&gt;
 + Active Couchsurfer.&lt;br /&gt;
 + Moderator of the [http://www.couchsurfing.com/group.html?gid=4416 Groningen CS group].&lt;br /&gt;
 + Moderator of [http://www.couchsurfing.com/group.html?gid=12745 CS Groningen Organization group].&lt;br /&gt;
 + Moderator and active member of many groups.&lt;br /&gt;
 + Event organizer in [[Groningen]].&lt;br /&gt;
 + Editor of the [[Groningen]] CS Wiki page.&lt;br /&gt;
 + Member of the [http://www.couchsurfing.com/contact.html Contact Us Team].&lt;br /&gt;
 + Member of the [http://www.couchsurfing.com/group.html?gid=7043 Groups Management operators].&lt;br /&gt;
 + Member of the [http://www.couchsurfing.com/organization.html?gid=4401 Location Fixing Team].&lt;br /&gt;
 + Member of the [http://www.couchsurfing.com/group.html?gid=3581 New Member Welcome group].&lt;br /&gt;
 + Member of a number of CS Organization Working Groups.&lt;br /&gt;
 + ([http://www.couchsurfing.com/group.html?gid=6 Old]) translator of the CS site.&lt;br /&gt;
 + Mentor for new ambassadors and volunteers in the north Netherlands.&lt;br /&gt;
 + CS addicted :)&lt;br /&gt;
&lt;br /&gt;
=====[[Maastricht]]=====&lt;br /&gt;
[[:cs:/LEONAH|Leona Reuter]] &lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
=====[[Eindhoven]]=====&lt;br /&gt;
[[:cs:/KONL|Konstantin Youdenko]] &lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
=====[[Leiden]]=====&lt;br /&gt;
[[:cs:users/LINFORCER|Tommy Quist]]  &lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
=====[[Haarlem]]=====&lt;br /&gt;
[[:cs:users/COUCHISTA|Klaas]]  &lt;br /&gt;
 + moderate Haarlem group at http://www.couchsurfing.com/group.html?gid=6774&lt;br /&gt;
 + organise meetings such as http://www.couchsurfing.com/meetings.html?mid=9214&lt;br /&gt;
 + maintain CS Wiki page about Haarlem at http://wiki.couchsurfing.com/en/Haarlem&lt;br /&gt;
 + promote CS in my social network&lt;br /&gt;
&lt;br /&gt;
=====[[Delft]]=====&lt;br /&gt;
[[:cs:users/vontaks|Lukas Taks]]&lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
=====[[Dordrecht]]=====&lt;br /&gt;
[[:cs:users/REMUS86|Remco Matthias Kwint]]&lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
=====[[Oss]]=====&lt;br /&gt;
[[:cs:users/lourenssenm|Maikel Lourenssen]]&lt;br /&gt;
 +&lt;br /&gt;
&lt;br /&gt;
===Other Ambassadors===&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/onsplekkie|Maarten, Ilse + Lilou Duijvesteijn]] (De Lier) (Family)&lt;br /&gt;
 &lt;br /&gt;
[[:cs:users/CYDOREN|Cynthia Doren]] (Amsterdam) (Nomadic)&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/IPELLEBOER|Ineke Pelleboer]] (Oldelamer) (Nomadic)&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/SERENDIPITOUS|Serendipitous]] (Roger Thompson) (Schaijk) (Nomadic)&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/LAO|Laurence Carrier-Desjardins]] (The Hague) (Nomadic)&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/SUPERANDERSAO|Anderson Ferreira]] (Rotterdam) (Nomadic)&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/NAT-CHO|NAT-CHO]] (Amsterdam) (Nomadic)&lt;br /&gt;
&lt;br /&gt;
[[:cs:users/jeroenek|Jeroen Geerdink]] (Nomadic)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Ambassadors meetings==&lt;br /&gt;
&lt;br /&gt;
=== Calendar ===&lt;br /&gt;
&lt;br /&gt;
Ambassadors and other volunteers organize many meetings and happenings all around the country. Check the Dutch CS events on our [http://www.google.com/calendar/embed?src=couchsurfingnl%40gmail.com&amp;amp;ctz=Europe/Amsterdam Calendar]&lt;br /&gt;
&lt;br /&gt;
=== Minutes === &lt;br /&gt;
&lt;br /&gt;
Here you&#039;ll find reports of the meetings with the City and Country ambassadors in the Netherlands.&lt;br /&gt;
&lt;br /&gt;
[[Minutes 1st Dutch Ambassadors meetup]], march 15th 2008, Utrecht&lt;br /&gt;
&lt;br /&gt;
[[Minutes 2nd Dutch Ambassasors meetup]], june 14th 2008, Utrecht&lt;br /&gt;
&lt;br /&gt;
[[Minutes 3rd Dutch Ambassasors meetup]], september 6th 2008, Groningen&lt;br /&gt;
&lt;br /&gt;
[[Minutes 4rd Dutch Ambassasors meetup]], january 10th 2009, Oss&lt;br /&gt;
&lt;br /&gt;
[[Minutes 5th Dutch Ambassasors meetup]], september 27th 2009, Haarlem&lt;br /&gt;
&lt;br /&gt;
== Dutch Ambassador Welcome kit ==&lt;br /&gt;
&lt;br /&gt;
The [[Dutch Ambassador Welcome kit]] has usefull information for new ambassadors in the Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Things to do==&lt;br /&gt;
&lt;br /&gt;
[http://wiki.couchsurfing.com/en/Ambassadors#Tips_for_Ambassadors Tips for ambassadors]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wiki Netherlands&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The [[Netherlands|Dutch wiki page]] is in progress! Please feel free to add any useful information!&lt;br /&gt;
[[Category:CS Organization Netherlands]]&lt;br /&gt;
[[Category:Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Dutch_Ambassador_Welcome_kit&amp;diff=664</id>
		<title>Dutch Ambassador Welcome kit</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Dutch_Ambassador_Welcome_kit&amp;diff=664"/>
		<updated>2009-10-15T12:11:59Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Inspired by the Belgian new ambs kit   &lt;br /&gt;
&lt;br /&gt;
==Warm welcome==&lt;br /&gt;
&lt;br /&gt;
You reading this is good news! Everytime someone reads this [[Dutch Ambassador Welcome kit]] it means our active cs family is growing! From now on you’re an official cs Ambassador. In order to help you with your new tasks as an Ambassador this document contains heaps of helpful information.  Here  you’ll read what it entails to be an efficient cs Ambassador, how the [[Netherlands]] CS organisation works, and some tips on how to stay in the right shape! We advise to read it carefully and thoroughly.&lt;br /&gt;
&lt;br /&gt;
==What it entails be a CouchSurfing ambassador==&lt;br /&gt;
&lt;br /&gt;
Being an ambassador in the [[Netherlands]] should be a fun and interesting experience to be enjoyed. This document contains a the guidelines, but as most things in life it’s what you make of it yourself. &lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
First and foremost Ambassadors promote the values that embody the Couchsurfing Spirit. City Ambassadors are also the voice and ear to their local community, and source of information for all the members of their local community. &lt;br /&gt;
&lt;br /&gt;
===Responsibilities===&lt;br /&gt;
&lt;br /&gt;
Most City Ambassadors contribute at least 10 hours per month but this varies greatly from person to person. We want to make sure all Ambassadors love what they do. Please always feel free to ask for help, ask your other city ambassadors in the group or send a private mail to your country ambassador. &lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;role&#039;&#039;&#039; of the City Ambassadors is to be of service to CouchSurfing members and to be of service to the local community. Ambassadors are volunteers committed to helping others. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;As travellers, hosts, surfers, and volunteers, Ambassadors strive to&#039;&#039;&#039;&lt;br /&gt;
* Promote respect and tolerance for individuals and cultures &lt;br /&gt;
* Promote cultural diversity and awareness &lt;br /&gt;
* Promote equality, inclusiveness, and friendship &lt;br /&gt;
* Promote honesty and fairness &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In addition, in our role as volunteers Ambassadors strive to:&#039;&#039;&#039; &lt;br /&gt;
* Promote personal and professional integrity &lt;br /&gt;
* Promote the pursuit of excellence &lt;br /&gt;
* Promote teamwork &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ambassadors Code of Conduct&#039;&#039;&#039;&lt;br /&gt;
Our behaviour as travellers, guests, hosts, and volunteers is a direct reflection on CouchSurfing. Therefore Ambassadors will be held to the highest standards of personal and professional conduct. Ambassadors must agree to the [http://www.couchsurfing.com/amb_ethics.html code of conduct]&lt;br /&gt;
&lt;br /&gt;
==Duties City ambassador==&lt;br /&gt;
&lt;br /&gt;
There are four levels of ambassadorship: [http://www.couchsurfing.com/amb_levels.html City, Country, Global  and Nomadic]. The duties of city ambassadorship is defined below. The explanations of the other [http://www.couchsurfing.com/amb_levels.html levels of ambassadorship] can be found on [http://www.couchsurfing.com/amb_levels.html the couch surfing website]. If you have any questions feel free to contact another ambassador (country or other). &lt;br /&gt;
&lt;br /&gt;
It could be that your community is already active and has ambassador(s), in that case we recommend you to contact your fellow city Ambassadors and see where you can help out. &lt;br /&gt;
There’s a possibility that you might be the first ambassador of a city (check the [[Dutch Ambassadors ]]wiki). In that case we recommend you to contact a nearby fellow ambassador or an ambassador mentor and ask them any questions you have. They are more then willing to help you out. &lt;br /&gt;
&lt;br /&gt;
===Organise local events=== &lt;br /&gt;
Most active communities are organising meetings. This could be a set weekly meeting ([[Amsterdam]] Friday), ([[Rotterdam]] Tuesday and Saturday) or a monthly meeting ([[Utrecht]], [[Enschede]], [[Maastricht]], [[Amersfoort]] or [[Groningen]]) or just random meetings as in [[The Hague]]. &lt;br /&gt;
&lt;br /&gt;
There are many ways to set up a meeting. For tips and tricks check [http://www.couchsurfing.com/wiki/How_to_make_a_good_meeting how to make a good meeting page].&lt;br /&gt;
&lt;br /&gt;
=== Moderator of your City group ===&lt;br /&gt;
A new CS city amb should become moderator of his/her city group. This does not happen automatically. You kindly need to ask the moderators of your city group to make you co-moderator. Moderators can be your fellow city Ambassadors or it can be a normal moderator who once started the group. If they don´t add you to the group or you get a negative response send a message to [http://www.couchsurfing.com/contact.html Contact Us] and explain the situation. &lt;br /&gt;
&lt;br /&gt;
Your role as a moderator is firstly to provide visitors of the group a quick access to the ambassadors in your City. Secondly, City Ambassadors are responsible in keeping their local community alive, providing info and more. This includes defining group guidelines, managing/raising polls and establishing Google events calendars if required.&lt;br /&gt;
&lt;br /&gt;
=== Communication ===&lt;br /&gt;
There are many ways to communicate with your fellow active members. The idea is to build up or keep continuing a strong local community. It might therefore be essential to keep your fellow active members involved and informed about new events, meetings and other initiatives.  &lt;br /&gt;
&lt;br /&gt;
=== New member welcome ===&lt;br /&gt;
A good way for an ambassador to welcome new members in your community is by joining the [http://www.couchsurfing.com/group.html?gid=3581 new member welcome group]. Through the [http://www.couchsurfing.com/group.html?gid=3581 new member welcome group]you’re able to find out which new members have joined your community. To warmly welcome new members and show them what is happening in your community with a welcome message can be appropriate. &lt;br /&gt;
&lt;br /&gt;
Once you join the [http://www.couchsurfing.com/group.html?gid=3581 new member welcome group] you will receive extra tools on your profile to send out welcome messages.&lt;br /&gt;
&lt;br /&gt;
=== Visit other local meetings ===&lt;br /&gt;
You’re always welcome to visit any of the local meetings. May you be looking for some new ideas, want to get to know your fellow active members, please do not hesitate to visit one of the local meetings.  &lt;br /&gt;
&lt;br /&gt;
=== Participate in the Netherlands CS organisation === &lt;br /&gt;
Together with all the ambassadors we work on building this sustainable network, the Netherlands CS organisation. All ambassadors and active CS members who are interested are welcome to join. For more info on the Netherlands CS organisation check below.&lt;br /&gt;
&lt;br /&gt;
=== Ambassador groups ===&lt;br /&gt;
&lt;br /&gt;
As an ambassador you automatically become member of:&lt;br /&gt;
*[http://www.couchsurfing.com/group.html?gid=2125 Ambassador’s Public]&lt;br /&gt;
*[http://www.couchsurfing.com/group.html?gid=1668 Ambassadors Private]&lt;br /&gt;
*[http://www.couchsurfing.com/group.html?gid=4407 City Ambassadors (if you have become a city ambassador)]&lt;br /&gt;
*[http://www.couchsurfing.com/group.html?gid=4410 Nomadic Ambassadors (if you have become a Nomadic ambassador)]&lt;br /&gt;
&lt;br /&gt;
Feel free to explore the topics that are discussed in these groups. A good start are the flagged posts of the Ambassador’s Public and of Ambassador’s Private groups.&lt;br /&gt;
&lt;br /&gt;
=== Extra Features on CS website ===&lt;br /&gt;
Ambassadors get acces to some extra features on the CS website. &lt;br /&gt;
&lt;br /&gt;
*First, you get an extra [http://www.couchsurfing.com/ambassadors_home.html Amb tab] in your navigation. This amb page gives all the information about ambassadorship and other ambassadors in the world and includes the groups of your community. &lt;br /&gt;
*Second, you can check where recent sign ups heard about CS in the [http://www.couchsurfing.com/amb_where_hear.html where did recent sign ups hear about CS?] page. You also see this feature on CS profiles in the personal info.   &lt;br /&gt;
*Third, as an ambassador you now have extra possibilities with [http://www.couchsurfing.com/statistics.html the statistics]. As an amb you can check more specific regional statistics, per country. There is a selection box on the top of the page where you can select your country of choice (for instance, the Netherlands). &lt;br /&gt;
*Fourth, you can mark CS profiles as having an [http://www.couchsurfing.com/exotic_couches.html exotic couch]. When a CS member lives in a places which brings a special element to a CS experience you can mark his/her couch as [http://www.couchsurfing.com/exotic_couches.html exotic]. For instance when somebody lives in a boat or in a remote area in the nature this could be an [http://www.couchsurfing.com/exotic_couches.html exotic couch]. People who look for special CS experiences can look up these members. &lt;br /&gt;
&lt;br /&gt;
Explore the features and use them for you community.  &lt;br /&gt;
&lt;br /&gt;
== The Netherlands CS organisation ==&lt;br /&gt;
The Netherlands CS organisation team meets approximately once every three months. All the minutes of the Netherlands CS organisation you can find in the in the Dutch ambassadors wiki and in the Netherlands CS organisation wiki. Please read all the meeting minutes, they contain valuable information!!&lt;br /&gt;
&lt;br /&gt;
You’re automatically enrolled in this group after you have obtained your Ambassadors status. You’re more than welcome to participate in any of the upcoming meetings.&lt;br /&gt;
&lt;br /&gt;
In order to collaborate efficiently and effectively, the Netherlands CS organisation uses various communication tools: &lt;br /&gt;
* [http://www.couchsurfing.com/group.html?gid=5031 The Netherlands CS organisation group]: Discussions, remaining in touch and exchange of ideas. New ambassadors and active CS members will be added to the list &lt;br /&gt;
* [http://groups.google.com/group/couchsurfingnl?hl=en The Netherlands CS google group]:  All CS NL documents should be sent/posted here. New ambassadors and active CS members will be added to the list. &lt;br /&gt;
* The[[ Netherlands ]]wiki: It’s an open source of information and can be used and adapted even when the site is down. Feel free to add information (especially in the [[Dutch Ambassadors]]).&lt;br /&gt;
* [http://www.google.com/calendar/embed?src=couchsurfingnl%40gmail.com&amp;amp;ctz=Europe/Amsterdam The Netherlands CS google calendar]: All events happening in the Netherlands can be found in the google calender  &lt;br /&gt;
* Datum prikker: used for setting up new meetings&lt;br /&gt;
&lt;br /&gt;
=== Other Netherlands Ambassadors ===&lt;br /&gt;
There are Ambassadors in all regions of the Netherlands. The [[Dutch Ambassadors]] and information about the CS NL organisation meetings (minutes) can both be found in the [[Dutch Ambassadors ]]wiki. Once again, please read all the meeting minutes, they contain valuable information!!&lt;br /&gt;
&lt;br /&gt;
Everyone is encouraged to be on the lookout for people that would make a great ambassador or be valuable on a working group, and encourage them to apply or join!&lt;br /&gt;
&lt;br /&gt;
=== Ambassador mentor ===&lt;br /&gt;
&lt;br /&gt;
As a new ambassador we understand that you might still have questions after reading the Dutch ambassador welcome kit. To help you with any questions you might still have, there are 3 ambassador mentors. We divided the country up in North, Middle and South. Each ambassador mentor is a mentor to new ambassadors in his or her region. &lt;br /&gt;
&lt;br /&gt;
The regions are divided accordingly:&lt;br /&gt;
*North (Friesland/Groningen/Drenthe/Overijssel): 		[http://www.couchsurfing.com/people/gpikkio Giuseppe (GPIKKIO)]&lt;br /&gt;
*Middle (Noord-Holland/Zuid-Holland/Utrecht/Flevoland)		[http://www.couchsurfing.com/people/lizzie82ish Liza (LIZZIE82ISH)]&lt;br /&gt;
*South (Zeeland/Brabant/Limburg/Gelderland): 			[http://www.couchsurfing.com/people/lourenssenm Maikel (LOURENSSENM)]&lt;br /&gt;
&lt;br /&gt;
Feel free to contact them if you have any questions&lt;br /&gt;
&lt;br /&gt;
=== Tips for meet ups &amp;amp; activities === &lt;br /&gt;
I am sure you already have a great deal of experience in organising meetings and events. The possible fellow Ambs in your city will probably have a way of organising things. It would be good to contact them about their plans.  &lt;br /&gt;
&lt;br /&gt;
In the [http://www.couchsurfing.com/wiki/How_to_make_a_good_meeting how to make a good meeting page] you can find extra tips and tricks on organising meetings and events.   &lt;br /&gt;
&lt;br /&gt;
CS has business cards you can customize and have printed or print yourself. This is a great help while promoting CouchSurfing. Simply [http://www.couchsurfing.com/business_cards.html download a file from here] and print out on your own.&lt;br /&gt;
&lt;br /&gt;
==Dealing with security issues and problem resolution procedures, etc.==&lt;br /&gt;
&lt;br /&gt;
VERY IMPORTANT before posting ANYTHING linking to a member read this one: [http://www.couchsurfing.com/group_read.html?gid=1668&amp;amp;post=1278659 Reminder about user privacy]&lt;br /&gt;
&lt;br /&gt;
Basically the approach to any problems you might have would be to either directly contact your Country Ambassador or send a message to a member of the Leadership Team using the standard [http://www.couchsurfing.com/contact.html Contact Us form].&lt;br /&gt;
&lt;br /&gt;
DO NOT USE THE GROUPS!!! &lt;br /&gt;
&lt;br /&gt;
Most often a member of the Contact Team will then advise you of the next steps to take or of the answer you need. Familiarise yourself with the contents of the [http://www.couchsurfing.com/contact.html Contact Us form] including familiarity with the range of items in the pull down menu labled Communication Type. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For problems (you have) with another member of CouchSurfing you can directly contact he Member Dispute Safety Team (MDST) by selecting &amp;quot;Problem with another member&amp;quot; in the [http://www.couchsurfing.com/contact.html Contact Us form].&lt;br /&gt;
&lt;br /&gt;
=== Dealing with crimes such as: theft, abuse, and/or any forms of harassment. === &lt;br /&gt;
What are the official procedures, whom do we contact, and in what order? &lt;br /&gt;
Be prepared! Read the [http://www.couchsurfing.com/tips.html Tips for Surfers and Hosts]. &lt;br /&gt;
* If necessary contact the local police / ambulance USE YOUR COMMON SENSE!! &lt;br /&gt;
* If other couchsurfers are involved, contact the Safety Administrator through the [http://www.couchsurfing.com/contact.html Contact Us form]. Tell them as many details as possible about your experience. CouchSurfing will investigate and determine the best course of action. If necessary leave a negative reference. &lt;br /&gt;
* Dealing with Dating requests: see [http://wiki.couchsurfing.com/en/Handling_dating_requests Handling Dating Requests]&lt;br /&gt;
&lt;br /&gt;
== Useful Links ==&lt;br /&gt;
:[[Dutch Ambassador Welcome kit]] (this Document)&lt;br /&gt;
: [[Dutch Ambassadors ]]wiki&lt;br /&gt;
: [[Netherlands ]]wiki&lt;br /&gt;
:[http://www.couchsurfing.com/group.html?gid=5031 The Netherlands CS organisation group]&lt;br /&gt;
:[http://www.couchsurfing.com/amb_levels.html The Levels of ambassadorship]&lt;br /&gt;
:[http://www.couchsurfing.com/group.html?gid=3581 New member welcome group]&lt;br /&gt;
:[http://www.couchsurfing.com/contact.html Contact Us form]&lt;br /&gt;
:[http://www.couchsurfing.com/wiki/Answers_to_some_common_Contact_Us_Questions Frequently Asked Questions]&lt;br /&gt;
:[http://groups.google.com/group/couchsurfingnl?hl=en CS NL google group]&lt;br /&gt;
:[http://www.google.com/calendar/embed?src=couchsurfingnl%40gmail.com&amp;amp;ctz=Europe/Amsterdam CS NL google calendar]&lt;br /&gt;
&lt;br /&gt;
== Don’t worry be happy ==&lt;br /&gt;
Being an Ambassador can be a bit overwhelming. It’s really important that you have as much fun as possible. Hereby some small remarks on how to avoid stress as an ambassador:&lt;br /&gt;
* Do what you love. Volunteering is meant to be fun. If greeting turns you on, greet. If you love to host, host. If you enjoy taking people out and about, do that! Whatever floats your boat: every contribution counts! &lt;br /&gt;
* Recharge your batteries. If you start feeling drained, take a break. &lt;br /&gt;
* Network. Share ideas, thoughts and frustrations with other CSers you get along with. &lt;br /&gt;
* Portion Control. Basically, don&#039;t bite of more than you can chew. You might get a nasty case of indigestion! &lt;br /&gt;
* Participate. Join the discussions and make your voice heard. &lt;br /&gt;
&lt;br /&gt;
= Good luck!= &lt;br /&gt;
We wish you all the best. We’re a team all together so if you have any questions please don’t hesitate to contact one of us. We hope to see you around! The Netherlands is smaller then you think!&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organization Netherlands]]&lt;br /&gt;
[[Category:Netherlands]]&lt;br /&gt;
[[Category:Welcome kit]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Minutes_1st_Dutch_Ambassadors_meetup&amp;diff=663</id>
		<title>Minutes 1st Dutch Ambassadors meetup</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Minutes_1st_Dutch_Ambassadors_meetup&amp;diff=663"/>
		<updated>2009-10-15T12:11:14Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;1st meetup of [[CS_Organisation_Netherlands]]&lt;br /&gt;
&lt;br /&gt;
Present:&lt;br /&gt;
Henri, Aldo, Paul, Pieter, Harold, Rose, Ramon, Liza, Jasper, Guiseppe, Esly, Maikel.&lt;br /&gt;
&lt;br /&gt;
MEDIA&lt;br /&gt;
There is a need for guidelines, what can we tell to the media. Which image do we want to spread? Some people would love some words (in Dutch!) which we can use in our media contacts. Maybe we should have one person in charge for media issues? Some people have the experience that whatever you tell, the media will end up with focussing on a free place to sleep. It can help to point to couchsurfing as a trend. But in the end, it looks like that members are not very much affected by the news. Many members who sign in during a media hype will not get active. It looks like the system is filtering itself!&lt;br /&gt;
&lt;br /&gt;
SAFETY&lt;br /&gt;
This is an important issue for many people. Ambassadors want to protect the members. How can we avoid that people have more profiles? The safety team can check this. There is always a (automatic) check before people can sign in. and, if someone makes a report, there can be a new (manual) check.&lt;br /&gt;
If someone reports another member to the police, he or she will be banned (the victim should send the report of the police, as ambassador you can only support him/her by doing so, you can not report an abuser to the safety team). It turns out that in real life, the community itself also deals with ‘abusers’. You, as an ambassador, can always warn people to be careful.&lt;br /&gt;
There are still people working on a kind of Black List, but it is not clear if and when this will be implemented.&lt;br /&gt;
One of the changes made recently is that edited references do not get automatically back on top. This makes it more difficult for members with a bad reference to ask their friends to bring the negative comment down by editing their references.&lt;br /&gt;
The most important safety check members can do by themselves is the verification check. If someone is verified, there is not a big chance that people are not trustworthy. Recent research concluded this as well. Vouching can also say something about the person, but is much less reliable.&lt;br /&gt;
Only country ambs can see hidden profiles. In case you have doubts about a specific person (with a hidden profile for example), you can contact Aldo about safety issues with this member. At the moment, there are no suspected members living in the Netherlands.&lt;br /&gt;
&lt;br /&gt;
MEETINGS&lt;br /&gt;
We will make a list of big national meetings. Maikel will create a calendar for Dutch events. About monthly meetings, on the one hand it would be nice to choose different days in different cities. On the other hand, it seems not very likely that people from Den Haag and Groningen will visit each other (small scale) monthly meetings.&lt;br /&gt;
Upcoming big events;&lt;br /&gt;
- 2-4 Gig Swapping (Utrecht)&lt;br /&gt;
- Queensday. Problem is to find enough hosts in Amsterdam. Organisation has no obligation to find hosts, you can promote people to look for hosts outside Amsterdam. Discussion will be continued online.&lt;br /&gt;
- 21-6 Midsummer Night in Utrecht&lt;br /&gt;
- Sinterklaas (Rotterdam)&lt;br /&gt;
We can extend this by an online discussion!&lt;br /&gt;
&lt;br /&gt;
WIKI&lt;br /&gt;
Jasper created a wiki page about Utrecht. He will coordinate other pages for the Netherlands as well. But he needs input from others!&lt;br /&gt;
&lt;br /&gt;
CS ZONES&lt;br /&gt;
Paul and Aldo present CS Zones. This will be pages about places, maintained by ambassadors. It is very premature at the moment, but it looks very cool!&lt;br /&gt;
&lt;br /&gt;
FLAG / STATUS&lt;br /&gt;
Does this flag on your profile really mean something? It makes you visible. People can turn easily to ambassadors with questions and remarks. He or she can also connect active people in order to get things organised. (But being an ambassador is not necessary for this!). Ambassadors are mainly there because some structure is needed.&lt;br /&gt;
&lt;br /&gt;
NEXT TIME&lt;br /&gt;
Next ambassadors meeting will also take place in Utrecht. We will set a date (after Queensday) later. Liza and Jasper will host us in their new house. For this meeting, we should also invite other ambassadors, make an agenda and we prefer a calmer place (like a house!). It might be a good idea to have another meeting about the Queensday Meeting. But this can also be online… After the next meeting in Utrecht, we can go on tour! So organise a weekend in Groningen, Maastricht, Enschede and even Oss!&lt;br /&gt;
&lt;br /&gt;
Points to be discussed next time:&lt;br /&gt;
- Ambassadors communication and organisation&lt;br /&gt;
- Goodies&lt;br /&gt;
- Real life CS Promotion&lt;br /&gt;
- Media Contacts&lt;br /&gt;
- Big meetings and matching regular meetings.&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organization Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Minutes_2nd_Dutch_Ambassasors_meetup&amp;diff=662</id>
		<title>Minutes 2nd Dutch Ambassasors meetup</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Minutes_2nd_Dutch_Ambassasors_meetup&amp;diff=662"/>
		<updated>2009-10-15T12:11:01Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;2st meetup of the [[CS_Organisation_Netherlands]]&lt;br /&gt;
&lt;br /&gt;
location: J &amp;amp; L&#039;s crib (Utrecht)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Present&#039;&#039;&#039;: Giuseppe (city Ambassador Groningen), Liza (city Ambassador Utrecht), Jasper (city Ambassador Utrecht), Maikel (active member), Kim (Leiden representative), Menno (Amsterdam representative), Martine (country ambassador Belgium), Chris (city ambassador Aachen, Germany), Aldo (Global ambassador).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Absent with notification&#039;&#039;&#039;: Harold, Rose, Ramon, Esly, Henri, Tim&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Absent without notification&#039;&#039;&#039;: Shilp, Klaas, Konstantin, Sannie, JP1978, Joris, Paul, Martiniman, Eleanor.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Welcome to new ambassadors==&lt;br /&gt;
Everyone told why they became active, what they are active with and what working groups they are involved in&lt;br /&gt;
&lt;br /&gt;
==Queensday==&lt;br /&gt;
&lt;br /&gt;
Important people are missing for a good evaluation.&lt;br /&gt;
&lt;br /&gt;
some short observations:&lt;br /&gt;
&lt;br /&gt;
- We started too late&lt;br /&gt;
&lt;br /&gt;
- To the outside the list of sub-event looked very chaotic&lt;br /&gt;
&lt;br /&gt;
- We were lacking a big central event&lt;br /&gt;
&lt;br /&gt;
- There were too many things at the same time&lt;br /&gt;
&lt;br /&gt;
- In general we were very good at brainstorming and coming up with a lot of submeetings but lacked the ability to focus on a short list of events.&lt;br /&gt;
&lt;br /&gt;
==Mission and goals==&lt;br /&gt;
&lt;br /&gt;
- Get to know each other&lt;br /&gt;
&lt;br /&gt;
- Organise things together&lt;br /&gt;
&lt;br /&gt;
- Help to get travellers in the Netherlands off the beaten track and to put the Netherlands in a broader perspective&lt;br /&gt;
&lt;br /&gt;
- Give a framework for new ambassadors with information, advice, help on a local job and answers to questions&lt;br /&gt;
&lt;br /&gt;
- Motivate each other to get a momentum&lt;br /&gt;
&lt;br /&gt;
- Reaching out abroad&lt;br /&gt;
&lt;br /&gt;
- Help finding solutions for problems together&lt;br /&gt;
&lt;br /&gt;
- Finding creative ways to get new members active&lt;br /&gt;
&lt;br /&gt;
==Ways to reach our mission and goals==&lt;br /&gt;
&lt;br /&gt;
- mentorship (new ambassadors get help from an experienced ambassador)&lt;br /&gt;
&lt;br /&gt;
- Regional coordination (west / south / north)&lt;br /&gt;
&lt;br /&gt;
- Coordination for &#039;out of border activities&#039;.&lt;br /&gt;
&lt;br /&gt;
- Recruiting new ambassadors&lt;br /&gt;
&lt;br /&gt;
- Making activities of the beaten track&lt;br /&gt;
&lt;br /&gt;
Who: will be discussed online.&lt;br /&gt;
&lt;br /&gt;
==Intern organisation==&lt;br /&gt;
&lt;br /&gt;
How do we organise ourselves?&lt;br /&gt;
&lt;br /&gt;
- Rotating locations&lt;br /&gt;
&lt;br /&gt;
- The people from the host location will present theirselves and will arrange minutes&lt;br /&gt;
&lt;br /&gt;
(The next location will be [[Groningen]])&lt;br /&gt;
&lt;br /&gt;
- in every meeting there should be time for a brainstorm about other meetings like we did today&lt;br /&gt;
&lt;br /&gt;
==Inactive ambassadors==&lt;br /&gt;
&lt;br /&gt;
Henri should get into contact with inactive ambassadors to find out if they are really inactive and if so if the want to stay ambassador. Possible inactive ambassadors are Martiniman (Eindhoven), Joris (Amsterdam) and Eleanor (Rotterdam).&lt;br /&gt;
&lt;br /&gt;
Henri should invite all nomadic ambassadors within the Netherlands into the Netherlands organisation group and should ask if they want to be more involved. &lt;br /&gt;
&lt;br /&gt;
==European coordination==&lt;br /&gt;
&lt;br /&gt;
- google-calanders can be usefull for internal coordination, not for reaching out abroad.&lt;br /&gt;
&lt;br /&gt;
- It is good to have 1 or 2 representatives from neighbouring countries at our meetings.&lt;br /&gt;
&lt;br /&gt;
- A meeting of country ambassadors in the North-west of Europe might be usefull.&lt;br /&gt;
&lt;br /&gt;
- A meeting of ambassadors near each others border might be usefull.&lt;br /&gt;
&lt;br /&gt;
- A good way of keeping track of each other is joining eachothers groups. Most of us don&#039;t want to interfere with discussions in other peoples groups (allthough nobody seems to mind if that would happen in their own group).&lt;br /&gt;
&lt;br /&gt;
==Ambassadors in conflict==&lt;br /&gt;
&lt;br /&gt;
how do deal with questions about negative references:&lt;br /&gt;
&lt;br /&gt;
- There is a group about support on writing references, it could be usefull to refer people to that group&lt;br /&gt;
&lt;br /&gt;
- In doubt always ask to contact the safety team.&lt;br /&gt;
&lt;br /&gt;
- On a negative reference, always be short and factual, not emotional.&lt;br /&gt;
&lt;br /&gt;
==Business cards==&lt;br /&gt;
&lt;br /&gt;
Several people seem interested in them. We will check in our local groups if other members are interested so we could order a lot at the same time on national scale.&lt;br /&gt;
&lt;br /&gt;
==Fundraising==&lt;br /&gt;
&lt;br /&gt;
There are diffent opions on this subject. Important is always to be open about what you use the money for and to use the money only for specific perposes so not for something general.&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organization Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Minutes_3rd_Dutch_Ambassasors_meetup&amp;diff=661</id>
		<title>Minutes 3rd Dutch Ambassasors meetup</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Minutes_3rd_Dutch_Ambassasors_meetup&amp;diff=661"/>
		<updated>2009-10-15T12:10:38Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;3rd meetup of the [[CS_Organisation_Netherlands]], Saturday 6th of September, Groningen&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Attendees: Giuseppe (host and chair, Groningen), Liza (Utrecht), Chris (Aachen), Gerard (Rotterdam and surrounding), Maikel (Oss), Ramon (Amsterdam), Henri (country amb), Rose (country amb), Aldo (admin), Paul (Rotterdam), Tommy (Leiden), Menno (Amsterdam), Esly (minutes, Enschede) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
·         Please fill in the Dutch Ambassadors wiki with the tasks you are doing or would like to do. If you have problems with the wiki, please contact Jasper. He can help you! http://wiki.couchsurfing.com/en/Dutch_Ambassadors&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Already discussed and to be finalised=&lt;br /&gt;
&lt;br /&gt;
·         At the last meeting, we decided that new ambassadors might need some support. Ramon sends some information to new ambassadors now. Henri and Rose will write some kind of tool kit to help the newbies to get to know our group and help them to get active as an ambassador. Also, it is decided that we will introduce some ‘buddies’ for new ambassadors. Giuseppe (for the northern part), Liza (for the middle) and Maikel (for the south) will be the first persons for new ambassadors to go to. What does of course not mean that others are not allowed to help or motivate them!&lt;br /&gt;
&lt;br /&gt;
·         We should try to activate inactive ambassadors. In Australia they send a very nice message to inactive ambassadors to find out what they are doing. Henri and Rose will send a reminder to our inactive colleagues. If you think an ambassador is inactive, please write to Henri or Rose so they can send that person a message. &lt;br /&gt;
&lt;br /&gt;
Aldo has a lot to say about this topic. If an ambassador is not coming to the meeting, it does not mean he or she is an inactive ambassador. Country ambassadors should have an idea who of the not-active group members, are active in their local community though. If ambassadors are inactive in both the ambassador groups, and in their local community, we can write that the ambassador team in CouchSurfing to ask to have a look at this person and see whether he or she is the right person to be an ambassador. We can even set some rules of what we think an ambassador should do. If a person doesn’t meet those ‘rules’ we can ask the management team to take them out. In the next months, the ambassadors will become a focus point for the CouchSurfing organisation. So it might be that some standards or rules for ambassadors will change.&lt;br /&gt;
&lt;br /&gt;
To keep people up to date about what’s going on in the Netherlands, we might think about making some kind of newsletter in which every ambassador can write a bit about the activities in his/her city.&lt;br /&gt;
&lt;br /&gt;
·         Regarding the emergency couchlist. Some of those lists offer people an emergency couch, others only advice people. Aldo knows the system in CouchSurfing will change on this topic, so people might still be able to find their host. Also, the site is almost always up, so you can doubt how necessary it is. We decided to wait for the improvements on the site and then have a further look at it.&lt;br /&gt;
&lt;br /&gt;
·         Paul and Aldo give us an update about CS Zones and City Surfing Pages. There will be two different things implemented, first CS Zones, which is really one specific location where CouchSurfers meet or get together regularly. The second is City Surfing Pages. Those are under construction, but will give information about a city. The first page will be a kind of magazine where you can post news about coming meetings, pictures of passed ones and so on. The other pages will become more static. At the next meeting, Paul hopes to be able to show us some examples. &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Netherlands Group Coordination=&lt;br /&gt;
&lt;br /&gt;
·         Considering the Dutch CS-groups, we decided to base the structure on provinces. Giuseppe will try to make a clickable map to put on the Netherlands main group page, so that people can immediately click to the region they are looking for. &lt;br /&gt;
&lt;br /&gt;
Inactive groups will be deleted (after talking to the moderator about it), double ones can be put together. A moderator should mainly literally moderate. He or she can also welcome new group members, but this should depend on the group and the person joining. Just use your common sense to decide whether you think it is needed or not! &lt;br /&gt;
&lt;br /&gt;
Ramon will continue this job. If you have suggestions or ideas, please contact him. &lt;br /&gt;
&lt;br /&gt;
·         Giuseppe will write some manual for our group communication. &lt;br /&gt;
&lt;br /&gt;
§         For discussions, use the CS Group&lt;br /&gt;
&lt;br /&gt;
§         For amb-meetings, CS Events, if people are added we can also use that to communicate with the group.&lt;br /&gt;
&lt;br /&gt;
§         For documents, use the Google group&lt;br /&gt;
&lt;br /&gt;
§         For things that are also open for outsiders, use the wiki pages&lt;br /&gt;
&lt;br /&gt;
If new members are added, the other members of the group should be informed about that. To prevent a too big amount of members of the organisation group, it seems to make sense to take only foreigners in who are related to the Netherlands (like Dutch Nomadic Ambassadors abroad, or people like Chris who work a lot together with Dutch cities), in general, one representative of our neighbouring countries (next to the ones we have very direct connections with), should be enough. &lt;br /&gt;
&lt;br /&gt;
·         It is possible to get a third country ambassador. Giuseppe says that being active in CouchSurfing and getting an idea of the international situation can also be done in some workgroups. &lt;br /&gt;
&lt;br /&gt;
Some different tasks for country ambassadors are mentioned. &lt;br /&gt;
&lt;br /&gt;
§         They should have an overview of the city ambassadors and take care about them&lt;br /&gt;
&lt;br /&gt;
§         They are the link between the Dutch organisation and the outside world. &lt;br /&gt;
&lt;br /&gt;
§         They have a motivating role&lt;br /&gt;
&lt;br /&gt;
§         It would be nice if the country ambassadors can develop some vision where we want to go to with this organisation group. &lt;br /&gt;
&lt;br /&gt;
Rose says that since she applied, so many things changed in Amsterdam. Her help is needed in Amsterdam for now. Paul advices to ask active members to help, also without a flag.&lt;br /&gt;
&lt;br /&gt;
Aldo differentiates three kind of jobs for country ambs. The first one is mainly online, in taking part in group discussions, promote and represent the Netherlands in international groups, greeting people and so on. These jobs seem to suite Rose. The second part is meeting people, show your face, promote CouchSurfing on meetings and so on. This is what Henri is good at. The thing that is missing is someone who has a broader overview, who can take care about the organisational part and brings up things among ambassadors.&lt;br /&gt;
&lt;br /&gt;
Both Liza and Giuseppe thought about applying as a third country ambassador. Giuseppe has his doubts for being not Dutch and is very likely to leave the country in about two years. Everybody, including Giuseppe, will be very happy if Liza will apply for the third country ambassador position. The situation in Utrecht is very stable with Jasper as active city ambassador. Liza will think about it and inform us before the 9th of September, the next deadline for country ambassador applications. If she will apply, Giuseppe can always help if things need to be done.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Event organisation=&lt;br /&gt;
&lt;br /&gt;
·         Due to a lack of time, we will discuss this further online. Please write some words about your experiences with events and organising them in the CS group. In this way, we can all learn from each other. &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Next Dutch ambassadors meeting will be held in Rotterdam, in the last weekend of November. This weekend, the big international Sinterklaas Meeting will also take place in this city. Paul will organise our meeting, more details will follow by then!&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Decisions taken:=&lt;br /&gt;
&lt;br /&gt;
1.       Henri and Rose will develop a toolkit for new ambassadors&lt;br /&gt;
&lt;br /&gt;
2.       Giuseppe, Liza and Maikel can act as buddies for new ambassadors&lt;br /&gt;
&lt;br /&gt;
3.       Henri and Rose will send a reminder to inactive ambassadors&lt;br /&gt;
&lt;br /&gt;
4.       Everyone can/should write Henri or Rose if you think an ambassador is inactive&lt;br /&gt;
&lt;br /&gt;
5.       Regarding an emergency couch list, we will wait till the system on the main page is improved&lt;br /&gt;
&lt;br /&gt;
6.       The Dutch CS Groups will get based on provinces&lt;br /&gt;
&lt;br /&gt;
7.       Giuseppe will try to develop a clickable map for the Netherlands Group page&lt;br /&gt;
&lt;br /&gt;
8.       Giuseppe will write a manual about communication in our group&lt;br /&gt;
&lt;br /&gt;
9.       If new members are added to the group, we will get informed about that&lt;br /&gt;
&lt;br /&gt;
10.   Liza will think about applying as a third country ambassador&lt;br /&gt;
&lt;br /&gt;
11.   Next meeting will be in Rotterdam, in the weekend of the Sinterklaas meeting&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organization Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Minutes_4rd_Dutch_Ambassasors_meetup&amp;diff=660</id>
		<title>Minutes 4rd Dutch Ambassasors meetup</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Minutes_4rd_Dutch_Ambassasors_meetup&amp;diff=660"/>
		<updated>2009-10-15T12:10:22Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Minutes of 4th meetup of the [[CS_Organisation_Netherlands]], Oss January 10th 2009&lt;br /&gt;
&lt;br /&gt;
Present: Liza (Country amb), Maikel (Oss), Willem (Rotterdam), Giuseppe (Groningen), Jasper (Utrecht, not.), Timz (nomadic, Utrecht), Sanne (Utrecht), Klaas (Haarlem), Tim (Utrecht), Henri (country amb).&lt;br /&gt;
&lt;br /&gt;
absent with notice: Rose, Marten, Jeroen, Menno, Esly, Tommy, Gerard, Paul, Aldo, Rossi&lt;br /&gt;
&lt;br /&gt;
==1. Minutes last meeting: ==&lt;br /&gt;
decisions taken:&lt;br /&gt;
– click able map: not possible&lt;br /&gt;
– communication manual: better as a flagged post, it changes quite often&lt;br /&gt;
&lt;br /&gt;
==2. Google calender==&lt;br /&gt;
We will not promote the google calendar, it is better to centralize information, it is better to focus information in the events page. Liza will post to the brainstorming group that you can be alarmed if there is already a meeting your region if you make a meeting for a certain day. &lt;br /&gt;
&lt;br /&gt;
==3. Working groups==&lt;br /&gt;
There doesn&#039;t seem to be a need for it yet. If there is a subject that needs a workgroup we can start one for it. &lt;br /&gt;
&lt;br /&gt;
==4. Editing groups==&lt;br /&gt;
No action is taken so far. Giuseppe has the tools to edit groups. Giuseppe can start according to the decisions taken on the previous meeting. Any &#039;tricky&#039; cases can be discussed among the taskforce about this topic (Giuseppe, Ramon, Liza, Tommy, Jasper).&lt;br /&gt;
&lt;br /&gt;
==5. Nomadic ambassadors==&lt;br /&gt;
The country ambassadors sent out an email to the Dutch nomadic ambassadors what their plans were. This could have been more carefull. Rose still have to report the answers.&lt;br /&gt;
A lot of nomadic ambassadors in the Netherlands seem to be having a quite steady base in the Netherlands, and could as well be city ambassadors. We try to get into contact with nomadic ambassadors (like city ambassadors), we should do this as decentralized as possible. &lt;br /&gt;
&lt;br /&gt;
==6. Posting in each other groups. ==&lt;br /&gt;
Best is posting just in the city and country group. In other city groups maybe there can be postings about traveling there (so there is a direct link). Meetings set up to be very big are of course a exception, there&#039;s no problem of posting them in other groups. About other cases you can always contact moderators of a group.&lt;br /&gt;
If you see people signed in on meetings who have to travel there (ig on big events), it can be smars to post to people to suggest to travel there.&lt;br /&gt;
For repeating of messages, please add new information.&lt;br /&gt;
&lt;br /&gt;
==7. Money==&lt;br /&gt;
Investigation about what a legal entity requires can be very welcome, but there is a big fear that creating a legal entity can create much more fuzz than we want to and it doesn&#039;t seem strictly necessary. Liza will post about this in an ambassador group. &lt;br /&gt;
&lt;br /&gt;
==8. Wiki==&lt;br /&gt;
Please add info about yourself on the wiki, if you don&#039;t know how to use the wiki, ask Jasper. &lt;br /&gt;
&lt;br /&gt;
==9. Welcome kit==&lt;br /&gt;
Giuseppe made some corrections, Liza and Henri will check them out. Safety issues will be delt with by contact us, not by the country ambassadors. &lt;br /&gt;
&lt;br /&gt;
==10. Queensday==&lt;br /&gt;
Best way would be to focus on several smaller meetings (the box of chocolate strategy) but connect them all by making them all start with the word &#039;Queensday-week&#039;.&lt;br /&gt;
The rest is up to the organizers of the several events. &lt;br /&gt;
 &lt;br /&gt;
==11. New members==&lt;br /&gt;
be carefull of facebook.&lt;br /&gt;
&lt;br /&gt;
==12. Rondvraag==&lt;br /&gt;
We would love to hear more about what country ambassadors are doing, Rose is very absent in the ambassadors group.&lt;br /&gt;
There is just a small group of people active. Meeting in person has an extra value. We try to keep the meetings as open as possible for new people, also inviting active people without a flag. &lt;br /&gt;
&lt;br /&gt;
* next meeting: in the beginning of April in a more informal setting&lt;br /&gt;
&lt;br /&gt;
==13. Meeting Annet==&lt;br /&gt;
&lt;br /&gt;
==action list:==&lt;br /&gt;
&lt;br /&gt;
everybody: (if needed) add you info in the ambassadors wiki page&lt;br /&gt;
&lt;br /&gt;
Liza: post in the brainstormgroup about double meetings&lt;br /&gt;
&lt;br /&gt;
Rose: report the answers to the messages to nomadic ambassadors.&lt;br /&gt;
everybody: get into contact with nomadic ambassadors in your region (if you don&#039;t know them yet), if an ambassador appears to be inactive, get into contact about it with a country ambassador.&lt;br /&gt;
&lt;br /&gt;
Liza and Henri: update the welcome kit.&lt;br /&gt;
&lt;br /&gt;
Liza: post about money in ambassador groups. &lt;br /&gt;
&lt;br /&gt;
All country ambassadors: inform on progresses made.&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organization Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Minutes_5th_Dutch_Ambassasors_meetup&amp;diff=659</id>
		<title>Minutes 5th Dutch Ambassasors meetup</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Minutes_5th_Dutch_Ambassasors_meetup&amp;diff=659"/>
		<updated>2009-10-15T12:09:51Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Minutes Amb-meeting Haarlem zo 27-9-2009&lt;br /&gt;
&lt;br /&gt;
5th meetup of the [[CS_Organisation_Netherlands]]&lt;br /&gt;
&lt;br /&gt;
===Present===&lt;br /&gt;
Menno (city amb. Amsterdam), Klaas (city amb Haarlem), Gius (city amb Groningen), Henry (country amb), Maikel (city amb. Oss), Linda (city amb Den Haag), Jelly (city amb Amsterdam), Liza (country amb, chair), Floris (Wognum), Sanne (city amb Utrecht), Pieter (Leiden), Gerard  (Bergschenhoek, Rotterdam region), Sytse (Arnhem), Jasper (city amb Utrecht) &lt;br /&gt;
&lt;br /&gt;
===Absent with notice===&lt;br /&gt;
Konstantin (city amb Eindhoven), Rose (country amb), William (Breda)&lt;br /&gt;
&lt;br /&gt;
==1. Introducing each other==&lt;br /&gt;
a short introduction round&lt;br /&gt;
&lt;br /&gt;
==2. CS newsletter==&lt;br /&gt;
&lt;br /&gt;
Henri: had contact with Meredith from CS homebase in SF a while ago about a plan to have a newsstream on the website. It is a  pilot, other countries are already involved.  &lt;br /&gt;
&lt;br /&gt;
We want to be involved, we were working on a newsletter anyway. We made a group of people who will work the plans out. &lt;br /&gt;
&lt;br /&gt;
===Tasks=== &lt;br /&gt;
editing, scouting (finding people and info), journalists  &lt;br /&gt;
&lt;br /&gt;
===Interested===&lt;br /&gt;
Sanne, Maikel, Jasper, Sytse, Linda &amp;amp; Floris&lt;br /&gt;
&lt;br /&gt;
==3. CS NL Foundation==&lt;br /&gt;
&lt;br /&gt;
Floris was thinking about having a foundation. He made a list of benefits and downsides on which we added some things.&lt;br /&gt;
&lt;br /&gt;
===benefits===&lt;br /&gt;
* looks more professional&lt;br /&gt;
* possibility for sponsorship&lt;br /&gt;
* possiblity for referencing for jobless people who want to volunteer&lt;br /&gt;
* contact with local gouvernments might be easier&lt;br /&gt;
* improves legal status (responsiblities)&lt;br /&gt;
* possiblity to get insurance&lt;br /&gt;
&lt;br /&gt;
===Downsides===&lt;br /&gt;
* extra costs of administration (how much? tens or hundreds or euro&#039;s?)&lt;br /&gt;
* boring work&lt;br /&gt;
* more responsiblities&lt;br /&gt;
* might look overprofessional which might not fit with the general atmosphere on couchsurfing&lt;br /&gt;
* couchsurfing international doesn&#039;t back it up (or is this a benefit?)&lt;br /&gt;
&lt;br /&gt;
===other ideas===&lt;br /&gt;
&lt;br /&gt;
* Would it be possible to do it on a European base? &lt;br /&gt;
* We decide to do more research&lt;br /&gt;
* Floris, Linda &amp;amp; Henri will do this. &lt;br /&gt;
* Next meeting there will  be a report about this.&lt;br /&gt;
&lt;br /&gt;
==4. New ambassadors / application procedure==&lt;br /&gt;
&lt;br /&gt;
Liza made a presentation about the procedure that just finished, you can find it on the [http://groups.google.com/group/couchsurfingnl CS NL google group]&lt;br /&gt;
&lt;br /&gt;
The future of this procedure is unclear &lt;br /&gt;
&lt;br /&gt;
When the new round starts Liza will notify people in active cities without an ambassador. &lt;br /&gt;
&lt;br /&gt;
==5. CS NL outside of Randstad &amp;amp; Bigger cities==&lt;br /&gt;
&lt;br /&gt;
Jasper: Couchsurfing is slowly spreading outside of the Randstad, but is still mainly focussed on  cities. Do people agree with this problem and know a way to solve it? Answer to both questions seem to be yes. We also agree that it is a task of us to help travellers to get out of the beaten tracks. &lt;br /&gt;
&lt;br /&gt;
Menno, but also others, already have plans for meetings in the countryside&lt;br /&gt;
&lt;br /&gt;
The news letter might help extra to promote lesser known places.  &lt;br /&gt;
&lt;br /&gt;
It also might help to drag people from smaller places to big cities, when people in the big cities  know them it is easier to visit them. &lt;br /&gt;
&lt;br /&gt;
Idea: organise several (like every 3 months) &#039;invasions&#039; to small places and see how that works.  &lt;br /&gt;
&lt;br /&gt;
We will start a topic about this (countryside invasions) on the CS NL group, several people will come with ideas and are free to organise them. &lt;br /&gt;
&lt;br /&gt;
==6. Groups reorganisation==&lt;br /&gt;
&lt;br /&gt;
Reorganisation is almost finished. &lt;br /&gt;
The &#039;Holland&#039;-group will be put in a subgroup &#039;archived subgroups of the  Netherlands&#039; &lt;br /&gt;
&lt;br /&gt;
We have some NL-subgroups left which are not province-groups. We decide to not put them in a new subgroup. The list of subgroups of the Netherlands is not chaotic anymore so it is not a problem that those subgroups are there. &lt;br /&gt;
&lt;br /&gt;
Not every province group the right moderators yet. The people involved in the reorganisation will fix this soon. &lt;br /&gt;
&lt;br /&gt;
==7. New developments in CS==&lt;br /&gt;
&lt;br /&gt;
Some people gave some updates in the current situation. &lt;br /&gt;
&lt;br /&gt;
==8. WVTTK==&lt;br /&gt;
&lt;br /&gt;
===Events powerpoint===&lt;br /&gt;
Maikel made a very usefull powerpoint presentation about how to use the events-page&lt;br /&gt;
You can find it [http://docs.google.com/present/view?id=0AeBqhUHENOo_ZGQ2M2prOGhfNDNna3pyZGhnZA&amp;amp;hl=nl here]&lt;br /&gt;
&lt;br /&gt;
===Greetings===&lt;br /&gt;
At this moment the following Dutch people are greeting new members (local, national or globally):&lt;br /&gt;
&lt;br /&gt;
Klaas (local)&lt;br /&gt;
&lt;br /&gt;
Maikel (national/global)&lt;br /&gt;
&lt;br /&gt;
Henri (? National)&lt;br /&gt;
&lt;br /&gt;
Liza (local and national)&lt;br /&gt;
&lt;br /&gt;
Giuseppe (local)&lt;br /&gt;
&lt;br /&gt;
Linda (local, just applied)&lt;br /&gt;
&lt;br /&gt;
Other greeters (not at the meeting):&lt;br /&gt;
&lt;br /&gt;
Astrid from Eindhoven&lt;br /&gt;
&lt;br /&gt;
Shilp from Delft&lt;br /&gt;
&lt;br /&gt;
Erik from Arnhem &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following people said they also want to greet:&lt;br /&gt;
&lt;br /&gt;
Pieter&lt;br /&gt;
&lt;br /&gt;
Jelly&lt;br /&gt;
&lt;br /&gt;
Sytse&lt;br /&gt;
&lt;br /&gt;
Floris (locally)&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Action list==&lt;br /&gt;
&lt;br /&gt;
- Sanne, Maikel, Jasper, Sytse, Linda &amp;amp; Floris: working out the idea of the newletter&lt;br /&gt;
&lt;br /&gt;
- Liza: noticy active cities without active ambassadors when the new application round starts&lt;br /&gt;
&lt;br /&gt;
- Floris, Linda &amp;amp; Henri: to more research about what it means to start a foundation&lt;br /&gt;
&lt;br /&gt;
- Giuseppe: put the Holland-group in the new to make &#039;archived groups of NL&#039; subgroup&lt;br /&gt;
&lt;br /&gt;
- people involved in reorganisation groups: find moderators for some groups&lt;br /&gt;
&lt;br /&gt;
- Pieter, Jelly, Sytse &amp;amp; Floris: join the new member welcome group&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organization Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Minutes_4rd_Dutch_Ambassasors_meetup&amp;diff=658</id>
		<title>Minutes 4rd Dutch Ambassasors meetup</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Minutes_4rd_Dutch_Ambassasors_meetup&amp;diff=658"/>
		<updated>2009-10-15T12:08:44Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Minutes of 4th meetup of the [[CS_Organisation_Netherlands]], Oss January 10th 2009&lt;br /&gt;
&lt;br /&gt;
Present: Liza (Country amb), Maikel (Oss), Willem (Rotterdam), Giuseppe (Groningen), Jasper (Utrecht, not.), Timz (nomadic, Utrecht), Sanne (Utrecht), Klaas (Haarlem), Tim (Utrecht), Henri (country amb).&lt;br /&gt;
&lt;br /&gt;
absent with notice: Rose, Marten, Jeroen, Menno, Esly, Tommy, Gerard, Paul, Aldo, Rossi&lt;br /&gt;
&lt;br /&gt;
==1. Minutes last meeting: ==&lt;br /&gt;
decisions taken:&lt;br /&gt;
– click able map: not possible&lt;br /&gt;
– communication manual: better as a flagged post, it changes quite often&lt;br /&gt;
&lt;br /&gt;
==2. Google calender==&lt;br /&gt;
We will not promote the google calendar, it is better to centralize information, it is better to focus information in the events page. Liza will post to the brainstorming group that you can be alarmed if there is already a meeting your region if you make a meeting for a certain day. &lt;br /&gt;
&lt;br /&gt;
==3. Working groups==&lt;br /&gt;
There doesn&#039;t seem to be a need for it yet. If there is a subject that needs a workgroup we can start one for it. &lt;br /&gt;
&lt;br /&gt;
==4. Editing groups==&lt;br /&gt;
No action is taken so far. Giuseppe has the tools to edit groups. Giuseppe can start according to the decisions taken on the previous meeting. Any &#039;tricky&#039; cases can be discussed among the taskforce about this topic (Giuseppe, Ramon, Liza, Tommy, Jasper).&lt;br /&gt;
&lt;br /&gt;
==5. Nomadic ambassadors==&lt;br /&gt;
The country ambassadors sent out an email to the Dutch nomadic ambassadors what their plans were. This could have been more carefull. Rose still have to report the answers.&lt;br /&gt;
A lot of nomadic ambassadors in the Netherlands seem to be having a quite steady base in the Netherlands, and could as well be city ambassadors. We try to get into contact with nomadic ambassadors (like city ambassadors), we should do this as decentralized as possible. &lt;br /&gt;
&lt;br /&gt;
==6. Posting in each other groups. ==&lt;br /&gt;
Best is posting just in the city and country group. In other city groups maybe there can be postings about traveling there (so there is a direct link). Meetings set up to be very big are of course a exception, there&#039;s no problem of posting them in other groups. About other cases you can always contact moderators of a group.&lt;br /&gt;
If you see people signed in on meetings who have to travel there (ig on big events), it can be smars to post to people to suggest to travel there.&lt;br /&gt;
For repeating of messages, please add new information.&lt;br /&gt;
&lt;br /&gt;
==7. Money==&lt;br /&gt;
Investigation about what a legal entity requires can be very welcome, but there is a big fear that creating a legal entity can create much more fuzz than we want to and it doesn&#039;t seem strictly necessary. Liza will post about this in an ambassador group. &lt;br /&gt;
&lt;br /&gt;
==8. Wiki==&lt;br /&gt;
Please add info about yourself on the wiki, if you don&#039;t know how to use the wiki, ask Jasper. &lt;br /&gt;
&lt;br /&gt;
==9. Welcome kit==&lt;br /&gt;
Giuseppe made some corrections, Liza and Henri will check them out. Safety issues will be delt with by contact us, not by the country ambassadors. &lt;br /&gt;
&lt;br /&gt;
==10. Queensday==&lt;br /&gt;
Best way would be to focus on several smaller meetings (the box of chocolate strategy) but connect them all by making them all start with the word &#039;Queensday-week&#039;.&lt;br /&gt;
The rest is up to the organizers of the several events. &lt;br /&gt;
 &lt;br /&gt;
==11. New members==&lt;br /&gt;
be carefull of facebook.&lt;br /&gt;
&lt;br /&gt;
==12. Rondvraag==&lt;br /&gt;
We would love to hear more about what country ambassadors are doing, Rose is very absent in the ambassadors group.&lt;br /&gt;
There is just a small group of people active. Meeting in person has an extra value. We try to keep the meetings as open as possible for new people, also inviting active people without a flag. &lt;br /&gt;
&lt;br /&gt;
* next meeting: in the beginning of April in a more informal setting&lt;br /&gt;
&lt;br /&gt;
==13. Meeting Annet==&lt;br /&gt;
&lt;br /&gt;
==action list:==&lt;br /&gt;
&lt;br /&gt;
everybody: (if needed) add you info in the ambassadors wiki page&lt;br /&gt;
&lt;br /&gt;
Liza: post in the brainstormgroup about double meetings&lt;br /&gt;
&lt;br /&gt;
Rose: report the answers to the messages to nomadic ambassadors.&lt;br /&gt;
everybody: get into contact with nomadic ambassadors in your region (if you don&#039;t know them yet), if an ambassador appears to be inactive, get into contact about it with a country ambassador.&lt;br /&gt;
&lt;br /&gt;
Liza and Henri: update the welcome kit.&lt;br /&gt;
&lt;br /&gt;
Liza: post about money in ambassador groups. &lt;br /&gt;
&lt;br /&gt;
All country ambassadors: inform on progresses made.&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organisation Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Minutes_3rd_Dutch_Ambassasors_meetup&amp;diff=657</id>
		<title>Minutes 3rd Dutch Ambassasors meetup</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Minutes_3rd_Dutch_Ambassasors_meetup&amp;diff=657"/>
		<updated>2009-10-15T12:08:20Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;3rd meetup of the [[CS_Organisation_Netherlands]], Saturday 6th of September, Groningen&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Attendees: Giuseppe (host and chair, Groningen), Liza (Utrecht), Chris (Aachen), Gerard (Rotterdam and surrounding), Maikel (Oss), Ramon (Amsterdam), Henri (country amb), Rose (country amb), Aldo (admin), Paul (Rotterdam), Tommy (Leiden), Menno (Amsterdam), Esly (minutes, Enschede) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
·         Please fill in the Dutch Ambassadors wiki with the tasks you are doing or would like to do. If you have problems with the wiki, please contact Jasper. He can help you! http://wiki.couchsurfing.com/en/Dutch_Ambassadors&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Already discussed and to be finalised=&lt;br /&gt;
&lt;br /&gt;
·         At the last meeting, we decided that new ambassadors might need some support. Ramon sends some information to new ambassadors now. Henri and Rose will write some kind of tool kit to help the newbies to get to know our group and help them to get active as an ambassador. Also, it is decided that we will introduce some ‘buddies’ for new ambassadors. Giuseppe (for the northern part), Liza (for the middle) and Maikel (for the south) will be the first persons for new ambassadors to go to. What does of course not mean that others are not allowed to help or motivate them!&lt;br /&gt;
&lt;br /&gt;
·         We should try to activate inactive ambassadors. In Australia they send a very nice message to inactive ambassadors to find out what they are doing. Henri and Rose will send a reminder to our inactive colleagues. If you think an ambassador is inactive, please write to Henri or Rose so they can send that person a message. &lt;br /&gt;
&lt;br /&gt;
Aldo has a lot to say about this topic. If an ambassador is not coming to the meeting, it does not mean he or she is an inactive ambassador. Country ambassadors should have an idea who of the not-active group members, are active in their local community though. If ambassadors are inactive in both the ambassador groups, and in their local community, we can write that the ambassador team in CouchSurfing to ask to have a look at this person and see whether he or she is the right person to be an ambassador. We can even set some rules of what we think an ambassador should do. If a person doesn’t meet those ‘rules’ we can ask the management team to take them out. In the next months, the ambassadors will become a focus point for the CouchSurfing organisation. So it might be that some standards or rules for ambassadors will change.&lt;br /&gt;
&lt;br /&gt;
To keep people up to date about what’s going on in the Netherlands, we might think about making some kind of newsletter in which every ambassador can write a bit about the activities in his/her city.&lt;br /&gt;
&lt;br /&gt;
·         Regarding the emergency couchlist. Some of those lists offer people an emergency couch, others only advice people. Aldo knows the system in CouchSurfing will change on this topic, so people might still be able to find their host. Also, the site is almost always up, so you can doubt how necessary it is. We decided to wait for the improvements on the site and then have a further look at it.&lt;br /&gt;
&lt;br /&gt;
·         Paul and Aldo give us an update about CS Zones and City Surfing Pages. There will be two different things implemented, first CS Zones, which is really one specific location where CouchSurfers meet or get together regularly. The second is City Surfing Pages. Those are under construction, but will give information about a city. The first page will be a kind of magazine where you can post news about coming meetings, pictures of passed ones and so on. The other pages will become more static. At the next meeting, Paul hopes to be able to show us some examples. &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Netherlands Group Coordination=&lt;br /&gt;
&lt;br /&gt;
·         Considering the Dutch CS-groups, we decided to base the structure on provinces. Giuseppe will try to make a clickable map to put on the Netherlands main group page, so that people can immediately click to the region they are looking for. &lt;br /&gt;
&lt;br /&gt;
Inactive groups will be deleted (after talking to the moderator about it), double ones can be put together. A moderator should mainly literally moderate. He or she can also welcome new group members, but this should depend on the group and the person joining. Just use your common sense to decide whether you think it is needed or not! &lt;br /&gt;
&lt;br /&gt;
Ramon will continue this job. If you have suggestions or ideas, please contact him. &lt;br /&gt;
&lt;br /&gt;
·         Giuseppe will write some manual for our group communication. &lt;br /&gt;
&lt;br /&gt;
§         For discussions, use the CS Group&lt;br /&gt;
&lt;br /&gt;
§         For amb-meetings, CS Events, if people are added we can also use that to communicate with the group.&lt;br /&gt;
&lt;br /&gt;
§         For documents, use the Google group&lt;br /&gt;
&lt;br /&gt;
§         For things that are also open for outsiders, use the wiki pages&lt;br /&gt;
&lt;br /&gt;
If new members are added, the other members of the group should be informed about that. To prevent a too big amount of members of the organisation group, it seems to make sense to take only foreigners in who are related to the Netherlands (like Dutch Nomadic Ambassadors abroad, or people like Chris who work a lot together with Dutch cities), in general, one representative of our neighbouring countries (next to the ones we have very direct connections with), should be enough. &lt;br /&gt;
&lt;br /&gt;
·         It is possible to get a third country ambassador. Giuseppe says that being active in CouchSurfing and getting an idea of the international situation can also be done in some workgroups. &lt;br /&gt;
&lt;br /&gt;
Some different tasks for country ambassadors are mentioned. &lt;br /&gt;
&lt;br /&gt;
§         They should have an overview of the city ambassadors and take care about them&lt;br /&gt;
&lt;br /&gt;
§         They are the link between the Dutch organisation and the outside world. &lt;br /&gt;
&lt;br /&gt;
§         They have a motivating role&lt;br /&gt;
&lt;br /&gt;
§         It would be nice if the country ambassadors can develop some vision where we want to go to with this organisation group. &lt;br /&gt;
&lt;br /&gt;
Rose says that since she applied, so many things changed in Amsterdam. Her help is needed in Amsterdam for now. Paul advices to ask active members to help, also without a flag.&lt;br /&gt;
&lt;br /&gt;
Aldo differentiates three kind of jobs for country ambs. The first one is mainly online, in taking part in group discussions, promote and represent the Netherlands in international groups, greeting people and so on. These jobs seem to suite Rose. The second part is meeting people, show your face, promote CouchSurfing on meetings and so on. This is what Henri is good at. The thing that is missing is someone who has a broader overview, who can take care about the organisational part and brings up things among ambassadors.&lt;br /&gt;
&lt;br /&gt;
Both Liza and Giuseppe thought about applying as a third country ambassador. Giuseppe has his doubts for being not Dutch and is very likely to leave the country in about two years. Everybody, including Giuseppe, will be very happy if Liza will apply for the third country ambassador position. The situation in Utrecht is very stable with Jasper as active city ambassador. Liza will think about it and inform us before the 9th of September, the next deadline for country ambassador applications. If she will apply, Giuseppe can always help if things need to be done.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Event organisation=&lt;br /&gt;
&lt;br /&gt;
·         Due to a lack of time, we will discuss this further online. Please write some words about your experiences with events and organising them in the CS group. In this way, we can all learn from each other. &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Next Dutch ambassadors meeting will be held in Rotterdam, in the last weekend of November. This weekend, the big international Sinterklaas Meeting will also take place in this city. Paul will organise our meeting, more details will follow by then!&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=Decisions taken:=&lt;br /&gt;
&lt;br /&gt;
1.       Henri and Rose will develop a toolkit for new ambassadors&lt;br /&gt;
&lt;br /&gt;
2.       Giuseppe, Liza and Maikel can act as buddies for new ambassadors&lt;br /&gt;
&lt;br /&gt;
3.       Henri and Rose will send a reminder to inactive ambassadors&lt;br /&gt;
&lt;br /&gt;
4.       Everyone can/should write Henri or Rose if you think an ambassador is inactive&lt;br /&gt;
&lt;br /&gt;
5.       Regarding an emergency couch list, we will wait till the system on the main page is improved&lt;br /&gt;
&lt;br /&gt;
6.       The Dutch CS Groups will get based on provinces&lt;br /&gt;
&lt;br /&gt;
7.       Giuseppe will try to develop a clickable map for the Netherlands Group page&lt;br /&gt;
&lt;br /&gt;
8.       Giuseppe will write a manual about communication in our group&lt;br /&gt;
&lt;br /&gt;
9.       If new members are added to the group, we will get informed about that&lt;br /&gt;
&lt;br /&gt;
10.   Liza will think about applying as a third country ambassador&lt;br /&gt;
&lt;br /&gt;
11.   Next meeting will be in Rotterdam, in the weekend of the Sinterklaas meeting&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organisation Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Minutes_2nd_Dutch_Ambassasors_meetup&amp;diff=656</id>
		<title>Minutes 2nd Dutch Ambassasors meetup</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Minutes_2nd_Dutch_Ambassasors_meetup&amp;diff=656"/>
		<updated>2009-10-15T12:07:50Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;2st meetup of the [[CS_Organisation_Netherlands]]&lt;br /&gt;
&lt;br /&gt;
location: J &amp;amp; L&#039;s crib (Utrecht)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Present&#039;&#039;&#039;: Giuseppe (city Ambassador Groningen), Liza (city Ambassador Utrecht), Jasper (city Ambassador Utrecht), Maikel (active member), Kim (Leiden representative), Menno (Amsterdam representative), Martine (country ambassador Belgium), Chris (city ambassador Aachen, Germany), Aldo (Global ambassador).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Absent with notification&#039;&#039;&#039;: Harold, Rose, Ramon, Esly, Henri, Tim&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Absent without notification&#039;&#039;&#039;: Shilp, Klaas, Konstantin, Sannie, JP1978, Joris, Paul, Martiniman, Eleanor.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Welcome to new ambassadors==&lt;br /&gt;
Everyone told why they became active, what they are active with and what working groups they are involved in&lt;br /&gt;
&lt;br /&gt;
==Queensday==&lt;br /&gt;
&lt;br /&gt;
Important people are missing for a good evaluation.&lt;br /&gt;
&lt;br /&gt;
some short observations:&lt;br /&gt;
&lt;br /&gt;
- We started too late&lt;br /&gt;
&lt;br /&gt;
- To the outside the list of sub-event looked very chaotic&lt;br /&gt;
&lt;br /&gt;
- We were lacking a big central event&lt;br /&gt;
&lt;br /&gt;
- There were too many things at the same time&lt;br /&gt;
&lt;br /&gt;
- In general we were very good at brainstorming and coming up with a lot of submeetings but lacked the ability to focus on a short list of events.&lt;br /&gt;
&lt;br /&gt;
==Mission and goals==&lt;br /&gt;
&lt;br /&gt;
- Get to know each other&lt;br /&gt;
&lt;br /&gt;
- Organise things together&lt;br /&gt;
&lt;br /&gt;
- Help to get travellers in the Netherlands off the beaten track and to put the Netherlands in a broader perspective&lt;br /&gt;
&lt;br /&gt;
- Give a framework for new ambassadors with information, advice, help on a local job and answers to questions&lt;br /&gt;
&lt;br /&gt;
- Motivate each other to get a momentum&lt;br /&gt;
&lt;br /&gt;
- Reaching out abroad&lt;br /&gt;
&lt;br /&gt;
- Help finding solutions for problems together&lt;br /&gt;
&lt;br /&gt;
- Finding creative ways to get new members active&lt;br /&gt;
&lt;br /&gt;
==Ways to reach our mission and goals==&lt;br /&gt;
&lt;br /&gt;
- mentorship (new ambassadors get help from an experienced ambassador)&lt;br /&gt;
&lt;br /&gt;
- Regional coordination (west / south / north)&lt;br /&gt;
&lt;br /&gt;
- Coordination for &#039;out of border activities&#039;.&lt;br /&gt;
&lt;br /&gt;
- Recruiting new ambassadors&lt;br /&gt;
&lt;br /&gt;
- Making activities of the beaten track&lt;br /&gt;
&lt;br /&gt;
Who: will be discussed online.&lt;br /&gt;
&lt;br /&gt;
==Intern organisation==&lt;br /&gt;
&lt;br /&gt;
How do we organise ourselves?&lt;br /&gt;
&lt;br /&gt;
- Rotating locations&lt;br /&gt;
&lt;br /&gt;
- The people from the host location will present theirselves and will arrange minutes&lt;br /&gt;
&lt;br /&gt;
(The next location will be [[Groningen]])&lt;br /&gt;
&lt;br /&gt;
- in every meeting there should be time for a brainstorm about other meetings like we did today&lt;br /&gt;
&lt;br /&gt;
==Inactive ambassadors==&lt;br /&gt;
&lt;br /&gt;
Henri should get into contact with inactive ambassadors to find out if they are really inactive and if so if the want to stay ambassador. Possible inactive ambassadors are Martiniman (Eindhoven), Joris (Amsterdam) and Eleanor (Rotterdam).&lt;br /&gt;
&lt;br /&gt;
Henri should invite all nomadic ambassadors within the Netherlands into the Netherlands organisation group and should ask if they want to be more involved. &lt;br /&gt;
&lt;br /&gt;
==European coordination==&lt;br /&gt;
&lt;br /&gt;
- google-calanders can be usefull for internal coordination, not for reaching out abroad.&lt;br /&gt;
&lt;br /&gt;
- It is good to have 1 or 2 representatives from neighbouring countries at our meetings.&lt;br /&gt;
&lt;br /&gt;
- A meeting of country ambassadors in the North-west of Europe might be usefull.&lt;br /&gt;
&lt;br /&gt;
- A meeting of ambassadors near each others border might be usefull.&lt;br /&gt;
&lt;br /&gt;
- A good way of keeping track of each other is joining eachothers groups. Most of us don&#039;t want to interfere with discussions in other peoples groups (allthough nobody seems to mind if that would happen in their own group).&lt;br /&gt;
&lt;br /&gt;
==Ambassadors in conflict==&lt;br /&gt;
&lt;br /&gt;
how do deal with questions about negative references:&lt;br /&gt;
&lt;br /&gt;
- There is a group about support on writing references, it could be usefull to refer people to that group&lt;br /&gt;
&lt;br /&gt;
- In doubt always ask to contact the safety team.&lt;br /&gt;
&lt;br /&gt;
- On a negative reference, always be short and factual, not emotional.&lt;br /&gt;
&lt;br /&gt;
==Business cards==&lt;br /&gt;
&lt;br /&gt;
Several people seem interested in them. We will check in our local groups if other members are interested so we could order a lot at the same time on national scale.&lt;br /&gt;
&lt;br /&gt;
==Fundraising==&lt;br /&gt;
&lt;br /&gt;
There are diffent opions on this subject. Important is always to be open about what you use the money for and to use the money only for specific perposes so not for something general.&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organisation Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Minutes_1st_Dutch_Ambassadors_meetup&amp;diff=655</id>
		<title>Minutes 1st Dutch Ambassadors meetup</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Minutes_1st_Dutch_Ambassadors_meetup&amp;diff=655"/>
		<updated>2009-10-15T12:07:23Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;1st meetup of [[CS_Organisation_Netherlands]]&lt;br /&gt;
&lt;br /&gt;
Present:&lt;br /&gt;
Henri, Aldo, Paul, Pieter, Harold, Rose, Ramon, Liza, Jasper, Guiseppe, Esly, Maikel.&lt;br /&gt;
&lt;br /&gt;
MEDIA&lt;br /&gt;
There is a need for guidelines, what can we tell to the media. Which image do we want to spread? Some people would love some words (in Dutch!) which we can use in our media contacts. Maybe we should have one person in charge for media issues? Some people have the experience that whatever you tell, the media will end up with focussing on a free place to sleep. It can help to point to couchsurfing as a trend. But in the end, it looks like that members are not very much affected by the news. Many members who sign in during a media hype will not get active. It looks like the system is filtering itself!&lt;br /&gt;
&lt;br /&gt;
SAFETY&lt;br /&gt;
This is an important issue for many people. Ambassadors want to protect the members. How can we avoid that people have more profiles? The safety team can check this. There is always a (automatic) check before people can sign in. and, if someone makes a report, there can be a new (manual) check.&lt;br /&gt;
If someone reports another member to the police, he or she will be banned (the victim should send the report of the police, as ambassador you can only support him/her by doing so, you can not report an abuser to the safety team). It turns out that in real life, the community itself also deals with ‘abusers’. You, as an ambassador, can always warn people to be careful.&lt;br /&gt;
There are still people working on a kind of Black List, but it is not clear if and when this will be implemented.&lt;br /&gt;
One of the changes made recently is that edited references do not get automatically back on top. This makes it more difficult for members with a bad reference to ask their friends to bring the negative comment down by editing their references.&lt;br /&gt;
The most important safety check members can do by themselves is the verification check. If someone is verified, there is not a big chance that people are not trustworthy. Recent research concluded this as well. Vouching can also say something about the person, but is much less reliable.&lt;br /&gt;
Only country ambs can see hidden profiles. In case you have doubts about a specific person (with a hidden profile for example), you can contact Aldo about safety issues with this member. At the moment, there are no suspected members living in the Netherlands.&lt;br /&gt;
&lt;br /&gt;
MEETINGS&lt;br /&gt;
We will make a list of big national meetings. Maikel will create a calendar for Dutch events. About monthly meetings, on the one hand it would be nice to choose different days in different cities. On the other hand, it seems not very likely that people from Den Haag and Groningen will visit each other (small scale) monthly meetings.&lt;br /&gt;
Upcoming big events;&lt;br /&gt;
- 2-4 Gig Swapping (Utrecht)&lt;br /&gt;
- Queensday. Problem is to find enough hosts in Amsterdam. Organisation has no obligation to find hosts, you can promote people to look for hosts outside Amsterdam. Discussion will be continued online.&lt;br /&gt;
- 21-6 Midsummer Night in Utrecht&lt;br /&gt;
- Sinterklaas (Rotterdam)&lt;br /&gt;
We can extend this by an online discussion!&lt;br /&gt;
&lt;br /&gt;
WIKI&lt;br /&gt;
Jasper created a wiki page about Utrecht. He will coordinate other pages for the Netherlands as well. But he needs input from others!&lt;br /&gt;
&lt;br /&gt;
CS ZONES&lt;br /&gt;
Paul and Aldo present CS Zones. This will be pages about places, maintained by ambassadors. It is very premature at the moment, but it looks very cool!&lt;br /&gt;
&lt;br /&gt;
FLAG / STATUS&lt;br /&gt;
Does this flag on your profile really mean something? It makes you visible. People can turn easily to ambassadors with questions and remarks. He or she can also connect active people in order to get things organised. (But being an ambassador is not necessary for this!). Ambassadors are mainly there because some structure is needed.&lt;br /&gt;
&lt;br /&gt;
NEXT TIME&lt;br /&gt;
Next ambassadors meeting will also take place in Utrecht. We will set a date (after Queensday) later. Liza and Jasper will host us in their new house. For this meeting, we should also invite other ambassadors, make an agenda and we prefer a calmer place (like a house!). It might be a good idea to have another meeting about the Queensday Meeting. But this can also be online… After the next meeting in Utrecht, we can go on tour! So organise a weekend in Groningen, Maastricht, Enschede and even Oss!&lt;br /&gt;
&lt;br /&gt;
Points to be discussed next time:&lt;br /&gt;
- Ambassadors communication and organisation&lt;br /&gt;
- Goodies&lt;br /&gt;
- Real life CS Promotion&lt;br /&gt;
- Media Contacts&lt;br /&gt;
- Big meetings and matching regular meetings.&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organisation Netherlands]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
	<entry>
		<id>https://wiki.trustroots.org/index.php?title=Dutch_Ambassador_Welcome_kit&amp;diff=654</id>
		<title>Dutch Ambassador Welcome kit</title>
		<link rel="alternate" type="text/html" href="https://wiki.trustroots.org/index.php?title=Dutch_Ambassador_Welcome_kit&amp;diff=654"/>
		<updated>2009-10-15T12:06:39Z</updated>

		<summary type="html">&lt;p&gt;Matrixpoint: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Inspired by the Belgian new ambs kit   &lt;br /&gt;
&lt;br /&gt;
==Warm welcome==&lt;br /&gt;
&lt;br /&gt;
You reading this is good news! Everytime someone reads this [[Dutch Ambassador Welcome kit]] it means our active cs family is growing! From now on you’re an official cs Ambassador. In order to help you with your new tasks as an Ambassador this document contains heaps of helpful information.  Here  you’ll read what it entails to be an efficient cs Ambassador, how the [[Netherlands]] CS organisation works, and some tips on how to stay in the right shape! We advise to read it carefully and thoroughly.&lt;br /&gt;
&lt;br /&gt;
==What it entails be a CouchSurfing ambassador==&lt;br /&gt;
&lt;br /&gt;
Being an ambassador in the [[Netherlands]] should be a fun and interesting experience to be enjoyed. This document contains a the guidelines, but as most things in life it’s what you make of it yourself. &lt;br /&gt;
&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
First and foremost Ambassadors promote the values that embody the Couchsurfing Spirit. City Ambassadors are also the voice and ear to their local community, and source of information for all the members of their local community. &lt;br /&gt;
&lt;br /&gt;
===Responsibilities===&lt;br /&gt;
&lt;br /&gt;
Most City Ambassadors contribute at least 10 hours per month but this varies greatly from person to person. We want to make sure all Ambassadors love what they do. Please always feel free to ask for help, ask your other city ambassadors in the group or send a private mail to your country ambassador. &lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;role&#039;&#039;&#039; of the City Ambassadors is to be of service to CouchSurfing members and to be of service to the local community. Ambassadors are volunteers committed to helping others. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;As travellers, hosts, surfers, and volunteers, Ambassadors strive to&#039;&#039;&#039;&lt;br /&gt;
* Promote respect and tolerance for individuals and cultures &lt;br /&gt;
* Promote cultural diversity and awareness &lt;br /&gt;
* Promote equality, inclusiveness, and friendship &lt;br /&gt;
* Promote honesty and fairness &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In addition, in our role as volunteers Ambassadors strive to:&#039;&#039;&#039; &lt;br /&gt;
* Promote personal and professional integrity &lt;br /&gt;
* Promote the pursuit of excellence &lt;br /&gt;
* Promote teamwork &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ambassadors Code of Conduct&#039;&#039;&#039;&lt;br /&gt;
Our behaviour as travellers, guests, hosts, and volunteers is a direct reflection on CouchSurfing. Therefore Ambassadors will be held to the highest standards of personal and professional conduct. Ambassadors must agree to the [http://www.couchsurfing.com/amb_ethics.html code of conduct]&lt;br /&gt;
&lt;br /&gt;
==Duties City ambassador==&lt;br /&gt;
&lt;br /&gt;
There are four levels of ambassadorship: [http://www.couchsurfing.com/amb_levels.html City, Country, Global  and Nomadic]. The duties of city ambassadorship is defined below. The explanations of the other [http://www.couchsurfing.com/amb_levels.html levels of ambassadorship] can be found on [http://www.couchsurfing.com/amb_levels.html the couch surfing website]. If you have any questions feel free to contact another ambassador (country or other). &lt;br /&gt;
&lt;br /&gt;
It could be that your community is already active and has ambassador(s), in that case we recommend you to contact your fellow city Ambassadors and see where you can help out. &lt;br /&gt;
There’s a possibility that you might be the first ambassador of a city (check the [[Dutch Ambassadors ]]wiki). In that case we recommend you to contact a nearby fellow ambassador or an ambassador mentor and ask them any questions you have. They are more then willing to help you out. &lt;br /&gt;
&lt;br /&gt;
===Organise local events=== &lt;br /&gt;
Most active communities are organising meetings. This could be a set weekly meeting ([[Amsterdam]] Friday), ([[Rotterdam]] Tuesday and Saturday) or a monthly meeting ([[Utrecht]], [[Enschede]], [[Maastricht]], [[Amersfoort]] or [[Groningen]]) or just random meetings as in [[The Hague]]. &lt;br /&gt;
&lt;br /&gt;
There are many ways to set up a meeting. For tips and tricks check [http://www.couchsurfing.com/wiki/How_to_make_a_good_meeting how to make a good meeting page].&lt;br /&gt;
&lt;br /&gt;
=== Moderator of your City group ===&lt;br /&gt;
A new CS city amb should become moderator of his/her city group. This does not happen automatically. You kindly need to ask the moderators of your city group to make you co-moderator. Moderators can be your fellow city Ambassadors or it can be a normal moderator who once started the group. If they don´t add you to the group or you get a negative response send a message to [http://www.couchsurfing.com/contact.html Contact Us] and explain the situation. &lt;br /&gt;
&lt;br /&gt;
Your role as a moderator is firstly to provide visitors of the group a quick access to the ambassadors in your City. Secondly, City Ambassadors are responsible in keeping their local community alive, providing info and more. This includes defining group guidelines, managing/raising polls and establishing Google events calendars if required.&lt;br /&gt;
&lt;br /&gt;
=== Communication ===&lt;br /&gt;
There are many ways to communicate with your fellow active members. The idea is to build up or keep continuing a strong local community. It might therefore be essential to keep your fellow active members involved and informed about new events, meetings and other initiatives.  &lt;br /&gt;
&lt;br /&gt;
=== New member welcome ===&lt;br /&gt;
A good way for an ambassador to welcome new members in your community is by joining the [http://www.couchsurfing.com/group.html?gid=3581 new member welcome group]. Through the [http://www.couchsurfing.com/group.html?gid=3581 new member welcome group]you’re able to find out which new members have joined your community. To warmly welcome new members and show them what is happening in your community with a welcome message can be appropriate. &lt;br /&gt;
&lt;br /&gt;
Once you join the [http://www.couchsurfing.com/group.html?gid=3581 new member welcome group] you will receive extra tools on your profile to send out welcome messages.&lt;br /&gt;
&lt;br /&gt;
=== Visit other local meetings ===&lt;br /&gt;
You’re always welcome to visit any of the local meetings. May you be looking for some new ideas, want to get to know your fellow active members, please do not hesitate to visit one of the local meetings.  &lt;br /&gt;
&lt;br /&gt;
=== Participate in the Netherlands CS organisation === &lt;br /&gt;
Together with all the ambassadors we work on building this sustainable network, the Netherlands CS organisation. All ambassadors and active CS members who are interested are welcome to join. For more info on the Netherlands CS organisation check below.&lt;br /&gt;
&lt;br /&gt;
=== Ambassador groups ===&lt;br /&gt;
&lt;br /&gt;
As an ambassador you automatically become member of:&lt;br /&gt;
*[http://www.couchsurfing.com/group.html?gid=2125 Ambassador’s Public]&lt;br /&gt;
*[http://www.couchsurfing.com/group.html?gid=1668 Ambassadors Private]&lt;br /&gt;
*[http://www.couchsurfing.com/group.html?gid=4407 City Ambassadors (if you have become a city ambassador)]&lt;br /&gt;
*[http://www.couchsurfing.com/group.html?gid=4410 Nomadic Ambassadors (if you have become a Nomadic ambassador)]&lt;br /&gt;
&lt;br /&gt;
Feel free to explore the topics that are discussed in these groups. A good start are the flagged posts of the Ambassador’s Public and of Ambassador’s Private groups.&lt;br /&gt;
&lt;br /&gt;
=== Extra Features on CS website ===&lt;br /&gt;
Ambassadors get acces to some extra features on the CS website. &lt;br /&gt;
&lt;br /&gt;
*First, you get an extra [http://www.couchsurfing.com/ambassadors_home.html Amb tab] in your navigation. This amb page gives all the information about ambassadorship and other ambassadors in the world and includes the groups of your community. &lt;br /&gt;
*Second, you can check where recent sign ups heard about CS in the [http://www.couchsurfing.com/amb_where_hear.html where did recent sign ups hear about CS?] page. You also see this feature on CS profiles in the personal info.   &lt;br /&gt;
*Third, as an ambassador you now have extra possibilities with [http://www.couchsurfing.com/statistics.html the statistics]. As an amb you can check more specific regional statistics, per country. There is a selection box on the top of the page where you can select your country of choice (for instance, the Netherlands). &lt;br /&gt;
*Fourth, you can mark CS profiles as having an [http://www.couchsurfing.com/exotic_couches.html exotic couch]. When a CS member lives in a places which brings a special element to a CS experience you can mark his/her couch as [http://www.couchsurfing.com/exotic_couches.html exotic]. For instance when somebody lives in a boat or in a remote area in the nature this could be an [http://www.couchsurfing.com/exotic_couches.html exotic couch]. People who look for special CS experiences can look up these members. &lt;br /&gt;
&lt;br /&gt;
Explore the features and use them for you community.  &lt;br /&gt;
&lt;br /&gt;
== The Netherlands CS organisation ==&lt;br /&gt;
The Netherlands CS organisation team meets approximately once every three months. All the minutes of the Netherlands CS organisation you can find in the in the Dutch ambassadors wiki and in the Netherlands CS organisation wiki. Please read all the meeting minutes, they contain valuable information!!&lt;br /&gt;
&lt;br /&gt;
You’re automatically enrolled in this group after you have obtained your Ambassadors status. You’re more than welcome to participate in any of the upcoming meetings.&lt;br /&gt;
&lt;br /&gt;
In order to collaborate efficiently and effectively, the Netherlands CS organisation uses various communication tools: &lt;br /&gt;
* [http://www.couchsurfing.com/group.html?gid=5031 The Netherlands CS organisation group]: Discussions, remaining in touch and exchange of ideas. New ambassadors and active CS members will be added to the list &lt;br /&gt;
* [http://groups.google.com/group/couchsurfingnl?hl=en The Netherlands CS google group]:  All CS NL documents should be sent/posted here. New ambassadors and active CS members will be added to the list. &lt;br /&gt;
* The[[ Netherlands ]]wiki: It’s an open source of information and can be used and adapted even when the site is down. Feel free to add information (especially in the [[Dutch Ambassadors]]).&lt;br /&gt;
* [http://www.google.com/calendar/embed?src=couchsurfingnl%40gmail.com&amp;amp;ctz=Europe/Amsterdam The Netherlands CS google calendar]: All events happening in the Netherlands can be found in the google calender  &lt;br /&gt;
* Datum prikker: used for setting up new meetings&lt;br /&gt;
&lt;br /&gt;
=== Other Netherlands Ambassadors ===&lt;br /&gt;
There are Ambassadors in all regions of the Netherlands. The [[Dutch Ambassadors]] and information about the CS NL organisation meetings (minutes) can both be found in the [[Dutch Ambassadors ]]wiki. Once again, please read all the meeting minutes, they contain valuable information!!&lt;br /&gt;
&lt;br /&gt;
Everyone is encouraged to be on the lookout for people that would make a great ambassador or be valuable on a working group, and encourage them to apply or join!&lt;br /&gt;
&lt;br /&gt;
=== Ambassador mentor ===&lt;br /&gt;
&lt;br /&gt;
As a new ambassador we understand that you might still have questions after reading the Dutch ambassador welcome kit. To help you with any questions you might still have, there are 3 ambassador mentors. We divided the country up in North, Middle and South. Each ambassador mentor is a mentor to new ambassadors in his or her region. &lt;br /&gt;
&lt;br /&gt;
The regions are divided accordingly:&lt;br /&gt;
*North (Friesland/Groningen/Drenthe/Overijssel): 		[http://www.couchsurfing.com/people/gpikkio Giuseppe (GPIKKIO)]&lt;br /&gt;
*Middle (Noord-Holland/Zuid-Holland/Utrecht/Flevoland)		[http://www.couchsurfing.com/people/lizzie82ish Liza (LIZZIE82ISH)]&lt;br /&gt;
*South (Zeeland/Brabant/Limburg/Gelderland): 			[http://www.couchsurfing.com/people/lourenssenm Maikel (LOURENSSENM)]&lt;br /&gt;
&lt;br /&gt;
Feel free to contact them if you have any questions&lt;br /&gt;
&lt;br /&gt;
=== Tips for meet ups &amp;amp; activities === &lt;br /&gt;
I am sure you already have a great deal of experience in organising meetings and events. The possible fellow Ambs in your city will probably have a way of organising things. It would be good to contact them about their plans.  &lt;br /&gt;
&lt;br /&gt;
In the [http://www.couchsurfing.com/wiki/How_to_make_a_good_meeting how to make a good meeting page] you can find extra tips and tricks on organising meetings and events.   &lt;br /&gt;
&lt;br /&gt;
CS has business cards you can customize and have printed or print yourself. This is a great help while promoting CouchSurfing. Simply [http://www.couchsurfing.com/business_cards.html download a file from here] and print out on your own.&lt;br /&gt;
&lt;br /&gt;
==Dealing with security issues and problem resolution procedures, etc.==&lt;br /&gt;
&lt;br /&gt;
VERY IMPORTANT before posting ANYTHING linking to a member read this one: [http://www.couchsurfing.com/group_read.html?gid=1668&amp;amp;post=1278659 Reminder about user privacy]&lt;br /&gt;
&lt;br /&gt;
Basically the approach to any problems you might have would be to either directly contact your Country Ambassador or send a message to a member of the Leadership Team using the standard [http://www.couchsurfing.com/contact.html Contact Us form].&lt;br /&gt;
&lt;br /&gt;
DO NOT USE THE GROUPS!!! &lt;br /&gt;
&lt;br /&gt;
Most often a member of the Contact Team will then advise you of the next steps to take or of the answer you need. Familiarise yourself with the contents of the [http://www.couchsurfing.com/contact.html Contact Us form] including familiarity with the range of items in the pull down menu labled Communication Type. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For problems (you have) with another member of CouchSurfing you can directly contact he Member Dispute Safety Team (MDST) by selecting &amp;quot;Problem with another member&amp;quot; in the [http://www.couchsurfing.com/contact.html Contact Us form].&lt;br /&gt;
&lt;br /&gt;
=== Dealing with crimes such as: theft, abuse, and/or any forms of harassment. === &lt;br /&gt;
What are the official procedures, whom do we contact, and in what order? &lt;br /&gt;
Be prepared! Read the [http://www.couchsurfing.com/tips.html Tips for Surfers and Hosts]. &lt;br /&gt;
* If necessary contact the local police / ambulance USE YOUR COMMON SENSE!! &lt;br /&gt;
* If other couchsurfers are involved, contact the Safety Administrator through the [http://www.couchsurfing.com/contact.html Contact Us form]. Tell them as many details as possible about your experience. CouchSurfing will investigate and determine the best course of action. If necessary leave a negative reference. &lt;br /&gt;
* Dealing with Dating requests: see [http://wiki.couchsurfing.com/en/Handling_dating_requests Handling Dating Requests]&lt;br /&gt;
&lt;br /&gt;
== Useful Links ==&lt;br /&gt;
:[[Dutch Ambassador Welcome kit]] (this Document)&lt;br /&gt;
: [[Dutch Ambassadors ]]wiki&lt;br /&gt;
: [[Netherlands ]]wiki&lt;br /&gt;
:[http://www.couchsurfing.com/group.html?gid=5031 The Netherlands CS organisation group]&lt;br /&gt;
:[http://www.couchsurfing.com/amb_levels.html The Levels of ambassadorship]&lt;br /&gt;
:[http://www.couchsurfing.com/group.html?gid=3581 New member welcome group]&lt;br /&gt;
:[http://www.couchsurfing.com/contact.html Contact Us form]&lt;br /&gt;
:[http://www.couchsurfing.com/wiki/Answers_to_some_common_Contact_Us_Questions Frequently Asked Questions]&lt;br /&gt;
:[http://groups.google.com/group/couchsurfingnl?hl=en CS NL google group]&lt;br /&gt;
:[http://www.google.com/calendar/embed?src=couchsurfingnl%40gmail.com&amp;amp;ctz=Europe/Amsterdam CS NL google calendar]&lt;br /&gt;
&lt;br /&gt;
== Don’t worry be happy ==&lt;br /&gt;
Being an Ambassador can be a bit overwhelming. It’s really important that you have as much fun as possible. Hereby some small remarks on how to avoid stress as an ambassador:&lt;br /&gt;
* Do what you love. Volunteering is meant to be fun. If greeting turns you on, greet. If you love to host, host. If you enjoy taking people out and about, do that! Whatever floats your boat: every contribution counts! &lt;br /&gt;
* Recharge your batteries. If you start feeling drained, take a break. &lt;br /&gt;
* Network. Share ideas, thoughts and frustrations with other CSers you get along with. &lt;br /&gt;
* Portion Control. Basically, don&#039;t bite of more than you can chew. You might get a nasty case of indigestion! &lt;br /&gt;
* Participate. Join the discussions and make your voice heard. &lt;br /&gt;
&lt;br /&gt;
= Good luck!= &lt;br /&gt;
We wish you all the best. We’re a team all together so if you have any questions please don’t hesitate to contact one of us. We hope to see you around! The Netherlands is smaller then you think!&lt;br /&gt;
&lt;br /&gt;
[[Category:CS Organisation Netherlands]]&lt;br /&gt;
[[Category:Netherlands]]&lt;br /&gt;
[[Category:Welcome kit]]&lt;/div&gt;</summary>
		<author><name>Matrixpoint</name></author>
	</entry>
</feed>