Skip to content

Latest commit

 

History

History
123 lines (96 loc) · 4.34 KB

staff.md

File metadata and controls

123 lines (96 loc) · 4.34 KB
layout title
master
Staff
  • toc {:toc}

Who are the OFTC Staff?

The Network Staff are responsible for the maintenance and well-being of the Network and its users.

When connected to our IRC network, staff are identifiable by their cloaked hostmasks: <nickname>.<role>.oftc.net.

Staff are assigned to their roles during annual staff-wide elections from the 8th to the 11th of every October. Between elections, staff may be promoted, demoted, added, or removed by the Network Operations Committee, as outlined in the Network's Constitution. The constitution also outlines the responsibilities of each staff role, and defines the rules for our elections.

OFTC's constitution is enforced by resolution 2002-07-02.iwj.5 of Software in the Public Interest's Board of Directors.

If you would like to join our staff or sponsor a server, please refer to our Application and send it via mail.

Staff roles

These are the people you should seek for assistance.

Network Operations Committee Chair

{% assign chair = site.data.staff | where: "roles.chair", true | first %} {% if chair.size == 0 %}

  • No current Chair{% else %} {% if chair %}
  • {{ chair.name }} ({{ chair.nick }}) <chair -at- oftc.net>{% endif %}{% endif %}

Ombudsman

{% assign ombudsman = site.data.staff | where: "roles.ombudsman", true | first %} {% if ombudsman.size == 0 %}

  • No current Ombudsman{% else %} {% if ombudsman %}
  • {{ ombudsman.name }} ({{ ombudsman.nick }}) <ombudsman -at- oftc.net>{% endif %}{% endif %}

Network Operations Committee

{% assign noc = site.data.staff | where: "roles.noc", true %} {% if noc.size == 0 %}

  • No current NOC members{% else %} {% for person in noc %}{% if person.name %}
  • {{ person.name }} ({{ person.nick }}){% endif %}{% endfor %}{% endif %}

Network Operators

{% assign netop = site.data.staff | where: "roles.netop", true %} {% if netop.size == 0 %}

  • No current NetOps{% else %} {% for person in netop %}{% if person.name %}
  • {{ person.name }} ({{ person.nick }}){% endif %}{% endfor %}{% endif %}

Network Representatives

{% assign netrep = site.data.staff | where: "roles.netrep", true %} {% if netrep.size == 0 %}

  • No current NetReps{% else %} {% for person in netrep %}{% if person.name %}
  • {{ person.name }} ({{ person.nick }}){% endif %}{% endfor %}{% endif %}

Advisors

Being an Advisor is an honorary and not an administrative position.

  • David Graham (cdlu)
  • Timothy J. Fontaine (tjfontaine)

Server Sponsors

The most important role on OFTC! We sincerely appreciate the generosity of each of our sponsors. Not all sponsors or servers are mentioned here.

Please note that we cannot guarantee that any specific server will be accessible at any specific time. Refer to our connection FAQ for more information on connecting to OFTC.

{% assign sponsors = site.data.sponsors | sort: "company" -%} {%- for sponsor in sponsors -%} {%- assign repstring = "" -%} {%- for contact in sponsor.contact -%} {%- capture rep %}{{ contact.name }} ({{contact.nick}}){% endcapture -%} {%- if repstring != "" %}{% assign repstring = repstring | append: ", " %}{% endif -%} {%- assign repstring = repstring | append: rep -%} {%- endfor %}
{% if sponsor.logoonly %}

{% if sponsor.url != "" %}{% else %}{% endif %}

{% else %}

{% if sponsor.logo != "" %}{% else %}{% endif %} {% if sponsor.url != "" %}{{sponsor.company}}{% else %}{{sponsor.company}}{% endif %}

{% endif %}
{%- if repstring != "" %}

{{ repstring }}

{% endif -%}
    {% for server in sponsor.servers -%}
  • {{ server.host }} ({{ server.location }})
  • {%- endfor %}
{%- endfor %}