<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://archive.paragonwiki.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Steiner</id>
	<title>Paragon Wiki Archive - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://archive.paragonwiki.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Steiner"/>
	<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/wiki/Special:Contributions/Steiner"/>
	<updated>2026-04-05T20:12:41Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://archive.paragonwiki.com/w/index.php?title=Talk:Server_Status_Script&amp;diff=128022</id>
		<title>Talk:Server Status Script</title>
		<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/w/index.php?title=Talk:Server_Status_Script&amp;diff=128022"/>
		<updated>2009-05-22T13:51:54Z</updated>

		<summary type="html">&lt;p&gt;Steiner: Created page with &amp;#039;Hey folks, just starting the discussion. If you want me to change or explain something... here is the place.&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hey folks, just starting the discussion. If you want me to change or explain something... here is the place.&lt;/div&gt;</summary>
		<author><name>Steiner</name></author>
	</entry>
	<entry>
		<id>https://archive.paragonwiki.com/w/index.php?title=Server_Status_Script&amp;diff=127487</id>
		<title>Server Status Script</title>
		<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/w/index.php?title=Server_Status_Script&amp;diff=127487"/>
		<updated>2009-05-18T02:41:02Z</updated>

		<summary type="html">&lt;p&gt;Steiner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m just posting it here in hopes that folks from the CoH/V community can see it and use it to its fullest extent. &lt;br /&gt;
