
Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385
<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://itclive.spdns.de/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>move IT Home Base</title>
        <description></description>
        <link>http://itclive.spdns.de/wiki/</link>
        <lastBuildDate>Mon, 06 Apr 2026 04:11:40 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>http://itclive.spdns.de/wiki/lib/tpl/peanutbutter2/images/favicon.ico</url>
            <title>move IT Home Base</title>
            <link>http://itclive.spdns.de/wiki/</link>
        </image>
        <item>
            <title>Grafitti Board</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/downloads/scripts/grafitti_board?do=revisions&amp;rev=1575021521</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;grafitti_board&quot;&gt;Grafitti Board&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
Zeigt einen Text auf einem Prim der im Chat eingegeben wird.
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;// Grafitti board 0.0.2 for OpenSim
// By Justin Clark-Casey (justincc)
// http://justincc.wordpress.com

// This script is available under the BSD License

string text = &amp;quot;&amp;quot;;

integer LISTENING_CHANNEL = 43;

// XXX Only putting this here as well to get around OpenSim&amp;#039;s int -&amp;gt; string casting oddness
string LISTENING_CHANNEL_STRING = &amp;quot;43&amp;quot;;

// FIXME: Should be dynamic!
integer CHARS_WIDTH = 42;

// Add some additional graffiti
addGraffiti(string message)
{
while (llStringLength(message) &amp;gt; CHARS_WIDTH)
{
text += &amp;quot;\n\n&amp;quot; + llGetSubString(message, 0, CHARS_WIDTH - 1);
message = llDeleteSubString(message, 0, CHARS_WIDTH - 1);
}

text += &amp;quot;\n\n&amp;quot; + message;
}

// Clear the existing graffiti
clearGraffiti()
{
text = &amp;quot;&amp;quot;;
}

// Actually fires the graffiti out to the dynamic texture module
draw()
{
//llSay(0, text);
string drawList = &amp;quot;PenColour BLACK; MoveTo 40,220; FontSize 32; Text &amp;quot; + text + &amp;quot;;&amp;quot;;

osSetDynamicTextureData(&amp;quot;&amp;quot;, &amp;quot;vector&amp;quot;, drawList, &amp;quot;1024&amp;quot;, 0);
}

default
{
state_entry()
{
llSetText(
&amp;quot;Say /&amp;quot; + LISTENING_CHANNEL_STRING + &amp;quot; &amp;lt;message&amp;gt; to add text.&amp;quot;
+ &amp;quot; Say /&amp;quot; + LISTENING_CHANNEL_STRING
+ &amp;quot; !clear to clear board&amp;quot;,
&amp;lt;0.0, 1.0, 0.0&amp;gt;, 1.0);

llListen(LISTENING_CHANNEL, &amp;quot;&amp;quot;, NULL_KEY, &amp;quot;&amp;quot;);

addGraffiti(&amp;quot;justincc&amp;#039;s graffiti board v0.0.2&amp;quot;);
addGraffiti(&amp;quot;Now with primitive word wrap!&amp;quot;);
draw();
}

listen(integer channel, string name, key id, string message)
{
if (message == &amp;quot;!clear&amp;quot;)
{
clearGraffiti();
}
else
{
addGraffiti(message);
}

draw();
}
}&lt;/pre&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:downloads:scripts</category>
            <pubDate>Fri, 29 Nov 2019 10:58:41 +0000</pubDate>
        </item>
        <item>
            <title>Snow Crash</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/begriffe/snow_crash?do=revisions&amp;rev=1575021516</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;snow_crash&quot;&gt;Snow Crash&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
&lt;a href=&quot;http://itclive.spdns.de/wiki/_detail/begriffe/snowcrash.jpg?id=archiv%3Aopensim%3Abegriffe%3Asnow_crash&quot; class=&quot;media wikilink2&quot; title=&quot;begriffe:snowcrash.jpg&quot;&gt;&lt;img src=&quot;http://itclive.spdns.de/wiki/_media/begriffe/snowcrash.jpg?w=250&amp;amp;tok=26ec9b&quot; class=&quot;medialeft&quot; align=&quot;left&quot; loading=&quot;lazy&quot; title=&quot;snowcrash.jpg&quot; alt=&quot;snowcrash.jpg&quot; width=&quot;250&quot; /&gt;&lt;/a&gt; Snow Crash (1992) ist ein Science-Fiction-Roman von &lt;a href=&quot;http://www.nealstephenson.com&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.nealstephenson.com&quot; rel=&quot;ugc nofollow noopener&quot;&gt;Neal Stephenson&lt;/a&gt;, der die Geschichte ursprünglich gemeinsam mit dem Graphiker Tony Sheeder als computergenerierten Comic herausbringen wollte. Er spielt in Los Angeles in einer nicht allzu fernen Zukunft.
&lt;/p&gt;

&lt;p&gt;
Hiro Protagonist, Held und Hauptperson des Buches, ist Pizza-Auslieferer (Auslieferator), Programmierer (was im Roman allgemein als Hacker bezeichnet wird) und Ermittler für die „Central Intelligence Corporation“ (CIC), die kommerziell arbeitende Nachfolgeorganisation der CIA. Die Pizza-Firma gehört dem Mafia-Boss Onkel Enzo, der seinen Kunden eine Zustellzeit von 30 Minuten garantiert, ansonsten stirbt der Auslieferator. Da sich der Staat fast vollständig aus dem öffentlichen Leben zurückgezogen hat und alle gesellschaftlichen Ordnungsfunktionen Privatunternehmen überlassen hat, sind solche Geschäftspraktiken keineswegs illegal; genauso wenig ist hier die Mafia eine kriminelle Vereinigung, sondern eine Franchise-Kette wie alle anderen Institutionen auch: Polizei und Justiz, Regierungen und Staaten sind sämtlich privatisiert. Es herrscht Hyperinflation und extreme soziale Ungleichheit.
&lt;/p&gt;

&lt;p&gt;
Aus dieser anarchokapitalistischen Dystopie fliehen die handelnden Personen immer wieder in das Metaversum, einer Mischung zwischen Internet und MMORPG, durch die sie sich mit Avataren bewegen. Hiro und seine Partnerin, die 15-jährige Kurierfahrerin Y.T. machen sich auf die Suche nach einer geheimnisvollen Droge namens Snow Crash, die seltsamerweise sowohl in der realen Welt als auch im Metaversum verheerende Auswirkungen auf das Gehirn von Menschen, vor allem aber von Programmierern hat. Bei dieser Suche stehen ihnen die Kommunikationsmöglichkeiten der virtuellen Realität, die Kollegen der Mafia und nicht zuletzt Hiros Samuraischwerter (Katana und Wakizashi) zur Seite. Diese Unterstützung ist auch notwendig, da eine gewaltige Verschwörung im Gange ist, die von L. Bob Rife initiiert wurde, dem Eigentümer des weltweiten Glasfasernetzes, Entdecker der Droge, und Förderer einer Pfingstler-Sekte.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Snow Crash&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;snow_crash&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-2171&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit2&quot; id=&quot;was_hat_der_begriff_mit_opensim_zu_tun&quot;&gt;Was hat der Begriff mit OpenSIM zu tun ?&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
Stephenson war zwar nicht der erste, der den Begriff &lt;a href=&quot;http://itclive.spdns.de/wiki/archiv/opensim/begriffe/avatar&quot; class=&quot;wikilink1&quot; title=&quot;archiv:opensim:begriffe:avatar&quot; data-wiki-id=&quot;archiv:opensim:begriffe:avatar&quot;&gt;Avatar&lt;/a&gt; zur Bezeichnung virtueller Abbilder realer Personen verwendete, sein Roman Snow Crash trug aber wesentlich zur Verbreitung des Worts bei. Das Konzept des &lt;a href=&quot;http://itclive.spdns.de/wiki/archiv/opensim/begriffe/metaversum&quot; class=&quot;wikilink1&quot; title=&quot;archiv:opensim:begriffe:metaversum&quot; data-wiki-id=&quot;archiv:opensim:begriffe:metaversum&quot;&gt;Metaversum&lt;/a&gt;s wird als wichtige Inspiration für virtuelle Welten wie Second Life angesehen. Angeblich war der Roman auch eine Inspirationsquelle für die Firma Keyhole, die das Vorgängerprogramm von Google Earth entwickelte.
&lt;/p&gt;

&lt;p&gt;
Quelle: &lt;a href=&quot;http://de.wikipedia.org/wiki/Snow_Crash&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://de.wikipedia.org/wiki/Snow_Crash&quot; rel=&quot;ugc nofollow noopener&quot;&gt;Wikipedia&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Was hat der Begriff mit OpenSIM zu tun ?&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;was_hat_der_begriff_mit_opensim_zu_tun&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;2172-2734&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit3&quot; id=&quot;weitere_links_zu_snow_crash&quot;&gt;Weitere Links zu Snow Crash&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;http://www.cyberartsweb.org/cpace/scifi/ns/snowcrashov.html&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.cyberartsweb.org/cpace/scifi/ns/snowcrashov.html&quot; rel=&quot;ugc nofollow noopener&quot;&gt;http://www.cyberartsweb.org/cpace/scifi/ns/snowcrashov.html&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Weitere Links zu Snow Crash&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;weitere_links_zu_snow_crash&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:3,&amp;quot;range&amp;quot;:&amp;quot;2735-2838&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit4&quot; id=&quot;video&quot;&gt;Video&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
Der Autor Neal Stephenson liest aus seinem Buch „Anathem“:
&lt;/p&gt;

&lt;p&gt;

&lt;object width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/W-kjLY88ZKY&amp;hl=de&amp;fs=1&amp;rel=0&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/W-kjLY88ZKY&amp;hl=de&amp;fs=1&amp;rel=0&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;/embed&gt;&lt;/object&gt;

&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Video&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;video&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:4,&amp;quot;range&amp;quot;:&amp;quot;2839-&amp;quot;} --&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:begriffe</category>
            <pubDate>Fri, 29 Nov 2019 10:58:36 +0000</pubDate>
        </item>
        <item>
            <title>Snow 2 (Schnee)</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/downloads/scripts/snow_2?do=revisions&amp;rev=1575021524</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;snow_2_schnee&quot;&gt;Snow 2 (Schnee)&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;Snow
{
	quota	30000
	material	Flare
	particle_width	0.3
	particle_height	0.3
	cull_each	true
	renderer	billboard
	sorted	true
	local_space	false
	iteration_interval	0
	nonvisible_update_timeout	0
	billboard_type	point
	billboard_origin	center
	billboard_rotation_type	texcoord
	common_up_vector	0 1 0
	point_rendering	false
	accurate_facing	false

	emitter Box
	{
		angle	0
		colour	1 1 1 1
		colour_range_start	1 1 1 1
		colour_range_end	1 1 1 1
		direction	0 -1 0
		emission_rate	1250
		position	0 5 0
		velocity	10
		velocity_min	10
		velocity_max	15
		time_to_live	20
		time_to_live_min	20
		time_to_live_max	20
		duration	0
		duration_min	0
		duration_max	0
		repeat_delay	0
		repeat_delay_min	0
		repeat_delay_max	0
		width	200
		height	200
		depth	1
	}

	affector DeflectorPlane
	{
		plane_point	0 0 0
		plane_normal	0 1 0
		bounce	0
	}

	affector DirectionRandomiser
	{
		randomness	7
		scope	1
		keep_velocity	true
	}
}&lt;/pre&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:downloads:scripts</category>
            <pubDate>Fri, 29 Nov 2019 10:58:44 +0000</pubDate>
        </item>
        <item>
            <title>Hypergrid Teleport</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/media/video/hypergrid_teleport?do=revisions&amp;rev=1575021531</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;hypergrid_teleport&quot;&gt;Hypergrid Teleport&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;iframe width=&quot;480&quot; height=&quot;360&quot; src=&quot;https://www.youtube.com/embed/u-NGJ6eZQyA?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