Feel free to add upon this and post your fixes/ideas or other script languages that have the same function. &lt;br /&gt;
== PHP Server Status Class ==&lt;br /&gt;
====For PHP 5====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
/*&lt;br /&gt;
Timestamp:  5/4/2009 11:48 AM&lt;br /&gt;
Author:     Anthony W. Steiner (of the Titan Network)&lt;br /&gt;
Site:       http://cohtitan.com&lt;br /&gt;
email:      steiner@cohtitan.com&lt;br /&gt;
&lt;br /&gt;
License:    None, I just threw this together for the COH/V community to no&lt;br /&gt;
            ends of my own.&lt;br /&gt;
&lt;br /&gt;
            Do what you want to this script, no credit needs to stay intact.&lt;br /&gt;
&lt;br /&gt;
Summary:    Well, the good folks at &amp;quot;Paragon Studios&amp;quot; finally made the server&lt;br /&gt;
            status a utilitarian XML sheet. This is just something to make it&lt;br /&gt;
            easier on the PHP coders out there that are still seeking some&lt;br /&gt;
            help on the matter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
USAGE&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
Dependencies:&lt;br /&gt;
            - PHP Compatible Server&lt;br /&gt;
            - PHP 5 Mandatory&lt;br /&gt;
            - SimpleXMLElement (only works with PHP 5+)&lt;br /&gt;
&lt;br /&gt;
Example(s): NOTE: (When editing, do no use the &amp;lt;&amp;gt; characters, used as&lt;br /&gt;
            denotation for user-defined variables that you will need to change&lt;br /&gt;
            in you own code.)&lt;br /&gt;
&lt;br /&gt;
            This script is quite easy to use, simply include the php file&lt;br /&gt;
            and call the class to the page in question.&lt;br /&gt;
&lt;br /&gt;
######################## [ Code Example 1 ] ########################&lt;br /&gt;
include (&amp;quot;&amp;lt;path to this file&amp;gt;&amp;quot;);&lt;br /&gt;
$&amp;lt;variable&amp;gt; = New ServerStatus();&lt;br /&gt;
######################## [ Code Example 1 ] #######################&lt;br /&gt;
&lt;br /&gt;
            Keep in mind, you can put the class right inside the page you wish&lt;br /&gt;
            to use this one and not have to include it.&lt;br /&gt;
&lt;br /&gt;
            Now that it&#039;s called we can go forward with just throwing it in&lt;br /&gt;
            with some code.&lt;br /&gt;
&lt;br /&gt;
            The $&amp;lt;variable&amp;gt; is an OBJECT, there for &#039;-&amp;gt;&#039; is where the magic&lt;br /&gt;
            happens.&lt;br /&gt;
&lt;br /&gt;
######################## [ Code Example 2 ] ########################&lt;br /&gt;
foreach( $&amp;lt;variable&amp;gt;-&amp;gt;servers as $serverName =&amp;gt; $serverStatus)&lt;br /&gt;
{&lt;br /&gt;
  echo $serverName . &amp;quot; - &amp;quot; . $serverStatus . &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
######################## [ /Code Example 2 ] #######################&lt;br /&gt;
&lt;br /&gt;
            You can use this method in a million different ways... your&lt;br /&gt;
            imagination is the limit.&lt;br /&gt;
&lt;br /&gt;
            The other two possible values do not need any form of additional&lt;br /&gt;
            coding to write out.&lt;br /&gt;
&lt;br /&gt;
######################## [ Full Page Example ] ########################&lt;br /&gt;
include (&amp;quot;&amp;lt;path to this file&amp;gt;&amp;quot;);&lt;br /&gt;
$&amp;lt;variable&amp;gt; = New ServerStatus();&lt;br /&gt;
&lt;br /&gt;
foreach( $&amp;lt;variable&amp;gt;-&amp;gt;servers as $serverName =&amp;gt; $serverStatus)&lt;br /&gt;
{&lt;br /&gt;
  echo $serverName . &amp;quot; - &amp;quot; . $serverStatus . &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
echo $&amp;lt;variable&amp;gt;-&amp;gt;lastUpdate;&lt;br /&gt;
echo $&amp;lt;variable&amp;gt;-&amp;gt;timeZone;&lt;br /&gt;
######################## [ /Full Page Example] #######################&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
            $variable-&amp;gt;servers&lt;br /&gt;
                - Object&lt;br /&gt;
                - Can be put in a loop (See &amp;quot;Code Example 2&amp;quot;)&lt;br /&gt;
                - Uses Key =&amp;gt; Value syntax for looping&lt;br /&gt;
&lt;br /&gt;
            $variable-&amp;gt;lastUpdate&lt;br /&gt;
                - String&lt;br /&gt;
                - Uses strtotime() function to assume host server&#039;s local timezone&lt;br /&gt;
                - Does Not require any additional code to call&lt;br /&gt;
&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
class ServerStatus&lt;br /&gt;
{&lt;br /&gt;
  public function __construct()&lt;br /&gt;
  {&lt;br /&gt;
      return $this-&amp;gt;get();&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public function get()&lt;br /&gt;
  {&lt;br /&gt;
      $remoteFeed       =  file_get_contents(&amp;quot;http://www.cityofheroes.com/servers/server_stat.xml&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
      $xml              = new SimpleXMLElement($remoteFeed);&lt;br /&gt;
&lt;br /&gt;
      $lastUpdate = (string)$xml[&#039;timestamp&#039;];&lt;br /&gt;
      $timeZone   = (string)$xml[&#039;timezone&#039;];&lt;br /&gt;
      // Using the strtotime() function will allow you to convert the UTC time into your site&#039;s local time,&lt;br /&gt;
      // which can be set in the php.ini if your host/server allows this change.&lt;br /&gt;
      $this-&amp;gt;lastUpdate = date(&#039;h:ia M j, Y&#039;, strtotime($lastUpdate.$timeZone));&lt;br /&gt;
&lt;br /&gt;
      foreach($xml-&amp;gt;server as $server)&lt;br /&gt;
      {&lt;br /&gt;
        $serverObject-&amp;gt;$server[&#039;name&#039;] = (string)$server[&#039;status&#039;] ;&lt;br /&gt;
&lt;br /&gt;
      }&lt;br /&gt;
      $this-&amp;gt;servers    = $serverObject;&lt;br /&gt;
&lt;br /&gt;
      return $this;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$ServerStatus = New ServerStatus;&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A few different examples&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Basic Table&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;th&amp;gt;Server&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;th&amp;gt;Status&amp;lt;/th&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;?php foreach($ServerStatus-&amp;gt;servers as $serverName =&amp;gt; $serverStatus): ?&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;&amp;lt;?= $serverName ?&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;&amp;lt;?= $serverStatus ?&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;?php endforeach; ?&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
Last Update: &amp;lt;?= $ServerStatus-&amp;gt;lastUpdate ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://repo.cohtitan.com/scripts/server_status.php Example] | [http://repo.cohtitan.com/scripts/server_status.phps Source Page]&lt;br /&gt;
&lt;br /&gt;
Yea I only have one example... but if you get crafty with the code you can trade out text for images, or even make it so only the server(s) you want will show up.&lt;br /&gt;
&lt;br /&gt;
Hit me up at steiner@cohtitan.com or PM me on the [http://www.cohtitan.com/forum/index.php?action=pm;sa=send;f=inbox;u=257 Titan Forums] if you have any questions or requests!&lt;/div&gt;</summary>
		<author><name>Steiner</name></author>
	</entry>
	<entry>
		<id>https://archive.paragonwiki.com/w/index.php?title=Server_Status_Script&amp;diff=127486</id>
		<title>Server Status Script</title>
		<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/w/index.php?title=Server_Status_Script&amp;diff=127486"/>
		<updated>2009-05-18T02:40:26Z</updated>

		<summary type="html">&lt;p&gt;Steiner: Server Status Script&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m just posting it here in hope that folks from the CoH/V community can see it and use it to its fullest extent. &lt;br /&gt;
Feel free to add upon this and post your fixes/ideas or other script languages that have the same function. &lt;br /&gt;
== PHP Server Status Class ==&lt;br /&gt;
====For PHP 5====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
/*&lt;br /&gt;
Timestamp:  5/4/2009 11:48 AM&lt;br /&gt;
Author:     Anthony W. Steiner (of the Titan Network)&lt;br /&gt;
Site:       http://cohtitan.com&lt;br /&gt;
email:      steiner@cohtitan.com&lt;br /&gt;
&lt;br /&gt;
License:    None, I just threw this together for the COH/V community to no&lt;br /&gt;
            ends of my own.&lt;br /&gt;
&lt;br /&gt;
            Do what you want to this script, no credit needs to stay intact.&lt;br /&gt;
&lt;br /&gt;
Summary:    Well, the good folks at &amp;quot;Paragon Studios&amp;quot; finally made the server&lt;br /&gt;
            status a utilitarian XML sheet. This is just something to make it&lt;br /&gt;
            easier on the PHP coders out there that are still seeking some&lt;br /&gt;
            help on the matter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
USAGE&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
Dependencies:&lt;br /&gt;
            - PHP Compatible Server&lt;br /&gt;
            - PHP 5 Mandatory&lt;br /&gt;
            - SimpleXMLElement (only works with PHP 5+)&lt;br /&gt;
&lt;br /&gt;
Example(s): NOTE: (When editing, do no use the &amp;lt;&amp;gt; characters, used as&lt;br /&gt;
            denotation for user-defined variables that you will need to change&lt;br /&gt;
            in you own code.)&lt;br /&gt;
&lt;br /&gt;
            This script is quite easy to use, simply include the php file&lt;br /&gt;
            and call the class to the page in question.&lt;br /&gt;
&lt;br /&gt;
######################## [ Code Example 1 ] ########################&lt;br /&gt;
include (&amp;quot;&amp;lt;path to this file&amp;gt;&amp;quot;);&lt;br /&gt;
$&amp;lt;variable&amp;gt; = New ServerStatus();&lt;br /&gt;
######################## [ Code Example 1 ] #######################&lt;br /&gt;
&lt;br /&gt;
            Keep in mind, you can put the class right inside the page you wish&lt;br /&gt;
            to use this one and not have to include it.&lt;br /&gt;
&lt;br /&gt;
            Now that it&#039;s called we can go forward with just throwing it in&lt;br /&gt;
            with some code.&lt;br /&gt;
&lt;br /&gt;
            The $&amp;lt;variable&amp;gt; is an OBJECT, there for &#039;-&amp;gt;&#039; is where the magic&lt;br /&gt;
            happens.&lt;br /&gt;
&lt;br /&gt;
######################## [ Code Example 2 ] ########################&lt;br /&gt;
foreach( $&amp;lt;variable&amp;gt;-&amp;gt;servers as $serverName =&amp;gt; $serverStatus)&lt;br /&gt;
{&lt;br /&gt;
  echo $serverName . &amp;quot; - &amp;quot; . $serverStatus . &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
######################## [ /Code Example 2 ] #######################&lt;br /&gt;
&lt;br /&gt;
            You can use this method in a million different ways... your&lt;br /&gt;
            imagination is the limit.&lt;br /&gt;
&lt;br /&gt;
            The other two possible values do not need any form of additional&lt;br /&gt;
            coding to write out.&lt;br /&gt;
&lt;br /&gt;
######################## [ Full Page Example ] ########################&lt;br /&gt;
include (&amp;quot;&amp;lt;path to this file&amp;gt;&amp;quot;);&lt;br /&gt;
$&amp;lt;variable&amp;gt; = New ServerStatus();&lt;br /&gt;
&lt;br /&gt;
foreach( $&amp;lt;variable&amp;gt;-&amp;gt;servers as $serverName =&amp;gt; $serverStatus)&lt;br /&gt;
{&lt;br /&gt;
  echo $serverName . &amp;quot; - &amp;quot; . $serverStatus . &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
echo $&amp;lt;variable&amp;gt;-&amp;gt;lastUpdate;&lt;br /&gt;
echo $&amp;lt;variable&amp;gt;-&amp;gt;timeZone;&lt;br /&gt;
######################## [ /Full Page Example] #######################&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
            $variable-&amp;gt;servers&lt;br /&gt;
                - Object&lt;br /&gt;
                - Can be put in a loop (See &amp;quot;Code Example 2&amp;quot;)&lt;br /&gt;
                - Uses Key =&amp;gt; Value syntax for looping&lt;br /&gt;
&lt;br /&gt;
            $variable-&amp;gt;lastUpdate&lt;br /&gt;
                - String&lt;br /&gt;
                - Uses strtotime() function to assume host server&#039;s local timezone&lt;br /&gt;
                - Does Not require any additional code to call&lt;br /&gt;
&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
class ServerStatus&lt;br /&gt;
{&lt;br /&gt;
  public function __construct()&lt;br /&gt;
  {&lt;br /&gt;
      return $this-&amp;gt;get();&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public function get()&lt;br /&gt;
  {&lt;br /&gt;
      $remoteFeed       =  file_get_contents(&amp;quot;http://www.cityofheroes.com/servers/server_stat.xml&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
      $xml              = new SimpleXMLElement($remoteFeed);&lt;br /&gt;
&lt;br /&gt;
      $lastUpdate = (string)$xml[&#039;timestamp&#039;];&lt;br /&gt;
      $timeZone   = (string)$xml[&#039;timezone&#039;];&lt;br /&gt;
      // Using the strtotime() function will allow you to convert the UTC time into your site&#039;s local time,&lt;br /&gt;
      // which can be set in the php.ini if your host/server allows this change.&lt;br /&gt;
      $this-&amp;gt;lastUpdate = date(&#039;h:ia M j, Y&#039;, strtotime($lastUpdate.$timeZone));&lt;br /&gt;
&lt;br /&gt;
      foreach($xml-&amp;gt;server as $server)&lt;br /&gt;
      {&lt;br /&gt;
        $serverObject-&amp;gt;$server[&#039;name&#039;] = (string)$server[&#039;status&#039;] ;&lt;br /&gt;
&lt;br /&gt;
      }&lt;br /&gt;
      $this-&amp;gt;servers    = $serverObject;&lt;br /&gt;
&lt;br /&gt;
      return $this;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$ServerStatus = New ServerStatus;&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A few different examples&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Basic Table&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;th&amp;gt;Server&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;th&amp;gt;Status&amp;lt;/th&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;?php foreach($ServerStatus-&amp;gt;servers as $serverName =&amp;gt; $serverStatus): ?&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;&amp;lt;?= $serverName ?&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;&amp;lt;?= $serverStatus ?&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;?php endforeach; ?&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
Last Update: &amp;lt;?= $ServerStatus-&amp;gt;lastUpdate ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://repo.cohtitan.com/scripts/server_status.php Example] | [http://repo.cohtitan.com/scripts/server_status.phps Source Page]&lt;br /&gt;
&lt;br /&gt;
Yea I only have one example... but if you get crafty with the code you can trade out text for images, or even make it so only the server(s) you want will show up.&lt;br /&gt;
&lt;br /&gt;
Hit me up at steiner@cohtitan.com or PM me on the [http://www.cohtitan.com/forum/index.php?action=pm;sa=send;f=inbox;u=257 Titan Forums] if you have any questions or requests!&lt;/div&gt;</summary>
		<author><name>Steiner</name></author>
	</entry>
	<entry>
		<id>https://archive.paragonwiki.com/w/index.php?title=User:Steiner&amp;diff=127485</id>
		<title>User:Steiner</title>
		<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/w/index.php?title=User:Steiner&amp;diff=127485"/>
		<updated>2009-05-18T02:38:10Z</updated>

		<summary type="html">&lt;p&gt;Steiner: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Steiner</name></author>
	</entry>
	<entry>
		<id>https://archive.paragonwiki.com/w/index.php?title=User:Steiner&amp;diff=127484</id>
		<title>User:Steiner</title>
		<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/w/index.php?title=User:Steiner&amp;diff=127484"/>
		<updated>2009-05-18T00:29:17Z</updated>

		<summary type="html">&lt;p&gt;Steiner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Don&#039;t think this script really deserves it&#039;s own page, so I&#039;ll just post it here and hope that folks from the community can see it and use it to its fullest extent. &lt;br /&gt;
== PHP Server Status Class ==&lt;br /&gt;
====For PHP 5====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
/*&lt;br /&gt;
Timestamp:  5/4/2009 11:48 AM&lt;br /&gt;
Author:     Anthony W. Steiner (of the Titan Network)&lt;br /&gt;
Site:       http://cohtitan.com&lt;br /&gt;
email:      steiner@cohtitan.com&lt;br /&gt;
&lt;br /&gt;
License:    None, I just threw this together for the COH/V community to no&lt;br /&gt;
            ends of my own.&lt;br /&gt;
&lt;br /&gt;
            Do what you want to this script, no credit needs to stay intact.&lt;br /&gt;
&lt;br /&gt;
Summary:    Well, the good folks at &amp;quot;Paragon Studios&amp;quot; finally made the server&lt;br /&gt;
            status a utilitarian XML sheet. This is just something to make it&lt;br /&gt;
            easier on the PHP coders out there that are still seeking some&lt;br /&gt;
            help on the matter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
USAGE&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
Dependencies:&lt;br /&gt;
            - PHP Compatible Server&lt;br /&gt;
            - PHP 5 Mandatory&lt;br /&gt;
            - SimpleXMLElement (only works with PHP 5+)&lt;br /&gt;
&lt;br /&gt;
Example(s): NOTE: (When editing, do no use the &amp;lt;&amp;gt; characters, used as&lt;br /&gt;
            denotation for user-defined variables that you will need to change&lt;br /&gt;
            in you own code.)&lt;br /&gt;
&lt;br /&gt;
            This script is quite easy to use, simply include the php file&lt;br /&gt;
            and call the class to the page in question.&lt;br /&gt;
&lt;br /&gt;
######################## [ Code Example 1 ] ########################&lt;br /&gt;
include (&amp;quot;&amp;lt;path to this file&amp;gt;&amp;quot;);&lt;br /&gt;
$&amp;lt;variable&amp;gt; = New ServerStatus();&lt;br /&gt;
######################## [ Code Example 1 ] #######################&lt;br /&gt;
&lt;br /&gt;
            Keep in mind, you can put the class right inside the page you wish&lt;br /&gt;
            to use this one and not have to include it.&lt;br /&gt;
&lt;br /&gt;
            Now that it&#039;s called we can go forward with just throwing it in&lt;br /&gt;
            with some code.&lt;br /&gt;
&lt;br /&gt;
            The $&amp;lt;variable&amp;gt; is an OBJECT, there for &#039;-&amp;gt;&#039; is where the magic&lt;br /&gt;
            happens.&lt;br /&gt;
&lt;br /&gt;
######################## [ Code Example 2 ] ########################&lt;br /&gt;
foreach( $&amp;lt;variable&amp;gt;-&amp;gt;servers as $serverName =&amp;gt; $serverStatus)&lt;br /&gt;
{&lt;br /&gt;
  echo $serverName . &amp;quot; - &amp;quot; . $serverStatus . &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
######################## [ /Code Example 2 ] #######################&lt;br /&gt;
&lt;br /&gt;
            You can use this method in a million different ways... your&lt;br /&gt;
            imagination is the limit.&lt;br /&gt;
&lt;br /&gt;
            The other two possible values do not need any form of additional&lt;br /&gt;
            coding to write out.&lt;br /&gt;
&lt;br /&gt;
######################## [ Full Page Example ] ########################&lt;br /&gt;
include (&amp;quot;&amp;lt;path to this file&amp;gt;&amp;quot;);&lt;br /&gt;
$&amp;lt;variable&amp;gt; = New ServerStatus();&lt;br /&gt;
&lt;br /&gt;
foreach( $&amp;lt;variable&amp;gt;-&amp;gt;servers as $serverName =&amp;gt; $serverStatus)&lt;br /&gt;
{&lt;br /&gt;
  echo $serverName . &amp;quot; - &amp;quot; . $serverStatus . &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
echo $&amp;lt;variable&amp;gt;-&amp;gt;lastUpdate;&lt;br /&gt;
echo $&amp;lt;variable&amp;gt;-&amp;gt;timeZone;&lt;br /&gt;
######################## [ /Full Page Example] #######################&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
            $variable-&amp;gt;servers&lt;br /&gt;
                - Object&lt;br /&gt;
                - Can be put in a loop (See &amp;quot;Code Example 2&amp;quot;)&lt;br /&gt;
                - Uses Key =&amp;gt; Value syntax for looping&lt;br /&gt;
&lt;br /&gt;
            $variable-&amp;gt;lastUpdate&lt;br /&gt;
                - String&lt;br /&gt;
                - Uses strtotime() function to assume host server&#039;s local timezone&lt;br /&gt;
                - Does Not require any additional code to call&lt;br /&gt;
&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
class ServerStatus&lt;br /&gt;
{&lt;br /&gt;
  public function __construct()&lt;br /&gt;
  {&lt;br /&gt;
      return $this-&amp;gt;get();&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public function get()&lt;br /&gt;
  {&lt;br /&gt;
      $remoteFeed       =  file_get_contents(&amp;quot;http://www.cityofheroes.com/servers/server_stat.xml&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
      $xml              = new SimpleXMLElement($remoteFeed);&lt;br /&gt;
&lt;br /&gt;
      $lastUpdate = (string)$xml[&#039;timestamp&#039;];&lt;br /&gt;
      $timeZone   = (string)$xml[&#039;timezone&#039;];&lt;br /&gt;
      // Using the strtotime() function will allow you to convert the UTC time into your site&#039;s local time,&lt;br /&gt;
      // which can be set in the php.ini if your host/server allows this change.&lt;br /&gt;
      $this-&amp;gt;lastUpdate = date(&#039;h:ia M j, Y&#039;, strtotime($lastUpdate.$timeZone));&lt;br /&gt;
&lt;br /&gt;
      foreach($xml-&amp;gt;server as $server)&lt;br /&gt;
      {&lt;br /&gt;
        $serverObject-&amp;gt;$server[&#039;name&#039;] = (string)$server[&#039;status&#039;] ;&lt;br /&gt;
&lt;br /&gt;
      }&lt;br /&gt;
      $this-&amp;gt;servers    = $serverObject;&lt;br /&gt;
&lt;br /&gt;
      return $this;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$ServerStatus = New ServerStatus;&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A few different examples&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Basic Table&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;th&amp;gt;Server&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;th&amp;gt;Status&amp;lt;/th&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;?php foreach($ServerStatus-&amp;gt;servers as $serverName =&amp;gt; $serverStatus): ?&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;&amp;lt;?= $serverName ?&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;&amp;lt;?= $serverStatus ?&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;?php endforeach; ?&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
Last Update: &amp;lt;?= $ServerStatus-&amp;gt;lastUpdate ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://repo.cohtitan.com/scripts/server_status.php Example] | [http://repo.cohtitan.com/scripts/server_status.phps Source Page]&lt;br /&gt;
&lt;br /&gt;
Yea I only have one example... but if you get crafty with the code you can trade out text for images, or even make it so only the server(s) you want will show up.&lt;br /&gt;
&lt;br /&gt;
Hit me up at steiner@cohtitan.com or PM me on the [http://www.cohtitan.com/forum/index.php?action=pm;sa=send;f=inbox;u=257 Titan Forums] if you have any questions or requests!&lt;/div&gt;</summary>
		<author><name>Steiner</name></author>
	</entry>
	<entry>
		<id>https://archive.paragonwiki.com/w/index.php?title=User:Steiner&amp;diff=127483</id>
		<title>User:Steiner</title>
		<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/w/index.php?title=User:Steiner&amp;diff=127483"/>
		<updated>2009-05-18T00:25:09Z</updated>

		<summary type="html">&lt;p&gt;Steiner: Created page with &amp;#039;Don&amp;#039;t think this script really deserves it&amp;#039;s own page, so I&amp;#039;ll just post it here and hope that folks from the community can see it and use it to it&amp;#039;s fullest extent.  == PHP Serv...&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Don&#039;t think this script really deserves it&#039;s own page, so I&#039;ll just post it here and hope that folks from the community can see it and use it to it&#039;s fullest extent. &lt;br /&gt;
== PHP Server Status Class ==&lt;br /&gt;
====For PHP 5====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
/*&lt;br /&gt;
Timestamp:  5/4/2009 11:48 AM&lt;br /&gt;
Author:     Anthony W. Steiner (of the Titan Network)&lt;br /&gt;
Site:       http://cohtitan.com&lt;br /&gt;
email:      steiner@cohtitan.com&lt;br /&gt;
&lt;br /&gt;
License:    None, I just threw this together for the COH/V community to no&lt;br /&gt;
            ends of my own.&lt;br /&gt;
&lt;br /&gt;
            Do what you want to this script, no credit needs to stay intact.&lt;br /&gt;
&lt;br /&gt;
Summary:    Well, the good folks at &amp;quot;Paragon Studios&amp;quot; finally made the server&lt;br /&gt;
            status a utilitarian XML sheet. This is just something to make it&lt;br /&gt;
            easier on the PHP coders out there that are still seeking some&lt;br /&gt;
            help on the matter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
USAGE&lt;br /&gt;
-------------------------------------------------------------------------------&lt;br /&gt;
Dependencies:&lt;br /&gt;
            - PHP Compatible Server&lt;br /&gt;
            - PHP 5 Mandatory&lt;br /&gt;
            - SimpleXMLElement (only works with PHP 5+)&lt;br /&gt;
&lt;br /&gt;
Example(s): NOTE: (When editing, do no use the &amp;lt;&amp;gt; characters, used as&lt;br /&gt;
            denotation for user-defined variables that you will need to change&lt;br /&gt;
            in you own code.)&lt;br /&gt;
&lt;br /&gt;
            This script is quite easy to use, simply include the php file&lt;br /&gt;
            and call the class to the page in question.&lt;br /&gt;
&lt;br /&gt;
######################## [ Code Example 1 ] ########################&lt;br /&gt;
include (&amp;quot;&amp;lt;path to this file&amp;gt;&amp;quot;);&lt;br /&gt;
$&amp;lt;variable&amp;gt; = New ServerStatus();&lt;br /&gt;
######################## [ Code Example 1 ] #######################&lt;br /&gt;
&lt;br /&gt;
            Keep in mind, you can put the class right inside the page you wish&lt;br /&gt;
            to use this one and not have to include it.&lt;br /&gt;
&lt;br /&gt;
            Now that it&#039;s called we can go forward with just throwing it in&lt;br /&gt;
            with some code.&lt;br /&gt;
&lt;br /&gt;
            The $&amp;lt;variable&amp;gt; is an OBJECT, there for &#039;-&amp;gt;&#039; is where the magic&lt;br /&gt;
            happens.&lt;br /&gt;
&lt;br /&gt;
######################## [ Code Example 2 ] ########################&lt;br /&gt;
foreach( $&amp;lt;variable&amp;gt;-&amp;gt;servers as $serverName =&amp;gt; $serverStatus)&lt;br /&gt;
{&lt;br /&gt;
  echo $serverName . &amp;quot; - &amp;quot; . $serverStatus . &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
######################## [ /Code Example 2 ] #######################&lt;br /&gt;
&lt;br /&gt;
            You can use this method in a million different ways... your&lt;br /&gt;
            imagination is the limit.&lt;br /&gt;
&lt;br /&gt;
            The other two possible values do not need any form of additional&lt;br /&gt;
            coding to write out.&lt;br /&gt;
&lt;br /&gt;
######################## [ Full Page Example ] ########################&lt;br /&gt;
include (&amp;quot;&amp;lt;path to this file&amp;gt;&amp;quot;);&lt;br /&gt;
$&amp;lt;variable&amp;gt; = New ServerStatus();&lt;br /&gt;
&lt;br /&gt;
foreach( $&amp;lt;variable&amp;gt;-&amp;gt;servers as $serverName =&amp;gt; $serverStatus)&lt;br /&gt;
{&lt;br /&gt;
  echo $serverName . &amp;quot; - &amp;quot; . $serverStatus . &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
echo $&amp;lt;variable&amp;gt;-&amp;gt;lastUpdate;&lt;br /&gt;
echo $&amp;lt;variable&amp;gt;-&amp;gt;timeZone;&lt;br /&gt;
######################## [ /Full Page Example] #######################&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
            $variable-&amp;gt;servers&lt;br /&gt;
                - Object&lt;br /&gt;
                - Can be put in a loop (See &amp;quot;Code Example 2&amp;quot;)&lt;br /&gt;
                - Uses Key =&amp;gt; Value syntax for looping&lt;br /&gt;
&lt;br /&gt;
            $variable-&amp;gt;lastUpdate&lt;br /&gt;
                - String&lt;br /&gt;
                - Uses strtotime() function to assume host server&#039;s local timezone&lt;br /&gt;
                - Does Not require any additional code to call&lt;br /&gt;
&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
class ServerStatus&lt;br /&gt;
{&lt;br /&gt;
  public function __construct()&lt;br /&gt;
  {&lt;br /&gt;
      return $this-&amp;gt;get();&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public function get()&lt;br /&gt;
  {&lt;br /&gt;
      $remoteFeed       =  file_get_contents(&amp;quot;http://www.cityofheroes.com/servers/server_stat.xml&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
      $xml              = new SimpleXMLElement($remoteFeed);&lt;br /&gt;
&lt;br /&gt;
      $lastUpdate = (string)$xml[&#039;timestamp&#039;];&lt;br /&gt;
      $timeZone   = (string)$xml[&#039;timezone&#039;];&lt;br /&gt;
      // Using the strtotime() function will allow you to convert the UTC time into your site&#039;s local time,&lt;br /&gt;
      // which can be set in the php.ini if your host/server allows this change.&lt;br /&gt;
      $this-&amp;gt;lastUpdate = date(&#039;h:ia M j, Y&#039;, strtotime($lastUpdate.$timeZone));&lt;br /&gt;
&lt;br /&gt;
      foreach($xml-&amp;gt;server as $server)&lt;br /&gt;
      {&lt;br /&gt;
        $serverObject-&amp;gt;$server[&#039;name&#039;] = (string)$server[&#039;status&#039;] ;&lt;br /&gt;
&lt;br /&gt;
      }&lt;br /&gt;
      $this-&amp;gt;servers    = $serverObject;&lt;br /&gt;
&lt;br /&gt;
      return $this;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
$ServerStatus = New ServerStatus;&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A few different examples&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Basic Table&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;th&amp;gt;Server&amp;lt;/th&amp;gt;&lt;br /&gt;
    &amp;lt;th&amp;gt;Status&amp;lt;/th&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;?php foreach($ServerStatus-&amp;gt;servers as $serverName =&amp;gt; $serverStatus): ?&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;&amp;lt;?= $serverName ?&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;&amp;lt;?= $serverStatus ?&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;?php endforeach; ?&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
Last Update: &amp;lt;?= $ServerStatus-&amp;gt;lastUpdate ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://repo.cohtitan.com/scripts/server_status.php Example] | [http://repo.cohtitan.com/scripts/server_status.phps Source Page]&lt;br /&gt;
&lt;br /&gt;
Yea I only have one example... but if you get crafty with the code you can trade out text for images, or even make it so only the server(s) you want will show up.&lt;br /&gt;
&lt;br /&gt;
Hit me up at steiner@cohtitan.com or PM me on the [http://www.cohtitan.com/forum/index.php?action=pm;sa=send;f=inbox;u=257 Titan Forums] if you have any questions or requests!&lt;/div&gt;</summary>
		<author><name>Steiner</name></author>
	</entry>
	<entry>
		<id>https://archive.paragonwiki.com/w/index.php?title=Traveler_Badge&amp;diff=111104</id>
		<title>Traveler Badge</title>
		<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/w/index.php?title=Traveler_Badge&amp;diff=111104"/>
		<updated>2009-01-08T02:20:36Z</updated>

		<summary type="html">&lt;p&gt;Steiner: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ __NOEDITSECTION__&lt;br /&gt;
{{wip}}&lt;br /&gt;
{{Image|Badge_DayJobAcc_Traveler.png}}&lt;br /&gt;
== Description ==&lt;br /&gt;
Your travels around both Paragon City and the Shadow Shard have become a full time job for you and have earned you the title of Traveler. While logged out in either a Train Station or the Shadow Shard you will earn fuel for your Traveler’s Jet Pack at an accelearted rate.&lt;br /&gt;
&lt;br /&gt;
== Accolade Power ==&lt;br /&gt;
{{PowerBox|Icon=DayJob_Flight.png|Name={{red|Traveler&#039;s Pack?}}|Effect=Toggle: Self Fly|Desc=Your hard work from your Day Job has given you access to a Jet Pack.  The Traveler&#039;s Jetpack will allow you to fly for as long as there is enough fuel.  Logging out in Grandville or The Shadow Shard will earn you additional usage time for your Traveler&#039;s Jet Pack.}}&lt;br /&gt;
&lt;br /&gt;
For every X hours, {{Character}} gains Y duration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to Get ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;30%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;60%&amp;quot; | [[Image:Badge_DayJob_DimensionalExplorer.png|30 px]] {{DayJobBadge|Dimensional Explorer}}&#039;&#039;&#039;&lt;br /&gt;
| width=&amp;quot;40%&amp;quot; | [[Image:Badge_DayJob_Commuter.png|30 px]] {{DayJobBadge|Commuter}}&lt;br /&gt;
|-&lt;br /&gt;
| colspan=2 align=center | [[Image:Badge_DayJobAcc_Traveler.png|40 px]] &#039;&#039;&#039;Traveler&#039;&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Day Job Badges]]&lt;br /&gt;
* [[Day Jobs]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== External Links==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:CoH Accolade Badges]]&lt;/div&gt;</summary>
		<author><name>Steiner</name></author>
	</entry>
	<entry>
		<id>https://archive.paragonwiki.com/w/index.php?title=Paragon_Wiki_Archive:Community_Portal&amp;diff=103109</id>
		<title>Paragon Wiki Archive:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/w/index.php?title=Paragon_Wiki_Archive:Community_Portal&amp;diff=103109"/>
		<updated>2008-11-26T06:34:25Z</updated>

		<summary type="html">&lt;p&gt;Steiner: /* Other Fan Sites */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Official NCSoft Sites ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cityofheroes.com City of Heroes]&lt;br /&gt;