&lt;/p&gt;

&lt;p&gt;

&lt;iframe width=&quot;480&quot; height=&quot;360&quot; src=&quot;https://www.youtube.com/embed/902N3_ON8zw?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:media:video</category>
            <pubDate>Fri, 29 Nov 2019 10:58:51 +0000</pubDate>
        </item>
        <item>
            <title>OpenSimulator 2nd Birthday</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/media/video/2nd_birthday?do=revisions&amp;rev=1575021530</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;opensimulator_2nd_birthday&quot;&gt;OpenSimulator 2nd Birthday&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;iframe width=&quot;640&quot; height=&quot;360&quot; src=&quot;https://www.youtube.com/embed/TWPYA1QYOhA?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:media:video</category>
            <pubDate>Fri, 29 Nov 2019 10:58:50 +0000</pubDate>
        </item>
        <item>
            <title>Max Headroom</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/media/video/max_headroom?do=revisions&amp;rev=1575021531</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;max_headroom&quot;&gt;Max Headroom&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;iframe width=&quot;480&quot; height=&quot;360&quot; src=&quot;https://www.youtube.com/embed/REU8c0R0Gh0?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Max Headroom&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;max_headroom&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-171&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit2&quot; id=&quot;projekt_max_headroom&quot;&gt;Projekt Max Headroom&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
&lt;a href=&quot;http://itclive.spdns.de/wiki/archiv/opensim/projekte/max_headroom&quot; class=&quot;wikilink1&quot; title=&quot;archiv:opensim:projekte:max_headroom&quot; data-wiki-id=&quot;archiv:opensim:projekte:max_headroom&quot;&gt;Projekt Max Headroom&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Projekt Max Headroom&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;projekt_max_headroom&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;172-&amp;quot;} --&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:media:video</category>
            <pubDate>Fri, 29 Nov 2019 10:58:51 +0000</pubDate>
        </item>
        <item>
            <title>Metanomics</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/media/video/metanomics?do=revisions&amp;rev=1575021531</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;metanomics&quot;&gt;Metanomics&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;iframe width=&quot;480&quot; height=&quot;360&quot; src=&quot;https://www.youtube.com/embed/nS5zRS9wxTs?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:media:video</category>
            <pubDate>Fri, 29 Nov 2019 10:58:51 +0000</pubDate>
        </item>
        <item>
            <title>OpenSIM historic Teleport from Second Life</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/media/video/opensim_historic_teleport_vom_second_life?do=revisions&amp;rev=1575021531</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;opensim_historic_teleport_from_second_life&quot;&gt;OpenSIM historic Teleport from Second Life&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;iframe width=&quot;480&quot; height=&quot;360&quot; src=&quot;https://www.youtube.com/embed/v45EOma7wDo?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