* [http://www.cityofvillains.com City of Villains]&lt;br /&gt;
* [http://plaync.com PlayNC.com]&lt;br /&gt;
* [https://boards.cityofheroes.com/ubbthreads.php Official forums]&lt;br /&gt;
* [http://www.cityofheroes.com/news/patch_notes.html Recent Patch Notes]&lt;br /&gt;
* [http://www.plaync.com/us/support/prod_9.html Support Knowledge Base]&lt;br /&gt;
* [http://www.cityofheroes.com/servers/index.html Server Status]&lt;br /&gt;
* [https://secure.plaync.com/cgi-bin/accountManagement.pl?game=coh Account Management]&lt;br /&gt;
* [https://secure.cityofheroes.com/cgi-bin/coh_transfer.pl Test Server Character Transfer]&lt;br /&gt;
&lt;br /&gt;
== Other Fan Sites ==&lt;br /&gt;
&lt;br /&gt;
If you want your site listed here, please edit this page and add it in!&lt;br /&gt;
&lt;br /&gt;
* [http://www.vidiotmaps.com/ VidiotMaps], geographical resource for Paragon City and the Rogue Isles&lt;br /&gt;
** [http://www.badge-hunter.com/ Badge-Hunter], sister site of VidiotMaps. Badge Tracking site that ties in with HeroStats.&lt;br /&gt;
&amp;lt;!-- !!!NOTE!!!: titan placed below vidiots by Konoko. Discuss on Talk page. Indented list more visible than top level items, and everything below the indented list starts to get lost. --&amp;gt;&lt;br /&gt;
* [http://www.cohtitan.com/ Titan Network] &amp;quot;Bringing Heroes Together&amp;quot;&lt;br /&gt;
** [http://www.cohplanner.com Mid&#039;s Hero Designer]. Download-able program. Database is kept current. Includes [[Invention]] sets for enhancements, and takes those bonuses into account when calculating buffs. &#039;&#039;&#039;Now Issue 12 Compatible&#039;&#039;&#039;&lt;br /&gt;
** [http://www.cohplanner.com SuckerPunch&#039;s Online Build Planner], Cross-browser/OS online build planner.&lt;br /&gt;
** [http://faces.cohtitan.com CoHFaces], Behind the Mask - Share real pics of yourself!&lt;br /&gt;
** [http://cit.cohtitan.com/ City Info Tracker], replaces City Game Tracker and City Info Terminal. Still integrates with Herostats and has a lightweight client (in development)&lt;br /&gt;
** [http://coh.redtomax.com/ coh.RedTomax.com], RedTomax&#039;s site, with extensive information on missions, powers, and much more.&lt;br /&gt;
** [http://cov.redtomax.com/ cov.RedTomax.com], for villains&lt;br /&gt;
* [http://www.dotfour.net/coh/ Devs Digest Rss Feed]&lt;br /&gt;
* [http://www.avatarsunited.com/set_theme?return_url=%2F&amp;amp;theme_id=2 Avatars United] CoH and general MMO community for your virtual avatars. Register your avatar, upload your profile picture, write your biography and share some of your exploits in virtual worlds through pictures, videos and blogs. &lt;br /&gt;
* [http://www.randomdice.com/cohgreetings/ Electronic Super Greetings], send an electronic postcard with customized motifs from City of Heroes and Villains&lt;br /&gt;
* [http://coh.warcry.com/ Warcry], a great site with lots of resources&lt;br /&gt;
* ColdFront&#039;s [http://coh.coldfront.net/ City of Heroes] and [http://cov.coldfront.net/ City of Villains] sites. &amp;lt;!-- verify:, which includes a very handy badge tracking application --&amp;gt;&lt;br /&gt;
** ColdFront also hosts [http://sherksilver.coldfront.net/ Sherksilver&#039;s CoH/CoV Character Builder].&lt;br /&gt;
* [http://www.thecaperadio.com/ The Cape Radio], getting your groove on while stomping bad guys&lt;br /&gt;
* [http://www.justiceradio.net/ Justice Radio], Justice Server&#039;s premier radio station. Rock out and rock on! &lt;br /&gt;
&amp;lt;!-- * [http://www.pf-coh.com/victory/ Official Victory Site], Offical website for the Victory Server. : NOW LINKS TO TITAN NETWORK --&amp;gt;&lt;br /&gt;
* [http://www.pcfreepress.com/ Paragon City Free Press], sister site of the Paragon Wiki&lt;br /&gt;
* [http://cantatus.gottapixel.com/ Paragon City Touristry Board], details the &#039;&#039;true&#039;&#039;, unheard story of Paragon City (parody site)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- not updated http://cohunlimited.wetpaint.com/pageSearch/updated : * [http://www.cohunlimited.wetpaint.com/ CoH Unlimited] A CoH news fansite ?? --&amp;gt;&lt;br /&gt;
* [http://home.comcast.net/~coh-tog/ Tog&#039;s Hero University], A semi RP site for new players covering much of the basic game.&lt;br /&gt;
&lt;br /&gt;
* [http://coh.jeremyduffy.com/ Jordan&#039;s Town], A fairly irregularly updated City of Heroes web comic and site full of great guides to various character types. Includes pictures of the powers, slotting and build samples, and sample binds. &lt;br /&gt;
** [http://coh.jeremyduffy.com/character-customizing/toon-gen/ Jordan&#039;s CoX Character Generation Guide], My pride of the guides on my site: a nine page primer on how to make awesome characters, costumes, and custom binds for use during gameplay to have the most unique experience possible per character.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
These sites are subject to verification and periodic review and may be removed if deemed inactive or inappropriate.&lt;br /&gt;
&lt;br /&gt;
== Game Utilities ==&lt;br /&gt;
&lt;br /&gt;
{{divbox|yellow|Important Note|Players have the responsibility to be aware of the PlayNC [http://www.plaync.com/help/eula_coh.html EULA]. The following applications are believed by most of the community to be EULA legal. However, they are not endorsed by Paragon Wiki, and players&#039; use of them is solely at their own risk.}}&lt;br /&gt;
&lt;br /&gt;
* Map Patches replace many in-game maps of city zones and missions with informational icons and text.&lt;br /&gt;
** [http://www.vidiotmaps.com/downloads.php VidiotMaps].&lt;br /&gt;
** [http://paragonmaps.com/index.php?option=com_content&amp;amp;task=category&amp;amp;sectionid=1&amp;amp;id=13&amp;amp;Itemid=33 ParagonMaps].&lt;br /&gt;
* Badge Tracking. Manually or automatically enter badges, see which ones you&#039;re missing, compare with other players who also use these sites.&lt;br /&gt;
** [http://www.cityinfoterminal.com City Information Tracker](CiT). Part of Titan Network.&lt;br /&gt;
** [http://www.badge-hunter.com Badge-Hunter](BH). Sister site of VidiotMaps.&lt;br /&gt;
* [http://www.herostats.org/downloads.html HeroStats]. A utility that tracks in-game statistics and that is capable of showing buff timers. Can automatically update the badge tracking websites above (CiT and, BH).&lt;br /&gt;
* Character builder/designer/planners. Create and save character builds, share with others through forum exports or build imports.&lt;br /&gt;
** [http://www.honourableunited.org.uk/mhd.php Mid&#039;s Hero Designer]. Download-able program. Updated 2008-07-21 ([[Issue 12|I12]] current). Includes [[Invention]] sets for enhancements, and takes those bonuses into account when calculating buffs. Builds can be exported with a data chunk to import later.&lt;br /&gt;
** [http://www.cohplanner.com SuckerPunch&#039;s Online Build Planner]. Online webapp. ([[Issue 12|I12]] current). Includes Invention sets. Since it&#039;s entirely javascript based, builds can be shared with any web browser.&lt;br /&gt;
&amp;lt;!-- ** [http://coh.redtomax.com/planner/ Red Tomax&#039;s CoX Character Planner]. Offline Java application. Released 2007-03-12. &#039;&#039;&#039;LINK IS NOW DEAD, PLANNER PULLED BY RED TOMAX SEVERAL MONTHS AGO&#039;&#039;&#039; --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Not recently updated&lt;br /&gt;
** [http://sherksilver.coldfront.net/index.php Sherksilver]. Updated 24 Feb 2006 (I6 current).&lt;br /&gt;
** JoeChott??. Updated ??/??/???? (I? current).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{divbox|yellow|Important Note|As above, players have the responsibility to be aware of the PlayNC [http://www.plaync.com/help/eula_coh.html EULA]. Use of the following applications is frowned upon by PlayNC and likely violates the EULA. They are not endorsed by Paragon Wiki, and players&#039; use of them is solely at their own risk.}}&lt;br /&gt;
&lt;br /&gt;
* [http://sourceforge.net/project/showfiles.php?group_id=131496&amp;amp;package_id=178537 PiggViewer], an application that allows extraction of game client files.&lt;br /&gt;
* [http://www.watto.org/extract/index.html Game Extractor], a Java application that allows extraction of game client files.&lt;br /&gt;
&lt;br /&gt;
==Super/Villain Group Sites==&lt;br /&gt;
;[http://www.clangroups.com/Guild.aspx?GuildID=273629&amp;amp;TabID=2296855 The Ambassadors of Peace]: A Super Group on the server Justice. Find out more info in the Information section on our website&#039;s Home Page. &lt;br /&gt;
;[http://www.arachnoselite.com/ Arachnos Elite]: - Strength Through Undying Loyalty -  One of the very first Arachnos based villain groups, formed on day one of the CoV headstart. Roleplaying, on Virtue Server&lt;br /&gt;
;[http://www.guildportal.com/Guild.aspx?GuildID=15730&amp;amp;TabID=132948 C.O.V.E.R.]: was founded in the spring of 1971 to assist smaller supergroups in the fight against domestic crime.&lt;br /&gt;
;[http://www.users.qwest.net/~fjeff18/web/mu/Mu%20index.htm The Cult of Mu]: An ancient magical VG on virtue.&lt;br /&gt;
;[http://www.thedarkblade.net/ The Dark Blade]: on Virtue; mature group that likes to play the darker side of characters.&lt;br /&gt;
;[http://www.defendersofparagon.net The Defenders of Paragon]: and [http://www.disciplesofpower.net/ The Disciples of Power] on Infinity; mature, no drama, fun times, period.&lt;br /&gt;
;[http://www.guildportal.com/Guild.aspx?GuildID=19063&amp;amp;TabID=171662 Joint Task Force Hero]: Military forces deployed in Paragon City.&lt;br /&gt;
;[http://jal.guildportal.com/Guild.aspx?GuildID=35313&amp;amp;TabID=314284 Justice for All League (JAL)]: PVP-oriented supergroup based on Test server, with sister VG Paragon&#039;s Most Wanted.&lt;br /&gt;
;[http://www.legionofcatgirls.com/ Legion of Catgirls]: A feminine, feline SG on several servers.&lt;br /&gt;
;[http://max.linxzy.com/news.php Maximum Carnage and Maximum Bloodshed]: The website and forums for the Hero SG - Maximum Carnage, and the Villain SG - Maximum Bloodshed. Both are located on the Union Server.&lt;br /&gt;
;[http://wiki.rpg.net/index.php/Meta_Forces Meta Forces]: Soldiers assisting Supers on the Virtue server.&lt;br /&gt;
;[http://www.pcda.us/ Paragon City Detective Agency]: Close knit group of players discussing the state of the game, trading tips, and generally gabbing. Visitors welcome!&lt;br /&gt;
;[http://www.paragonpd.net/ Paragon PD]: Protect and Serve with Paragon City&#039;s finest.&lt;br /&gt;
;[http://cohtaxis.com/ Paragon Taxi Service]: A service-oriented group dedicated to helping the heroes of the city.&lt;br /&gt;
;[http://www.kwtools.nl/coh/ Seekers of Intrinity]: EU SG on Union Server. Friendly, fun and always active members.&lt;br /&gt;
;[http://zerotolerance.guildportal.com/ Zero Tolerance]: Small top 5 ranked villain group on Justice created October 29, 2005. Thrives on teamwork and dedication.&lt;br /&gt;
;[http://www.zerotolerancesg.com/ Zero Tolerance]: One of the Top Ranked SG&#039;s on Pinnacle.&lt;br /&gt;
;[http://www.sinister-hq.com/ S.I.N.I.S.T.E.R]: One of the Top Ranked VG&#039;s on Justice. Based primarily in Australia.&lt;br /&gt;
;[http://victorycrusaders.guildportal.com/ The Hellish Crusaders]: Located on the Victory server. One of the first, and oldest villain groups on Victory, formed in 2005. Weekly events and meetings and global channels.&lt;br /&gt;
&lt;br /&gt;
These sites are subject to verification and periodic review and may be removed if deemed inactive or inappropriate.&lt;br /&gt;
&lt;br /&gt;
== Friend Sites ==&lt;br /&gt;
* Web browsers&lt;br /&gt;
** [http://www.mozilla.org/ Get Firefox], the browser you can trust&lt;br /&gt;
** [http://www.opera.com/ Opera], another good browser&lt;br /&gt;
** [http://www.google.com/chrome Google Chrome], the new player in the market&lt;br /&gt;
* Support the [http://www.eff.org/ Electronic Frontier Foundation], defending your digital rights&lt;br /&gt;
* Image editors&lt;br /&gt;
** [http://www.gimp.org/ The Gimp], a powerful and 100% free image editor.&lt;br /&gt;
** [http://localhost Paint.NET], a &#039;clone&#039; of MSPAINT built on the .NET framework. Also free.&lt;br /&gt;
* Text editors&lt;br /&gt;
** [http://notepad-plus.sourceforge.net/uk/site.htm Notepad++], a powerful open source replacement for Notepad.&lt;br /&gt;
** [http://www.pspad.com/ PSPad], another free (but not open source) text editor.&lt;/div&gt;</summary>
		<author><name>Steiner</name></author>
	</entry>
	<entry>
		<id>https://archive.paragonwiki.com/w/index.php?title=Paragon_Wiki_Archive:Community_Portal&amp;diff=103108</id>
		<title>Paragon Wiki Archive:Community Portal</title>
		<link rel="alternate" type="text/html" href="https://archive.paragonwiki.com/w/index.php?title=Paragon_Wiki_Archive:Community_Portal&amp;diff=103108"/>
		<updated>2008-11-26T06:33:32Z</updated>

		<summary type="html">&lt;p&gt;Steiner: /* Other Fan Sites */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Official NCSoft Sites ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cityofheroes.com City of Heroes]&lt;br /&gt;
* [http://www.cityofvillains.com City of Villains]&lt;br /&gt;
* [http://plaync.com PlayNC.com]&lt;br /&gt;
* [https://boards.cityofheroes.com/ubbthreads.php Official forums]&lt;br /&gt;
* [http://www.cityofheroes.com/news/patch_notes.html Recent Patch Notes]&lt;br /&gt;
* [http://www.plaync.com/us/support/prod_9.html Support Knowledge Base]&lt;br /&gt;
* [http://www.cityofheroes.com/servers/index.html Server Status]&lt;br /&gt;
* [https://secure.plaync.com/cgi-bin/accountManagement.pl?game=coh Account Management]&lt;br /&gt;
* [https://secure.cityofheroes.com/cgi-bin/coh_transfer.pl Test Server Character Transfer]&lt;br /&gt;
&lt;br /&gt;
== Other Fan Sites ==&lt;br /&gt;
&lt;br /&gt;
If you want your site listed here, please edit this page and add it in!&lt;br /&gt;
&lt;br /&gt;
* [http://www.vidiotmaps.com/ VidiotMaps], geographical resource for Paragon City and the Rogue Isles&lt;br /&gt;
** [http://www.badge-hunter.com/ Badge-Hunter], sister site of VidiotMaps. Badge Tracking site that ties in with HeroStats.&lt;br /&gt;
&amp;lt;!-- !!!NOTE!!!: titan placed below vidiots by Konoko. Discuss on Talk page. Indented list more visible than top level items, and everything below the indented list starts to get lost. --&amp;gt;&lt;br /&gt;
* [http://www.cohtitan.com/ Titan Network] &amp;quot;Bringing Heroes Together&amp;quot;&lt;br /&gt;
** [http://www.cohplanner.com Mid&#039;s Hero Designer]. Download-able program. Database is kept current. Includes [[Invention]] sets for enhancements, and takes those bonuses into account when calculating buffs. &#039;&#039;&#039;Now Issue 12 Compatible&#039;&#039;&#039;&lt;br /&gt;
** [http://www.cohplanner.com SuckerPunch&#039;s Online Build Planner], Cross-browser/OS online build planner.&lt;br /&gt;
** [http://www.cohfaces.com CoHFaces], Behind the Mask - Share real pics of yourself!&lt;br /&gt;
** [http://cit.cohtitan.com/ City Info Tracker], replaces City Game Tracker and City Info Terminal. Still integrates with Herostats and has a lightweight client (in development)&lt;br /&gt;
** [http://coh.redtomax.com/ coh.RedTomax.com], RedTomax&#039;s site, with extensive information on missions, powers, and much more.&lt;br /&gt;
** [http://cov.redtomax.com/ cov.RedTomax.com], for villains&lt;br /&gt;
* [http://www.dotfour.net/coh/ Devs Digest Rss Feed]&lt;br /&gt;
* [http://www.avatarsunited.com/set_theme?return_url=%2F&amp;amp;theme_id=2 Avatars United] CoH and general MMO community for your virtual avatars. Register your avatar, upload your profile picture, write your biography and share some of your exploits in virtual worlds through pictures, videos and blogs. &lt;br /&gt;
* [http://www.randomdice.com/cohgreetings/ Electronic Super Greetings], send an electronic postcard with customized motifs from City of Heroes and Villains&lt;br /&gt;
* [http://coh.warcry.com/ Warcry], a great site with lots of resources&lt;br /&gt;
* ColdFront&#039;s [http://coh.coldfront.net/ City of Heroes] and [http://cov.coldfront.net/ City of Villains] sites. &amp;lt;!-- verify:, which includes a very handy badge tracking application --&amp;gt;&lt;br /&gt;
** ColdFront also hosts [http://sherksilver.coldfront.net/ Sherksilver&#039;s CoH/CoV Character Builder].&lt;br /&gt;
* [http://www.thecaperadio.com/ The Cape Radio], getting your groove on while stomping bad guys&lt;br /&gt;
* [http://www.justiceradio.net/ Justice Radio], Justice Server&#039;s premier radio station. Rock out and rock on! &lt;br /&gt;
&amp;lt;!-- * [http://www.pf-coh.com/victory/ Official Victory Site], Offical website for the Victory Server. : NOW LINKS TO TITAN NETWORK --&amp;gt;&lt;br /&gt;
* [http://www.pcfreepress.com/ Paragon City Free Press], sister site of the Paragon Wiki&lt;br /&gt;
* [http://cantatus.gottapixel.com/ Paragon City Touristry Board], details the &#039;&#039;true&#039;&#039;, unheard story of Paragon City (parody site)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- not updated http://cohunlimited.wetpaint.com/pageSearch/updated : * [http://www.cohunlimited.wetpaint.com/ CoH Unlimited] A CoH news fansite ?? --&amp;gt;&lt;br /&gt;
* [http://home.comcast.net/~coh-tog/ Tog&#039;s Hero University], A semi RP site for new players covering much of the basic game.&lt;br /&gt;
&lt;br /&gt;
* [http://coh.jeremyduffy.com/ Jordan&#039;s Town], A fairly irregularly updated City of Heroes web comic and site full of great guides to various character types. Includes pictures of the powers, slotting and build samples, and sample binds. &lt;br /&gt;
** [http://coh.jeremyduffy.com/character-customizing/toon-gen/ Jordan&#039;s CoX Character Generation Guide], My pride of the guides on my site: a nine page primer on how to make awesome characters, costumes, and custom binds for use during gameplay to have the most unique experience possible per character.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
These sites are subject to verification and periodic review and may be removed if deemed inactive or inappropriate.&lt;br /&gt;
&lt;br /&gt;
== Game Utilities ==&lt;br /&gt;
&lt;br /&gt;
{{divbox|yellow|Important Note|Players have the responsibility to be aware of the PlayNC [http://www.plaync.com/help/eula_coh.html EULA]. The following applications are believed by most of the community to be EULA legal. However, they are not endorsed by Paragon Wiki, and players&#039; use of them is solely at their own risk.}}&lt;br /&gt;
&lt;br /&gt;
* Map Patches replace many in-game maps of city zones and missions with informational icons and text.&lt;br /&gt;
** [http://www.vidiotmaps.com/downloads.php VidiotMaps].&lt;br /&gt;
** [http://paragonmaps.com/index.php?option=com_content&amp;amp;task=category&amp;amp;sectionid=1&amp;amp;id=13&amp;amp;Itemid=33 ParagonMaps].&lt;br /&gt;
* Badge Tracking. Manually or automatically enter badges, see which ones you&#039;re missing, compare with other players who also use these sites.&lt;br /&gt;
** [http://www.cityinfoterminal.com City Information Tracker](CiT). Part of Titan Network.&lt;br /&gt;
** [http://www.badge-hunter.com Badge-Hunter](BH). Sister site of VidiotMaps.&lt;br /&gt;
* [http://www.herostats.org/downloads.html HeroStats]. A utility that tracks in-game statistics and that is capable of showing buff timers. Can automatically update the badge tracking websites above (CiT and, BH).&lt;br /&gt;
* Character builder/designer/planners. Create and save character builds, share with others through forum exports or build imports.&lt;br /&gt;
** [http://www.honourableunited.org.uk/mhd.php Mid&#039;s Hero Designer]. Download-able program. Updated 2008-07-21 ([[Issue 12|I12]] current). Includes [[Invention]] sets for enhancements, and takes those bonuses into account when calculating buffs. Builds can be exported with a data chunk to import later.&lt;br /&gt;
** [http://www.cohplanner.com SuckerPunch&#039;s Online Build Planner]. Online webapp. ([[Issue 12|I12]] current). Includes Invention sets. Since it&#039;s entirely javascript based, builds can be shared with any web browser.&lt;br /&gt;
&amp;lt;!-- ** [http://coh.redtomax.com/planner/ Red Tomax&#039;s CoX Character Planner]. Offline Java application. Released 2007-03-12. &#039;&#039;&#039;LINK IS NOW DEAD, PLANNER PULLED BY RED TOMAX SEVERAL MONTHS AGO&#039;&#039;&#039; --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Not recently updated&lt;br /&gt;
** [http://sherksilver.coldfront.net/index.php Sherksilver]. Updated 24 Feb 2006 (I6 current).&lt;br /&gt;
** JoeChott??. Updated ??/??/???? (I? current).&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{divbox|yellow|Important Note|As above, players have the responsibility to be aware of the PlayNC [http://www.plaync.com/help/eula_coh.html EULA]. Use of the following applications is frowned upon by PlayNC and likely violates the EULA. They are not endorsed by Paragon Wiki, and players&#039; use of them is solely at their own risk.}}&lt;br /&gt;
&lt;br /&gt;
* [http://sourceforge.net/project/showfiles.php?group_id=131496&amp;amp;package_id=178537 PiggViewer], an application that allows extraction of game client files.&lt;br /&gt;
* [http://www.watto.org/extract/index.html Game Extractor], a Java application that allows extraction of game client files.&lt;br /&gt;
&lt;br /&gt;
==Super/Villain Group Sites==&lt;br /&gt;
;[http://www.clangroups.com/Guild.aspx?GuildID=273629&amp;amp;TabID=2296855 The Ambassadors of Peace]: A Super Group on the server Justice. Find out more info in the Information section on our website&#039;s Home Page. &lt;br /&gt;
;[http://www.arachnoselite.com/ Arachnos Elite]: - Strength Through Undying Loyalty -  One of the very first Arachnos based villain groups, formed on day one of the CoV headstart. Roleplaying, on Virtue Server&lt;br /&gt;
;[http://www.guildportal.com/Guild.aspx?GuildID=15730&amp;amp;TabID=132948 C.O.V.E.R.]: was founded in the spring of 1971 to assist smaller supergroups in the fight against domestic crime.&lt;br /&gt;
;[http://www.users.qwest.net/~fjeff18/web/mu/Mu%20index.htm The Cult of Mu]: An ancient magical VG on virtue.&lt;br /&gt;
;[http://www.thedarkblade.net/ The Dark Blade]: on Virtue; mature group that likes to play the darker side of characters.&lt;br /&gt;
;[http://www.defendersofparagon.net The Defenders of Paragon]: and [http://www.disciplesofpower.net/ The Disciples of Power] on Infinity; mature, no drama, fun times, period.&lt;br /&gt;
;[http://www.guildportal.com/Guild.aspx?GuildID=19063&amp;amp;TabID=171662 Joint Task Force Hero]: Military forces deployed in Paragon City.&lt;br /&gt;
;[http://jal.guildportal.com/Guild.aspx?GuildID=35313&amp;amp;TabID=314284 Justice for All League (JAL)]: PVP-oriented supergroup based on Test server, with sister VG Paragon&#039;s Most Wanted.&lt;br /&gt;
;[http://www.legionofcatgirls.com/ Legion of Catgirls]: A feminine, feline SG on several servers.&lt;br /&gt;
;[http://max.linxzy.com/news.php Maximum Carnage and Maximum Bloodshed]: The website and forums for the Hero SG - Maximum Carnage, and the Villain SG - Maximum Bloodshed. Both are located on the Union Server.&lt;br /&gt;
;[http://wiki.rpg.net/index.php/Meta_Forces Meta Forces]: Soldiers assisting Supers on the Virtue server.&lt;br /&gt;
;[http://www.pcda.us/ Paragon City Detective Agency]: Close knit group of players discussing the state of the game, trading tips, and generally gabbing. Visitors welcome!&lt;br /&gt;
;[http://www.paragonpd.net/ Paragon PD]: Protect and Serve with Paragon City&#039;s finest.&lt;br /&gt;
;[http://cohtaxis.com/ Paragon Taxi Service]: A service-oriented group dedicated to helping the heroes of the city.&lt;br /&gt;
;[http://www.kwtools.nl/coh/ Seekers of Intrinity]: EU SG on Union Server. Friendly, fun and always active members.&lt;br /&gt;
;[http://zerotolerance.guildportal.com/ Zero Tolerance]: Small top 5 ranked villain group on Justice created October 29, 2005. Thrives on teamwork and dedication.&lt;br /&gt;
;[http://www.zerotolerancesg.com/ Zero Tolerance]: One of the Top Ranked SG&#039;s on Pinnacle.&lt;br /&gt;
;[http://www.sinister-hq.com/ S.I.N.I.S.T.E.R]: One of the Top Ranked VG&#039;s on Justice. Based primarily in Australia.&lt;br /&gt;
;[http://victorycrusaders.guildportal.com/ The Hellish Crusaders]: Located on the Victory server. One of the first, and oldest villain groups on Victory, formed in 2005. Weekly events and meetings and global channels.&lt;br /&gt;
&lt;br /&gt;
These sites are subject to verification and periodic review and may be removed if deemed inactive or inappropriate.&lt;br /&gt;
&lt;br /&gt;
== Friend Sites ==&lt;br /&gt;
* Web browsers&lt;br /&gt;
** [http://www.mozilla.org/ Get Firefox], the browser you can trust&lt;br /&gt;
** [http://www.opera.com/ Opera], another good browser&lt;br /&gt;
** [http://www.google.com/chrome Google Chrome], the new player in the market&lt;br /&gt;
* Support the [http://www.eff.org/ Electronic Frontier Foundation], defending your digital rights&lt;br /&gt;
* Image editors&lt;br /&gt;
** [http://www.gimp.org/ The Gimp], a powerful and 100% free image editor.&lt;br /&gt;
** [http://localhost Paint.NET], a &#039;clone&#039; of MSPAINT built on the .NET framework. Also free.&lt;br /&gt;
* Text editors&lt;br /&gt;
** [http://notepad-plus.sourceforge.net/uk/site.htm Notepad++], a powerful open source replacement for Notepad.&lt;br /&gt;
** [http://www.pspad.com/ PSPad], another free (but not open source) text editor.&lt;/div&gt;</summary>
		<author><name>Steiner</name></author>
	</entry>
</feed>