&lt;/p&gt;

&lt;p&gt;
Dieses Video zeigt in einem historischen Ereignis wie die Avatare von Mitarbeitern von &lt;a href=&quot;http://itclive.spdns.de/wiki/archiv/opensim/firmen/ibm&quot; class=&quot;wikilink1&quot; title=&quot;archiv:opensim:firmen:ibm&quot; data-wiki-id=&quot;archiv:opensim:firmen:ibm&quot;&gt;IBM&lt;/a&gt; vom Second Life Preview Grid zu einem OpenSIM Server durch einen Teleport wechseln. Dies ist das allererste Mal das ein Avatar aus einer virtuellen 3D-Welt das Grid wechselt. Vergleichbar wäre dies als wenn ein Mensch die Milchstrasse unseres Universums verlassen und in ein anderes Universum beamen würde. Second Life veröffentlichte diese wegweisende Information &lt;a href=&quot;http://blog.secondlife.com/2008/07/08/ibm-linden-lab-interoperability-announcement&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://blog.secondlife.com/2008/07/08/ibm-linden-lab-interoperability-announcement&quot; rel=&quot;ugc nofollow noopener&quot;&gt;am 8.Juli 2008 im offiziellen Second Life Blog&lt;/a&gt;.
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:media:video</category>
            <pubDate>Fri, 29 Nov 2019 10:58:51 +0000</pubDate>
        </item>
        <item>
            <title>OpenSIM Load-Test</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/media/video/opensim_load_test?do=revisions&amp;rev=1575021531</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;opensim_load-test&quot;&gt;OpenSIM Load-Test&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;iframe width=&quot;480&quot; height=&quot;360&quot; src=&quot;https://www.youtube.com/embed/HjqPi0nklg4?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:media:video</category>
            <pubDate>Fri, 29 Nov 2019 10:58:51 +0000</pubDate>
        </item>
        <item>
            <title>Philip Rosedale about OpenSIM</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/media/video/philip_rosedale_about_opensim?do=revisions&amp;rev=1575021531</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;philip_rosedale_about_opensim&quot;&gt;Philip Rosedale about OpenSIM&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;iframe width=&quot;640&quot; height=&quot;360&quot; src=&quot;https://www.youtube.com/embed/irF-V9RUuXo?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://itclive.spdns.de/wiki/archiv/opensim/firmen/linden_labs/philip_rosedale&quot; class=&quot;wikilink1&quot; title=&quot;archiv:opensim:firmen:linden_labs:philip_rosedale&quot; data-wiki-id=&quot;archiv:opensim:firmen:linden_labs:philip_rosedale&quot;&gt;Philip Rosedale&lt;/a&gt; erklärt in einem Interview (geführt im April 2008 in Paris) warum es wichtig ist offene Schnittstellen in virtuelle Welten einzuführen. Als Beispiel nennt er unter anderem OpenSIM, dass derzeit die meisten Chancen hat als weltweite Standard 3D-Serverplattform zu fungieren.
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:media:video</category>
            <pubDate>Fri, 29 Nov 2019 10:58:51 +0000</pubDate>
        </item>
        <item>
            <title>Philip Rosedale bei TEDtalks</title>
            <link>http://itclive.spdns.de/wiki/archiv/opensim/media/video/philip_rosedale_at_ted_talks?do=revisions&amp;rev=1575021531</link>
            <description>
&lt;h2 class=&quot;sectionedit1&quot; id=&quot;philip_rosedale_bei_tedtalks&quot;&gt;Philip Rosedale bei TEDtalks&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;

&lt;iframe width=&quot;480&quot; height=&quot;360&quot; src=&quot;https://www.youtube.com/embed/lHXXsEtE3b4?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;

&lt;/p&gt;

&lt;p&gt;
Mai 2008, Pasadena (CA), USA
&lt;/p&gt;

&lt;p&gt;
&lt;a href=&quot;http://www.ted.com&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;http://www.ted.com&quot; rel=&quot;ugc nofollow noopener&quot;&gt;http://www.ted.com&lt;/a&gt;
&lt;/p&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>archiv:opensim:media:video</category>
            <pubDate>Fri, 29 Nov 2019 10:58:51 +0000</pubDate>
        </item>
    </channel>
</rss>
