<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki-dev.pumpingstationone.org/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bjonnh</id>
	<title>PS:1 Wiki Dev - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki-dev.pumpingstationone.org/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bjonnh"/>
	<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/wiki/Special:Contributions/Bjonnh"/>
	<updated>2026-04-10T10:24:44Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Cancel_Membership&amp;diff=34053</id>
		<title>Cancel Membership</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Cancel_Membership&amp;diff=34053"/>
		<updated>2017-08-28T19:28:32Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Thanks steve the other one&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How to cancel your membership&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
* Log in to Paypal&lt;br /&gt;
* Click on Activity&lt;br /&gt;
* Find any payment to PS1&lt;br /&gt;
* Click on &amp;quot;View Recurring Payment Details&amp;quot;&lt;br /&gt;
* In the top left there is a cancel button&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
That is all. To rejoin. (We hope to have you back some day! ) Just go to our web page and click join. Easy Peasy.&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Howto_Ldap_Auth&amp;diff=33897</id>
		<title>Howto Ldap Auth</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Howto_Ldap_Auth&amp;diff=33897"/>
		<updated>2017-08-15T16:12:57Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* ldapsearch */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;External services that authenticate users often use Ldap for authentication.&lt;br /&gt;
&lt;br /&gt;
== Create a service account ==&lt;br /&gt;
&lt;br /&gt;
Many, but not all, services require a user account and password to do authentication.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;pwgen 64&amp;lt;/code&amp;gt; to generate a password. Then create your user.&lt;br /&gt;
&lt;br /&gt;
    samba-tool user create ps1-sa-servicename&lt;br /&gt;
&lt;br /&gt;
== Common Settings ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Field&lt;br /&gt;
!Value&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
| server&lt;br /&gt;
| bob.ad.pumpingstationone.org&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| port&lt;br /&gt;
| 389&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Security&lt;br /&gt;
| TLS or set useTLS to True&lt;br /&gt;
| TLS is a non-port changing encryption setting. Do not deploy with this setting off or disabled.&lt;br /&gt;
|-&lt;br /&gt;
| BindDN&lt;br /&gt;
| CN=ps1-sa-serviceaccount,CN=Users,DC=ad,DC=pumpingstationone,DC=org&lt;br /&gt;
| This is the username that the ldapclient is going to bind to ldap with&lt;br /&gt;
|-&lt;br /&gt;
| BindDN password&lt;br /&gt;
| xienaiK0ohchaCao7pohv9auw2ohgaixieReeY7ahngoo1uingu9Shaokohfiej7&lt;br /&gt;
| The password for the service account you created earlier.&lt;br /&gt;
|-&lt;br /&gt;
| BaseDN&lt;br /&gt;
| CN=Users,DC=ad,DC=pumpingstationone,DC=org&lt;br /&gt;
| This is where the user list is filtered from.&lt;br /&gt;
|-&lt;br /&gt;
| uid or username&lt;br /&gt;
| sAMAccountName&lt;br /&gt;
| Our user&#039;s difinitive username is stored in the sAMAccountName Field on the ldap object.&lt;br /&gt;
|-&lt;br /&gt;
| filter&lt;br /&gt;
| (userAccountControl:1.2.840.113556.1.4.803:=2)&lt;br /&gt;
| Filters on not disabled account.  Sometimes this needs to be preceded with a &amp;lt;code&amp;gt;!&amp;lt;/code&amp;gt; to negate the filter.&lt;br /&gt;
|-&lt;br /&gt;
| Account Suffix&lt;br /&gt;
| @PS1&lt;br /&gt;
| When attempting to check password, the sAMAccountName needs the suffix appeneded to it.&lt;br /&gt;
|-&lt;br /&gt;
| mail&lt;br /&gt;
| mail&lt;br /&gt;
| ldap field that stores the user&#039;s email address&lt;br /&gt;
|-&lt;br /&gt;
| Minimum password length&lt;br /&gt;
| 1&lt;br /&gt;
| AD lets users bind to ldap with 0 length passwords.  It&#039;s fscked up, but accepted.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Depending on how the filter is applied, you may need to put a &amp;lt;code&amp;gt;!&amp;lt;/code&amp;gt; in front to negate it. The current format filters on users that are not disabled.&lt;br /&gt;
* You almost always want to get debug info for ldap when setting up. There are a lot of things that can go wrong.&lt;br /&gt;
* Start without the filter field, add it later.&lt;br /&gt;
* When a service checks a password, it usually attempts to bind to samba as that user. To bind successfully, it needs to bind as user@PS1&lt;br /&gt;
** Some services apply setting different e.g. as a regex on the user, or as a template setting.&lt;br /&gt;
* If you try and bind to ldap with a 0 length password, it &amp;quot;works&amp;quot;, sort of. There is no error, but you can&#039;t access anything substantial. This is enough to fool services into thinking that the password was correct.&lt;br /&gt;
&lt;br /&gt;
== ldapsearch ==&lt;br /&gt;
&lt;br /&gt;
ldapsearch is a handy tool that is part of open ldap. You can query some handy information out of our ldap servers as follows if you have an account to bind with: &lt;br /&gt;
&lt;br /&gt;
You may need to set LDAPTLS_REQCERT=allow before those commands.&lt;br /&gt;
&lt;br /&gt;
  #list laser cutter certified:&lt;br /&gt;
  ldapsearch -v -x -H ldaps://bob.ad.pumpingstationone.org -b &amp;quot;DC=ad,DC=pumpingstationone,DC=org&amp;quot; -D &amp;quot;PS1\myuser&amp;quot; -W &amp;quot;CN=Laser Engraver Certified&amp;quot;&lt;br /&gt;
  #list domain Admins&lt;br /&gt;
  ldapsearch -v -x -H ldaps://bob.ad.pumpingstationone.org -b &amp;quot;CN=Users,DC=ad,DC=pumpingstationone,DC=org&amp;quot; -D &amp;quot;PS1\myuser&amp;quot; -W &amp;quot;CN=Domain Admins&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Remember you can use space.pumpingstationone.org if it is outside PS1 network.&lt;br /&gt;
&lt;br /&gt;
== Apache mod_authnz_ldap ==&lt;br /&gt;
&lt;br /&gt;
The following example is useful for making members-only sites and web apps.  See https://httpd.apache.org/docs/2.2/mod/mod_authnz_ldap.html for additional information.  You will also need to enable the mod_authnz_ldap and mod_ldap apache modules.&lt;br /&gt;
&lt;br /&gt;
    #Very important, Don&#039;t bind in cleartext.  Can&#039;t be defined as part of your location or directory block, so make sure you don&#039;t skip it.&lt;br /&gt;
    LDAPTrustedMode TLS&lt;br /&gt;
    &amp;lt;Location/protected&amp;gt;&lt;br /&gt;
        AuthName &amp;quot;AD Authentication&amp;quot;&lt;br /&gt;
        AuthType Basic&lt;br /&gt;
        AuthUserFile /dev/null&lt;br /&gt;
        AuthBasicProvider ldap&lt;br /&gt;
        #LDAP-URI will be bob.ad.pumpingstationone.org for internal apps, space.pumpingstationone.org for external apps.&lt;br /&gt;
        AuthLDAPURL &amp;quot;ldap://[[LDAP-URI]/cn=Users,dc=ad,dc=pumpingstationone,dc=org?sAMAccountName?sub?(objectClass=*)&amp;quot;&lt;br /&gt;
        #You should generate a new account per authenticated service.  Just create a new user on the DC.&lt;br /&gt;
        AuthLDAPBindDN cn=[SERVICE-ACCOUNT],cn=Users,dc=ad,dc=pumpingstationone,dc=org&lt;br /&gt;
        AuthLDAPBindPassword [SERVICE-ACCOUNT-PASSWORD]&lt;br /&gt;
        #Set require where appropriate, example shows &amp;quot;All valid users&amp;quot; and &amp;quot;Domain admins only&amp;quot; (commented out)&lt;br /&gt;
        #Require ldap-group cn=Domain Admins,cn=users,dc=ad,dc=pumpingstationone,dc=org&lt;br /&gt;
        Require valid-user&lt;br /&gt;
    &amp;lt;/Location&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Nginx nginx-auth-ldap ==&lt;br /&gt;
&lt;br /&gt;
Nginx doesn&#039;t support LDAP authentication with it&#039;s default modules, so a third-party module (https://github.com/kvspb/nginx-auth-ldap) is required.  More information can be found here: http://deezx.github.io/blog/2015/04/24/how-to-configure-nginx-with-ldap-authentication/&lt;br /&gt;
&lt;br /&gt;
This is not a good idea, since nginx-auth-ldap does not support STARTTLS encryption, only ldaps on port 636.  A better option for those requiring nginx might be auth_pam, and pam/sssd configured to authenticate via AD.  Do not use this configuration in production, or on off-site services.  Only for use in development environments, authenticating with bob from the local PS1 network.&lt;br /&gt;
&lt;br /&gt;
Building nginx 1.8.0 from source with LDAP support on Debian Jessie&lt;br /&gt;
&lt;br /&gt;
    apt-get remove nginx&lt;br /&gt;
    apt-get install libldap2-dev libpcre3-dev build-essential&lt;br /&gt;
    wget http://nginx.org/download/nginx-1.8.0.tar.gz&lt;br /&gt;
    git clone https://github.com/kvspb/nginx-auth-ldap.git&lt;br /&gt;
    tar -zxvf nginx-1.8.0.tar.gz&lt;br /&gt;
    cd nginx-1.8.0&lt;br /&gt;
    ./configure --user=nginx                          \&lt;br /&gt;
            --group=nginx                             \&lt;br /&gt;
            --prefix=/etc/nginx                       \&lt;br /&gt;
            --sbin-path=/usr/sbin/nginx               \&lt;br /&gt;
            --conf-path=/etc/nginx/nginx.conf         \&lt;br /&gt;
            --pid-path=/var/run/nginx.pid             \&lt;br /&gt;
            --lock-path=/var/run/nginx.lock           \&lt;br /&gt;
            --error-log-path=/var/log/nginx/error.log \&lt;br /&gt;
            --http-log-path=/var/log/nginx/access.log \&lt;br /&gt;
            --with-http_gzip_static_module            \&lt;br /&gt;
            --with-http_stub_status_module            \&lt;br /&gt;
            --with-http_ssl_module                    \&lt;br /&gt;
            --with-pcre                               \&lt;br /&gt;
            --with-file-aio                           \&lt;br /&gt;
            --with-http_realip_module                 \&lt;br /&gt;
            --add-module=../nginx-auth-ldap           \&lt;br /&gt;
            --with-ipv6                               \&lt;br /&gt;
            --with-debug&lt;br /&gt;
    make&lt;br /&gt;
    make install&lt;br /&gt;
&lt;br /&gt;
If you didn&#039;t have debian-packaged nginx installed previously, you will also want to install and configure an nginx init script/systemd service unit.&lt;br /&gt;
&lt;br /&gt;
Configuring nginx:&lt;br /&gt;
* /etc/nginx/nginx.conf (add to http{} block)&lt;br /&gt;
&lt;br /&gt;
        ##&lt;br /&gt;
        #LDAP authentication Settings&lt;br /&gt;
        ##&lt;br /&gt;
 &lt;br /&gt;
        auth_ldap_cache_enabled on;&lt;br /&gt;
        auth_ldap_cache_expiration_time 10000;&lt;br /&gt;
        auth_ldap_cache_size 1000;&lt;br /&gt;
        ldap_server BOB {&lt;br /&gt;
            url &amp;quot;ldap://bob.ad.pumpingstationone.org:389/cn=users,dc=ad,dc=pumpingstationone,dc=org?sAMAccountName?sub?(objectClass=*)&amp;quot;;&lt;br /&gt;
            binddn &amp;quot;PS1\SERVICE-ACCOUNT&amp;quot;;&lt;br /&gt;
            binddn_passwd &amp;quot;SERVICE-ACCOUNT-PASSWORD&amp;quot;;&lt;br /&gt;
            connect_timeout 5s;&lt;br /&gt;
            bind_timeout 5s;&lt;br /&gt;
            request_timeout 5s;&lt;br /&gt;
            satisfy any;&lt;br /&gt;
            group_attribute member;&lt;br /&gt;
            group_attribute_is_dn on;&lt;br /&gt;
            require group &amp;quot;cn=Domain Admins,cn=users,dc=ad,dc=pumpingstationone,dc=org&amp;quot;;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
* /etc/nginx/sites-available/site.conf (add to your vhost&#039;s server{} block)&lt;br /&gt;
&lt;br /&gt;
        auth_ldap &amp;quot;AD authentication&amp;quot;;&lt;br /&gt;
        auth_ldap_servers BOB;&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=MediaWiki:Userlogin-helplink2&amp;diff=32348</id>
		<title>MediaWiki:Userlogin-helplink2</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=MediaWiki:Userlogin-helplink2&amp;diff=32348"/>
		<updated>2017-04-12T01:04:51Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Reset your password&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Reset your password&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=MediaWiki:Helplogin-url&amp;diff=32347</id>
		<title>MediaWiki:Helplogin-url</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=MediaWiki:Helplogin-url&amp;diff=32347"/>
		<updated>2017-04-12T01:03:54Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;https://members.pumpingstationone.org/accounts/password_reset/&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;https://members.pumpingstationone.org/accounts/password_reset/&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Board_Meeting_Notes_2017-04-04&amp;diff=32267</id>
		<title>Board Meeting Notes 2017-04-04</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Board_Meeting_Notes_2017-04-04&amp;diff=32267"/>
		<updated>2017-04-03T16:07:22Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Board Meeting Notes&lt;br /&gt;
| Previous YYYY-MM-DD= 2017-03-21&lt;br /&gt;
| Next YYYY-MM-DD= 2017-04-18&lt;br /&gt;
| YYYY=2017&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Meeting Start: &lt;br /&gt;
&lt;br /&gt;
== Attendance ==&lt;br /&gt;
* Board Members&lt;br /&gt;
**&lt;br /&gt;
&lt;br /&gt;
* Other Members&lt;br /&gt;
**&lt;br /&gt;
&lt;br /&gt;
== Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Check talk page for board meeting notes, see if any discussion on the agenda took place&lt;br /&gt;
* Consent Agenda&lt;br /&gt;
* Committee Reports&lt;br /&gt;
* Read mail&lt;br /&gt;
* Financial/membership report&lt;br /&gt;
* Review the PayPal and banking transactions&lt;br /&gt;
* Member leaving reason reports&lt;br /&gt;
* Check RT queue&lt;br /&gt;
* New business&lt;br /&gt;
** requiring use of &amp;quot;area identifier@pumpingstationone.org&amp;quot; email, and Amazon Business account registration for PEX spenders.  (&lt;br /&gt;
** Start process for a new hot metal authorizer&lt;br /&gt;
* Old business&lt;br /&gt;
&lt;br /&gt;
== Minutes ==&lt;br /&gt;
&lt;br /&gt;
=== Discussion on previous minutes ===&lt;br /&gt;
&lt;br /&gt;
=== Consent Agenda ===&lt;br /&gt;
&lt;br /&gt;
=== Committee Reports ===&lt;br /&gt;
&lt;br /&gt;
Reports from [[Committees]]&lt;br /&gt;
&lt;br /&gt;
=== Mail ===&lt;br /&gt;
&lt;br /&gt;
=== Financial Report ===&lt;br /&gt;
* &#039;&#039;&#039;Chase Checking:&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;Chase Savings:&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;PEX:&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;PayPal:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
=== Membership Report ===&lt;br /&gt;
* &#039;&#039;&#039;Starving Hackers:&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;Full Members:&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;Total Members:&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;Quorum:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Review the PayPal and banking transactions ===&lt;br /&gt;
&lt;br /&gt;
=== Member Leaving Reason Reports ===&lt;br /&gt;
&lt;br /&gt;
=== RT ===&lt;br /&gt;
&lt;br /&gt;
=== New Business ===&lt;br /&gt;
&lt;br /&gt;
=== Old Business ===&lt;br /&gt;
&lt;br /&gt;
== Votes ==&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Showing_Copyrighted_Content&amp;diff=31829</id>
		<title>Showing Copyrighted Content</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Showing_Copyrighted_Content&amp;diff=31829"/>
		<updated>2017-02-22T14:25:15Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As we have graduated from being a club,to an official NFP, we need to do our diligence in looking to see if we have the rights to present copyrighted material, in a public, or semi-public forum.  There are a number of movies, for example, which are known to be released into the public domain.&lt;br /&gt;
&lt;br /&gt;
* Public Domain&lt;br /&gt;
** https://en.wikipedia.org/wiki/List_of_films_in_the_public_domain_in_the_United_States&lt;br /&gt;
&lt;br /&gt;
* Compliance with copyright laws&lt;br /&gt;
** For other movies, or other forms of media, it may require a bit of work, to figure out if it is ok to present, and any fees associated (if any).&lt;br /&gt;
** Note that Creative Commons protected movies are copyrighted but are perfectly usable in the space&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=User:Bjonnh&amp;diff=31701</id>
		<title>User:Bjonnh</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=User:Bjonnh&amp;diff=31701"/>
		<updated>2017-02-06T16:44:54Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;QVR��-�&lt;br /&gt;
E&amp;amp;1){g�&lt;br /&gt;
c9h8=776&amp;quot; J�*l�$-��&amp;quot;}M|v&#039;� �!Q�&lt;br /&gt;
LYj�1/�?o}wb;:ӒW�zCH�R~�6��$�EgEE�&amp;quot;FDEZ�&amp;quot;qpݟ^e�j{O($q�PG�y@څK0�Ys��l�&amp;gt;�l[J g&amp;lt;u5�	Vn&lt;br /&gt;
��}|�SO&lt;br /&gt;
PE �&amp;gt;�YAmmb\$nN&amp;lt;�iP��	^�r#M1:+:RDY�_,)&amp;gt;;z,9�k�W)97^mH/@sxC&#039;&amp;quot;7Vf\lty.�Y�rL+5H;=|n�9GU~[vcv\x�&#039;�dla9�yq;j�5GN3IAb$�1&amp;amp;}9&amp;quot;T�3X��]I�&lt;br /&gt;
_&lt;br /&gt;
2��[�&lt;br /&gt;
ẕTK#y_�4[~cE���{XVbMQ�g(z��^ǠO�P&amp;lt;%LqO�Ĺ�T0a,A;gaY��h#u&amp;lt;A\re3+H�&amp;amp;�&amp;amp;\/#KX=+b�8zJ�z5&amp;lt;8-	��_2g�[�Gf�&amp;quot;&amp;quot;&#039;K�gY�4Q&amp;gt;wR|go7Pf{�dSڇ�F~U_pnunMrg)&lt;br /&gt;
&lt;br /&gt;
[[Category:Recommended laser authorizers]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Intervention_report_2017-01-12&amp;diff=31385</id>
		<title>Intervention report 2017-01-12</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Intervention_report_2017-01-12&amp;diff=31385"/>
		<updated>2017-01-12T17:18:27Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* How to avoid the problem in the future */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Description =&lt;br /&gt;
&lt;br /&gt;
Login was broken on all machines of the space and ps1auth was complaining a lot about other stuff. Took over someone that was trying to correct it but had to leave.&lt;br /&gt;
At 2017-01-12T20:00:00&lt;br /&gt;
&lt;br /&gt;
= Intervention by =&lt;br /&gt;
&lt;br /&gt;
- bjonnh&lt;br /&gt;
&lt;br /&gt;
= Problem =&lt;br /&gt;
&lt;br /&gt;
- Seen some libraries problems on the ps1auth VM. Tried to update them. Then started the clusterfuck.&lt;br /&gt;
&lt;br /&gt;
= Resolution =&lt;br /&gt;
&lt;br /&gt;
Ended at: 2017-01-12T22:00:00&lt;br /&gt;
&lt;br /&gt;
- Did a full update of arch on ps1auth.&lt;br /&gt;
&lt;br /&gt;
- Only some stuff got through&lt;br /&gt;
&lt;br /&gt;
- Had to disable GPG signing of packages for that using sed to modify pacman.conf, because nothing else was working&lt;br /&gt;
&lt;br /&gt;
- Did the update&lt;br /&gt;
&lt;br /&gt;
- Rebooted bob, resolved the initial problem of machines not logging, but I had to do that two times&lt;br /&gt;
&lt;br /&gt;
- Had to reconfigure network because interface name changed&lt;br /&gt;
&lt;br /&gt;
- As python was updated had to recreate the virtualenv of ps1auth&lt;br /&gt;
&lt;br /&gt;
- Had to update some packages (beautifoulsoup4, kombu add django-ldap something) because they failed with the new python&lt;br /&gt;
&lt;br /&gt;
- Rebooted the machine to be sure everything was ok&lt;br /&gt;
&lt;br /&gt;
- Got home.&lt;br /&gt;
&lt;br /&gt;
= How to avoid the problem in the future =&lt;br /&gt;
&lt;br /&gt;
- Well I had to learn how things worked on the fly. We plan on updating the infrastructure to more maintenable systems (arch was a big problem here as it was not updated for a long time).&lt;br /&gt;
&lt;br /&gt;
- Have emergency clone VMs to restore quickly (if one has to leave before finishing upgrade/maintenance etc)?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Intervention report]][[Category: Systems group]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Intervention_report_2017-01-12&amp;diff=31384</id>
		<title>Intervention report 2017-01-12</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Intervention_report_2017-01-12&amp;diff=31384"/>
		<updated>2017-01-12T17:18:13Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Description =&lt;br /&gt;
&lt;br /&gt;
Login was broken on all machines of the space and ps1auth was complaining a lot about other stuff. Took over someone that was trying to correct it but had to leave.&lt;br /&gt;
At 2017-01-12T20:00:00&lt;br /&gt;
&lt;br /&gt;
= Intervention by =&lt;br /&gt;
&lt;br /&gt;
- bjonnh&lt;br /&gt;
&lt;br /&gt;
= Problem =&lt;br /&gt;
&lt;br /&gt;
- Seen some libraries problems on the ps1auth VM. Tried to update them. Then started the clusterfuck.&lt;br /&gt;
&lt;br /&gt;
= Resolution =&lt;br /&gt;
&lt;br /&gt;
Ended at: 2017-01-12T22:00:00&lt;br /&gt;
&lt;br /&gt;
- Did a full update of arch on ps1auth.&lt;br /&gt;
&lt;br /&gt;
- Only some stuff got through&lt;br /&gt;
&lt;br /&gt;
- Had to disable GPG signing of packages for that using sed to modify pacman.conf, because nothing else was working&lt;br /&gt;
&lt;br /&gt;
- Did the update&lt;br /&gt;
&lt;br /&gt;
- Rebooted bob, resolved the initial problem of machines not logging, but I had to do that two times&lt;br /&gt;
&lt;br /&gt;
- Had to reconfigure network because interface name changed&lt;br /&gt;
&lt;br /&gt;
- As python was updated had to recreate the virtualenv of ps1auth&lt;br /&gt;
&lt;br /&gt;
- Had to update some packages (beautifoulsoup4, kombu add django-ldap something) because they failed with the new python&lt;br /&gt;
&lt;br /&gt;
- Rebooted the machine to be sure everything was ok&lt;br /&gt;
&lt;br /&gt;
- Got home.&lt;br /&gt;
&lt;br /&gt;
= How to avoid the problem in the future =&lt;br /&gt;
&lt;br /&gt;
- Well I had to learn how things worked on the fly. We plan on updating the&lt;br /&gt;
  infrastructure to more maintenable systems (arch was a big problem here as it&lt;br /&gt;
  was not updated for a long time).&lt;br /&gt;
&lt;br /&gt;
- Have emergency clone VMs to restore quickly (if one has to leave before finishing upgrade/maintenance etc)?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Intervention report]][[Category: Systems group]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Intervention_report_2017-01-12&amp;diff=31383</id>
		<title>Intervention report 2017-01-12</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Intervention_report_2017-01-12&amp;diff=31383"/>
		<updated>2017-01-12T17:17:46Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Description =&lt;br /&gt;
&lt;br /&gt;
Login was broken on all machines of the space and ps1auth was complaining a lot about other stuff. Took over someone that was trying to correct it but had to leave.&lt;br /&gt;
At 2017-01-12T20:00:00&lt;br /&gt;
&lt;br /&gt;
= Intervention by =&lt;br /&gt;
&lt;br /&gt;
- bjonnh&lt;br /&gt;
&lt;br /&gt;
= Problem =&lt;br /&gt;
&lt;br /&gt;
- Seen some libraries problems on the ps1auth VM. Tried to update them. Then started the clusterfuck.&lt;br /&gt;
&lt;br /&gt;
= Resolution =&lt;br /&gt;
&lt;br /&gt;
Ended at: 2017-01-12T22:00:00&lt;br /&gt;
&lt;br /&gt;
- Did a full update of arch on ps1auth.&lt;br /&gt;
- Only some stuff got through&lt;br /&gt;
- Had to disable GPG signing of packages for that using sed to modify pacman.conf, because nothing else was working&lt;br /&gt;
- Did the update&lt;br /&gt;
- Rebooted bob, resolved the initial problem of machines not logging, but I had to do that two times&lt;br /&gt;
- Had to reconfigure network because interface name changed&lt;br /&gt;
- As python was updated had to recreate the virtualenv of ps1auth&lt;br /&gt;
- Had to update some packages (beautifoulsoup4, kombu add django-ldap something) because they failed with the new python&lt;br /&gt;
- Rebooted the machine to be sure everything was ok&lt;br /&gt;
- Got home.&lt;br /&gt;
&lt;br /&gt;
# How to avoid the problem in the future&lt;br /&gt;
&lt;br /&gt;
- Well I had to learn how things worked on the fly. We plan on updating the&lt;br /&gt;
  infrastructure to more maintenable systems (arch was a big problem here as it&lt;br /&gt;
  was not updated for a long time).&lt;br /&gt;
- Have emergency clone VMs to restore quickly (if one has to leave before finishing upgrade/maintenance etc)?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Intervention report]][[Category: Systems group]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Intervention_report_2017-01-12&amp;diff=31382</id>
		<title>Intervention report 2017-01-12</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Intervention_report_2017-01-12&amp;diff=31382"/>
		<updated>2017-01-12T17:16:19Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;# Description  Login was broken on all machines of the space and ps1auth was complaining a lot about other stuff. Took over someone that was trying to correct it but had to le...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# Description&lt;br /&gt;
&lt;br /&gt;
Login was broken on all machines of the space and ps1auth was complaining a lot about other stuff. Took over someone that was trying to correct it but had to leave.&lt;br /&gt;
&lt;br /&gt;
# Intervention by&lt;br /&gt;
&lt;br /&gt;
- bjonnh&lt;br /&gt;
&lt;br /&gt;
# Problem&lt;br /&gt;
&lt;br /&gt;
- Seen some libraries problems on the ps1auth VM. Tried to update them. Then started the clusterfuck.&lt;br /&gt;
&lt;br /&gt;
# Resolution&lt;br /&gt;
&lt;br /&gt;
- Did a full update of arch on ps1auth.&lt;br /&gt;
- Only some stuff got through&lt;br /&gt;
- Had to disable GPG signing of packages for that using sed to modify pacman.conf, because nothing else was working&lt;br /&gt;
- Did the update&lt;br /&gt;
- Rebooted bob, resolved the initial problem of machines not logging, but I had to do that two times&lt;br /&gt;
- Had to reconfigure network because interface name changed&lt;br /&gt;
- As python was updated had to recreate the virtualenv of ps1auth&lt;br /&gt;
- Had to update some packages (beautifoulsoup4, kombu add django-ldap something) because they failed with the new python&lt;br /&gt;
- Rebooted the machine to be sure everything was ok&lt;br /&gt;
- Got home.&lt;br /&gt;
&lt;br /&gt;
# How to avoid the problem in the future&lt;br /&gt;
&lt;br /&gt;
- Well I had to learn how things worked on the fly. We plan on updating the&lt;br /&gt;
  infrastructure to more maintenable systems (arch was a big problem here as it&lt;br /&gt;
  was not updated for a long time).&lt;br /&gt;
- Have emergency clone VMs to restore quickly (if one has to leave before finishing upgrade/maintenance etc)?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Intervention report]][[Category: Systems group]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Main_other&amp;diff=30224</id>
		<title>Template:Main other</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Main_other&amp;diff=30224"/>
		<updated>2016-11-22T16:42:04Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Documentation/preload-sandbox&amp;diff=30223</id>
		<title>Template:Documentation/preload-sandbox</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Documentation/preload-sandbox&amp;diff=30223"/>
		<updated>2016-11-22T16:41:59Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template_talk:Documentation&amp;diff=30222</id>
		<title>Template talk:Documentation</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template_talk:Documentation&amp;diff=30222"/>
		<updated>2016-11-22T16:41:56Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Documentation/preload&amp;diff=30221</id>
		<title>Template:Documentation/preload</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Documentation/preload&amp;diff=30221"/>
		<updated>2016-11-22T16:41:38Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Userbox&amp;diff=30220</id>
		<title>Template:Userbox</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Userbox&amp;diff=30220"/>
		<updated>2016-11-22T16:41:33Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Category_other&amp;diff=30219</id>
		<title>Template:Category other</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Category_other&amp;diff=30219"/>
		<updated>2016-11-22T16:41:29Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Db-g7&amp;diff=30218</id>
		<title>Template:Db-g7</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Db-g7&amp;diff=30218"/>
		<updated>2016-11-22T16:40:49Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Cmbox&amp;diff=30217</id>
		<title>Template:Cmbox</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Cmbox&amp;diff=30217"/>
		<updated>2016-11-22T16:40:40Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Asbox&amp;diff=30216</id>
		<title>Template:Asbox</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Asbox&amp;diff=30216"/>
		<updated>2016-11-22T16:40:32Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=W:Signatures&amp;diff=30215</id>
		<title>W:Signatures</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=W:Signatures&amp;diff=30215"/>
		<updated>2016-11-22T16:40:17Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;This is a special page used to mark comments made by users, but not signed by them.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a special page used to mark comments made by users, but not signed by them.&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Imbox&amp;diff=30214</id>
		<title>Template:Imbox</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Imbox&amp;diff=30214"/>
		<updated>2016-11-22T16:38:27Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Dmbox&amp;diff=30213</id>
		<title>Template:Dmbox</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:Dmbox&amp;diff=30213"/>
		<updated>2016-11-22T16:38:13Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;Empty Template&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Empty Template&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Refrigeration_Station_One&amp;diff=30091</id>
		<title>Refrigeration Station One</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Refrigeration_Station_One&amp;diff=30091"/>
		<updated>2016-11-15T21:51:29Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:EquipmentPage&lt;br /&gt;
|image = Refrigeration station.jpg&lt;br /&gt;
|doesitwork=no&lt;br /&gt;
|model = BeverageAir MT33&lt;br /&gt;
|owner=PS1&lt;br /&gt;
|contact=General Area Host&lt;br /&gt;
|where=Removed&lt;br /&gt;
|certification=no &lt;br /&gt;
|hackable=yes&lt;br /&gt;
|value=$350&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Oscillating_Drum_Sander&amp;diff=30090</id>
		<title>Oscillating Drum Sander</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Oscillating_Drum_Sander&amp;diff=30090"/>
		<updated>2016-11-15T21:51:04Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:EquipmentPage&lt;br /&gt;
|owner=PS:One&lt;br /&gt;
|model=99179&lt;br /&gt;
|serial=&lt;br /&gt;
|arrived=2010&lt;br /&gt;
|doesitwork=no&lt;br /&gt;
|contact=Adrianna McKinley&lt;br /&gt;
|where=Removed&lt;br /&gt;
|certification=no&lt;br /&gt;
|hackable=no&lt;br /&gt;
|value=$200&lt;br /&gt;
|hostarea = Tool heaven&lt;br /&gt;
| image = Drum sander.jpg&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|No One&lt;br /&gt;
|No One&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Shop Equipment]]&lt;br /&gt;
[[Category:Woodworking]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Dewalt_13_inch_planer&amp;diff=30089</id>
		<title>Dewalt 13 inch planer</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Dewalt_13_inch_planer&amp;diff=30089"/>
		<updated>2016-11-15T21:50:18Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:EquipmentPage&lt;br /&gt;
|owner = Dillon Grey&lt;br /&gt;
|certification=yes&lt;br /&gt;
|hackable = NO&lt;br /&gt;
|model = DW735&lt;br /&gt;
|serial = NA&lt;br /&gt;
|arrived = &lt;br /&gt;
|doesitwork = no&lt;br /&gt;
|contact = Dillon Grey&lt;br /&gt;
|where = Removed&lt;br /&gt;
|value = $700.00&lt;br /&gt;
|image = DeWalt_planer.jpg&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;p style=&amp;quot;font-size: 1.2em; font-weight: 500; border: 1px solid black; padding: 1 em; text-align: center;&amp;quot;&amp;gt;This machine has been taken out of service and replaced by the [[Laguna_16&amp;quot;_Planer|Laguna 16&amp;quot; planer]]. Please attend wood shop office hours (check the calendar) or contact a proctor to be authorized to use the new machine.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
# &#039;&#039;&#039;Always&#039;&#039;&#039; check your wood for nails or staples. Something as small as the staple at the end of a 1x1 can ruin the blades. If you&#039;re not sure, check the entire piece with the metal detector sitting on the table saw.&lt;br /&gt;
# &#039;&#039;&#039;Always&#039;&#039;&#039; measure the thickness of your work and set the initial and working blade height to remove only small amounts of material per pass. You will damage the blades if you manage to dig the machine out on your work. If it sounds weird, &#039;&#039;&#039;You&#039;re Not Doing It Right&#039;&#039;&#039; and you need to ask for help. &lt;br /&gt;
# If the blades are dull or damaged, &#039;&#039;&#039;contact the area host immediately&#039;&#039;&#039;. Don&#039;t be a dick and let others ruin their work because you didn&#039;t say anything.&lt;br /&gt;
# If you break something, or damage the tool, &#039;&#039;&#039;contact the area host immediately&#039;&#039;&#039;. Don&#039;t let others do more damage or hurt themselves by using a broken tool.&lt;br /&gt;
# &#039;&#039;&#039;Always&#039;&#039;&#039; make sure that the dust collection bag isn&#039;t too full and is passing air freely.&lt;br /&gt;
# &#039;&#039;&#039;Always&#039;&#039;&#039; vacuum the machine, cutting area, and the table around the machine when you are done.&lt;br /&gt;
&lt;br /&gt;
== Tips ==&lt;br /&gt;
* 32&amp;lt;sup&amp;gt;nd&amp;lt;/sup&amp;gt;s work well. Don&#039;t be in a hurry. It is better to make more than fewer passes: you will avoid damaging the blades and your work.&lt;br /&gt;
* Make certain to turn on the Jet dust collector or you&#039;ll burn the motor out and take the machine out of service for several weeks. &lt;br /&gt;
** Chips on the platen will cause your work to raise on one end or side, or wobble, which &#039;&#039;will&#039;&#039; result in the blades removing inconsistent amounts of material. It helps to have the Shop vac nearby and use the crevice attachment to keep the platen clear.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This tool requires authorizationfor use.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{WoodshopProctors}}&lt;br /&gt;
&lt;br /&gt;
== List of Currently Certified Users ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified member&lt;br /&gt;
! Trained by&lt;br /&gt;
! Date Certified&lt;br /&gt;
|-&lt;br /&gt;
|Dillon Grey&lt;br /&gt;
|Owner&lt;br /&gt;
|-&lt;br /&gt;
|Tim Saylor&lt;br /&gt;
|Dillon Grey&lt;br /&gt;
|-&lt;br /&gt;
|Tucker Tomlinson&lt;br /&gt;
|Dillon Grey&lt;br /&gt;
|-&lt;br /&gt;
|Michael Reddy&lt;br /&gt;
|Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
|Derek Bever&lt;br /&gt;
|Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
|Dan Willmott&lt;br /&gt;
|Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
|Tyler DeAngelo&lt;br /&gt;
|Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
| Madeleine Klichowski&lt;br /&gt;
| Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
| Lyn Cole&lt;br /&gt;
| Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
| Nathan Becka&lt;br /&gt;
| Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
| Brian Carstensen&lt;br /&gt;
| Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
| Eric Veggeberg&lt;br /&gt;
| Tim Saylor&lt;br /&gt;
|-&lt;br /&gt;
| Janet Dornhoff&lt;br /&gt;
| Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Hilary Lee&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Will Rante &lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Henry Behel&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Alan Livshin&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Michelle Garcia&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Daylan Dufelmeier&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Michael Maloney&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Ian Cochran&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Justin Miles&lt;br /&gt;
|Dillon Grey&lt;br /&gt;
|-&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Sean Corbett&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Aaron Feigen&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Bo Driscoll&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Joel Shepherd&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Michael Skilton&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Santina Croniser&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Todd Allen&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Lawrence MacDevitt&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Kelly&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Melody Stanley&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Tom Ackenhausen&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Geoffrey Topham&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|John Godwim&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Nate Hutchins&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Jeff Molek&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Trey Keifer&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Juan Robles&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Simon Cygielski&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Tom Forajter&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Robert Grossman&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Lucas Morris&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Sergio Preston&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Bryan Gleason&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Ron Bean&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Greg Eagel&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Carter Constana&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Adam Glick&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Zachary Fietsch&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Solomon Hursey&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Jesse Reynolds&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Eduard Shlahtichman&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Skittles Rainbow&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Tom Jurgensen&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Barmey Ung&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Casey Olson&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Bisson&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Ed Bennett&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Anna Yu&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Bandit Gangwere&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Joseph Nudell&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|David Butler&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Kathryn Smiley&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Aimee Spevak&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Cassie Webster&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Chris Moylan&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Mike O&#039;Connor&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Tyler Hsu&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|- &lt;br /&gt;
|Dan Thomson&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|Brandon Price&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Arturo Duarte&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Eric Braun&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Jeremy Fay&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Leeswann Bolden&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|James Porter&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Jeff McBride&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Connor Miller&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Ashley Duca&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Karen Niemczyk&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Bassam Alshammari&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|John Fiene&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Wright&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Joseph Peltier&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Justin Conroy&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|David Koppel&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Sevin Straus&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Steve Ioannou&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lucas|Lucas Goossen]]&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Mwilkens|Matt Wilkens]]&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Eric Slehofer&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Mark Cabael&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Jon Levine&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Melody Snyder&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Curtis Cooke&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Harry Morgan&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Sam Drazin&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Mike Kislovsky&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Keven Kalay&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Arjun Wadnerkar&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Alec Weege&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Jacob Rush&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Sam Reicks&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Kevin Pulver&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Keith Hultman&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Cary Lahucik&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|John Keippel&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Mario Rodriguez&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Szilvia Precsinszki&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|ggDavis Mazariegos&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Dan Baltudis &lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|David Fell&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Dubi Kaufmann&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Patrick Grider&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Tyler Matthew&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Shae Kurko&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|John Farmer&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Sam Paris&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Chris Kleehammer&lt;br /&gt;
|[[User:jason|Jason Shanfield]]&lt;br /&gt;
|-&lt;br /&gt;
|Trey Elliott&lt;br /&gt;
|[[User:jason|Jason Shanfield]]&lt;br /&gt;
|-&lt;br /&gt;
|Nik Brink&lt;br /&gt;
|[[User:jason|Jason Shanfield]]&lt;br /&gt;
|-&lt;br /&gt;
|Eric Yu&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Frances Ritchie&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Erin Hochstatter&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Ben Kern&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Karol Slowikowski&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Chris Smith&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Benjamin Miller&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Jennie P&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Bradley Topol&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Eugene Liokumovich&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Laurel Garrett&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Rei Kevin&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Aji Slater&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|John Beyer&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|[[User:papaben44|Benjamin Dambman]]&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Tomas Ward&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|4/26/2015&lt;br /&gt;
|-&lt;br /&gt;
|Les Schier&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|5/2/15&lt;br /&gt;
|-&lt;br /&gt;
|Mike Jones&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|-&lt;br /&gt;
|Hunter Koerner&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|6/4/15&lt;br /&gt;
|-&lt;br /&gt;
|Kurt Ziegel&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|6/4/15&lt;br /&gt;
|-&lt;br /&gt;
|Simon Pyle&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|6/4/15&lt;br /&gt;
|-&lt;br /&gt;
|Andy Richardson&lt;br /&gt;
|Matt Triano&lt;br /&gt;
|4/14/15&lt;br /&gt;
|-&lt;br /&gt;
|Connor Jansen&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|6/4/15&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Neuman&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|Erik Wessing&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|-&lt;br /&gt;
|Ananda Stevens&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|7/18/15&lt;br /&gt;
|-&lt;br /&gt;
|Mark Stevens&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|7/18/15&lt;br /&gt;
|-&lt;br /&gt;
|Anthony Phelps&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|8/27/2015&lt;br /&gt;
|-&lt;br /&gt;
|Ralph Brendler&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|8/27/2015&lt;br /&gt;
|-&lt;br /&gt;
|Kyle Bieneman&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|8/27/2015&lt;br /&gt;
|-&lt;br /&gt;
|Jim Baker&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|8/27/2015&lt;br /&gt;
|-&lt;br /&gt;
|Craig Koszewski&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|1/28/16&lt;br /&gt;
|-&lt;br /&gt;
|Donald Wells&lt;br /&gt;
|Andy Larkin&lt;br /&gt;
|8/4/16&lt;br /&gt;
|-&lt;br /&gt;
|Simon Pyle&lt;br /&gt;
|Andy Larkin&lt;br /&gt;
|&lt;br /&gt;
|-}&lt;br /&gt;
[[Category:Shop Equipment]]&lt;br /&gt;
[[Category:Woodworking]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30088</id>
		<title>Leica S430 Scanning Electron Microscope</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30088"/>
		<updated>2016-11-15T21:49:48Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:EquipmentPage&lt;br /&gt;
|image = SEM.jpg&lt;br /&gt;
|owner = PS:One&lt;br /&gt;
|certification=yes&lt;br /&gt;
|hackable = NO&lt;br /&gt;
|where = Removed&lt;br /&gt;
|model = Leica Stereoscan 430&lt;br /&gt;
|serial = 430-02-01&lt;br /&gt;
|arrived = 3/23/2013&lt;br /&gt;
|contact = Ryan Pierce &lt;br /&gt;
|value = $100,000.00&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This machine has moved to [http://www.analyticslounge.org/ Analytics Lounge] per [https://wiki.pumpingstationone.org/Vote_to_Donate_SEM this vote], so it is no longer available at PS:One. This page remains because it may still contain useful information&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
* Secondary electron detector (functional)&lt;br /&gt;
* 4 quadrant silicon backscatter detector (non-functional, troubleshooting in progress)&lt;br /&gt;
* Oxford Isis EDX detector (working, requires liquid nitrogen to operate)&lt;br /&gt;
* High Resolution Recording Unit (HRRU) (not currently connected, Polaroid film no longer produced)&lt;br /&gt;
* Ethernet. Scripts set up to FTP image files for each user to [ftp://semsrv.pumpingstationone.org ftp://semsrv.pumpingstationone.org] which is accessible only inside PS:One&#039;s network.&lt;br /&gt;
&lt;br /&gt;
== Authorization ==&lt;br /&gt;
This is probably the most complex piece of equipment we own. As such, authorization will be broken into different levels which qualify a user to perform only certain specific tasks. Unlike other PS:One equipment where anyone authorized can, in turn, authorize anyone else, at present the only person who may authorize others is Ryan Pierce. We anticipate we will have additional trainers in the future.&lt;br /&gt;
&lt;br /&gt;
=== Scanning Electron Microscope User ===&lt;br /&gt;
This level enables the user to observe samples already prepared and placed in the chamber. Users at this certification level may:&lt;br /&gt;
&lt;br /&gt;
* Observe samples already left in the chamber.&lt;br /&gt;
* Use the Secondary Electron detector.&lt;br /&gt;
* Observe their own samples if prepared and placed in the chamber by someone with Sample Preparer certification.&lt;br /&gt;
* Adjust standard software settings.&lt;br /&gt;
* Align the aperture, and change between apertures.&lt;br /&gt;
* Vent the chamber and restart the vacuum pumps. (only if necessary)&lt;br /&gt;
&lt;br /&gt;
Users possessing this authorization may not:&lt;br /&gt;
&lt;br /&gt;
* Use the Backscatter or EDX detectors.&lt;br /&gt;
* Open the chamber and manipulate samples.&lt;br /&gt;
* Adjust gun alignment.&lt;br /&gt;
* Open the gun assembly, change filaments, anodes, etc.&lt;br /&gt;
* Replace apertures.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Steve Finkelman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tucker Tomlinson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|David Fell&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tony Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Lisa Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Patrick Schless&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Everett Wilson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andreas Dahl-Hansen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Justin Conroy&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dmitry Baycharov&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jerry Lebedowych&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Jaypee|W J Perry]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jay Hopkins&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:hef|Hef]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Aaron Carlock&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Kos&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Todd Allen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Skittles&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|John Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Cameron Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Mike Warot&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dave Schact&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|A. Catherine Noon&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:ad9581|Arturo Duarte]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Melody Snyder&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Sache&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Scott Anamizu&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Backscatter Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Move the four quadrant backscatter detector in and out of the beam path.&lt;br /&gt;
* Image samples with the 4QBSD.&lt;br /&gt;
&lt;br /&gt;
As the 4QBSD is currently undergoing maintenance, this authorization is currently on hold. It will be rolled into the Microscope User authorization and made part of that curriculum at a future date.&lt;br /&gt;
&lt;br /&gt;
=== EDX Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Operate the EDX detector.&lt;br /&gt;
* Fill the EDX detector with liquid nitrogen.&lt;br /&gt;
&lt;br /&gt;
PS:One only recently acquired equipment for transporting, storing, and dispensing liquid nitrogen. An EDX authorization class is forthcoming.&lt;br /&gt;
&lt;br /&gt;
=== Sample Preparer ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Mount samples on stubs.&lt;br /&gt;
* Use the [[Technics Hummer V Sputter Coater]] to sputter coat sample stubs.&lt;br /&gt;
* Vent the SEM chamber.&lt;br /&gt;
* Load and unload samples from the chamber.&lt;br /&gt;
* Pump down the SEM chamber.&lt;br /&gt;
&lt;br /&gt;
This authorization is currently on hold, but we anticipate to offer it shortly.&lt;br /&gt;
&lt;br /&gt;
=== Microscope Maintainer ===&lt;br /&gt;
Maintainers perform all maintenance on the microscope, including:&lt;br /&gt;
&lt;br /&gt;
* Changing filaments&lt;br /&gt;
* Aligning the gun&lt;br /&gt;
* Replacing the anode&lt;br /&gt;
* Cleaning the gun assembly&lt;br /&gt;
* Replacing apertures&lt;br /&gt;
* Adjusting software configuration&lt;br /&gt;
* Anything involving disassembly of the microscope&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suppliers ==&lt;br /&gt;
* SPI Supplies[http://www.2spi.com/]&lt;br /&gt;
* Ladd Research[http://www.laddresearch.com/]&lt;br /&gt;
* Ted Pella, Inc[http://www.tedpella.com/SEM_html/SEMsuply.htm]&lt;br /&gt;
* Tring Enterprises[http://www.vacuumandlowpressure.com]&lt;br /&gt;
&lt;br /&gt;
== Supplies ==&lt;br /&gt;
* Front panel light bulbs: These use #85 28V miniature bulbs.[http://www.amazon.com/Sylvania-34179-Miniature-Automotive-Light/dp/B000TZPAQK] The scope came with many of these.&lt;br /&gt;
* Edwards EMF20 oil mist and odor filters: [http://www.vacuumandlowpressure.com/EMFelements.html] has the best price I could find. These are two separate elements, and one may need to be replaced while the other may be fine.&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope Operations Checklist]]&lt;br /&gt;
* [ftp://semsrv.pumpingstationone.org/doc/Scanning%20Electron%20Microscope%20Certification%20-%2020140119.ppt SEM User Certification] (Available on internal network only!)&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope User Certification Checklist]]&lt;br /&gt;
* [[Media:S430-CH1.pdf | S430 Manual: Chapter 1]]&lt;br /&gt;
* [[Media:S430-CH2.pdf | S430 Manual: Chapter 2]]&lt;br /&gt;
* [[Media:S430-CH3.pdf | S430 Manual: Chapter 3]]&lt;br /&gt;
* [[Media:S430-CH4.pdf | S430 Manual: Chapter 4]]&lt;br /&gt;
* [[Media:S430-CH5.pdf | S430 Manual: Chapter 5]]&lt;br /&gt;
* [[Media:S430-CH6.pdf | S430 Manual: Chapter 6]]&lt;br /&gt;
* [[Media:S430-APP.pdf | S430 Manual: Appendices]]&lt;br /&gt;
&lt;br /&gt;
=== Network Config ===&lt;br /&gt;
&lt;br /&gt;
SEMSRV is the FTP server. The SEM and the EDX are Windows 3.x era machines, and are currently configured via BOOTP. The current Mikrotic router does not send DNS server information with its BOOTP responses.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Machine&lt;br /&gt;
!MAC&lt;br /&gt;
!Address&lt;br /&gt;
|-&lt;br /&gt;
|SEMSRV (virtual Linux FTP server)&lt;br /&gt;
|1E:0B:6B:E6:2D:9C&lt;br /&gt;
|10.100.0.108&lt;br /&gt;
|-&lt;br /&gt;
|SEM&lt;br /&gt;
|00:00:C0:37:A1:A3&lt;br /&gt;
|10.100.0.40&lt;br /&gt;
|-&lt;br /&gt;
|EDX&lt;br /&gt;
|08:00:09:51:A5:28&lt;br /&gt;
|10.100.0.41&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=== Final Vacuum ===&lt;br /&gt;
Final vacuum doesn&#039;t want to drop beyond 1.8e-5 torr. However, after leaving the scope on, the vacuum increases to around 1.3e-4 torr. Venting and pumping the chamber always fixes the problem. Also, when pumping down, the pressure bounces around a bit initially, and then suddenly drops from 1.0e-4 to 6e-5 torr within a second, which is likely a physical impossibility. Possibilities:&lt;br /&gt;
&lt;br /&gt;
* The Penning vacuum gauge can become plated with ions. This is a very common failure mode and can cause false readings. Lightly sanding the anode and cathode, and washing everything in acetone, is the manufacturer&#039;s recommended cleaning procedure. This probably hasn&#039;t been done in a very long time and is a good first step before further troubleshooting. For all we know, we don&#039;t have a problem. Lending support to this is an absence of image degradation between the 1.3e-4 &amp;quot;bad&amp;quot; state and the 3e-5 &amp;quot;good&amp;quot; state after venting and pumping.&lt;br /&gt;
* The vent solenoid has been known to leak on other SEM users&#039; scopes.&lt;br /&gt;
* Chamber and gun gaskets should be greased with a suitable high vacuum grease, e.g. Apiezon M.&lt;br /&gt;
* Rotation speed on the turbomolecular pump can be checked, which correlates to chamber pressure.&lt;br /&gt;
&lt;br /&gt;
Cleaning the Penning gauge now results in a significantly more stable vacuum reading, with no wild fluctuations that defy the laws of physics. It had significant accumulated plating on the anode and cathodes, and loose black shiny grit in the gauge, which could cause erroneous readings. However, the gauge doesn&#039;t indicate below 1.09e-4 torr. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* Contamination in the Penning gauge often results in less current flow, which registers as a lower vacuum reading than is actually present.&lt;br /&gt;
* It is possible that we really have been running at 1e-4 torr all this time without realizing it. This is certainly not ideal, but a beam can pass through the column and image at this level.&lt;br /&gt;
* While the chamber air admit solenoid may be a possible culprit, this seems unlikely. Air leaks usually are larger than this. Still, plugging the solenoid is an easy way to check.&lt;br /&gt;
* The turbomolecular pump is now a likely suspect. 1e-4 torr is only marginally better than a roughing pump can achieve. Turbopumps should drop the pressure into the e-6 range. It is possible the pump is not running at full speed. This should be investigated via the pump controller.&lt;br /&gt;
* Applying light finger pressure to the air admit solenoid causes the chamber pressure to drop from 9.3e-5 torr to as much as 9.0e-5 torr; releasing it causes it to return to the starting value. This is repeatable. It suggests a possible leak related to the air admit solenoid.&lt;br /&gt;
&lt;br /&gt;
After removing the Penning gauge, cleaning the O ring of residual black sand grit, and reassembling, pressures in the 9e-5 torr range can be achieved. Attention turned to the Edwards EXT120E turbomolecular pump controller. This has an analog output from 0-5 V proportional to pump speed on pins 16 and 17. (Polarity appears backwards from what the manual states.) I measured 4.955V, corresponding to the pump running at 99.1% speed. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* It is therefore very unlikely that we have bad bearings causing the pump not to run at full speed.&lt;br /&gt;
* Tightening the Penning gauge did produce a change in vacuum of around 5%. However merely rotating the magnets, which are in an external sleeve, changes the vacuum too. It looks unlikely to be a leak in the gauge. Rather, the gauge seems to be very dependent on physical orientation, even though, if left alone, the results are now very stable.&lt;br /&gt;
* Pushing the pump around when running did not produce a change in vacuum.&lt;br /&gt;
* Pushing around the solenoid valve did produce a change in vacuum.&lt;br /&gt;
* One of the bolts holding the solenoid on was loose. Tightening it didn&#039;t seem to be the fix.&lt;br /&gt;
* It is likely the solenoid valve leaking. Replacing the solenoid valve with a rubber stopper is the next step to troubleshoot the problem.&lt;br /&gt;
&lt;br /&gt;
Solenoid valve was removed and replaced with a rubber stopper. This clearly fixed the problem, as low 1.0e-5 torr vacuum could be achieved. Attempts to repair the old solenoid were unsuccessful. Solenoid was replaced with a new old stock Edwards C41723000 24V NO solenoid. This required hacking together an NW10 adapter to connect to the air hose leading to the desiccant dryer / filter, and obtaining an NW10 centering ring and clamp.&lt;br /&gt;
&lt;br /&gt;
This adequately solves our vacuum issues. 1e-5 torr is acceptable. In the future, we may attempt treating rubber O rings with vacuum grease in an attempt to improve the final vacuum into the e-6 torr range.&lt;br /&gt;
&lt;br /&gt;
=== Image Processor board loses communications ===&lt;br /&gt;
We have observed after moving the scope to its new location that the vacuum spontaneously shuts off. Error messages pop up on the console several seconds later concerning timeouts to the Stage and Vacuum board.&lt;br /&gt;
&lt;br /&gt;
Communications between boards happens via RS232 over fiber optic cables. The Opto 10 and 11 connectors handle communication to the Stage and Vacuum board, and unfortunately it appears tension was applied to the fiber, causing damage to the connector on the image processor board. The cable isn&#039;t locking in place properly.&lt;br /&gt;
&lt;br /&gt;
On a single occasion, communication to the EHT board was lost. This corresponds to Opto 8 and 9.&lt;br /&gt;
&lt;br /&gt;
A dual cable plugs into a single port, Opto 1, for the HRRU pixel data. The fiber plug connector on the cable end has snapped. This is not critical as we are not using the HRRU.&lt;br /&gt;
&lt;br /&gt;
Repair is possible. The connector in question is a &amp;quot;hp 9534 R-2521&amp;quot; with a T-1521 next to it. These appear commonly available, but soldering to the image processor board should be considered a last resort.&lt;br /&gt;
&lt;br /&gt;
We have removed the external fiber cables tangled with the others. This has largely reduced the incidents of vacuum crashes due to communications failures, but not entirely eliminated them. One failure has happened since then.&lt;br /&gt;
&lt;br /&gt;
== Maintenance Log ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Date&lt;br /&gt;
! Maintainer&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
|10/30/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Shut down SEM for repair of the rotary vane pump. Vented chamber. Removed all samples. Disconnected rotary vane pump. Disconnected electrical power. The rotary vane pump is exhibiting signs of overheating, scorching the oil, making very loud, regular clacking noises in time with the pump stroke, emitting a scorched oil odor, possibly allowing oil vapors to escape back up the line when the pump is turned off, and may have a small oil leak. &lt;br /&gt;
|-&lt;br /&gt;
|9/20/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Finished vacuum system repair. Had previously replaced the air admit solenoid with an Edwards C41723000 24V NO solenoid. This produced a vacuum around 1.03e-5 torr. Added custom made adapter from NW10 flange to the fitting on the old solenoid that attached to the air dryer. This adapter was made by cutting apart the old solenoid, TIG welding a pipe compression fitting, which mechanically held the hose fitting. This was not airtight, so was sealed with epoxy. Chamber now vents properly and holds a vacuum. Re-assembled desk. Dried silica gel in an electric oven at slightly under 200F for several hours in a baking dish, stirring periodically, until bright blue color returned, and re-assembled air dryer assembly. Noted oil in rotary vacuum pump was running low, topped it off.&lt;br /&gt;
|-&lt;br /&gt;
|6/15/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced filament. Prior filament had 52 hours. Suspect user error setting current too high, however the filament was operating for most of its life at a very poor vacuum. Also changed out Weinhelt aperture with used spare. Old one needs to be cleaned and polished, not exactly sure how. Need to contact Susan (former operator.) At 10 kV, 1000x, 90 pA I Probe, first peak at 2.61A, second peak at 2.86A. Also corrected connection of mist and odor filter to rotary vacuum pump, which was not properly seated.&lt;br /&gt;
|-&lt;br /&gt;
|5/?/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Removed chamber air admit solenoid. Replaced with rubber stopper. Vacuum ultimately gets to 9.6e-6 torr.&lt;br /&gt;
|-&lt;br /&gt;
|5/18/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noted turbomolecular pump analog speed voltage at 4.955 V, corresponding to the pump running at 99.1% speed.&lt;br /&gt;
|-&lt;br /&gt;
|5/1/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, noted some of the particulates on the O ring, cleaned it better with a kimwipe, and reassembled. System pressure is now 9.3e-5 torr, which is sufficient to run the beam.&lt;br /&gt;
|-&lt;br /&gt;
|4/29/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, cleaned O ring with kimwipe, and reassembled. System pressure is lower, measured at 1.09e-4 torr on 5/1/2014.&lt;br /&gt;
|-&lt;br /&gt;
|4/26-27/2014&lt;br /&gt;
|Ryan Pierce and Elizabeth Koprucki&lt;br /&gt;
|Disassembled Penning gauge. It was filthy with plated material and loose shiny black sand-like material. Sanded anode and cathode cups to remove the bulk of plated material. Removed ion trap and sanded interior metal surfaces. (The plastic surfaces are filthy, but I don&#039;t know how to clean this.) Cleaned all metal parts in 3 progressive changes of acetone in an ultrasonic bath. Anode wire was bent in re-insertion. Following re-assembly, pressure was 1.5e-4 torr.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that tension on the HRRU fiber cables snapped the HRRU fiber connector of one cable and damaged the locking mechanism on OPTO 11, which likely caused the loss of vacuum and loss of communication to the vacuum board. Removed the HRRU cables so they are no longer a hazard. Re-seated all fiber connections to the image processor board.&lt;br /&gt;
|-&lt;br /&gt;
|3/6/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced vacuum mist and odor filter, D ring, and drain plug gasket. Replaced front panel standby light bulb.&lt;br /&gt;
|-&lt;br /&gt;
|3/2/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed CUTCP CONFIG.TEL file to use hard-coded DNS because the new router does not send DNS info with BOOTP responses.&lt;br /&gt;
|-&lt;br /&gt;
|1/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noticed HDD controller error. This has happened in the past. Physically moving the IDE cable fixes it. Moved the cable this time, and the problem went away. Suspect bad cable. So I replaced the IDE cable.&lt;br /&gt;
|-&lt;br /&gt;
|12/24/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed all user scripts to point FTP to semsrv.pumpingstationone.org so that the old server, plank, can be retired. NOTE: While CUTCP does get DNS from BOOTP, the NCSA Telnet I&#039;m using for FTP does not! I had to hard-code the IP address of the DNS (used 10.100.0.1) in the CONFIG.TEL file which is a nasty but necessary hack.&lt;br /&gt;
|-&lt;br /&gt;
|11/9/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed rotary vacuum pump with oil that came with the SEM. Noted that the oil mist filter was dry, but not working well as a lot of odor is passing through. Needs new filter elements.&lt;br /&gt;
|-&lt;br /&gt;
|10/17/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|SEM claimed filament had blown when this was not true. Opened gun, put same filament back. Re-aligned. This was after 6.9 hours filament time.&lt;br /&gt;
|-&lt;br /&gt;
|9/26/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Filament blew after 49 hours run time. Replaced.&lt;br /&gt;
|-&lt;br /&gt;
|9/12/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that final apertures were set at 20, 50, and 100 micron. However, the spare parts that came with the SEM only had 20, 30, and 50 micron apertures. Reconfigured dialogue box to use these values and for the #2 aperture, the image become much clearer. So this appears to be a config error I corrected.&lt;br /&gt;
|-&lt;br /&gt;
|9/2/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed NCSA Telnet (in addition to CUTCP package I already installed) because NCSA FTP supports scripted input. Set up user scripts and icons to push files for each user to the FTP server, and to delete files.&lt;br /&gt;
|-&lt;br /&gt;
|8/31/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed network software in C:\NETWORK. Set up AUTOEXEC.BAT to launch DOS networking from startup. Used EZSETUP.EXE to configure Ethernet card for 0x280, IRQ 3, 0xCC00 as recommended in Leica manual. (Note: Memory address conflicts on factory setting. Use soft config jumper.) Set up DOS packet driver. Set up for BOOTP. Networking under DOS works, and the DHCP server will respond with the appropriate static IP. Installed WINPKT.COM which is necessary to allow apps under Windows to use the packet driver. Tested apps in a DOS box; work successfully. Moved unnecessary startup items to a new group so they do not launch on startup and consume RAM.&lt;br /&gt;
|-&lt;br /&gt;
|8/30/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed from backup hard drive to system hard drive. (Backup that Jay made works. Note that he must have taken the backup when the SEM was in a weird state; you will need to load one of the configs in the default user directory just to see beam and an image. The LUT may have the colors inverted too. Reminder: have Jay make another backup once we&#039;re good to go with networking.) Removed laser printer card. Installed SMC Elite 16 Ethernet card. Set up template user directory in C:\USER\TEMPLATE and set up C:\NEWUSER.BAT script to create new users. Put sensible default settings in the Template dir.&lt;br /&gt;
|-&lt;br /&gt;
|7/23/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disabled SEM option for &amp;quot;windowless EDX&amp;quot; because it seems like we don&#039;t have it and it was inhibiting the chamber from venting. Changed resolution on EDX computer from 640x480x64k colors to 1024x768x256 colors. Now it is much less annoying with little loss of function.&lt;br /&gt;
|-&lt;br /&gt;
|7/21/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Did full detector calibration of EDX with copper target. Also changed SEM configuration to show multi-dot EDX present, which enabled EDX presence mapping, including support for multiple channels. (Tested 3.) Noted that Isis EDX PC floppy drive failed; need replacement.&lt;br /&gt;
|-&lt;br /&gt;
|7/20/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Added liquid nitrogen to dewar and reset liquid nitrogen temperature sensor calibration. Demonstrated that EDX is functional.&lt;br /&gt;
|-&lt;br /&gt;
|7/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed EDX power supply voltage from 240V to 120V. Computer now recognizes detector. Customer self-test passed.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ran up new filament. Filament Current 2.71A is now 1st peak. Vacuum 7.5E-5 Torr. Aligned gun and aperture. (Changed to Aperture #2.) Resolution with sputtered gold looks good.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce and Steve Finkelman&lt;br /&gt;
|Filament blew due to vacuum loss. Replaced filament. Adjusted to 0.6mm from face of grid aperture, which is standard for longer filament life.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed new CPU fan. Finished replacing all panels except for the CPU.&lt;br /&gt;
|-&lt;br /&gt;
|4/?/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Hacked CMOS battery from battery holder and 4x AA batteries. Had to change jumper on motherboard, per manual, to use external battery as opposed to on board battery. Replaced two of the three front panel light bulbs.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Science]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:EquipmentPage&amp;diff=30087</id>
		<title>Template:EquipmentPage</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:EquipmentPage&amp;diff=30087"/>
		<updated>2016-11-15T21:48:11Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;[[Category:Equipment]]&lt;br /&gt;
{{#ifeq: {{{where|}}} | Removed | {{mbox |type=notice |text=This tool is no longer at the space. }} |&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{image|}}} | | [[Category:Photographs_Needed]] }}&lt;br /&gt;
{{#switch: {{{doesitwork|}}} | yes | &amp;quot;yes&amp;quot; | Yes | &amp;quot;Yes&amp;quot;  | YES | &amp;quot;YES&amp;quot; | y | &amp;quot;y&amp;quot; | Y | &amp;quot;Y&amp;quot; =  | [[Category:Broken Equipment]] {{mbox |type=notice |text=This tool is currently broken, please contact the area host for more information. }} }}&lt;br /&gt;
{{#if: {{{hostarea|}}} | [[Category:{{{hostarea}}}]] | [[Category:EquipmentPageErrorNoAreahost]] }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 }}&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox Equipment&lt;br /&gt;
| image = {{{image|}}}&lt;br /&gt;
| owner = {{{owner}}}&lt;br /&gt;
| serial = {{{serial}}}&lt;br /&gt;
| model = {{{model}}}&lt;br /&gt;
| arrived = {{{arrived}}}&lt;br /&gt;
| doesitwork = {{{doesitwork}}}&lt;br /&gt;
| contact = {{{contact}}}&lt;br /&gt;
| where = {{{where}}}&lt;br /&gt;
| authorization = {{{certification}}}&lt;br /&gt;
| hackable = {{{hackable}}}&lt;br /&gt;
| value = {{{value}}}&lt;br /&gt;
| hostarea = {{{hostarea}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Template:EquipmentLabel&lt;br /&gt;
| owner = {{{owner}}}&lt;br /&gt;
| authorization = {{{certification}}}&lt;br /&gt;
| hackable = {{{hackable}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{#subobject:&lt;br /&gt;
|Has value={{{value|}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Documentation}}&lt;br /&gt;
&amp;lt;!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30086</id>
		<title>Leica S430 Scanning Electron Microscope</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30086"/>
		<updated>2016-11-15T21:46:41Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:EquipmentPage&lt;br /&gt;
|image = SEM.jpg&lt;br /&gt;
|owner = PS:One&lt;br /&gt;
|certification=yes&lt;br /&gt;
|hackable = NO&lt;br /&gt;
|where = Removed&lt;br /&gt;
|model = Leica Stereoscan 430&lt;br /&gt;
|serial = 430-02-01&lt;br /&gt;
|arrived = 3/23/2013&lt;br /&gt;
|contact = Ryan Pierce&lt;br /&gt;
|value = $100,000.00&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This machine has moved to [http://www.analyticslounge.org/ Analytics Lounge] per [https://wiki.pumpingstationone.org/Vote_to_Donate_SEM this vote], so it is no longer available at PS:One. This page remains because it may still contain useful information&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
* Secondary electron detector (functional)&lt;br /&gt;
* 4 quadrant silicon backscatter detector (non-functional, troubleshooting in progress)&lt;br /&gt;
* Oxford Isis EDX detector (working, requires liquid nitrogen to operate)&lt;br /&gt;
* High Resolution Recording Unit (HRRU) (not currently connected, Polaroid film no longer produced)&lt;br /&gt;
* Ethernet. Scripts set up to FTP image files for each user to [ftp://semsrv.pumpingstationone.org ftp://semsrv.pumpingstationone.org] which is accessible only inside PS:One&#039;s network.&lt;br /&gt;
&lt;br /&gt;
== Authorization ==&lt;br /&gt;
This is probably the most complex piece of equipment we own. As such, authorization will be broken into different levels which qualify a user to perform only certain specific tasks. Unlike other PS:One equipment where anyone authorized can, in turn, authorize anyone else, at present the only person who may authorize others is Ryan Pierce. We anticipate we will have additional trainers in the future.&lt;br /&gt;
&lt;br /&gt;
=== Scanning Electron Microscope User ===&lt;br /&gt;
This level enables the user to observe samples already prepared and placed in the chamber. Users at this certification level may:&lt;br /&gt;
&lt;br /&gt;
* Observe samples already left in the chamber.&lt;br /&gt;
* Use the Secondary Electron detector.&lt;br /&gt;
* Observe their own samples if prepared and placed in the chamber by someone with Sample Preparer certification.&lt;br /&gt;
* Adjust standard software settings.&lt;br /&gt;
* Align the aperture, and change between apertures.&lt;br /&gt;
* Vent the chamber and restart the vacuum pumps. (only if necessary)&lt;br /&gt;
&lt;br /&gt;
Users possessing this authorization may not:&lt;br /&gt;
&lt;br /&gt;
* Use the Backscatter or EDX detectors.&lt;br /&gt;
* Open the chamber and manipulate samples.&lt;br /&gt;
* Adjust gun alignment.&lt;br /&gt;
* Open the gun assembly, change filaments, anodes, etc.&lt;br /&gt;
* Replace apertures.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Steve Finkelman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tucker Tomlinson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|David Fell&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tony Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Lisa Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Patrick Schless&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Everett Wilson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andreas Dahl-Hansen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Justin Conroy&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dmitry Baycharov&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jerry Lebedowych&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Jaypee|W J Perry]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jay Hopkins&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:hef|Hef]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Aaron Carlock&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Kos&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Todd Allen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Skittles&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|John Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Cameron Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Mike Warot&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dave Schact&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|A. Catherine Noon&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:ad9581|Arturo Duarte]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Melody Snyder&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Sache&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Scott Anamizu&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Backscatter Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Move the four quadrant backscatter detector in and out of the beam path.&lt;br /&gt;
* Image samples with the 4QBSD.&lt;br /&gt;
&lt;br /&gt;
As the 4QBSD is currently undergoing maintenance, this authorization is currently on hold. It will be rolled into the Microscope User authorization and made part of that curriculum at a future date.&lt;br /&gt;
&lt;br /&gt;
=== EDX Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Operate the EDX detector.&lt;br /&gt;
* Fill the EDX detector with liquid nitrogen.&lt;br /&gt;
&lt;br /&gt;
PS:One only recently acquired equipment for transporting, storing, and dispensing liquid nitrogen. An EDX authorization class is forthcoming.&lt;br /&gt;
&lt;br /&gt;
=== Sample Preparer ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Mount samples on stubs.&lt;br /&gt;
* Use the [[Technics Hummer V Sputter Coater]] to sputter coat sample stubs.&lt;br /&gt;
* Vent the SEM chamber.&lt;br /&gt;
* Load and unload samples from the chamber.&lt;br /&gt;
* Pump down the SEM chamber.&lt;br /&gt;
&lt;br /&gt;
This authorization is currently on hold, but we anticipate to offer it shortly.&lt;br /&gt;
&lt;br /&gt;
=== Microscope Maintainer ===&lt;br /&gt;
Maintainers perform all maintenance on the microscope, including:&lt;br /&gt;
&lt;br /&gt;
* Changing filaments&lt;br /&gt;
* Aligning the gun&lt;br /&gt;
* Replacing the anode&lt;br /&gt;
* Cleaning the gun assembly&lt;br /&gt;
* Replacing apertures&lt;br /&gt;
* Adjusting software configuration&lt;br /&gt;
* Anything involving disassembly of the microscope&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suppliers ==&lt;br /&gt;
* SPI Supplies[http://www.2spi.com/]&lt;br /&gt;
* Ladd Research[http://www.laddresearch.com/]&lt;br /&gt;
* Ted Pella, Inc[http://www.tedpella.com/SEM_html/SEMsuply.htm]&lt;br /&gt;
* Tring Enterprises[http://www.vacuumandlowpressure.com]&lt;br /&gt;
&lt;br /&gt;
== Supplies ==&lt;br /&gt;
* Front panel light bulbs: These use #85 28V miniature bulbs.[http://www.amazon.com/Sylvania-34179-Miniature-Automotive-Light/dp/B000TZPAQK] The scope came with many of these.&lt;br /&gt;
* Edwards EMF20 oil mist and odor filters: [http://www.vacuumandlowpressure.com/EMFelements.html] has the best price I could find. These are two separate elements, and one may need to be replaced while the other may be fine.&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope Operations Checklist]]&lt;br /&gt;
* [ftp://semsrv.pumpingstationone.org/doc/Scanning%20Electron%20Microscope%20Certification%20-%2020140119.ppt SEM User Certification] (Available on internal network only!)&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope User Certification Checklist]]&lt;br /&gt;
* [[Media:S430-CH1.pdf | S430 Manual: Chapter 1]]&lt;br /&gt;
* [[Media:S430-CH2.pdf | S430 Manual: Chapter 2]]&lt;br /&gt;
* [[Media:S430-CH3.pdf | S430 Manual: Chapter 3]]&lt;br /&gt;
* [[Media:S430-CH4.pdf | S430 Manual: Chapter 4]]&lt;br /&gt;
* [[Media:S430-CH5.pdf | S430 Manual: Chapter 5]]&lt;br /&gt;
* [[Media:S430-CH6.pdf | S430 Manual: Chapter 6]]&lt;br /&gt;
* [[Media:S430-APP.pdf | S430 Manual: Appendices]]&lt;br /&gt;
&lt;br /&gt;
=== Network Config ===&lt;br /&gt;
&lt;br /&gt;
SEMSRV is the FTP server. The SEM and the EDX are Windows 3.x era machines, and are currently configured via BOOTP. The current Mikrotic router does not send DNS server information with its BOOTP responses.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Machine&lt;br /&gt;
!MAC&lt;br /&gt;
!Address&lt;br /&gt;
|-&lt;br /&gt;
|SEMSRV (virtual Linux FTP server)&lt;br /&gt;
|1E:0B:6B:E6:2D:9C&lt;br /&gt;
|10.100.0.108&lt;br /&gt;
|-&lt;br /&gt;
|SEM&lt;br /&gt;
|00:00:C0:37:A1:A3&lt;br /&gt;
|10.100.0.40&lt;br /&gt;
|-&lt;br /&gt;
|EDX&lt;br /&gt;
|08:00:09:51:A5:28&lt;br /&gt;
|10.100.0.41&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=== Final Vacuum ===&lt;br /&gt;
Final vacuum doesn&#039;t want to drop beyond 1.8e-5 torr. However, after leaving the scope on, the vacuum increases to around 1.3e-4 torr. Venting and pumping the chamber always fixes the problem. Also, when pumping down, the pressure bounces around a bit initially, and then suddenly drops from 1.0e-4 to 6e-5 torr within a second, which is likely a physical impossibility. Possibilities:&lt;br /&gt;
&lt;br /&gt;
* The Penning vacuum gauge can become plated with ions. This is a very common failure mode and can cause false readings. Lightly sanding the anode and cathode, and washing everything in acetone, is the manufacturer&#039;s recommended cleaning procedure. This probably hasn&#039;t been done in a very long time and is a good first step before further troubleshooting. For all we know, we don&#039;t have a problem. Lending support to this is an absence of image degradation between the 1.3e-4 &amp;quot;bad&amp;quot; state and the 3e-5 &amp;quot;good&amp;quot; state after venting and pumping.&lt;br /&gt;
* The vent solenoid has been known to leak on other SEM users&#039; scopes.&lt;br /&gt;
* Chamber and gun gaskets should be greased with a suitable high vacuum grease, e.g. Apiezon M.&lt;br /&gt;
* Rotation speed on the turbomolecular pump can be checked, which correlates to chamber pressure.&lt;br /&gt;
&lt;br /&gt;
Cleaning the Penning gauge now results in a significantly more stable vacuum reading, with no wild fluctuations that defy the laws of physics. It had significant accumulated plating on the anode and cathodes, and loose black shiny grit in the gauge, which could cause erroneous readings. However, the gauge doesn&#039;t indicate below 1.09e-4 torr. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* Contamination in the Penning gauge often results in less current flow, which registers as a lower vacuum reading than is actually present.&lt;br /&gt;
* It is possible that we really have been running at 1e-4 torr all this time without realizing it. This is certainly not ideal, but a beam can pass through the column and image at this level.&lt;br /&gt;
* While the chamber air admit solenoid may be a possible culprit, this seems unlikely. Air leaks usually are larger than this. Still, plugging the solenoid is an easy way to check.&lt;br /&gt;
* The turbomolecular pump is now a likely suspect. 1e-4 torr is only marginally better than a roughing pump can achieve. Turbopumps should drop the pressure into the e-6 range. It is possible the pump is not running at full speed. This should be investigated via the pump controller.&lt;br /&gt;
* Applying light finger pressure to the air admit solenoid causes the chamber pressure to drop from 9.3e-5 torr to as much as 9.0e-5 torr; releasing it causes it to return to the starting value. This is repeatable. It suggests a possible leak related to the air admit solenoid.&lt;br /&gt;
&lt;br /&gt;
After removing the Penning gauge, cleaning the O ring of residual black sand grit, and reassembling, pressures in the 9e-5 torr range can be achieved. Attention turned to the Edwards EXT120E turbomolecular pump controller. This has an analog output from 0-5 V proportional to pump speed on pins 16 and 17. (Polarity appears backwards from what the manual states.) I measured 4.955V, corresponding to the pump running at 99.1% speed. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* It is therefore very unlikely that we have bad bearings causing the pump not to run at full speed.&lt;br /&gt;
* Tightening the Penning gauge did produce a change in vacuum of around 5%. However merely rotating the magnets, which are in an external sleeve, changes the vacuum too. It looks unlikely to be a leak in the gauge. Rather, the gauge seems to be very dependent on physical orientation, even though, if left alone, the results are now very stable.&lt;br /&gt;
* Pushing the pump around when running did not produce a change in vacuum.&lt;br /&gt;
* Pushing around the solenoid valve did produce a change in vacuum.&lt;br /&gt;
* One of the bolts holding the solenoid on was loose. Tightening it didn&#039;t seem to be the fix.&lt;br /&gt;
* It is likely the solenoid valve leaking. Replacing the solenoid valve with a rubber stopper is the next step to troubleshoot the problem.&lt;br /&gt;
&lt;br /&gt;
Solenoid valve was removed and replaced with a rubber stopper. This clearly fixed the problem, as low 1.0e-5 torr vacuum could be achieved. Attempts to repair the old solenoid were unsuccessful. Solenoid was replaced with a new old stock Edwards C41723000 24V NO solenoid. This required hacking together an NW10 adapter to connect to the air hose leading to the desiccant dryer / filter, and obtaining an NW10 centering ring and clamp.&lt;br /&gt;
&lt;br /&gt;
This adequately solves our vacuum issues. 1e-5 torr is acceptable. In the future, we may attempt treating rubber O rings with vacuum grease in an attempt to improve the final vacuum into the e-6 torr range.&lt;br /&gt;
&lt;br /&gt;
=== Image Processor board loses communications ===&lt;br /&gt;
We have observed after moving the scope to its new location that the vacuum spontaneously shuts off. Error messages pop up on the console several seconds later concerning timeouts to the Stage and Vacuum board.&lt;br /&gt;
&lt;br /&gt;
Communications between boards happens via RS232 over fiber optic cables. The Opto 10 and 11 connectors handle communication to the Stage and Vacuum board, and unfortunately it appears tension was applied to the fiber, causing damage to the connector on the image processor board. The cable isn&#039;t locking in place properly.&lt;br /&gt;
&lt;br /&gt;
On a single occasion, communication to the EHT board was lost. This corresponds to Opto 8 and 9.&lt;br /&gt;
&lt;br /&gt;
A dual cable plugs into a single port, Opto 1, for the HRRU pixel data. The fiber plug connector on the cable end has snapped. This is not critical as we are not using the HRRU.&lt;br /&gt;
&lt;br /&gt;
Repair is possible. The connector in question is a &amp;quot;hp 9534 R-2521&amp;quot; with a T-1521 next to it. These appear commonly available, but soldering to the image processor board should be considered a last resort.&lt;br /&gt;
&lt;br /&gt;
We have removed the external fiber cables tangled with the others. This has largely reduced the incidents of vacuum crashes due to communications failures, but not entirely eliminated them. One failure has happened since then.&lt;br /&gt;
&lt;br /&gt;
== Maintenance Log ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Date&lt;br /&gt;
! Maintainer&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
|10/30/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Shut down SEM for repair of the rotary vane pump. Vented chamber. Removed all samples. Disconnected rotary vane pump. Disconnected electrical power. The rotary vane pump is exhibiting signs of overheating, scorching the oil, making very loud, regular clacking noises in time with the pump stroke, emitting a scorched oil odor, possibly allowing oil vapors to escape back up the line when the pump is turned off, and may have a small oil leak. &lt;br /&gt;
|-&lt;br /&gt;
|9/20/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Finished vacuum system repair. Had previously replaced the air admit solenoid with an Edwards C41723000 24V NO solenoid. This produced a vacuum around 1.03e-5 torr. Added custom made adapter from NW10 flange to the fitting on the old solenoid that attached to the air dryer. This adapter was made by cutting apart the old solenoid, TIG welding a pipe compression fitting, which mechanically held the hose fitting. This was not airtight, so was sealed with epoxy. Chamber now vents properly and holds a vacuum. Re-assembled desk. Dried silica gel in an electric oven at slightly under 200F for several hours in a baking dish, stirring periodically, until bright blue color returned, and re-assembled air dryer assembly. Noted oil in rotary vacuum pump was running low, topped it off.&lt;br /&gt;
|-&lt;br /&gt;
|6/15/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced filament. Prior filament had 52 hours. Suspect user error setting current too high, however the filament was operating for most of its life at a very poor vacuum. Also changed out Weinhelt aperture with used spare. Old one needs to be cleaned and polished, not exactly sure how. Need to contact Susan (former operator.) At 10 kV, 1000x, 90 pA I Probe, first peak at 2.61A, second peak at 2.86A. Also corrected connection of mist and odor filter to rotary vacuum pump, which was not properly seated.&lt;br /&gt;
|-&lt;br /&gt;
|5/?/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Removed chamber air admit solenoid. Replaced with rubber stopper. Vacuum ultimately gets to 9.6e-6 torr.&lt;br /&gt;
|-&lt;br /&gt;
|5/18/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noted turbomolecular pump analog speed voltage at 4.955 V, corresponding to the pump running at 99.1% speed.&lt;br /&gt;
|-&lt;br /&gt;
|5/1/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, noted some of the particulates on the O ring, cleaned it better with a kimwipe, and reassembled. System pressure is now 9.3e-5 torr, which is sufficient to run the beam.&lt;br /&gt;
|-&lt;br /&gt;
|4/29/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, cleaned O ring with kimwipe, and reassembled. System pressure is lower, measured at 1.09e-4 torr on 5/1/2014.&lt;br /&gt;
|-&lt;br /&gt;
|4/26-27/2014&lt;br /&gt;
|Ryan Pierce and Elizabeth Koprucki&lt;br /&gt;
|Disassembled Penning gauge. It was filthy with plated material and loose shiny black sand-like material. Sanded anode and cathode cups to remove the bulk of plated material. Removed ion trap and sanded interior metal surfaces. (The plastic surfaces are filthy, but I don&#039;t know how to clean this.) Cleaned all metal parts in 3 progressive changes of acetone in an ultrasonic bath. Anode wire was bent in re-insertion. Following re-assembly, pressure was 1.5e-4 torr.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that tension on the HRRU fiber cables snapped the HRRU fiber connector of one cable and damaged the locking mechanism on OPTO 11, which likely caused the loss of vacuum and loss of communication to the vacuum board. Removed the HRRU cables so they are no longer a hazard. Re-seated all fiber connections to the image processor board.&lt;br /&gt;
|-&lt;br /&gt;
|3/6/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced vacuum mist and odor filter, D ring, and drain plug gasket. Replaced front panel standby light bulb.&lt;br /&gt;
|-&lt;br /&gt;
|3/2/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed CUTCP CONFIG.TEL file to use hard-coded DNS because the new router does not send DNS info with BOOTP responses.&lt;br /&gt;
|-&lt;br /&gt;
|1/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noticed HDD controller error. This has happened in the past. Physically moving the IDE cable fixes it. Moved the cable this time, and the problem went away. Suspect bad cable. So I replaced the IDE cable.&lt;br /&gt;
|-&lt;br /&gt;
|12/24/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed all user scripts to point FTP to semsrv.pumpingstationone.org so that the old server, plank, can be retired. NOTE: While CUTCP does get DNS from BOOTP, the NCSA Telnet I&#039;m using for FTP does not! I had to hard-code the IP address of the DNS (used 10.100.0.1) in the CONFIG.TEL file which is a nasty but necessary hack.&lt;br /&gt;
|-&lt;br /&gt;
|11/9/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed rotary vacuum pump with oil that came with the SEM. Noted that the oil mist filter was dry, but not working well as a lot of odor is passing through. Needs new filter elements.&lt;br /&gt;
|-&lt;br /&gt;
|10/17/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|SEM claimed filament had blown when this was not true. Opened gun, put same filament back. Re-aligned. This was after 6.9 hours filament time.&lt;br /&gt;
|-&lt;br /&gt;
|9/26/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Filament blew after 49 hours run time. Replaced.&lt;br /&gt;
|-&lt;br /&gt;
|9/12/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that final apertures were set at 20, 50, and 100 micron. However, the spare parts that came with the SEM only had 20, 30, and 50 micron apertures. Reconfigured dialogue box to use these values and for the #2 aperture, the image become much clearer. So this appears to be a config error I corrected.&lt;br /&gt;
|-&lt;br /&gt;
|9/2/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed NCSA Telnet (in addition to CUTCP package I already installed) because NCSA FTP supports scripted input. Set up user scripts and icons to push files for each user to the FTP server, and to delete files.&lt;br /&gt;
|-&lt;br /&gt;
|8/31/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed network software in C:\NETWORK. Set up AUTOEXEC.BAT to launch DOS networking from startup. Used EZSETUP.EXE to configure Ethernet card for 0x280, IRQ 3, 0xCC00 as recommended in Leica manual. (Note: Memory address conflicts on factory setting. Use soft config jumper.) Set up DOS packet driver. Set up for BOOTP. Networking under DOS works, and the DHCP server will respond with the appropriate static IP. Installed WINPKT.COM which is necessary to allow apps under Windows to use the packet driver. Tested apps in a DOS box; work successfully. Moved unnecessary startup items to a new group so they do not launch on startup and consume RAM.&lt;br /&gt;
|-&lt;br /&gt;
|8/30/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed from backup hard drive to system hard drive. (Backup that Jay made works. Note that he must have taken the backup when the SEM was in a weird state; you will need to load one of the configs in the default user directory just to see beam and an image. The LUT may have the colors inverted too. Reminder: have Jay make another backup once we&#039;re good to go with networking.) Removed laser printer card. Installed SMC Elite 16 Ethernet card. Set up template user directory in C:\USER\TEMPLATE and set up C:\NEWUSER.BAT script to create new users. Put sensible default settings in the Template dir.&lt;br /&gt;
|-&lt;br /&gt;
|7/23/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disabled SEM option for &amp;quot;windowless EDX&amp;quot; because it seems like we don&#039;t have it and it was inhibiting the chamber from venting. Changed resolution on EDX computer from 640x480x64k colors to 1024x768x256 colors. Now it is much less annoying with little loss of function.&lt;br /&gt;
|-&lt;br /&gt;
|7/21/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Did full detector calibration of EDX with copper target. Also changed SEM configuration to show multi-dot EDX present, which enabled EDX presence mapping, including support for multiple channels. (Tested 3.) Noted that Isis EDX PC floppy drive failed; need replacement.&lt;br /&gt;
|-&lt;br /&gt;
|7/20/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Added liquid nitrogen to dewar and reset liquid nitrogen temperature sensor calibration. Demonstrated that EDX is functional.&lt;br /&gt;
|-&lt;br /&gt;
|7/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed EDX power supply voltage from 240V to 120V. Computer now recognizes detector. Customer self-test passed.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ran up new filament. Filament Current 2.71A is now 1st peak. Vacuum 7.5E-5 Torr. Aligned gun and aperture. (Changed to Aperture #2.) Resolution with sputtered gold looks good.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce and Steve Finkelman&lt;br /&gt;
|Filament blew due to vacuum loss. Replaced filament. Adjusted to 0.6mm from face of grid aperture, which is standard for longer filament life.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed new CPU fan. Finished replacing all panels except for the CPU.&lt;br /&gt;
|-&lt;br /&gt;
|4/?/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Hacked CMOS battery from battery holder and 4x AA batteries. Had to change jumper on motherboard, per manual, to use external battery as opposed to on board battery. Replaced two of the three front panel light bulbs.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Science]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:HistoricalEquipmentPage&amp;diff=30085</id>
		<title>Template:HistoricalEquipmentPage</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Template:HistoricalEquipmentPage&amp;diff=30085"/>
		<updated>2016-11-15T21:46:25Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;&amp;lt;includeonly&amp;gt;Category:Equipment {{#ifeq: {{{where|}}} | Removed | {{mbox |type=notice |text=This tool is no longer at the space. }} | {{#if: {{{image|}}} | | Category:Ph...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;[[Category:Equipment]]&lt;br /&gt;
{{#ifeq: {{{where|}}} | Removed | {{mbox |type=notice |text=This tool is no longer at the space. }} | {{#if: {{{image|}}} | | [[Category:Photographs_Needed]] }}&lt;br /&gt;
{{#switch: {{{doesitwork|}}} | yes | &amp;quot;yes&amp;quot; | Yes | &amp;quot;Yes&amp;quot;  | YES | &amp;quot;YES&amp;quot; | y | &amp;quot;y&amp;quot; | Y | &amp;quot;Y&amp;quot; =  | [[Category:Historical Equipment]] {{mbox |type=notice |text=This tool is not in the space anymore, we are keeping this page for historical purpose. }} }}&lt;br /&gt;
{{#if: {{{hostarea|}}} | [[Category:{{{hostarea}}}]] | [[Category:EquipmentPageErrorNoAreahost]] }}&lt;br /&gt;
 }}&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox Equipment&lt;br /&gt;
| image = {{{image|}}}&lt;br /&gt;
| owner = {{{owner}}}&lt;br /&gt;
| serial = {{{serial}}}&lt;br /&gt;
| model = {{{model}}}&lt;br /&gt;
| arrived = {{{arrived}}}&lt;br /&gt;
| doesitwork = {{{doesitwork}}}&lt;br /&gt;
| contact = {{{contact}}}&lt;br /&gt;
| where = {{{where}}}&lt;br /&gt;
| authorization = {{{certification}}}&lt;br /&gt;
| hackable = {{{hackable}}}&lt;br /&gt;
| value = {{{value}}}&lt;br /&gt;
| hostarea = {{{hostarea}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Template:EquipmentLabel&lt;br /&gt;
| owner = {{{owner}}}&lt;br /&gt;
| authorization = {{{certification}}}&lt;br /&gt;
| hackable = {{{hackable}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{#subobject:&lt;br /&gt;
|Has value={{{value|}}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Documentation}}&lt;br /&gt;
&amp;lt;!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30084</id>
		<title>Leica S430 Scanning Electron Microscope</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30084"/>
		<updated>2016-11-15T21:45:03Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:EquipmentPage&lt;br /&gt;
|image = SEM.jpg&lt;br /&gt;
|owner = PS:One&lt;br /&gt;
|certification=yes&lt;br /&gt;
|hackable = NO&lt;br /&gt;
|model = Leica Stereoscan 430&lt;br /&gt;
|serial = 430-02-01&lt;br /&gt;
|arrived = 3/23/2013&lt;br /&gt;
|contact = Ryan Pierce&lt;br /&gt;
|value = $100,000.00&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This machine has moved to [http://www.analyticslounge.org/ Analytics Lounge] per [https://wiki.pumpingstationone.org/Vote_to_Donate_SEM this vote], so it is no longer available at PS:One. This page remains because it may still contain useful information&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
* Secondary electron detector (functional)&lt;br /&gt;
* 4 quadrant silicon backscatter detector (non-functional, troubleshooting in progress)&lt;br /&gt;
* Oxford Isis EDX detector (working, requires liquid nitrogen to operate)&lt;br /&gt;
* High Resolution Recording Unit (HRRU) (not currently connected, Polaroid film no longer produced)&lt;br /&gt;
* Ethernet. Scripts set up to FTP image files for each user to [ftp://semsrv.pumpingstationone.org ftp://semsrv.pumpingstationone.org] which is accessible only inside PS:One&#039;s network.&lt;br /&gt;
&lt;br /&gt;
== Authorization ==&lt;br /&gt;
This is probably the most complex piece of equipment we own. As such, authorization will be broken into different levels which qualify a user to perform only certain specific tasks. Unlike other PS:One equipment where anyone authorized can, in turn, authorize anyone else, at present the only person who may authorize others is Ryan Pierce. We anticipate we will have additional trainers in the future.&lt;br /&gt;
&lt;br /&gt;
=== Scanning Electron Microscope User ===&lt;br /&gt;
This level enables the user to observe samples already prepared and placed in the chamber. Users at this certification level may:&lt;br /&gt;
&lt;br /&gt;
* Observe samples already left in the chamber.&lt;br /&gt;
* Use the Secondary Electron detector.&lt;br /&gt;
* Observe their own samples if prepared and placed in the chamber by someone with Sample Preparer certification.&lt;br /&gt;
* Adjust standard software settings.&lt;br /&gt;
* Align the aperture, and change between apertures.&lt;br /&gt;
* Vent the chamber and restart the vacuum pumps. (only if necessary)&lt;br /&gt;
&lt;br /&gt;
Users possessing this authorization may not:&lt;br /&gt;
&lt;br /&gt;
* Use the Backscatter or EDX detectors.&lt;br /&gt;
* Open the chamber and manipulate samples.&lt;br /&gt;
* Adjust gun alignment.&lt;br /&gt;
* Open the gun assembly, change filaments, anodes, etc.&lt;br /&gt;
* Replace apertures.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Steve Finkelman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tucker Tomlinson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|David Fell&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tony Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Lisa Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Patrick Schless&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Everett Wilson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andreas Dahl-Hansen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Justin Conroy&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dmitry Baycharov&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jerry Lebedowych&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Jaypee|W J Perry]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jay Hopkins&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:hef|Hef]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Aaron Carlock&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Kos&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Todd Allen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Skittles&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|John Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Cameron Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Mike Warot&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dave Schact&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|A. Catherine Noon&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:ad9581|Arturo Duarte]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Melody Snyder&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Sache&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Scott Anamizu&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Backscatter Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Move the four quadrant backscatter detector in and out of the beam path.&lt;br /&gt;
* Image samples with the 4QBSD.&lt;br /&gt;
&lt;br /&gt;
As the 4QBSD is currently undergoing maintenance, this authorization is currently on hold. It will be rolled into the Microscope User authorization and made part of that curriculum at a future date.&lt;br /&gt;
&lt;br /&gt;
=== EDX Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Operate the EDX detector.&lt;br /&gt;
* Fill the EDX detector with liquid nitrogen.&lt;br /&gt;
&lt;br /&gt;
PS:One only recently acquired equipment for transporting, storing, and dispensing liquid nitrogen. An EDX authorization class is forthcoming.&lt;br /&gt;
&lt;br /&gt;
=== Sample Preparer ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Mount samples on stubs.&lt;br /&gt;
* Use the [[Technics Hummer V Sputter Coater]] to sputter coat sample stubs.&lt;br /&gt;
* Vent the SEM chamber.&lt;br /&gt;
* Load and unload samples from the chamber.&lt;br /&gt;
* Pump down the SEM chamber.&lt;br /&gt;
&lt;br /&gt;
This authorization is currently on hold, but we anticipate to offer it shortly.&lt;br /&gt;
&lt;br /&gt;
=== Microscope Maintainer ===&lt;br /&gt;
Maintainers perform all maintenance on the microscope, including:&lt;br /&gt;
&lt;br /&gt;
* Changing filaments&lt;br /&gt;
* Aligning the gun&lt;br /&gt;
* Replacing the anode&lt;br /&gt;
* Cleaning the gun assembly&lt;br /&gt;
* Replacing apertures&lt;br /&gt;
* Adjusting software configuration&lt;br /&gt;
* Anything involving disassembly of the microscope&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suppliers ==&lt;br /&gt;
* SPI Supplies[http://www.2spi.com/]&lt;br /&gt;
* Ladd Research[http://www.laddresearch.com/]&lt;br /&gt;
* Ted Pella, Inc[http://www.tedpella.com/SEM_html/SEMsuply.htm]&lt;br /&gt;
* Tring Enterprises[http://www.vacuumandlowpressure.com]&lt;br /&gt;
&lt;br /&gt;
== Supplies ==&lt;br /&gt;
* Front panel light bulbs: These use #85 28V miniature bulbs.[http://www.amazon.com/Sylvania-34179-Miniature-Automotive-Light/dp/B000TZPAQK] The scope came with many of these.&lt;br /&gt;
* Edwards EMF20 oil mist and odor filters: [http://www.vacuumandlowpressure.com/EMFelements.html] has the best price I could find. These are two separate elements, and one may need to be replaced while the other may be fine.&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope Operations Checklist]]&lt;br /&gt;
* [ftp://semsrv.pumpingstationone.org/doc/Scanning%20Electron%20Microscope%20Certification%20-%2020140119.ppt SEM User Certification] (Available on internal network only!)&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope User Certification Checklist]]&lt;br /&gt;
* [[Media:S430-CH1.pdf | S430 Manual: Chapter 1]]&lt;br /&gt;
* [[Media:S430-CH2.pdf | S430 Manual: Chapter 2]]&lt;br /&gt;
* [[Media:S430-CH3.pdf | S430 Manual: Chapter 3]]&lt;br /&gt;
* [[Media:S430-CH4.pdf | S430 Manual: Chapter 4]]&lt;br /&gt;
* [[Media:S430-CH5.pdf | S430 Manual: Chapter 5]]&lt;br /&gt;
* [[Media:S430-CH6.pdf | S430 Manual: Chapter 6]]&lt;br /&gt;
* [[Media:S430-APP.pdf | S430 Manual: Appendices]]&lt;br /&gt;
&lt;br /&gt;
=== Network Config ===&lt;br /&gt;
&lt;br /&gt;
SEMSRV is the FTP server. The SEM and the EDX are Windows 3.x era machines, and are currently configured via BOOTP. The current Mikrotic router does not send DNS server information with its BOOTP responses.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Machine&lt;br /&gt;
!MAC&lt;br /&gt;
!Address&lt;br /&gt;
|-&lt;br /&gt;
|SEMSRV (virtual Linux FTP server)&lt;br /&gt;
|1E:0B:6B:E6:2D:9C&lt;br /&gt;
|10.100.0.108&lt;br /&gt;
|-&lt;br /&gt;
|SEM&lt;br /&gt;
|00:00:C0:37:A1:A3&lt;br /&gt;
|10.100.0.40&lt;br /&gt;
|-&lt;br /&gt;
|EDX&lt;br /&gt;
|08:00:09:51:A5:28&lt;br /&gt;
|10.100.0.41&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=== Final Vacuum ===&lt;br /&gt;
Final vacuum doesn&#039;t want to drop beyond 1.8e-5 torr. However, after leaving the scope on, the vacuum increases to around 1.3e-4 torr. Venting and pumping the chamber always fixes the problem. Also, when pumping down, the pressure bounces around a bit initially, and then suddenly drops from 1.0e-4 to 6e-5 torr within a second, which is likely a physical impossibility. Possibilities:&lt;br /&gt;
&lt;br /&gt;
* The Penning vacuum gauge can become plated with ions. This is a very common failure mode and can cause false readings. Lightly sanding the anode and cathode, and washing everything in acetone, is the manufacturer&#039;s recommended cleaning procedure. This probably hasn&#039;t been done in a very long time and is a good first step before further troubleshooting. For all we know, we don&#039;t have a problem. Lending support to this is an absence of image degradation between the 1.3e-4 &amp;quot;bad&amp;quot; state and the 3e-5 &amp;quot;good&amp;quot; state after venting and pumping.&lt;br /&gt;
* The vent solenoid has been known to leak on other SEM users&#039; scopes.&lt;br /&gt;
* Chamber and gun gaskets should be greased with a suitable high vacuum grease, e.g. Apiezon M.&lt;br /&gt;
* Rotation speed on the turbomolecular pump can be checked, which correlates to chamber pressure.&lt;br /&gt;
&lt;br /&gt;
Cleaning the Penning gauge now results in a significantly more stable vacuum reading, with no wild fluctuations that defy the laws of physics. It had significant accumulated plating on the anode and cathodes, and loose black shiny grit in the gauge, which could cause erroneous readings. However, the gauge doesn&#039;t indicate below 1.09e-4 torr. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* Contamination in the Penning gauge often results in less current flow, which registers as a lower vacuum reading than is actually present.&lt;br /&gt;
* It is possible that we really have been running at 1e-4 torr all this time without realizing it. This is certainly not ideal, but a beam can pass through the column and image at this level.&lt;br /&gt;
* While the chamber air admit solenoid may be a possible culprit, this seems unlikely. Air leaks usually are larger than this. Still, plugging the solenoid is an easy way to check.&lt;br /&gt;
* The turbomolecular pump is now a likely suspect. 1e-4 torr is only marginally better than a roughing pump can achieve. Turbopumps should drop the pressure into the e-6 range. It is possible the pump is not running at full speed. This should be investigated via the pump controller.&lt;br /&gt;
* Applying light finger pressure to the air admit solenoid causes the chamber pressure to drop from 9.3e-5 torr to as much as 9.0e-5 torr; releasing it causes it to return to the starting value. This is repeatable. It suggests a possible leak related to the air admit solenoid.&lt;br /&gt;
&lt;br /&gt;
After removing the Penning gauge, cleaning the O ring of residual black sand grit, and reassembling, pressures in the 9e-5 torr range can be achieved. Attention turned to the Edwards EXT120E turbomolecular pump controller. This has an analog output from 0-5 V proportional to pump speed on pins 16 and 17. (Polarity appears backwards from what the manual states.) I measured 4.955V, corresponding to the pump running at 99.1% speed. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* It is therefore very unlikely that we have bad bearings causing the pump not to run at full speed.&lt;br /&gt;
* Tightening the Penning gauge did produce a change in vacuum of around 5%. However merely rotating the magnets, which are in an external sleeve, changes the vacuum too. It looks unlikely to be a leak in the gauge. Rather, the gauge seems to be very dependent on physical orientation, even though, if left alone, the results are now very stable.&lt;br /&gt;
* Pushing the pump around when running did not produce a change in vacuum.&lt;br /&gt;
* Pushing around the solenoid valve did produce a change in vacuum.&lt;br /&gt;
* One of the bolts holding the solenoid on was loose. Tightening it didn&#039;t seem to be the fix.&lt;br /&gt;
* It is likely the solenoid valve leaking. Replacing the solenoid valve with a rubber stopper is the next step to troubleshoot the problem.&lt;br /&gt;
&lt;br /&gt;
Solenoid valve was removed and replaced with a rubber stopper. This clearly fixed the problem, as low 1.0e-5 torr vacuum could be achieved. Attempts to repair the old solenoid were unsuccessful. Solenoid was replaced with a new old stock Edwards C41723000 24V NO solenoid. This required hacking together an NW10 adapter to connect to the air hose leading to the desiccant dryer / filter, and obtaining an NW10 centering ring and clamp.&lt;br /&gt;
&lt;br /&gt;
This adequately solves our vacuum issues. 1e-5 torr is acceptable. In the future, we may attempt treating rubber O rings with vacuum grease in an attempt to improve the final vacuum into the e-6 torr range.&lt;br /&gt;
&lt;br /&gt;
=== Image Processor board loses communications ===&lt;br /&gt;
We have observed after moving the scope to its new location that the vacuum spontaneously shuts off. Error messages pop up on the console several seconds later concerning timeouts to the Stage and Vacuum board.&lt;br /&gt;
&lt;br /&gt;
Communications between boards happens via RS232 over fiber optic cables. The Opto 10 and 11 connectors handle communication to the Stage and Vacuum board, and unfortunately it appears tension was applied to the fiber, causing damage to the connector on the image processor board. The cable isn&#039;t locking in place properly.&lt;br /&gt;
&lt;br /&gt;
On a single occasion, communication to the EHT board was lost. This corresponds to Opto 8 and 9.&lt;br /&gt;
&lt;br /&gt;
A dual cable plugs into a single port, Opto 1, for the HRRU pixel data. The fiber plug connector on the cable end has snapped. This is not critical as we are not using the HRRU.&lt;br /&gt;
&lt;br /&gt;
Repair is possible. The connector in question is a &amp;quot;hp 9534 R-2521&amp;quot; with a T-1521 next to it. These appear commonly available, but soldering to the image processor board should be considered a last resort.&lt;br /&gt;
&lt;br /&gt;
We have removed the external fiber cables tangled with the others. This has largely reduced the incidents of vacuum crashes due to communications failures, but not entirely eliminated them. One failure has happened since then.&lt;br /&gt;
&lt;br /&gt;
== Maintenance Log ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Date&lt;br /&gt;
! Maintainer&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
|10/30/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Shut down SEM for repair of the rotary vane pump. Vented chamber. Removed all samples. Disconnected rotary vane pump. Disconnected electrical power. The rotary vane pump is exhibiting signs of overheating, scorching the oil, making very loud, regular clacking noises in time with the pump stroke, emitting a scorched oil odor, possibly allowing oil vapors to escape back up the line when the pump is turned off, and may have a small oil leak. &lt;br /&gt;
|-&lt;br /&gt;
|9/20/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Finished vacuum system repair. Had previously replaced the air admit solenoid with an Edwards C41723000 24V NO solenoid. This produced a vacuum around 1.03e-5 torr. Added custom made adapter from NW10 flange to the fitting on the old solenoid that attached to the air dryer. This adapter was made by cutting apart the old solenoid, TIG welding a pipe compression fitting, which mechanically held the hose fitting. This was not airtight, so was sealed with epoxy. Chamber now vents properly and holds a vacuum. Re-assembled desk. Dried silica gel in an electric oven at slightly under 200F for several hours in a baking dish, stirring periodically, until bright blue color returned, and re-assembled air dryer assembly. Noted oil in rotary vacuum pump was running low, topped it off.&lt;br /&gt;
|-&lt;br /&gt;
|6/15/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced filament. Prior filament had 52 hours. Suspect user error setting current too high, however the filament was operating for most of its life at a very poor vacuum. Also changed out Weinhelt aperture with used spare. Old one needs to be cleaned and polished, not exactly sure how. Need to contact Susan (former operator.) At 10 kV, 1000x, 90 pA I Probe, first peak at 2.61A, second peak at 2.86A. Also corrected connection of mist and odor filter to rotary vacuum pump, which was not properly seated.&lt;br /&gt;
|-&lt;br /&gt;
|5/?/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Removed chamber air admit solenoid. Replaced with rubber stopper. Vacuum ultimately gets to 9.6e-6 torr.&lt;br /&gt;
|-&lt;br /&gt;
|5/18/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noted turbomolecular pump analog speed voltage at 4.955 V, corresponding to the pump running at 99.1% speed.&lt;br /&gt;
|-&lt;br /&gt;
|5/1/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, noted some of the particulates on the O ring, cleaned it better with a kimwipe, and reassembled. System pressure is now 9.3e-5 torr, which is sufficient to run the beam.&lt;br /&gt;
|-&lt;br /&gt;
|4/29/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, cleaned O ring with kimwipe, and reassembled. System pressure is lower, measured at 1.09e-4 torr on 5/1/2014.&lt;br /&gt;
|-&lt;br /&gt;
|4/26-27/2014&lt;br /&gt;
|Ryan Pierce and Elizabeth Koprucki&lt;br /&gt;
|Disassembled Penning gauge. It was filthy with plated material and loose shiny black sand-like material. Sanded anode and cathode cups to remove the bulk of plated material. Removed ion trap and sanded interior metal surfaces. (The plastic surfaces are filthy, but I don&#039;t know how to clean this.) Cleaned all metal parts in 3 progressive changes of acetone in an ultrasonic bath. Anode wire was bent in re-insertion. Following re-assembly, pressure was 1.5e-4 torr.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that tension on the HRRU fiber cables snapped the HRRU fiber connector of one cable and damaged the locking mechanism on OPTO 11, which likely caused the loss of vacuum and loss of communication to the vacuum board. Removed the HRRU cables so they are no longer a hazard. Re-seated all fiber connections to the image processor board.&lt;br /&gt;
|-&lt;br /&gt;
|3/6/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced vacuum mist and odor filter, D ring, and drain plug gasket. Replaced front panel standby light bulb.&lt;br /&gt;
|-&lt;br /&gt;
|3/2/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed CUTCP CONFIG.TEL file to use hard-coded DNS because the new router does not send DNS info with BOOTP responses.&lt;br /&gt;
|-&lt;br /&gt;
|1/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noticed HDD controller error. This has happened in the past. Physically moving the IDE cable fixes it. Moved the cable this time, and the problem went away. Suspect bad cable. So I replaced the IDE cable.&lt;br /&gt;
|-&lt;br /&gt;
|12/24/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed all user scripts to point FTP to semsrv.pumpingstationone.org so that the old server, plank, can be retired. NOTE: While CUTCP does get DNS from BOOTP, the NCSA Telnet I&#039;m using for FTP does not! I had to hard-code the IP address of the DNS (used 10.100.0.1) in the CONFIG.TEL file which is a nasty but necessary hack.&lt;br /&gt;
|-&lt;br /&gt;
|11/9/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed rotary vacuum pump with oil that came with the SEM. Noted that the oil mist filter was dry, but not working well as a lot of odor is passing through. Needs new filter elements.&lt;br /&gt;
|-&lt;br /&gt;
|10/17/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|SEM claimed filament had blown when this was not true. Opened gun, put same filament back. Re-aligned. This was after 6.9 hours filament time.&lt;br /&gt;
|-&lt;br /&gt;
|9/26/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Filament blew after 49 hours run time. Replaced.&lt;br /&gt;
|-&lt;br /&gt;
|9/12/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that final apertures were set at 20, 50, and 100 micron. However, the spare parts that came with the SEM only had 20, 30, and 50 micron apertures. Reconfigured dialogue box to use these values and for the #2 aperture, the image become much clearer. So this appears to be a config error I corrected.&lt;br /&gt;
|-&lt;br /&gt;
|9/2/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed NCSA Telnet (in addition to CUTCP package I already installed) because NCSA FTP supports scripted input. Set up user scripts and icons to push files for each user to the FTP server, and to delete files.&lt;br /&gt;
|-&lt;br /&gt;
|8/31/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed network software in C:\NETWORK. Set up AUTOEXEC.BAT to launch DOS networking from startup. Used EZSETUP.EXE to configure Ethernet card for 0x280, IRQ 3, 0xCC00 as recommended in Leica manual. (Note: Memory address conflicts on factory setting. Use soft config jumper.) Set up DOS packet driver. Set up for BOOTP. Networking under DOS works, and the DHCP server will respond with the appropriate static IP. Installed WINPKT.COM which is necessary to allow apps under Windows to use the packet driver. Tested apps in a DOS box; work successfully. Moved unnecessary startup items to a new group so they do not launch on startup and consume RAM.&lt;br /&gt;
|-&lt;br /&gt;
|8/30/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed from backup hard drive to system hard drive. (Backup that Jay made works. Note that he must have taken the backup when the SEM was in a weird state; you will need to load one of the configs in the default user directory just to see beam and an image. The LUT may have the colors inverted too. Reminder: have Jay make another backup once we&#039;re good to go with networking.) Removed laser printer card. Installed SMC Elite 16 Ethernet card. Set up template user directory in C:\USER\TEMPLATE and set up C:\NEWUSER.BAT script to create new users. Put sensible default settings in the Template dir.&lt;br /&gt;
|-&lt;br /&gt;
|7/23/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disabled SEM option for &amp;quot;windowless EDX&amp;quot; because it seems like we don&#039;t have it and it was inhibiting the chamber from venting. Changed resolution on EDX computer from 640x480x64k colors to 1024x768x256 colors. Now it is much less annoying with little loss of function.&lt;br /&gt;
|-&lt;br /&gt;
|7/21/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Did full detector calibration of EDX with copper target. Also changed SEM configuration to show multi-dot EDX present, which enabled EDX presence mapping, including support for multiple channels. (Tested 3.) Noted that Isis EDX PC floppy drive failed; need replacement.&lt;br /&gt;
|-&lt;br /&gt;
|7/20/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Added liquid nitrogen to dewar and reset liquid nitrogen temperature sensor calibration. Demonstrated that EDX is functional.&lt;br /&gt;
|-&lt;br /&gt;
|7/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed EDX power supply voltage from 240V to 120V. Computer now recognizes detector. Customer self-test passed.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ran up new filament. Filament Current 2.71A is now 1st peak. Vacuum 7.5E-5 Torr. Aligned gun and aperture. (Changed to Aperture #2.) Resolution with sputtered gold looks good.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce and Steve Finkelman&lt;br /&gt;
|Filament blew due to vacuum loss. Replaced filament. Adjusted to 0.6mm from face of grid aperture, which is standard for longer filament life.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed new CPU fan. Finished replacing all panels except for the CPU.&lt;br /&gt;
|-&lt;br /&gt;
|4/?/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Hacked CMOS battery from battery holder and 4x AA batteries. Had to change jumper on motherboard, per manual, to use external battery as opposed to on board battery. Replaced two of the three front panel light bulbs.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Science]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30083</id>
		<title>Leica S430 Scanning Electron Microscope</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30083"/>
		<updated>2016-11-15T21:44:39Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:EquipmentPage&lt;br /&gt;
|image = SEM.jpg&lt;br /&gt;
|owner = PS:One&lt;br /&gt;
|certification=yes&lt;br /&gt;
|hackable = NO&lt;br /&gt;
|model = Leica Stereoscan 430&lt;br /&gt;
|serial = 430-02-01&lt;br /&gt;
|arrived = 3/23/2013&lt;br /&gt;
|contact = Ryan Pierce&lt;br /&gt;
|where = removed&lt;br /&gt;
|value = $100,000.00&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This machine has moved to [http://www.analyticslounge.org/ Analytics Lounge] per [https://wiki.pumpingstationone.org/Vote_to_Donate_SEM this vote], so it is no longer available at PS:One. This page remains because it may still contain useful information&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
* Secondary electron detector (functional)&lt;br /&gt;
* 4 quadrant silicon backscatter detector (non-functional, troubleshooting in progress)&lt;br /&gt;
* Oxford Isis EDX detector (working, requires liquid nitrogen to operate)&lt;br /&gt;
* High Resolution Recording Unit (HRRU) (not currently connected, Polaroid film no longer produced)&lt;br /&gt;
* Ethernet. Scripts set up to FTP image files for each user to [ftp://semsrv.pumpingstationone.org ftp://semsrv.pumpingstationone.org] which is accessible only inside PS:One&#039;s network.&lt;br /&gt;
&lt;br /&gt;
== Authorization ==&lt;br /&gt;
This is probably the most complex piece of equipment we own. As such, authorization will be broken into different levels which qualify a user to perform only certain specific tasks. Unlike other PS:One equipment where anyone authorized can, in turn, authorize anyone else, at present the only person who may authorize others is Ryan Pierce. We anticipate we will have additional trainers in the future.&lt;br /&gt;
&lt;br /&gt;
=== Scanning Electron Microscope User ===&lt;br /&gt;
This level enables the user to observe samples already prepared and placed in the chamber. Users at this certification level may:&lt;br /&gt;
&lt;br /&gt;
* Observe samples already left in the chamber.&lt;br /&gt;
* Use the Secondary Electron detector.&lt;br /&gt;
* Observe their own samples if prepared and placed in the chamber by someone with Sample Preparer certification.&lt;br /&gt;
* Adjust standard software settings.&lt;br /&gt;
* Align the aperture, and change between apertures.&lt;br /&gt;
* Vent the chamber and restart the vacuum pumps. (only if necessary)&lt;br /&gt;
&lt;br /&gt;
Users possessing this authorization may not:&lt;br /&gt;
&lt;br /&gt;
* Use the Backscatter or EDX detectors.&lt;br /&gt;
* Open the chamber and manipulate samples.&lt;br /&gt;
* Adjust gun alignment.&lt;br /&gt;
* Open the gun assembly, change filaments, anodes, etc.&lt;br /&gt;
* Replace apertures.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Steve Finkelman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tucker Tomlinson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|David Fell&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tony Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Lisa Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Patrick Schless&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Everett Wilson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andreas Dahl-Hansen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Justin Conroy&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dmitry Baycharov&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jerry Lebedowych&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Jaypee|W J Perry]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jay Hopkins&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:hef|Hef]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Aaron Carlock&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Kos&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Todd Allen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Skittles&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|John Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Cameron Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Mike Warot&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dave Schact&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|A. Catherine Noon&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:ad9581|Arturo Duarte]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Melody Snyder&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Sache&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Scott Anamizu&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Backscatter Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Move the four quadrant backscatter detector in and out of the beam path.&lt;br /&gt;
* Image samples with the 4QBSD.&lt;br /&gt;
&lt;br /&gt;
As the 4QBSD is currently undergoing maintenance, this authorization is currently on hold. It will be rolled into the Microscope User authorization and made part of that curriculum at a future date.&lt;br /&gt;
&lt;br /&gt;
=== EDX Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Operate the EDX detector.&lt;br /&gt;
* Fill the EDX detector with liquid nitrogen.&lt;br /&gt;
&lt;br /&gt;
PS:One only recently acquired equipment for transporting, storing, and dispensing liquid nitrogen. An EDX authorization class is forthcoming.&lt;br /&gt;
&lt;br /&gt;
=== Sample Preparer ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Mount samples on stubs.&lt;br /&gt;
* Use the [[Technics Hummer V Sputter Coater]] to sputter coat sample stubs.&lt;br /&gt;
* Vent the SEM chamber.&lt;br /&gt;
* Load and unload samples from the chamber.&lt;br /&gt;
* Pump down the SEM chamber.&lt;br /&gt;
&lt;br /&gt;
This authorization is currently on hold, but we anticipate to offer it shortly.&lt;br /&gt;
&lt;br /&gt;
=== Microscope Maintainer ===&lt;br /&gt;
Maintainers perform all maintenance on the microscope, including:&lt;br /&gt;
&lt;br /&gt;
* Changing filaments&lt;br /&gt;
* Aligning the gun&lt;br /&gt;
* Replacing the anode&lt;br /&gt;
* Cleaning the gun assembly&lt;br /&gt;
* Replacing apertures&lt;br /&gt;
* Adjusting software configuration&lt;br /&gt;
* Anything involving disassembly of the microscope&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suppliers ==&lt;br /&gt;
* SPI Supplies[http://www.2spi.com/]&lt;br /&gt;
* Ladd Research[http://www.laddresearch.com/]&lt;br /&gt;
* Ted Pella, Inc[http://www.tedpella.com/SEM_html/SEMsuply.htm]&lt;br /&gt;
* Tring Enterprises[http://www.vacuumandlowpressure.com]&lt;br /&gt;
&lt;br /&gt;
== Supplies ==&lt;br /&gt;
* Front panel light bulbs: These use #85 28V miniature bulbs.[http://www.amazon.com/Sylvania-34179-Miniature-Automotive-Light/dp/B000TZPAQK] The scope came with many of these.&lt;br /&gt;
* Edwards EMF20 oil mist and odor filters: [http://www.vacuumandlowpressure.com/EMFelements.html] has the best price I could find. These are two separate elements, and one may need to be replaced while the other may be fine.&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope Operations Checklist]]&lt;br /&gt;
* [ftp://semsrv.pumpingstationone.org/doc/Scanning%20Electron%20Microscope%20Certification%20-%2020140119.ppt SEM User Certification] (Available on internal network only!)&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope User Certification Checklist]]&lt;br /&gt;
* [[Media:S430-CH1.pdf | S430 Manual: Chapter 1]]&lt;br /&gt;
* [[Media:S430-CH2.pdf | S430 Manual: Chapter 2]]&lt;br /&gt;
* [[Media:S430-CH3.pdf | S430 Manual: Chapter 3]]&lt;br /&gt;
* [[Media:S430-CH4.pdf | S430 Manual: Chapter 4]]&lt;br /&gt;
* [[Media:S430-CH5.pdf | S430 Manual: Chapter 5]]&lt;br /&gt;
* [[Media:S430-CH6.pdf | S430 Manual: Chapter 6]]&lt;br /&gt;
* [[Media:S430-APP.pdf | S430 Manual: Appendices]]&lt;br /&gt;
&lt;br /&gt;
=== Network Config ===&lt;br /&gt;
&lt;br /&gt;
SEMSRV is the FTP server. The SEM and the EDX are Windows 3.x era machines, and are currently configured via BOOTP. The current Mikrotic router does not send DNS server information with its BOOTP responses.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Machine&lt;br /&gt;
!MAC&lt;br /&gt;
!Address&lt;br /&gt;
|-&lt;br /&gt;
|SEMSRV (virtual Linux FTP server)&lt;br /&gt;
|1E:0B:6B:E6:2D:9C&lt;br /&gt;
|10.100.0.108&lt;br /&gt;
|-&lt;br /&gt;
|SEM&lt;br /&gt;
|00:00:C0:37:A1:A3&lt;br /&gt;
|10.100.0.40&lt;br /&gt;
|-&lt;br /&gt;
|EDX&lt;br /&gt;
|08:00:09:51:A5:28&lt;br /&gt;
|10.100.0.41&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=== Final Vacuum ===&lt;br /&gt;
Final vacuum doesn&#039;t want to drop beyond 1.8e-5 torr. However, after leaving the scope on, the vacuum increases to around 1.3e-4 torr. Venting and pumping the chamber always fixes the problem. Also, when pumping down, the pressure bounces around a bit initially, and then suddenly drops from 1.0e-4 to 6e-5 torr within a second, which is likely a physical impossibility. Possibilities:&lt;br /&gt;
&lt;br /&gt;
* The Penning vacuum gauge can become plated with ions. This is a very common failure mode and can cause false readings. Lightly sanding the anode and cathode, and washing everything in acetone, is the manufacturer&#039;s recommended cleaning procedure. This probably hasn&#039;t been done in a very long time and is a good first step before further troubleshooting. For all we know, we don&#039;t have a problem. Lending support to this is an absence of image degradation between the 1.3e-4 &amp;quot;bad&amp;quot; state and the 3e-5 &amp;quot;good&amp;quot; state after venting and pumping.&lt;br /&gt;
* The vent solenoid has been known to leak on other SEM users&#039; scopes.&lt;br /&gt;
* Chamber and gun gaskets should be greased with a suitable high vacuum grease, e.g. Apiezon M.&lt;br /&gt;
* Rotation speed on the turbomolecular pump can be checked, which correlates to chamber pressure.&lt;br /&gt;
&lt;br /&gt;
Cleaning the Penning gauge now results in a significantly more stable vacuum reading, with no wild fluctuations that defy the laws of physics. It had significant accumulated plating on the anode and cathodes, and loose black shiny grit in the gauge, which could cause erroneous readings. However, the gauge doesn&#039;t indicate below 1.09e-4 torr. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* Contamination in the Penning gauge often results in less current flow, which registers as a lower vacuum reading than is actually present.&lt;br /&gt;
* It is possible that we really have been running at 1e-4 torr all this time without realizing it. This is certainly not ideal, but a beam can pass through the column and image at this level.&lt;br /&gt;
* While the chamber air admit solenoid may be a possible culprit, this seems unlikely. Air leaks usually are larger than this. Still, plugging the solenoid is an easy way to check.&lt;br /&gt;
* The turbomolecular pump is now a likely suspect. 1e-4 torr is only marginally better than a roughing pump can achieve. Turbopumps should drop the pressure into the e-6 range. It is possible the pump is not running at full speed. This should be investigated via the pump controller.&lt;br /&gt;
* Applying light finger pressure to the air admit solenoid causes the chamber pressure to drop from 9.3e-5 torr to as much as 9.0e-5 torr; releasing it causes it to return to the starting value. This is repeatable. It suggests a possible leak related to the air admit solenoid.&lt;br /&gt;
&lt;br /&gt;
After removing the Penning gauge, cleaning the O ring of residual black sand grit, and reassembling, pressures in the 9e-5 torr range can be achieved. Attention turned to the Edwards EXT120E turbomolecular pump controller. This has an analog output from 0-5 V proportional to pump speed on pins 16 and 17. (Polarity appears backwards from what the manual states.) I measured 4.955V, corresponding to the pump running at 99.1% speed. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* It is therefore very unlikely that we have bad bearings causing the pump not to run at full speed.&lt;br /&gt;
* Tightening the Penning gauge did produce a change in vacuum of around 5%. However merely rotating the magnets, which are in an external sleeve, changes the vacuum too. It looks unlikely to be a leak in the gauge. Rather, the gauge seems to be very dependent on physical orientation, even though, if left alone, the results are now very stable.&lt;br /&gt;
* Pushing the pump around when running did not produce a change in vacuum.&lt;br /&gt;
* Pushing around the solenoid valve did produce a change in vacuum.&lt;br /&gt;
* One of the bolts holding the solenoid on was loose. Tightening it didn&#039;t seem to be the fix.&lt;br /&gt;
* It is likely the solenoid valve leaking. Replacing the solenoid valve with a rubber stopper is the next step to troubleshoot the problem.&lt;br /&gt;
&lt;br /&gt;
Solenoid valve was removed and replaced with a rubber stopper. This clearly fixed the problem, as low 1.0e-5 torr vacuum could be achieved. Attempts to repair the old solenoid were unsuccessful. Solenoid was replaced with a new old stock Edwards C41723000 24V NO solenoid. This required hacking together an NW10 adapter to connect to the air hose leading to the desiccant dryer / filter, and obtaining an NW10 centering ring and clamp.&lt;br /&gt;
&lt;br /&gt;
This adequately solves our vacuum issues. 1e-5 torr is acceptable. In the future, we may attempt treating rubber O rings with vacuum grease in an attempt to improve the final vacuum into the e-6 torr range.&lt;br /&gt;
&lt;br /&gt;
=== Image Processor board loses communications ===&lt;br /&gt;
We have observed after moving the scope to its new location that the vacuum spontaneously shuts off. Error messages pop up on the console several seconds later concerning timeouts to the Stage and Vacuum board.&lt;br /&gt;
&lt;br /&gt;
Communications between boards happens via RS232 over fiber optic cables. The Opto 10 and 11 connectors handle communication to the Stage and Vacuum board, and unfortunately it appears tension was applied to the fiber, causing damage to the connector on the image processor board. The cable isn&#039;t locking in place properly.&lt;br /&gt;
&lt;br /&gt;
On a single occasion, communication to the EHT board was lost. This corresponds to Opto 8 and 9.&lt;br /&gt;
&lt;br /&gt;
A dual cable plugs into a single port, Opto 1, for the HRRU pixel data. The fiber plug connector on the cable end has snapped. This is not critical as we are not using the HRRU.&lt;br /&gt;
&lt;br /&gt;
Repair is possible. The connector in question is a &amp;quot;hp 9534 R-2521&amp;quot; with a T-1521 next to it. These appear commonly available, but soldering to the image processor board should be considered a last resort.&lt;br /&gt;
&lt;br /&gt;
We have removed the external fiber cables tangled with the others. This has largely reduced the incidents of vacuum crashes due to communications failures, but not entirely eliminated them. One failure has happened since then.&lt;br /&gt;
&lt;br /&gt;
== Maintenance Log ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Date&lt;br /&gt;
! Maintainer&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
|10/30/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Shut down SEM for repair of the rotary vane pump. Vented chamber. Removed all samples. Disconnected rotary vane pump. Disconnected electrical power. The rotary vane pump is exhibiting signs of overheating, scorching the oil, making very loud, regular clacking noises in time with the pump stroke, emitting a scorched oil odor, possibly allowing oil vapors to escape back up the line when the pump is turned off, and may have a small oil leak. &lt;br /&gt;
|-&lt;br /&gt;
|9/20/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Finished vacuum system repair. Had previously replaced the air admit solenoid with an Edwards C41723000 24V NO solenoid. This produced a vacuum around 1.03e-5 torr. Added custom made adapter from NW10 flange to the fitting on the old solenoid that attached to the air dryer. This adapter was made by cutting apart the old solenoid, TIG welding a pipe compression fitting, which mechanically held the hose fitting. This was not airtight, so was sealed with epoxy. Chamber now vents properly and holds a vacuum. Re-assembled desk. Dried silica gel in an electric oven at slightly under 200F for several hours in a baking dish, stirring periodically, until bright blue color returned, and re-assembled air dryer assembly. Noted oil in rotary vacuum pump was running low, topped it off.&lt;br /&gt;
|-&lt;br /&gt;
|6/15/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced filament. Prior filament had 52 hours. Suspect user error setting current too high, however the filament was operating for most of its life at a very poor vacuum. Also changed out Weinhelt aperture with used spare. Old one needs to be cleaned and polished, not exactly sure how. Need to contact Susan (former operator.) At 10 kV, 1000x, 90 pA I Probe, first peak at 2.61A, second peak at 2.86A. Also corrected connection of mist and odor filter to rotary vacuum pump, which was not properly seated.&lt;br /&gt;
|-&lt;br /&gt;
|5/?/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Removed chamber air admit solenoid. Replaced with rubber stopper. Vacuum ultimately gets to 9.6e-6 torr.&lt;br /&gt;
|-&lt;br /&gt;
|5/18/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noted turbomolecular pump analog speed voltage at 4.955 V, corresponding to the pump running at 99.1% speed.&lt;br /&gt;
|-&lt;br /&gt;
|5/1/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, noted some of the particulates on the O ring, cleaned it better with a kimwipe, and reassembled. System pressure is now 9.3e-5 torr, which is sufficient to run the beam.&lt;br /&gt;
|-&lt;br /&gt;
|4/29/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, cleaned O ring with kimwipe, and reassembled. System pressure is lower, measured at 1.09e-4 torr on 5/1/2014.&lt;br /&gt;
|-&lt;br /&gt;
|4/26-27/2014&lt;br /&gt;
|Ryan Pierce and Elizabeth Koprucki&lt;br /&gt;
|Disassembled Penning gauge. It was filthy with plated material and loose shiny black sand-like material. Sanded anode and cathode cups to remove the bulk of plated material. Removed ion trap and sanded interior metal surfaces. (The plastic surfaces are filthy, but I don&#039;t know how to clean this.) Cleaned all metal parts in 3 progressive changes of acetone in an ultrasonic bath. Anode wire was bent in re-insertion. Following re-assembly, pressure was 1.5e-4 torr.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that tension on the HRRU fiber cables snapped the HRRU fiber connector of one cable and damaged the locking mechanism on OPTO 11, which likely caused the loss of vacuum and loss of communication to the vacuum board. Removed the HRRU cables so they are no longer a hazard. Re-seated all fiber connections to the image processor board.&lt;br /&gt;
|-&lt;br /&gt;
|3/6/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced vacuum mist and odor filter, D ring, and drain plug gasket. Replaced front panel standby light bulb.&lt;br /&gt;
|-&lt;br /&gt;
|3/2/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed CUTCP CONFIG.TEL file to use hard-coded DNS because the new router does not send DNS info with BOOTP responses.&lt;br /&gt;
|-&lt;br /&gt;
|1/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noticed HDD controller error. This has happened in the past. Physically moving the IDE cable fixes it. Moved the cable this time, and the problem went away. Suspect bad cable. So I replaced the IDE cable.&lt;br /&gt;
|-&lt;br /&gt;
|12/24/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed all user scripts to point FTP to semsrv.pumpingstationone.org so that the old server, plank, can be retired. NOTE: While CUTCP does get DNS from BOOTP, the NCSA Telnet I&#039;m using for FTP does not! I had to hard-code the IP address of the DNS (used 10.100.0.1) in the CONFIG.TEL file which is a nasty but necessary hack.&lt;br /&gt;
|-&lt;br /&gt;
|11/9/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed rotary vacuum pump with oil that came with the SEM. Noted that the oil mist filter was dry, but not working well as a lot of odor is passing through. Needs new filter elements.&lt;br /&gt;
|-&lt;br /&gt;
|10/17/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|SEM claimed filament had blown when this was not true. Opened gun, put same filament back. Re-aligned. This was after 6.9 hours filament time.&lt;br /&gt;
|-&lt;br /&gt;
|9/26/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Filament blew after 49 hours run time. Replaced.&lt;br /&gt;
|-&lt;br /&gt;
|9/12/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that final apertures were set at 20, 50, and 100 micron. However, the spare parts that came with the SEM only had 20, 30, and 50 micron apertures. Reconfigured dialogue box to use these values and for the #2 aperture, the image become much clearer. So this appears to be a config error I corrected.&lt;br /&gt;
|-&lt;br /&gt;
|9/2/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed NCSA Telnet (in addition to CUTCP package I already installed) because NCSA FTP supports scripted input. Set up user scripts and icons to push files for each user to the FTP server, and to delete files.&lt;br /&gt;
|-&lt;br /&gt;
|8/31/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed network software in C:\NETWORK. Set up AUTOEXEC.BAT to launch DOS networking from startup. Used EZSETUP.EXE to configure Ethernet card for 0x280, IRQ 3, 0xCC00 as recommended in Leica manual. (Note: Memory address conflicts on factory setting. Use soft config jumper.) Set up DOS packet driver. Set up for BOOTP. Networking under DOS works, and the DHCP server will respond with the appropriate static IP. Installed WINPKT.COM which is necessary to allow apps under Windows to use the packet driver. Tested apps in a DOS box; work successfully. Moved unnecessary startup items to a new group so they do not launch on startup and consume RAM.&lt;br /&gt;
|-&lt;br /&gt;
|8/30/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed from backup hard drive to system hard drive. (Backup that Jay made works. Note that he must have taken the backup when the SEM was in a weird state; you will need to load one of the configs in the default user directory just to see beam and an image. The LUT may have the colors inverted too. Reminder: have Jay make another backup once we&#039;re good to go with networking.) Removed laser printer card. Installed SMC Elite 16 Ethernet card. Set up template user directory in C:\USER\TEMPLATE and set up C:\NEWUSER.BAT script to create new users. Put sensible default settings in the Template dir.&lt;br /&gt;
|-&lt;br /&gt;
|7/23/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disabled SEM option for &amp;quot;windowless EDX&amp;quot; because it seems like we don&#039;t have it and it was inhibiting the chamber from venting. Changed resolution on EDX computer from 640x480x64k colors to 1024x768x256 colors. Now it is much less annoying with little loss of function.&lt;br /&gt;
|-&lt;br /&gt;
|7/21/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Did full detector calibration of EDX with copper target. Also changed SEM configuration to show multi-dot EDX present, which enabled EDX presence mapping, including support for multiple channels. (Tested 3.) Noted that Isis EDX PC floppy drive failed; need replacement.&lt;br /&gt;
|-&lt;br /&gt;
|7/20/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Added liquid nitrogen to dewar and reset liquid nitrogen temperature sensor calibration. Demonstrated that EDX is functional.&lt;br /&gt;
|-&lt;br /&gt;
|7/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed EDX power supply voltage from 240V to 120V. Computer now recognizes detector. Customer self-test passed.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ran up new filament. Filament Current 2.71A is now 1st peak. Vacuum 7.5E-5 Torr. Aligned gun and aperture. (Changed to Aperture #2.) Resolution with sputtered gold looks good.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce and Steve Finkelman&lt;br /&gt;
|Filament blew due to vacuum loss. Replaced filament. Adjusted to 0.6mm from face of grid aperture, which is standard for longer filament life.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed new CPU fan. Finished replacing all panels except for the CPU.&lt;br /&gt;
|-&lt;br /&gt;
|4/?/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Hacked CMOS battery from battery holder and 4x AA batteries. Had to change jumper on motherboard, per manual, to use external battery as opposed to on board battery. Replaced two of the three front panel light bulbs.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Science]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30082</id>
		<title>Leica S430 Scanning Electron Microscope</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Leica_S430_Scanning_Electron_Microscope&amp;diff=30082"/>
		<updated>2016-11-15T21:42:00Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:HistoricalEquipmentPage&lt;br /&gt;
|image = SEM.jpg&lt;br /&gt;
|owner = PS:One&lt;br /&gt;
|certification=yes&lt;br /&gt;
|hackable = NO&lt;br /&gt;
|model = Leica Stereoscan 430&lt;br /&gt;
|serial = 430-02-01&lt;br /&gt;
|arrived = 3/23/2013&lt;br /&gt;
|contact = Ryan Pierce&lt;br /&gt;
|where = Near shop entrance&lt;br /&gt;
|value = $100,000.00&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This machine has moved to [http://www.analyticslounge.org/ Analytics Lounge] per [https://wiki.pumpingstationone.org/Vote_to_Donate_SEM this vote], so it is no longer available at PS:One. This page remains because it may still contain useful information&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
* Secondary electron detector (functional)&lt;br /&gt;
* 4 quadrant silicon backscatter detector (non-functional, troubleshooting in progress)&lt;br /&gt;
* Oxford Isis EDX detector (working, requires liquid nitrogen to operate)&lt;br /&gt;
* High Resolution Recording Unit (HRRU) (not currently connected, Polaroid film no longer produced)&lt;br /&gt;
* Ethernet. Scripts set up to FTP image files for each user to [ftp://semsrv.pumpingstationone.org ftp://semsrv.pumpingstationone.org] which is accessible only inside PS:One&#039;s network.&lt;br /&gt;
&lt;br /&gt;
== Authorization ==&lt;br /&gt;
This is probably the most complex piece of equipment we own. As such, authorization will be broken into different levels which qualify a user to perform only certain specific tasks. Unlike other PS:One equipment where anyone authorized can, in turn, authorize anyone else, at present the only person who may authorize others is Ryan Pierce. We anticipate we will have additional trainers in the future.&lt;br /&gt;
&lt;br /&gt;
=== Scanning Electron Microscope User ===&lt;br /&gt;
This level enables the user to observe samples already prepared and placed in the chamber. Users at this certification level may:&lt;br /&gt;
&lt;br /&gt;
* Observe samples already left in the chamber.&lt;br /&gt;
* Use the Secondary Electron detector.&lt;br /&gt;
* Observe their own samples if prepared and placed in the chamber by someone with Sample Preparer certification.&lt;br /&gt;
* Adjust standard software settings.&lt;br /&gt;
* Align the aperture, and change between apertures.&lt;br /&gt;
* Vent the chamber and restart the vacuum pumps. (only if necessary)&lt;br /&gt;
&lt;br /&gt;
Users possessing this authorization may not:&lt;br /&gt;
&lt;br /&gt;
* Use the Backscatter or EDX detectors.&lt;br /&gt;
* Open the chamber and manipulate samples.&lt;br /&gt;
* Adjust gun alignment.&lt;br /&gt;
* Open the gun assembly, change filaments, anodes, etc.&lt;br /&gt;
* Replace apertures.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Steve Finkelman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tucker Tomlinson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|David Fell&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Tony Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Lisa Coleman&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Patrick Schless&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Everett Wilson&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andreas Dahl-Hansen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Justin Conroy&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dmitry Baycharov&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jerry Lebedowych&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Jaypee|W J Perry]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Jay Hopkins&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:hef|Hef]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Aaron Carlock&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Kos&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Todd Allen&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Skittles&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|John Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Cameron Rudnick&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Mike Warot&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Dave Schact&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|A. Catherine Noon&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|[[User:ad9581|Arturo Duarte]]&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Melody Snyder&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Sache&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|Scott Anamizu&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Backscatter Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Move the four quadrant backscatter detector in and out of the beam path.&lt;br /&gt;
* Image samples with the 4QBSD.&lt;br /&gt;
&lt;br /&gt;
As the 4QBSD is currently undergoing maintenance, this authorization is currently on hold. It will be rolled into the Microscope User authorization and made part of that curriculum at a future date.&lt;br /&gt;
&lt;br /&gt;
=== EDX Detector User ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Operate the EDX detector.&lt;br /&gt;
* Fill the EDX detector with liquid nitrogen.&lt;br /&gt;
&lt;br /&gt;
PS:One only recently acquired equipment for transporting, storing, and dispensing liquid nitrogen. An EDX authorization class is forthcoming.&lt;br /&gt;
&lt;br /&gt;
=== Sample Preparer ===&lt;br /&gt;
Users possessing this authorization may:&lt;br /&gt;
&lt;br /&gt;
* Mount samples on stubs.&lt;br /&gt;
* Use the [[Technics Hummer V Sputter Coater]] to sputter coat sample stubs.&lt;br /&gt;
* Vent the SEM chamber.&lt;br /&gt;
* Load and unload samples from the chamber.&lt;br /&gt;
* Pump down the SEM chamber.&lt;br /&gt;
&lt;br /&gt;
This authorization is currently on hold, but we anticipate to offer it shortly.&lt;br /&gt;
&lt;br /&gt;
=== Microscope Maintainer ===&lt;br /&gt;
Maintainers perform all maintenance on the microscope, including:&lt;br /&gt;
&lt;br /&gt;
* Changing filaments&lt;br /&gt;
* Aligning the gun&lt;br /&gt;
* Replacing the anode&lt;br /&gt;
* Cleaning the gun assembly&lt;br /&gt;
* Replacing apertures&lt;br /&gt;
* Adjusting software configuration&lt;br /&gt;
* Anything involving disassembly of the microscope&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suppliers ==&lt;br /&gt;
* SPI Supplies[http://www.2spi.com/]&lt;br /&gt;
* Ladd Research[http://www.laddresearch.com/]&lt;br /&gt;
* Ted Pella, Inc[http://www.tedpella.com/SEM_html/SEMsuply.htm]&lt;br /&gt;
* Tring Enterprises[http://www.vacuumandlowpressure.com]&lt;br /&gt;
&lt;br /&gt;
== Supplies ==&lt;br /&gt;
* Front panel light bulbs: These use #85 28V miniature bulbs.[http://www.amazon.com/Sylvania-34179-Miniature-Automotive-Light/dp/B000TZPAQK] The scope came with many of these.&lt;br /&gt;
* Edwards EMF20 oil mist and odor filters: [http://www.vacuumandlowpressure.com/EMFelements.html] has the best price I could find. These are two separate elements, and one may need to be replaced while the other may be fine.&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope Operations Checklist]]&lt;br /&gt;
* [ftp://semsrv.pumpingstationone.org/doc/Scanning%20Electron%20Microscope%20Certification%20-%2020140119.ppt SEM User Certification] (Available on internal network only!)&lt;br /&gt;
* [[Leica S430 Scanning Electron Microscope User Certification Checklist]]&lt;br /&gt;
* [[Media:S430-CH1.pdf | S430 Manual: Chapter 1]]&lt;br /&gt;
* [[Media:S430-CH2.pdf | S430 Manual: Chapter 2]]&lt;br /&gt;
* [[Media:S430-CH3.pdf | S430 Manual: Chapter 3]]&lt;br /&gt;
* [[Media:S430-CH4.pdf | S430 Manual: Chapter 4]]&lt;br /&gt;
* [[Media:S430-CH5.pdf | S430 Manual: Chapter 5]]&lt;br /&gt;
* [[Media:S430-CH6.pdf | S430 Manual: Chapter 6]]&lt;br /&gt;
* [[Media:S430-APP.pdf | S430 Manual: Appendices]]&lt;br /&gt;
&lt;br /&gt;
=== Network Config ===&lt;br /&gt;
&lt;br /&gt;
SEMSRV is the FTP server. The SEM and the EDX are Windows 3.x era machines, and are currently configured via BOOTP. The current Mikrotic router does not send DNS server information with its BOOTP responses.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Machine&lt;br /&gt;
!MAC&lt;br /&gt;
!Address&lt;br /&gt;
|-&lt;br /&gt;
|SEMSRV (virtual Linux FTP server)&lt;br /&gt;
|1E:0B:6B:E6:2D:9C&lt;br /&gt;
|10.100.0.108&lt;br /&gt;
|-&lt;br /&gt;
|SEM&lt;br /&gt;
|00:00:C0:37:A1:A3&lt;br /&gt;
|10.100.0.40&lt;br /&gt;
|-&lt;br /&gt;
|EDX&lt;br /&gt;
|08:00:09:51:A5:28&lt;br /&gt;
|10.100.0.41&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=== Final Vacuum ===&lt;br /&gt;
Final vacuum doesn&#039;t want to drop beyond 1.8e-5 torr. However, after leaving the scope on, the vacuum increases to around 1.3e-4 torr. Venting and pumping the chamber always fixes the problem. Also, when pumping down, the pressure bounces around a bit initially, and then suddenly drops from 1.0e-4 to 6e-5 torr within a second, which is likely a physical impossibility. Possibilities:&lt;br /&gt;
&lt;br /&gt;
* The Penning vacuum gauge can become plated with ions. This is a very common failure mode and can cause false readings. Lightly sanding the anode and cathode, and washing everything in acetone, is the manufacturer&#039;s recommended cleaning procedure. This probably hasn&#039;t been done in a very long time and is a good first step before further troubleshooting. For all we know, we don&#039;t have a problem. Lending support to this is an absence of image degradation between the 1.3e-4 &amp;quot;bad&amp;quot; state and the 3e-5 &amp;quot;good&amp;quot; state after venting and pumping.&lt;br /&gt;
* The vent solenoid has been known to leak on other SEM users&#039; scopes.&lt;br /&gt;
* Chamber and gun gaskets should be greased with a suitable high vacuum grease, e.g. Apiezon M.&lt;br /&gt;
* Rotation speed on the turbomolecular pump can be checked, which correlates to chamber pressure.&lt;br /&gt;
&lt;br /&gt;
Cleaning the Penning gauge now results in a significantly more stable vacuum reading, with no wild fluctuations that defy the laws of physics. It had significant accumulated plating on the anode and cathodes, and loose black shiny grit in the gauge, which could cause erroneous readings. However, the gauge doesn&#039;t indicate below 1.09e-4 torr. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* Contamination in the Penning gauge often results in less current flow, which registers as a lower vacuum reading than is actually present.&lt;br /&gt;
* It is possible that we really have been running at 1e-4 torr all this time without realizing it. This is certainly not ideal, but a beam can pass through the column and image at this level.&lt;br /&gt;
* While the chamber air admit solenoid may be a possible culprit, this seems unlikely. Air leaks usually are larger than this. Still, plugging the solenoid is an easy way to check.&lt;br /&gt;
* The turbomolecular pump is now a likely suspect. 1e-4 torr is only marginally better than a roughing pump can achieve. Turbopumps should drop the pressure into the e-6 range. It is possible the pump is not running at full speed. This should be investigated via the pump controller.&lt;br /&gt;
* Applying light finger pressure to the air admit solenoid causes the chamber pressure to drop from 9.3e-5 torr to as much as 9.0e-5 torr; releasing it causes it to return to the starting value. This is repeatable. It suggests a possible leak related to the air admit solenoid.&lt;br /&gt;
&lt;br /&gt;
After removing the Penning gauge, cleaning the O ring of residual black sand grit, and reassembling, pressures in the 9e-5 torr range can be achieved. Attention turned to the Edwards EXT120E turbomolecular pump controller. This has an analog output from 0-5 V proportional to pump speed on pins 16 and 17. (Polarity appears backwards from what the manual states.) I measured 4.955V, corresponding to the pump running at 99.1% speed. Thoughts:&lt;br /&gt;
&lt;br /&gt;
* It is therefore very unlikely that we have bad bearings causing the pump not to run at full speed.&lt;br /&gt;
* Tightening the Penning gauge did produce a change in vacuum of around 5%. However merely rotating the magnets, which are in an external sleeve, changes the vacuum too. It looks unlikely to be a leak in the gauge. Rather, the gauge seems to be very dependent on physical orientation, even though, if left alone, the results are now very stable.&lt;br /&gt;
* Pushing the pump around when running did not produce a change in vacuum.&lt;br /&gt;
* Pushing around the solenoid valve did produce a change in vacuum.&lt;br /&gt;
* One of the bolts holding the solenoid on was loose. Tightening it didn&#039;t seem to be the fix.&lt;br /&gt;
* It is likely the solenoid valve leaking. Replacing the solenoid valve with a rubber stopper is the next step to troubleshoot the problem.&lt;br /&gt;
&lt;br /&gt;
Solenoid valve was removed and replaced with a rubber stopper. This clearly fixed the problem, as low 1.0e-5 torr vacuum could be achieved. Attempts to repair the old solenoid were unsuccessful. Solenoid was replaced with a new old stock Edwards C41723000 24V NO solenoid. This required hacking together an NW10 adapter to connect to the air hose leading to the desiccant dryer / filter, and obtaining an NW10 centering ring and clamp.&lt;br /&gt;
&lt;br /&gt;
This adequately solves our vacuum issues. 1e-5 torr is acceptable. In the future, we may attempt treating rubber O rings with vacuum grease in an attempt to improve the final vacuum into the e-6 torr range.&lt;br /&gt;
&lt;br /&gt;
=== Image Processor board loses communications ===&lt;br /&gt;
We have observed after moving the scope to its new location that the vacuum spontaneously shuts off. Error messages pop up on the console several seconds later concerning timeouts to the Stage and Vacuum board.&lt;br /&gt;
&lt;br /&gt;
Communications between boards happens via RS232 over fiber optic cables. The Opto 10 and 11 connectors handle communication to the Stage and Vacuum board, and unfortunately it appears tension was applied to the fiber, causing damage to the connector on the image processor board. The cable isn&#039;t locking in place properly.&lt;br /&gt;
&lt;br /&gt;
On a single occasion, communication to the EHT board was lost. This corresponds to Opto 8 and 9.&lt;br /&gt;
&lt;br /&gt;
A dual cable plugs into a single port, Opto 1, for the HRRU pixel data. The fiber plug connector on the cable end has snapped. This is not critical as we are not using the HRRU.&lt;br /&gt;
&lt;br /&gt;
Repair is possible. The connector in question is a &amp;quot;hp 9534 R-2521&amp;quot; with a T-1521 next to it. These appear commonly available, but soldering to the image processor board should be considered a last resort.&lt;br /&gt;
&lt;br /&gt;
We have removed the external fiber cables tangled with the others. This has largely reduced the incidents of vacuum crashes due to communications failures, but not entirely eliminated them. One failure has happened since then.&lt;br /&gt;
&lt;br /&gt;
== Maintenance Log ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Date&lt;br /&gt;
! Maintainer&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
|10/30/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Shut down SEM for repair of the rotary vane pump. Vented chamber. Removed all samples. Disconnected rotary vane pump. Disconnected electrical power. The rotary vane pump is exhibiting signs of overheating, scorching the oil, making very loud, regular clacking noises in time with the pump stroke, emitting a scorched oil odor, possibly allowing oil vapors to escape back up the line when the pump is turned off, and may have a small oil leak. &lt;br /&gt;
|-&lt;br /&gt;
|9/20/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Finished vacuum system repair. Had previously replaced the air admit solenoid with an Edwards C41723000 24V NO solenoid. This produced a vacuum around 1.03e-5 torr. Added custom made adapter from NW10 flange to the fitting on the old solenoid that attached to the air dryer. This adapter was made by cutting apart the old solenoid, TIG welding a pipe compression fitting, which mechanically held the hose fitting. This was not airtight, so was sealed with epoxy. Chamber now vents properly and holds a vacuum. Re-assembled desk. Dried silica gel in an electric oven at slightly under 200F for several hours in a baking dish, stirring periodically, until bright blue color returned, and re-assembled air dryer assembly. Noted oil in rotary vacuum pump was running low, topped it off.&lt;br /&gt;
|-&lt;br /&gt;
|6/15/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced filament. Prior filament had 52 hours. Suspect user error setting current too high, however the filament was operating for most of its life at a very poor vacuum. Also changed out Weinhelt aperture with used spare. Old one needs to be cleaned and polished, not exactly sure how. Need to contact Susan (former operator.) At 10 kV, 1000x, 90 pA I Probe, first peak at 2.61A, second peak at 2.86A. Also corrected connection of mist and odor filter to rotary vacuum pump, which was not properly seated.&lt;br /&gt;
|-&lt;br /&gt;
|5/?/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Removed chamber air admit solenoid. Replaced with rubber stopper. Vacuum ultimately gets to 9.6e-6 torr.&lt;br /&gt;
|-&lt;br /&gt;
|5/18/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noted turbomolecular pump analog speed voltage at 4.955 V, corresponding to the pump running at 99.1% speed.&lt;br /&gt;
|-&lt;br /&gt;
|5/1/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, noted some of the particulates on the O ring, cleaned it better with a kimwipe, and reassembled. System pressure is now 9.3e-5 torr, which is sufficient to run the beam.&lt;br /&gt;
|-&lt;br /&gt;
|4/29/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disassembled Penning gauge, straightened anode wire better, cleaned O ring with kimwipe, and reassembled. System pressure is lower, measured at 1.09e-4 torr on 5/1/2014.&lt;br /&gt;
|-&lt;br /&gt;
|4/26-27/2014&lt;br /&gt;
|Ryan Pierce and Elizabeth Koprucki&lt;br /&gt;
|Disassembled Penning gauge. It was filthy with plated material and loose shiny black sand-like material. Sanded anode and cathode cups to remove the bulk of plated material. Removed ion trap and sanded interior metal surfaces. (The plastic surfaces are filthy, but I don&#039;t know how to clean this.) Cleaned all metal parts in 3 progressive changes of acetone in an ultrasonic bath. Anode wire was bent in re-insertion. Following re-assembly, pressure was 1.5e-4 torr.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that tension on the HRRU fiber cables snapped the HRRU fiber connector of one cable and damaged the locking mechanism on OPTO 11, which likely caused the loss of vacuum and loss of communication to the vacuum board. Removed the HRRU cables so they are no longer a hazard. Re-seated all fiber connections to the image processor board.&lt;br /&gt;
|-&lt;br /&gt;
|3/6/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Replaced vacuum mist and odor filter, D ring, and drain plug gasket. Replaced front panel standby light bulb.&lt;br /&gt;
|-&lt;br /&gt;
|3/2/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed CUTCP CONFIG.TEL file to use hard-coded DNS because the new router does not send DNS info with BOOTP responses.&lt;br /&gt;
|-&lt;br /&gt;
|1/7/2014&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Noticed HDD controller error. This has happened in the past. Physically moving the IDE cable fixes it. Moved the cable this time, and the problem went away. Suspect bad cable. So I replaced the IDE cable.&lt;br /&gt;
|-&lt;br /&gt;
|12/24/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed all user scripts to point FTP to semsrv.pumpingstationone.org so that the old server, plank, can be retired. NOTE: While CUTCP does get DNS from BOOTP, the NCSA Telnet I&#039;m using for FTP does not! I had to hard-code the IP address of the DNS (used 10.100.0.1) in the CONFIG.TEL file which is a nasty but necessary hack.&lt;br /&gt;
|-&lt;br /&gt;
|11/9/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed rotary vacuum pump with oil that came with the SEM. Noted that the oil mist filter was dry, but not working well as a lot of odor is passing through. Needs new filter elements.&lt;br /&gt;
|-&lt;br /&gt;
|10/17/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|SEM claimed filament had blown when this was not true. Opened gun, put same filament back. Re-aligned. This was after 6.9 hours filament time.&lt;br /&gt;
|-&lt;br /&gt;
|9/26/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Filament blew after 49 hours run time. Replaced.&lt;br /&gt;
|-&lt;br /&gt;
|9/12/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Discovered that final apertures were set at 20, 50, and 100 micron. However, the spare parts that came with the SEM only had 20, 30, and 50 micron apertures. Reconfigured dialogue box to use these values and for the #2 aperture, the image become much clearer. So this appears to be a config error I corrected.&lt;br /&gt;
|-&lt;br /&gt;
|9/2/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed NCSA Telnet (in addition to CUTCP package I already installed) because NCSA FTP supports scripted input. Set up user scripts and icons to push files for each user to the FTP server, and to delete files.&lt;br /&gt;
|-&lt;br /&gt;
|8/31/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed network software in C:\NETWORK. Set up AUTOEXEC.BAT to launch DOS networking from startup. Used EZSETUP.EXE to configure Ethernet card for 0x280, IRQ 3, 0xCC00 as recommended in Leica manual. (Note: Memory address conflicts on factory setting. Use soft config jumper.) Set up DOS packet driver. Set up for BOOTP. Networking under DOS works, and the DHCP server will respond with the appropriate static IP. Installed WINPKT.COM which is necessary to allow apps under Windows to use the packet driver. Tested apps in a DOS box; work successfully. Moved unnecessary startup items to a new group so they do not launch on startup and consume RAM.&lt;br /&gt;
|-&lt;br /&gt;
|8/30/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed from backup hard drive to system hard drive. (Backup that Jay made works. Note that he must have taken the backup when the SEM was in a weird state; you will need to load one of the configs in the default user directory just to see beam and an image. The LUT may have the colors inverted too. Reminder: have Jay make another backup once we&#039;re good to go with networking.) Removed laser printer card. Installed SMC Elite 16 Ethernet card. Set up template user directory in C:\USER\TEMPLATE and set up C:\NEWUSER.BAT script to create new users. Put sensible default settings in the Template dir.&lt;br /&gt;
|-&lt;br /&gt;
|7/23/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Disabled SEM option for &amp;quot;windowless EDX&amp;quot; because it seems like we don&#039;t have it and it was inhibiting the chamber from venting. Changed resolution on EDX computer from 640x480x64k colors to 1024x768x256 colors. Now it is much less annoying with little loss of function.&lt;br /&gt;
|-&lt;br /&gt;
|7/21/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Did full detector calibration of EDX with copper target. Also changed SEM configuration to show multi-dot EDX present, which enabled EDX presence mapping, including support for multiple channels. (Tested 3.) Noted that Isis EDX PC floppy drive failed; need replacement.&lt;br /&gt;
|-&lt;br /&gt;
|7/20/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Added liquid nitrogen to dewar and reset liquid nitrogen temperature sensor calibration. Demonstrated that EDX is functional.&lt;br /&gt;
|-&lt;br /&gt;
|7/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Changed EDX power supply voltage from 240V to 120V. Computer now recognizes detector. Customer self-test passed.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Ran up new filament. Filament Current 2.71A is now 1st peak. Vacuum 7.5E-5 Torr. Aligned gun and aperture. (Changed to Aperture #2.) Resolution with sputtered gold looks good.&lt;br /&gt;
|-&lt;br /&gt;
|4/14/2013&lt;br /&gt;
|Ryan Pierce and Steve Finkelman&lt;br /&gt;
|Filament blew due to vacuum loss. Replaced filament. Adjusted to 0.6mm from face of grid aperture, which is standard for longer filament life.&lt;br /&gt;
|-&lt;br /&gt;
|4/7/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Installed new CPU fan. Finished replacing all panels except for the CPU.&lt;br /&gt;
|-&lt;br /&gt;
|4/?/2013&lt;br /&gt;
|Ryan Pierce&lt;br /&gt;
|Hacked CMOS battery from battery holder and 4x AA batteries. Had to change jumper on motherboard, per manual, to use external battery as opposed to on board battery. Replaced two of the three front panel light bulbs.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Science]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Epilog_30w_Mini_24_Laser_Engraver&amp;diff=30081</id>
		<title>Epilog 30w Mini 24 Laser Engraver</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Epilog_30w_Mini_24_Laser_Engraver&amp;diff=30081"/>
		<updated>2016-11-15T18:34:52Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ Template:EquipmentPage&lt;br /&gt;
| owner=PS:One &lt;br /&gt;
| model=Mini 24 &lt;br /&gt;
| serial=SERIAL NUMBER &lt;br /&gt;
| arrived=6/29/2011 &lt;br /&gt;
| doesitwork=no (as of 2016-11-15)&lt;br /&gt;
| contact=[[CNC|CNC Area Host]] &lt;br /&gt;
| where=Shock Shop &lt;br /&gt;
| certification=yes &lt;br /&gt;
| hackable=no &lt;br /&gt;
| value=$15,000 &lt;br /&gt;
| image = Epilog_fired_the_laser.jpg&lt;br /&gt;
| hostarea = CNC&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Usage Policy ==&lt;br /&gt;
&lt;br /&gt;
The laser cutter is easily one of the most used machines at PS1. Due to this demand we request the cooperation of all members to share the laser cutter and associated computer. First and foremost, the practice &amp;quot;being excellent&amp;quot; should be observed at all times; respect yourself, other members, and the equipment. This is a usage policy so that everyone can use the laser:&lt;br /&gt;
&lt;br /&gt;
* Any user not actively test cutting or cutting will cede the computer and laser to the next person waiting in line, as soon as that waiting user notifies the current computer user. If you are still designing your file, please do so on another computer. Artastic (another PC upstairs) in the Crafts Area has a copy of Adobe Illustrator.&lt;br /&gt;
* If someone is waiting in line to use the laser, no active test cut or cut series shall be longer than 1 hour. No jobs will be allowed to start that overrun the 1 hour time limit when a new user is waiting.&lt;br /&gt;
* In the case that your last cut is longer than the 1 hour time limit, and a waiting user presents themselves after the cut has started, the cut job shall be allowed to finish and the waiting user will be allowed to set up their file in their own user account, during the cutting period.&lt;br /&gt;
* Continuous cutting shall not exceed 3 consecutive hours without a half hour break for the laser to cool. If a new user arrives before or during the cooling period the current user shall cede the laser to the next user, and the next user will wait for the cooling period to finish and the cooling period shall not count towards the 1 hours limit should another user present themselves.&lt;br /&gt;
* Waiting users shall notify the current user verbally that they are waiting and where they will be waiting until it is their turn. If multiple users are waiting, the next waiting user must start their test cutting or cut job within 10 minutes of being notified of a laser opening. The current user will keep a record of who is waiting, where they will be, and notify subsequent users of the status of the queue. The current user will find the next waiting user and verbally inform them that the laser is available.&lt;br /&gt;
&lt;br /&gt;
=== Additional Ways to be Excellent ===&lt;br /&gt;
* Have your artwork and your materials prepared and ready ahead of time. Artastic (another PC upstairs) in the Crafts Area has a copy of Adobe Illustrator. &lt;br /&gt;
* Allow people to start setting up their job after your last cut starts running. If you&#039;re concerned about a last minute adjustment, you can use Window&#039;s switch user feature to keep your file available.&lt;br /&gt;
* If there is someone waiting, get their phone number to text them, if possible. Texting allows you to give them a heads up so they can start setting up their job without you leaving the laser are.  (Leaving the laser running unattended is against the rules.) It also spares you from having to physically track down the other user.&lt;br /&gt;
&lt;br /&gt;
== Table Saw Note! ==&lt;br /&gt;
Items that have been cut on the laser cutter have the potential to set off the SawStop table saw safety brake. This will make the saw unusable until the SawStop cartridge is replaced, which costs ~ $75!  It typically happens if there is an excess of carbon char on the edges. &lt;br /&gt;
&lt;br /&gt;
Before use the SawStop to cut anything from the laser cutter please test the piece on the edge of the blade when the blade is not turning and see if it activates a red light on the display. How do you do this.&lt;br /&gt;
# Turn on the main power switch to the Sawstop.&lt;br /&gt;
# DO NOT TURN ON THE BLADE.  THE BLADE must not be moving.&lt;br /&gt;
# Check and see if the green light is on the front of the saw.&lt;br /&gt;
# Slide the piece you want to cut up to and contact the blade. &lt;br /&gt;
# Look at the lights on the front of the SawStop. If it is green you should be OK to proceed. If its red. DO NOT CUT. IT WILL TRIGGER THE BRAKE.&lt;br /&gt;
&lt;br /&gt;
You can try to sand off the char and repeat steps 1-5 or use another method to cut these pieces. &lt;br /&gt;
== Status ==&lt;br /&gt;
&lt;br /&gt;
Uses the inline exhaust fan through the roof, the switch is wired into a box on an orange extension cord; the fume extractor is not currently being used with the laser. &lt;br /&gt;
&lt;br /&gt;
[[Epilog/Epilog service notes]] - please note any service, repairs, or adjustments you make to the machine&lt;br /&gt;
&lt;br /&gt;
== Top Eight ==&lt;br /&gt;
* Don&#039;t use the autofocus, because it could burn out a motor.&lt;br /&gt;
* Don&#039;t cut materials that will ignite or emit dangerous fumes (any chlorinated plastic like PVC, for example). See section below.&lt;br /&gt;
* Always use the exhaust fan/always use the air assist on vector cuts.&lt;br /&gt;
* You must stay with the job; don&#039;t walk away. Things could catch on fire, that would suck.&lt;br /&gt;
* Sometimes it&#039;s a pain to get the right driver working. &lt;br /&gt;
* Do not attempt to service the machine yourself unless you&#039;ve cleared it with the CNC Area Host&lt;br /&gt;
* Do not touch any settings in the Config menu on the machine itself&lt;br /&gt;
* Do not touch any settings in the Maint menu on the machine itself &#039;&#039;&#039;&#039;&#039;except&#039;&#039;&#039;&#039;&#039; you may use Maint/1/Return Home to reset the cutting head to the machine&#039;s default origin (&amp;lt;.015&amp;quot; inside the top left corner as of 8/8/15)&lt;br /&gt;
* This should be obvious, but do not press hard or put heavy objects in the cutter. Abusing the bed supports WILL bend them and make the bed impossible to level.&lt;br /&gt;
&lt;br /&gt;
== Authorization ==&lt;br /&gt;
&lt;br /&gt;
Authorization for the laser is not viral. There are a few authorized trainers, though, and fairly frequent authorizations. Currently (as of Jan 2016) authorizations will appear on the calendar, but are not planned much more than 2 weeks in advance. See below for list of authorized users and link to authorized trainers. Post on the Google Group email list; look for a recent thread about laser authorizations and post there. &lt;br /&gt;
&lt;br /&gt;
== General Info ==&lt;br /&gt;
&lt;br /&gt;
This machine: http://www.epiloglaser.com/mini24_overview.htm&lt;br /&gt;
&lt;br /&gt;
Manual for this machine: http://www.epiloglaser.com/downloads/pdf/mini_helix_4.22.10.pdf&lt;br /&gt;
&lt;br /&gt;
[[laser settings|Settings for various materials]]&lt;br /&gt;
&lt;br /&gt;
[[Laser Cutter Instructions and Workflow]]&lt;br /&gt;
&lt;br /&gt;
Cleaning the optics: http://www.epiloglaser.com/tl_clean_optics.htm&lt;br /&gt;
&lt;br /&gt;
Inkscape for newbies: http://blog.ponoko.com/2008/01/21/how-to-inkscape-for-ponoko-newbies-trace-an-image/&lt;br /&gt;
&lt;br /&gt;
Experiment with [[Laser settings]] to find the lowest possible power and highest possible speed to get clean vector cuts. The new optics and tube (as of December 2014) can cut many organic materials with a minimum of charring.&lt;br /&gt;
&lt;br /&gt;
== Ventilation ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Always&#039;&#039;&#039; turn on the exhaust fan using the switch located in the silver box to the left of the machine.&lt;br /&gt;
&lt;br /&gt;
== Air assist ==&lt;br /&gt;
&lt;br /&gt;
Turn on the air assist by turning the silver knob on the regulator located on the red bracket attached to the wall behind the machine. The pressure regulator has no adjustable settings. It is either on or off.&lt;br /&gt;
&lt;br /&gt;
Air assist is used for vector cutting to have nice traces and avoid your material to burn. However some people like to have it disabled for raster jobs. &lt;br /&gt;
&lt;br /&gt;
Turn air assist off when you&#039;ve finished and you don&#039;t need it while doing your settings.&lt;br /&gt;
&lt;br /&gt;
Check the regulator for accumulated water from time to time. Place a container (and maybe some paper towels) under the regulator and vent accumulated water from the bottom using the small petcock. If too much water accumulates in the regulator, it may flow through the air hose and into the machine, spraying onto the bed/material.&lt;br /&gt;
&lt;br /&gt;
== Finishing up ==&lt;br /&gt;
&lt;br /&gt;
Leave the machine running as you pack up - the laser tube is air cooled by fans. Leaving the fans running after your job is done will help cool it off and make it last longer. The last thing to do before you walk away from the machine is to turn it off.&lt;br /&gt;
&lt;br /&gt;
Please leave the machine and the surrounding area cleaner than you found it by emptying the crumb tray below the cutting table, picking up cutouts, and vacuuming up any acrylic dust you made. While you&#039;re waiting on the laser is a good time to grab a shop vac and clean the vicinity.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
Under construction.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;NEVER CUT THESE MATERIALS&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;PVC (Poly Vinyl Chloride):&#039;&#039;&#039; Also known as &#039;&#039;&#039;&amp;quot;vinyl&amp;quot;&#039;&#039;&#039; &#039;&#039;&#039;&amp;quot;pleather&amp;quot;&#039;&#039;&#039; or &#039;&#039;&#039;&amp;quot;artificial leather.&amp;quot;&#039;&#039;&#039; Most adhesive vinyl shelf paper (e.g. Con-Tact Paper) also is PVC. Emits HCl and nasty chlorinated compounds when cut! Don&#039;t ever cut this material as it will ruin the optics, cause the metal of the machine to corrode, and ruin the motion control system.&lt;br /&gt;
* &#039;&#039;&#039;Polycarbonate:&#039;&#039;&#039; Also known as &#039;&#039;&#039;&amp;quot;Lexan.&amp;quot;&#039;&#039;&#039; Polycarbonate is also often found as flat, sheet material. The case cover window on the laser cutter is made of Polycarbonate because polycarbonate strongly absorbs infrared radiation! This is the frequency of light the laser cutter uses to cut materials, so it is very ineffective at cutting polycarbonate. Polycarbonate can also emit flame and chlorine gas when cut, making it a poor choice for laser cutting.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;HDPE:&#039;&#039;&#039; &amp;quot;milk bottle&amp;quot; plastic. It melts. It gets gooey. It catches on fire. Don&#039;t use it.&lt;br /&gt;
* &#039;&#039;&#039;PolyStyrene Foam:&#039;&#039;&#039; It catches fire, it melts, and only thin pieces cut. This is the #1 material that causes laser fires!!!&lt;br /&gt;
* &#039;&#039;&#039;Fiberglass:&#039;&#039;&#039; The epoxy resin used in fiberglass is bad to cut, the vapor/fumes of the epoxy resin are bad. The fiberglass mat itself, without resin, is safe to cut.&lt;br /&gt;
* &#039;&#039;&#039;Coated Carbon Fiber:&#039;&#039;&#039; Thin carbon fiber mat can be cut, with some fraying. However, once coated with epoxy it will emit noxious fumes.&lt;br /&gt;
* Silhouette &#039;&#039;&#039;magnet paper&#039;&#039;&#039; (sold by Inventables by example): it likely contains chlorine. Emits HCl and nasty chlorinated compounds when cut! Don&#039;t ever cut this material as it will ruin the optics, cause the metal of the machine to corrode, and ruin the motion control system.&lt;br /&gt;
* &#039;&#039;&#039;PTFE:&#039;&#039;&#039;, also known as &#039;&#039;&#039;Teflon&#039;&#039;&#039; or any fluorinated polymer it will releases nasty fluorinated compounds (bad for you) and sublimate then deposit on the lenses (likely destroying them).&lt;br /&gt;
* &#039;&#039;&#039;Gator foam&#039;&#039;&#039;: foam core gets burned and eaten away compared to the top and bottom hard paper shell. Not a fantastic thing to cut, but it can be cut if watched. And the MSDS sheet says it may produce hydrogen bromide and hydrogen chloride known to degrade the optics and mechanic of the cutter&lt;br /&gt;
* Any other plastic with &amp;quot;Chlor&amp;quot; or &amp;quot;Fluor&amp;quot; in the name, for the same reasons as PVC and PTFE above.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;Test for material&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Some people came up with an easy protocol to help identify unknown polymers: [http://www.nycresistor.com/2008/08/28/how-to-identify-polymers-with-burnination/ Nyc Resistor - how to identify polymers with burnination]. We don&#039;t know how reliable it is. And we can&#039;t but recommend to do that under good ventilation (outside?)&lt;br /&gt;
&lt;br /&gt;
== Use Caution With These Materials ==&lt;br /&gt;
* &#039;&#039;&#039;ABS:&#039;&#039;&#039; ABS does not cut well in a laser cutter. It tends to melt rather than vaporize, and has a higher chance of catching on fire and leaving behind melted gooey deposits on the vector cutting grid. It also does not engrave well (again, tends to melt). ABS emits hydogen cyanide when burned. https://en.wikipedia.org/wiki/Acrylonitrile_butadiene_styrene&lt;br /&gt;
&lt;br /&gt;
== Safe Materials ==&lt;br /&gt;
The laser can cut or etch. The materials that the laser can cut materials like wood, paper, cork, and some kinds of plastics. Etching can be done on almost anything, wood, cardboard, anodized aluminum, plastic, marble, stone, tile, and glass.&lt;br /&gt;
* Cutting&lt;br /&gt;
** Many woods up to 1/4&amp;quot; thick. Engineered woods like MDF are okay to use but may experience a higher amount of charring when cut. Be very careful about cutting oily woods, or very resinous woods as they also may catch fire. Natural wood can be cut or engraved, but varies in density in a single piece; results will vary across the workpiece.&lt;br /&gt;
** Paper cuts very very well on the laser cutter, and also very quickly. Thin paper and single layer card stock and cardboard are perfectly OK. Thicker cardboard, carton, and other papers also cut very well but need to be watched to make sure they don&#039;t catch fire.&lt;br /&gt;
** Cork cuts nicely, but the quality of the cut depends on the thickness and quality of the cork. Engineered cork has a lot of glue in it, and may not cut as well. Cork thicker than 1/4&amp;quot; should be avoided.&lt;br /&gt;
** Cast acrylic (also known as Lucite, Plexiglas, PMMA) cuts extremely well on the laser cutter, leaving a beautifully polished edge. With care, acrylic material up to 1/2&amp;quot; thick can be cut on the laser cutter. Extruded acrylic cuts less well and etches even worse. It tends to melt and puddle rather than vaporize.&lt;br /&gt;
** Delrin (POM) in thin sheets cuts and engraves very well. Delrin comes in a number of shore strengths (hardness) and the harder delrin tends to work better. Great for gears! It is possible to deeply engrave Delrin to make dies for embossing paper and leather.&lt;br /&gt;
** Kapton tape (Polyimide) : Works well, in thin sheets and strips like tape. 1/16&amp;quot; thick is about as thick as you can cut reliably.&lt;br /&gt;
** Mylar : Works well if it&#039;s thin. Once you get too far past 1/16&amp;quot; thick mylar has a tendency to warp, bubble, and curl. Gold coated mylar will not work.&lt;br /&gt;
** Solid Styrene : Smokes a lot when cut, but can be cut. Keep it thin (1/16&amp;quot;)&lt;br /&gt;
** Depron foam: Used a lot for hobby, RC aircraft, architectural models, and toys. 1/4&amp;quot; cuts nicely, with a smooth edge. Must be constantly monitored when cutting.&lt;br /&gt;
** Cloth (leather, suede, felt, hemp, cotton, polyester, but NEVER vinyl or pleather-- see above) They all cut well. Leather is very hard to cut, but can be if it&#039;s thinner than a belt (call it 1/8&amp;quot;)&lt;br /&gt;
** Magnetic Sheet material cuts beautifully (make SURE it does NOT contain chlorine, see above)&lt;br /&gt;
** NON-CHLORINE containing rubber is fine for cutting. Natural rubber engraves but leaves a dark sticky residue that doesn&#039;t affect stamps if the piece is engraved deeply enough.&lt;br /&gt;
** Carbon fiber mats/weave that has not yet had epoxy applied can be cut, very slowly. You must not cut carbon fiber that has been coated!!&lt;br /&gt;
* Etching: all the above can be etched, in some cases very deeply. In addition, you can etch:&lt;br /&gt;
** Glass (green seems to work best) .. looks sandblasted. Only FLAT GLASS can be engraved in our cutter. No round or cylindrical items.&lt;br /&gt;
** Ceramic tile&lt;br /&gt;
** Anodized aluminum ( vaporizes the anodization away )&lt;br /&gt;
** Painted/coated metals ( vaporizes the paint away )&lt;br /&gt;
** Stone : Marble, Granite, Soapstone, Onyx. Gets a white &amp;quot;textured&amp;quot; look when etched&lt;br /&gt;
* Marking&lt;br /&gt;
There is an expensive coating called &#039;cermark&#039;. This marking compound costs $100 for a small bottle, and must be diluted with ethanol and applied to metal (not ceramics or stone) before being etched to leave behind a permanent dark black mark.&lt;br /&gt;
&lt;br /&gt;
=== Material sources ===&lt;br /&gt;
* [http://www.inventables.com Inventables] for acrylic&lt;br /&gt;
* [http://www.abbeyspecialties.com/ Abbey Specialties] for acrylic in varied sizes, this company is our landlord. They are in the other half of our building and if you ask they can drop off in our shared loading dock.&lt;br /&gt;
* [http://www.petersenplastics.com Petersen Brother&#039;s Plastics] Has off-cuts and small pieces for $2/lb. 2929 N Pulaski Rd, Chicago, IL 60641 (773) 286-5666&lt;br /&gt;
* [http://www.amazon.com/Baltic-Birch-Plywood-Great-Scroll/dp/B00GQND2PK/ref=sr_1_sc_1?ie=UTF8&amp;amp;qid=1421174541&amp;amp;sr=8-1-spell&amp;amp;keywords=laser+plywod Amazon.com] good Baltic Birch 1/8&amp;quot; plywood.&lt;br /&gt;
* [http://www.rubberstampmaterials.com/laserengravablerubberandpolymer.aspx Laser-engravable rubber and polymer, for stamps]&lt;br /&gt;
* [http://www.amazon.com/Laserable-Rubber-Bundle-Engraving-Machine/dp/B00LIZFXY4/ref=sr_1_fkmr0_1?ie=UTF8&amp;amp;qid=1436036917&amp;amp;sr=8-1-fkmr0&amp;amp;keywords=acrylic+sheet+laserable Amazon, laserable rubber for stamps]&lt;br /&gt;
&lt;br /&gt;
== Strategies and techniques ==&lt;br /&gt;
&lt;br /&gt;
See main article, [[Epilog techniques]].&lt;br /&gt;
&lt;br /&gt;
[[Laser settings]] for various materials.&lt;br /&gt;
&lt;br /&gt;
== General references ==&lt;br /&gt;
&lt;br /&gt;
incredible box maker, with holes and text: http://www.makercase.com/&lt;br /&gt;
&lt;br /&gt;
parametric pdf box creator: http://boxmaker.rahulbotics.com/&lt;br /&gt;
&lt;br /&gt;
parametric svg box creator: http://www.giplt.nl/svg/&lt;br /&gt;
(load &amp;gt; construction category &amp;gt; better box)&lt;br /&gt;
&lt;br /&gt;
Ladyada&#039;s info on the proper application of laser beams: http://www.ladyada.net/wiki/laserinfo/equipment&lt;br /&gt;
&lt;br /&gt;
Information on materials that can and can&#039;t be cut: http://www.pololu.com/docs/0J24/3&lt;br /&gt;
&lt;br /&gt;
paramateric living hinge generator: http://www.ashanan.com/hinges/&lt;br /&gt;
(code at: https://github.com/ashanan/hinges)&lt;br /&gt;
&lt;br /&gt;
python svg library written by [[User:toba|Toba]]: https://github.com/eastein/svgcuts&lt;br /&gt;
&lt;br /&gt;
parametric flexbox generator: http://flexbox.herokuapp.com/&lt;br /&gt;
&lt;br /&gt;
http://blog.makezine.com/archive/2008/08/how-to-lasercut-custom-bo.html - Laser cut boxes&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[:Image:psone-logo-cutout.svg|PS:One Logo]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www.instructables.com/id/How-to-Adjust-for-Wood-Thickness-and-Kerf-on-a-Las/?ALLSTEPS Kerf measurement technique]&lt;br /&gt;
&lt;br /&gt;
== Short list of laser designs on Thingiverse ==&lt;br /&gt;
[http://www.thingiverse.com/tool:33/things All laser cutter things on Thingiverse]&amp;lt;br /&amp;gt;&lt;br /&gt;
http://www.thingiverse.com/thing:2321 - Theo Janssen&amp;lt;br /&amp;gt;&lt;br /&gt;
http://www.thingiverse.com/thing:2073 - Drill gauge&amp;lt;br /&amp;gt;&lt;br /&gt;
http://www.thingiverse.com/thing:1521 - Gyroscope&amp;lt;br /&amp;gt;&lt;br /&gt;
http://www.thingiverse.com/thing:1203 - 608 bearing wrapper + face&amp;lt;br /&amp;gt;&lt;br /&gt;
http://www.thingiverse.com/thing:952 - Small box&amp;lt;br /&amp;gt;&lt;br /&gt;
http://www.thingiverse.com/thing:53 - planetary gears&amp;lt;br /&amp;gt;&lt;br /&gt;
http://www.thingiverse.com/thing:5265 - Peristaltic pump&amp;lt;br /&amp;gt;&lt;br /&gt;
http://www.thingiverse.com/thing:5076 - Wire spool holder&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Software Compatibility ==&lt;br /&gt;
&lt;br /&gt;
Note: this indicates success in using this software with the printer driver, not general capabilities about the software itself.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
|-&lt;br /&gt;
! Software type&lt;br /&gt;
! Manufacturer&lt;br /&gt;
! File extensions&lt;br /&gt;
! Raster (engraving)&lt;br /&gt;
! Vector (cutting)&lt;br /&gt;
! Other notes&lt;br /&gt;
|-&lt;br /&gt;
| CorelDraw&lt;br /&gt;
| [http://www.corel.com Corel]&lt;br /&gt;
| cbr&lt;br /&gt;
| yes&lt;br /&gt;
| yes&lt;br /&gt;
| not available on machine&lt;br /&gt;
|-&lt;br /&gt;
| Illustrator CC&lt;br /&gt;
| [http://www.adobe.com Adobe]&lt;br /&gt;
| ai, eps, svg, pdf&lt;br /&gt;
| yes&lt;br /&gt;
| yes&lt;br /&gt;
| available on machine &lt;br /&gt;
|-&lt;br /&gt;
| Photoshop CC&lt;br /&gt;
| [http://www.adobe.com Adobe]&lt;br /&gt;
| psd, eps, pdf&lt;br /&gt;
| yes&lt;br /&gt;
| yes&lt;br /&gt;
| available on machine&lt;br /&gt;
|-&lt;br /&gt;
| Inkscape&lt;br /&gt;
| Open Source&lt;br /&gt;
|&lt;br /&gt;
| yes&lt;br /&gt;
| yes (only if printed from PDF)&lt;br /&gt;
| save as PDF (vectors should be stroked .01mm), then print from Acrobat. works for bitmap and vector.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes on Software Compatibility ==&lt;br /&gt;
&lt;br /&gt;
Adobe Illustrator and the epilog drivers don&#039;t always work great together. If you&#039;re experiencing any of the following, there is a simple fix:&lt;br /&gt;
&lt;br /&gt;
# Job runs, but it&#039;s an empty run. Laser head moves once then completes, even though raster vs vector is correctly configured and stokes are set to 0.072pt.&lt;br /&gt;
# Updating the media size in the epilog print driver does not update the size in Illustrator&#039;s print dialog, unless you reopen settings and press &#039;OK&#039; in epilog again another time or two.&lt;br /&gt;
# Open pressing print in Illustrator, you get a message about &amp;quot;nothing to print in selected layers&amp;quot; or similar.&lt;br /&gt;
# Media size entered in epilog driver is read as the reverse by Illustrator (e.g. 24x12 is seen as 12x24 by Illustrator)&lt;br /&gt;
&lt;br /&gt;
It seems epilog&#039;s driver doesn&#039;t play nicely with Illustrator, and Illustrator interfaces with the print driver a lot because it micromanages a lot of things.&lt;br /&gt;
If your document is saved as a .AI with PDF compatibility, simply right-click your AI file and open with Adobe Reader instead of Adobe Illustrator, and print from there.&lt;br /&gt;
&lt;br /&gt;
Adobe Reader has a much more &amp;quot;dumbed down&amp;quot; print dialog that just works with Epilog&#039;s driver. You don&#039;t have to resave your .AI as .PDF, as Adobe Reader can read .AI files saved in compatibility mode (that&#039;s the default).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Rotary Attachment ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NB: Always return the machine back to the default configuration with a cutting bed after use.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Installing Attachment ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Do not attempt to install the rotary attachment without ensuring that the cutting head AND autofocus plunger will clear it. It is extremely easy to damage the autofocus plunger and/or crash the head in the Y dimension, which will burn the motor out and make a lot of people sad.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Turn machine on&lt;br /&gt;
# Disable X/Y&lt;br /&gt;
# Open front cover &lt;br /&gt;
# Lower bed almost to the bottom of the machine while still allowing the catch tray to be removed&lt;br /&gt;
# &#039;&#039;&#039;Turn machine off&#039;&#039;&#039; NOT TURNING IT OFF CAN DAMAGE/DESTROY THE ELECTRONICS.&lt;br /&gt;
# Flip up rulers and remove cutting bed&lt;br /&gt;
# Remove slide out catch tray&lt;br /&gt;
# Install the attachment locating it in the 3 holes in the bottom of the bed &#039;&#039;&#039;DO NOT CONNECT PLUG YET&#039;&#039;&#039;&lt;br /&gt;
# Make sure the Y axis will clear the top of the attachment, if it will not turn the machine on and lower the bed further making sure to turn it off afterwards&lt;br /&gt;
# Connect the attachment cable to the connector in the back of the bed&lt;br /&gt;
# Turn the machine on - the machine will zero home over the top of the attachment&lt;br /&gt;
&lt;br /&gt;
Reverse steps to uninstall.&lt;br /&gt;
&lt;br /&gt;
=== Usage notes ===&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;DO NOT USE AUTO FOCUS&#039;&#039;&#039;&lt;br /&gt;
* 0,0 is &#039;&#039;&#039;TOP LEFT&#039;&#039;&#039;&lt;br /&gt;
* Y axis is wrapped around the piece &lt;br /&gt;
* Set Y size to circumference of piece - measure with soft tape or string/ribbon/etc&lt;br /&gt;
* Make sure to set print size in driver to same as art board in illustrator&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
&lt;br /&gt;
=== Can&#039;t login ===&lt;br /&gt;
&lt;br /&gt;
==== The trust relationship between this workstation and the primary domain failed ====&lt;br /&gt;
&lt;br /&gt;
* main page [[The trust relationship between this workstation and the primary domain failed]]&lt;br /&gt;
** Might be fixed now&lt;br /&gt;
** Occasional workaround: reboot&lt;br /&gt;
&lt;br /&gt;
==== I was certified a long time ago ====&lt;br /&gt;
&lt;br /&gt;
You need to&lt;br /&gt;
# Be a Current Member&lt;br /&gt;
# Have a https://members.pumpingstationone.org account&lt;br /&gt;
# Talk to a recommended certifier, The area host, or email info@pumpingstationone.org&lt;br /&gt;
&lt;br /&gt;
You may be asked to get recertified.&lt;br /&gt;
&lt;br /&gt;
==== Front door interlock broken ====&lt;br /&gt;
&lt;br /&gt;
The front door interlock has two reed switches. The one on the right isn&#039;t being activated by the factory magnet so it currently has an additional magnet on the inside of the machine, right to the left of the switch&lt;br /&gt;
&lt;br /&gt;
== List of Currently Certified Users ==&lt;br /&gt;
&lt;br /&gt;
This list is hugely incomplete because nobody was doing it. Someone should fix that eventually... for now, new certs should go in here. If you are certified and remember who certified you, go ahead and add yourself. Your non-presence on this list is not intended to insult you or your relatives.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Qualified Member&lt;br /&gt;
! Trained By&lt;br /&gt;
|-&lt;br /&gt;
|Nat Zorach&lt;br /&gt;
|Will McShane&lt;br /&gt;
|-&lt;br /&gt;
|[[User:anthony|Anthony Sontag]]&lt;br /&gt;
|Elizabeth&lt;br /&gt;
|-&lt;br /&gt;
|Will McShane&lt;br /&gt;
|Danger Committee&lt;br /&gt;
|-&lt;br /&gt;
|Eric Stein&lt;br /&gt;
|Will McShane&lt;br /&gt;
|-&lt;br /&gt;
|Patrick Schless&lt;br /&gt;
|Will McShane&lt;br /&gt;
|-&lt;br /&gt;
|Laurie Rich&lt;br /&gt;
|Steve&lt;br /&gt;
|-&lt;br /&gt;
|Tom Forajter&lt;br /&gt;
|Will McShane&lt;br /&gt;
|-&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|Patrick Swayze (RIP)&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Camardella&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Dan Locks&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Mahmoud Al-Qudsi&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Lauren Conroy&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Jesse Seay&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Sai Yamanoor&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Hef&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Adam Talsma&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Josh Cooper&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Bryan Rosendale&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Kevin Caughlin&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Nathan Becka&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Stephen Kamykowski&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Jesse Seay&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Bart Dring&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Mike Morarity&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Tony Dipaolo&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Adrew An&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Dean Anderson&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Francesca Slade&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|David Fell&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|Colin Parsons&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Jaypee|Jay Pee]]&lt;br /&gt;
|Elizabeth&lt;br /&gt;
|-&lt;br /&gt;
|Peter Borah&lt;br /&gt;
|Elizabeth&lt;br /&gt;
|-&lt;br /&gt;
|April&lt;br /&gt;
|Elizabeth&lt;br /&gt;
|-&lt;br /&gt;
|[[User:rdoeksen|Ray Doeksen]]&lt;br /&gt;
|Elizabeth&lt;br /&gt;
|-&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|Will McShane&lt;br /&gt;
|-&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|Will McShane&lt;br /&gt;
|-&lt;br /&gt;
|George Shaw&lt;br /&gt;
|Will McShane&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Kos&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Derek Bever&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Jason Araujo&lt;br /&gt;
|Derek Bever&lt;br /&gt;
|-&lt;br /&gt;
|Adam Glick&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Nathan Ellis&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|[[user:rob|Rob Riggs (Colorado Rob)]]&lt;br /&gt;
|Elizabeth&lt;br /&gt;
|-&lt;br /&gt;
|[[User:ad9581|Arturo Duarte]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|[[User:jivnyahoo|James Porter]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|[[User:ryankelly11|Ryan Kelly]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|[[User:sloanieb01|Sloan Lavery]]&lt;br /&gt;
|William McShane&lt;br /&gt;
|-&lt;br /&gt;
|Casey Olson&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|Spenser Gilliland&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Jeff McBride&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|David Morton&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Wright&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Touly Phiachantharath&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Robert Grossman&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Eddie Muela&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Rachel Wallis &lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Nick Halderman&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Eric Beauchamp&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|Aaron Mintz&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Matt Makris&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|[[User:RogerMoore|Roger Moore]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Michael Leinartas&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Solomon Hursey&lt;br /&gt;
|Elizabeth Kopruki&lt;br /&gt;
|-&lt;br /&gt;
|[[User:daroldhiga|Darold Higa]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Curtiss Cooke&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Dubi Kaufmann&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Maria Miller&lt;br /&gt;
|Derek Bever&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Sowa&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Mike Kislovsky&lt;br /&gt;
|Will McShane&lt;br /&gt;
|-&lt;br /&gt;
|Kyle Bieneman&lt;br /&gt;
|Will McShane&lt;br /&gt;
|-&lt;br /&gt;
|Michael Solheim&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Tim Geiser&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lucas|Lucas Goossen]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Alec Weege&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|Arjun Wadnerkar&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|Kevin Pulver&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|David Butler&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Mike Mandrea&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Davis Mazariegos&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|John Farmer&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Knute Martell&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|[[User:leonmf|Leon Grossman]]&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Tina|Tina C]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Benjamin Miller&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Taylor&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|Joe Wallace&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Neuman&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Scott Little&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Scott Drane&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Will Garza&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Mike Jones &lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Bryan Sills &lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Mike Patton&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|James Huber &lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|[[user:kuroishi|Doorman Dave]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Simon Pyle&lt;br /&gt;
|Jason Shanfield&lt;br /&gt;
|-&lt;br /&gt;
|Kurt Ziegel&lt;br /&gt;
|Lyn Cole&lt;br /&gt;
|-&lt;br /&gt;
|Ralph Brendler&lt;br /&gt;
|[[user:Bjonnh|Jonathan Bisson]]&lt;br /&gt;
|-&lt;br /&gt;
|Robert Caruso&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|(Raj) Joseph Perera&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|[[user:Bjonnh|Jonathan Bisson]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|[[user:daddybird|Burton Kent]]&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Wessing|Erik Wessing]]&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|[[User:crumpn8or|Matt Crump]]&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|[[User:motissia|Eugene Liolumovich]]&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|[[User:avner|Avner Shanan]]&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Chinzorig Davaatseren&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Temuulen Erdenekhvv&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Krista Benson&lt;br /&gt;
|Ray Doeksen --[[User:Rdoeksen|Rdoeksen]] ([[User talk:Rdoeksen|talk]]) 16:09, 28 August 2015 (CDT)&lt;br /&gt;
|-&lt;br /&gt;
|Bradley Jiminez&lt;br /&gt;
|Ray Doeksen --[[User:Rdoeksen|Rdoeksen]] ([[User talk:Rdoeksen|talk]]) 16:09, 28 August 2015 (CDT)&lt;br /&gt;
|-&lt;br /&gt;
|James Baker&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Hunter Koerner&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|- &lt;br /&gt;
|Tricia Scully&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Danika Faiola --[[User:Rdoeksen|Rdoeksen]] ([[User talk:Rdoeksen|talk]]) 21:34, 9 September 2015 (CDT)&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Jim Hartmann&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Levine&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Keith Hultman&lt;br /&gt;
|Khoi Nguyen&lt;br /&gt;
|-&lt;br /&gt;
|Julia Padvoiskis&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Erik Funkhouser&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Steve Kuenstler&lt;br /&gt;
|Elizabeth Koprucki&lt;br /&gt;
|-&lt;br /&gt;
|Shane Kanter 10/18/2015&lt;br /&gt;
|Ray Doeksen &lt;br /&gt;
|-&lt;br /&gt;
|Andy Larkin 10/20/2015&lt;br /&gt;
|Ray Doeksen &lt;br /&gt;
|-&lt;br /&gt;
|David Gutowsky&lt;br /&gt;
|Ray Doeksen &lt;br /&gt;
|-&lt;br /&gt;
|Nicholas Hawley&lt;br /&gt;
|Ray Doeksen &lt;br /&gt;
|-&lt;br /&gt;
|Kevin Mitchell&lt;br /&gt;
|Ray Doeksen &lt;br /&gt;
|-&lt;br /&gt;
|David Rubman 11/23/2105&lt;br /&gt;
|Ray Doeksen &lt;br /&gt;
|-&lt;br /&gt;
|Jeff Smykil&lt;br /&gt;
|Ray Doeksen &lt;br /&gt;
|-&lt;br /&gt;
|Samuel Sion&lt;br /&gt;
|Ron Olson&lt;br /&gt;
|-&lt;br /&gt;
|David O&#039;Brien --[[User:Rdoeksen|Rdoeksen]] ([[User talk:Rdoeksen|talk]]) 22:37, 21 December 2015 (CST)&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Greg Kudlacz&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Daya Alexander&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Dalesandro&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|An Phan&lt;br /&gt;
|Jonathan Bisson&lt;br /&gt;
|-&lt;br /&gt;
|Connor Sullivan&lt;br /&gt;
|Tom Judge&lt;br /&gt;
|1/22/16&lt;br /&gt;
|-}&lt;br /&gt;
|Brian Zable&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Joe Iklov&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Ashley Matrisciano&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Juan Ramos&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Jacob Collins&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Joseph Dowling&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|[[user:mkeith|Matt Keith]]&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Eugene Shockey Funke&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Donald Wells&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|8/29/2016&lt;br /&gt;
|-&lt;br /&gt;
|[[User:mct|McTavish McArdle]]&lt;br /&gt;
|Roy Doeksen&lt;br /&gt;
|2016-08-29&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Kapp&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|[[User:skynaya|Skylar Nova]]&lt;br /&gt;
|Ray Doeksen&lt;br /&gt;
|-&lt;br /&gt;
|Candice Son&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Rhonda Jackson&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Carlos Flores&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Idris Raja&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Fiebing&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Christian Tsu-Raun&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Danny Blanchard&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Leo Rodman&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-	&lt;br /&gt;
|Nick Puglisi&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Revant Ohri&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
|Daniel Conrad&lt;br /&gt;
|Burton Kent&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
== Authorizing Users ==&lt;br /&gt;
&lt;br /&gt;
The laser cutter now has [[:Category:Recommended laser authorizers|recommended authorizers]]. Recommended authorizers will periodically conduct authorization sessions for PS:1 members wishing to use the laser engraver. These sessions will be announced on the members&#039; listserv as early as is practicable. A recommended authorizer can follow the instructions on [[Laser Engraver Certification]] to enable logins to the laser engraver computer.&lt;br /&gt;
&lt;br /&gt;
[[Category:Laser Cutter]]&lt;br /&gt;
[[Category:Electronics Equipment]]&lt;br /&gt;
[[Category:Fabrication]]&lt;br /&gt;
[[Category:Certification Clarification Needed]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30031</id>
		<title>Do you need help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30031"/>
		<updated>2016-11-09T15:38:14Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* Personal support hotlines */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are a lot more resources on this page &amp;lt;http://mefiwiki.com/wiki/ThereIsHelp&amp;gt; we should maybe integrate some of them.&lt;br /&gt;
&lt;br /&gt;
====In case of emergency====&lt;br /&gt;
* Poison center: 800-222-1222&lt;br /&gt;
====Personal support hotlines====&lt;br /&gt;
* Suicide Hotline: 800-273-8255&lt;br /&gt;
* [https://rainn.org/get-help National Sexual Assault Hotline] at (800) 656-HOPE (4673)&lt;br /&gt;
* [http://mefiwiki.com/wiki/Homeless_Survival_Guide Homeless Survival Guide] - (food, housing, health care, public benefits)&lt;br /&gt;
* Trans Crisis Hotline: 877-565-8860&lt;br /&gt;
* LGBTQ+ Hotline: 866-488-7386&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30030</id>
		<title>Do you need help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30030"/>
		<updated>2016-11-09T15:21:48Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* Personal support hotlines */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are a lot more resources on this page &amp;lt;http://mefiwiki.com/wiki/ThereIsHelp&amp;gt; we should maybe integrate some of them.&lt;br /&gt;
&lt;br /&gt;
====In case of emergency====&lt;br /&gt;
* Poison center: 800-222-1222&lt;br /&gt;
====Personal support hotlines====&lt;br /&gt;
* Suicide Hotline: 800-273-8255&lt;br /&gt;
* [https://rainn.org/get-help | National Sexual Assault Hotline] at (800) 656-HOPE (4673)&lt;br /&gt;
* Trans Crisis Hotline: 877-565-8860&lt;br /&gt;
* LGBTQ+ Hotline: 866-488-7386&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30029</id>
		<title>Do you need help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30029"/>
		<updated>2016-11-09T15:21:33Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* Personal support hotlines */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are a lot more resources on this page &amp;lt;http://mefiwiki.com/wiki/ThereIsHelp&amp;gt; we should maybe integrate some of them.&lt;br /&gt;
&lt;br /&gt;
====In case of emergency====&lt;br /&gt;
* Poison center: 800-222-1222&lt;br /&gt;
====Personal support hotlines====&lt;br /&gt;
* Suicide Hotline: 800-273-8255&lt;br /&gt;
* [https://rainn.org/get-help|National Sexual Assault Hotline] at (800) 656-HOPE (4673)&lt;br /&gt;
* Trans Crisis Hotline: 877-565-8860&lt;br /&gt;
* LGBTQ+ Hotline: 866-488-7386&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30028</id>
		<title>Do you need help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30028"/>
		<updated>2016-11-09T15:18:08Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are a lot more resources on this page &amp;lt;http://mefiwiki.com/wiki/ThereIsHelp&amp;gt; we should maybe integrate some of them.&lt;br /&gt;
&lt;br /&gt;
====In case of emergency====&lt;br /&gt;
* Poison center: 800-222-1222&lt;br /&gt;
====Personal support hotlines====&lt;br /&gt;
* Suicide Hotline: 800-273-8255&lt;br /&gt;
* Trans Crisis Hotline: 877-565-8860&lt;br /&gt;
* LGBTQ+ Hotline: 866-488-7386&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help%3F&amp;diff=30027</id>
		<title>Do you need help?</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help%3F&amp;diff=30027"/>
		<updated>2016-11-09T15:15:39Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Bjonnh moved page Do you need help? to Do you need help&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Do you need help]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30026</id>
		<title>Do you need help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30026"/>
		<updated>2016-11-09T15:15:39Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Bjonnh moved page Do you need help? to Do you need help&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====In case of emergency====&lt;br /&gt;
* Poison center: 800-222-1222&lt;br /&gt;
====Personal support hotlines====&lt;br /&gt;
* Suicide Hotline: 800-273-8255&lt;br /&gt;
* Trans Crisis Hotline: 877-565-8860&lt;br /&gt;
* LGBTQ+ Hotline: 866-488-7386&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Pumping_Station_One&amp;diff=30025</id>
		<title>Pumping Station One</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Pumping_Station_One&amp;diff=30025"/>
		<updated>2016-11-09T15:14:36Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* Want to help? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== [http://pumpingstationone.org Pumping Station: One] - Chicago&#039;s Hackerspace ==&lt;br /&gt;
*Address: 3519 N. Elston Ave, Chicago, IL 60618-5617&lt;br /&gt;
*General Contact: info@pumpingstationone.org&lt;br /&gt;
*[[visiting|How do I visit?]] - We have an Open House every Tuesday at 8pm, with our [[:Category:Meetings| Member Meetings]], and are open to the public. It&#039;s the best time to get a guided tour and catch a couple board members.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width:100%; margin-bottom:2px;&amp;quot; cellpadding=&amp;quot;5&amp;quot;&lt;br /&gt;
!width=&amp;quot;49%&amp;quot;|&lt;br /&gt;
!width=&amp;quot;49%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== About PS:One ==&lt;br /&gt;
&lt;br /&gt;
* [[Frequently Asked Questions]]&lt;br /&gt;
* [[What is Pumping Station: One]]&lt;br /&gt;
* [[Contact Information]]&lt;br /&gt;
* [[Neighborhood Information]]&lt;br /&gt;
&lt;br /&gt;
== Member Information ==&lt;br /&gt;
&lt;br /&gt;
====New Members Start Here!====&lt;br /&gt;
&lt;br /&gt;
* [[New Member Orientation]]&lt;br /&gt;
* [https://members.pumpingstationone.org Member Web Site (activate your username)]&lt;br /&gt;
* [[Member Manual]]&lt;br /&gt;
* [[Guest Building Access]]&lt;br /&gt;
* [[Administration|How do things get done around here?]]&lt;br /&gt;
* [[How Do I Get Authorized?|How do I get authorized?]]&lt;br /&gt;
&lt;br /&gt;
====Want to help?====&lt;br /&gt;
* [[How can I help]]&lt;br /&gt;
&lt;br /&gt;
====Need help?====&lt;br /&gt;
* [[Do you need help]]&lt;br /&gt;
&lt;br /&gt;
== Community ==&lt;br /&gt;
&lt;br /&gt;
Who are the members of PS:One? How do they communicate? What do they know about this whole social interwebs thing?&lt;br /&gt;
&lt;br /&gt;
====[[Administration]]====&lt;br /&gt;
&lt;br /&gt;
* [[The Board|Board of Directors]] - The points of contact for day-to-day corporate operations, but not for most tools, equipment and space utilization.&lt;br /&gt;
* [[:Category:Hosted Areas|Area Hosts]] - The main points of contact for the (currently 10) different areas of the space.&lt;br /&gt;
* [[Volunteer Positions|Volunteer Authorizers]] - contact info for the Volunteer Positions established by the Board.&lt;br /&gt;
* [https://members.pumpingstationone.org/ The Membership] - Here PS1 members can see the complete PS1 membership list.&lt;br /&gt;
&lt;br /&gt;
==== Communication ====&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Meetings| Member Meetings]]&lt;br /&gt;
* [[Contact Points#Email Lists|Email Lists]]&lt;br /&gt;
* [[Contact Points#Social Networks|Social Networking]]&lt;br /&gt;
* [[Contact Points#Links|Other PS:One sites and online spaces]]&lt;br /&gt;
* [[Systems#Request Tracker|Request Tracker]] - A support tracker that we use to track membership issues.&lt;br /&gt;
* [[Votes|Member Votes]] - How we do/buy/decide big things&lt;br /&gt;
* [[:Category:Policy|Policies]]&lt;br /&gt;
&lt;br /&gt;
== [[Events]] ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.google.com/calendar/embed?src=hhlp4gcgvdmifq5lcbk7e27om4%40group.calendar.google.com&amp;amp;ctz=America/Chicago PS:One Google Calendar]&lt;br /&gt;
* [http://www.meetup.com/Pumping-Station-One/ PS:One Meetup Group]&lt;br /&gt;
* [[New events|How do I create an event?]]&lt;br /&gt;
&lt;br /&gt;
==== Area Calendars ====&lt;br /&gt;
* [http://www.google.com/calendar/render?cid=hkgq1nkid9up5e4oe9uacqdlic@group.calendar.google.com&amp;amp;ctz=America/Chicago PS:One Electronics Lab Reservation Calendar]&lt;br /&gt;
* [http://www.google.com/calendar/embed?src=tomjudge.com_cl3vcokea3rl5gfflp5d9putlo%40group.calendar.google.com&amp;amp;ctz=America/Chicago PS:One Hot Metals Calendar]&lt;br /&gt;
&lt;br /&gt;
|valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== Things We Have ==&lt;br /&gt;
&lt;br /&gt;
How to do things, where to get things, what&#039;s in the area, and other general reference stuff you feel like sharing.&lt;br /&gt;
&lt;br /&gt;
==== Hardware ====&lt;br /&gt;
&lt;br /&gt;
* [[Facilities]]: A list of what has been made available, and what should soon be made available to members. &lt;br /&gt;
* [[:Category:Equipment|Tools and Equipment]] : All PS:One equipment, tools, certification, safety, and repair information goes here.&lt;br /&gt;
* [[Sources]]: Where to get stuff: from Depots to dumpsters.&lt;br /&gt;
* [[:Category:Facilities|Building Facilities]]: How our building works.&lt;br /&gt;
&lt;br /&gt;
==== Other ====&lt;br /&gt;
&lt;br /&gt;
* [[Resources]]&lt;br /&gt;
* [[Administration#Important Documents|Important Documents and Files]]&lt;br /&gt;
* [[Systems#Workstations|Software]]&lt;br /&gt;
* [[Supplies]] and other things purchased for day-to-day space needs&lt;br /&gt;
&lt;br /&gt;
== What We Do ==&lt;br /&gt;
PS:One is a [[Do-ocracy]]. Here is some of what we do:&lt;br /&gt;
&lt;br /&gt;
==== Current Projects ====&lt;br /&gt;
* Fixing and mapping the building&#039;s [[Electrical]] systems...&lt;br /&gt;
* [[Gathering Materials]]&lt;br /&gt;
* [[Tool Crib Wishlist]]&lt;br /&gt;
* [[Laser Shopping]]&lt;br /&gt;
* [[Classes]]&lt;br /&gt;
&lt;br /&gt;
==== Interest Groups ====&lt;br /&gt;
* [[NERP]] (Not Exclusively Raspberry Pi): Embedded Systems (biweekly)&lt;br /&gt;
* [[Beer Church]] (and Brewing Station: One): Beer appreciation and home brewing&lt;br /&gt;
* [[CNC Build Club]]: A monthly meeting for building CNC machines&lt;br /&gt;
* [[TOOOL Chicago]]: A monthly meetup about locks and lockpicking&lt;br /&gt;
* [[Python Office Hours]]: A biweekly meetup about python programming&lt;br /&gt;
* [[Systems Group]]&lt;br /&gt;
* [[Knitting Machines]]: A page for participants in the Knitting Machine Workshops&lt;br /&gt;
* [[Applied Sciences]]: A page for persons interested in applications of science&lt;br /&gt;
* [[Electronics Office Hours]]: For all your basic (and not-so-basic) electronics questions&lt;br /&gt;
* [[SIGBOT]]: A monthly meetup for building and talking about robots.&lt;br /&gt;
* [[Pumping Station:Yum]]: Cooking and Hacking food&lt;br /&gt;
* [[ELMER Monthly]]:  Ham Radio Office Hours for licensed Ops and those working toward their licenses.  All are welcome.&lt;br /&gt;
* [[Chicago tDCS]]: Transcranial Direct Current Stimulation.&lt;br /&gt;
* [[Wiki Maintenance]]: Maintaining the wiki and teach people how to help.&lt;br /&gt;
&lt;br /&gt;
==== Space Automation ====&lt;br /&gt;
&lt;br /&gt;
[[IRC]] integration:&lt;br /&gt;
&lt;br /&gt;
* [[Spacemon]] - what rooms are busy, and are the lights on?&lt;br /&gt;
* [[Peoplemon]] - who is at the space?&lt;br /&gt;
* [[Schedmon]] - who will be at the space?&lt;br /&gt;
* [[Chillmon]] - what&#039;s the temperature in the shop?&lt;br /&gt;
&lt;br /&gt;
Network services:&lt;br /&gt;
* [[Printers]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=How_can_I_help%3F&amp;diff=30024</id>
		<title>How can I help?</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=How_can_I_help%3F&amp;diff=30024"/>
		<updated>2016-11-09T15:14:20Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Bjonnh moved page How can I help? to How can I help&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[How can I help]]&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=How_can_I_help&amp;diff=30023</id>
		<title>How can I help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=How_can_I_help&amp;diff=30023"/>
		<updated>2016-11-09T15:14:20Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Bjonnh moved page How can I help? to How can I help&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(The original of this page came from a mail from Andrew on 2016-11-06T21:12:00)&lt;br /&gt;
&lt;br /&gt;
TLDR; YES! PS1 would love your help and I look forward to seeing you around. Pick something you are passionate about, champion it, have solid discussions, and JFDI (be excellent - tools, space and humans alike).&lt;br /&gt;
&lt;br /&gt;
What can you do? Well, that&#039;s a trickier question...Read on&lt;br /&gt;
===Task project===&lt;br /&gt;
I&#039;ve been getting lots of questions aimed at helping out in general, trying to help get the Epilog fixed when it&#039;s down, get the big laser up and running, and CNC preparations (but applies in general). All of these things are happening (at their own hacker-pace [see what I did there?]), and the more help we can get to accomplish those tasks the better. BUT there are lots of decisions that go into actually doing all of those things so it requires a bit of coordination. I don&#039;t have a box of 100 well defined 30-min tasks spelled out in enough detail anyone can do them, but I&#039;d appreciate the help in creating any semblance of that.&lt;br /&gt;
                                                                 &lt;br /&gt;
If you are still encouraged and motivated to help out awesome, here are some...&lt;br /&gt;
&lt;br /&gt;
===Suggestions===&lt;br /&gt;
*Read, post, be active on the google groups* - You have to sign up because it&#039;s not automatic. I highly recommend getting the daily digest version (check out the second-to-the-right hand column of your subscription page &amp;lt;https://groups.google.com/forum/#!myforums&amp;gt;) of the google groups. This is where events and such get posted, since PS1 generally does not sent out mass emails.&lt;br /&gt;
&lt;br /&gt;
- https://groups.google.com/forum/?utm_source=digest&amp;amp;utm_medium=email#!forum/pumping-station-one                                                                                                                                   &lt;br /&gt;
&lt;br /&gt;
*Sign up for the Area host google group* - the area host google group has been around for a long time, and was recently revived to handle space planning stuff. It&#039;s not super active because there aren&#039;t a ton of people on it. The purpose is for planning though, and to keep the topics on point in both groups.&lt;br /&gt;
&lt;br /&gt;
                                                               &lt;br /&gt;
*Sign up to the PS1 task list - * I started a task list people could sign up to &amp;lt;https://airtable.com/shrcJKNAiCcyBfvZC&amp;gt;, to post tasks and get things done around the space &amp;lt;https://airtable.com/shrBdMFFDzwfb3TS9&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
You have to sign up because it&#039;s not linked to the member database, but once you&#039;re in you can create tasks and help fill in things that need doing around the space. &lt;br /&gt;
&lt;br /&gt;
*Read, update, discuss, fix errors on the wiki - *You don&#039;t have to be a wiki wizard to edit it. You have to mainly pay attention to syntax, but the benefit is that you can look at other pages and copy parts of them and change the content around. Fear not - the wiki is designed to have things &amp;quot;undone&amp;quot; so if you mess something up it&#039;s easy to fix. &lt;br /&gt;
&lt;br /&gt;
*Get a group of people together for an authorization -* Area hosts and volunteer authorizers love to help people make cool stuff. If you want to get authorized on something and there isn&#039;t anything on the calendar, post a request on the google groups (with a time and date that works for you) so other people can join in. Authorizations help transmitting necessary and important information about dangerous, expensive or complicated tools; &lt;br /&gt;
&lt;br /&gt;
batching it for several people makes it more efficient and you get to meet other members.                                                                                                                                                                                                                   &lt;br /&gt;
                                                                                                                                                                                                                                   &lt;br /&gt;
* Tell someone if something breaks or isn&#039;t working the way you&#039;d expect: A big time suck at the space is fixing broken things. No worries, breaking things happens to everyone, but it is super useful if what you were doing and how the thing broke is communicated to someone that can help out or the google groups, even if you are the one to fix it, or it gets fixed on the spot. The more detail about how something breaks (or doesn&#039;t work quite right) the better; it helps us figure out why it broke, how to repair it, weak points in the device or auth, and avoids someone getting hurt or breaking things further.&lt;br /&gt;
* Clean up the area you are working in : Leave it cleaner than you found it. Even if you didn&#039;t make the mess going a little further helps everyone out.&lt;br /&gt;
* Come to work/cleanup days - *Sometimes we have work/cleanup days, sometimes they are scheduled poorly or aren&#039;t convenient for you. BUT if you&#039;ve ever been somewhere in PS1 and said &amp;quot;hey this could use a bunch of people to clean this up and get it right&amp;quot;, organize your own cleaning day, you don&#039;t need to wait for someone to organize it for you; post on the google groups or calendar, get Area Host buy-in, get deputized and follow Tidy-Space policy &amp;lt;https://wiki.pumpingstationone.org/Tidy_Space_Policy&amp;gt;.                                                  &lt;br /&gt;
* Get familiar with the area / be a champion for something you are interested in : If you are interested in a specific tool or area get to know that area and the people in it well; fellow members are an invaluable resource and often willing to help! Got some ideas on how to improve the space, get to know the area and see if you can implement those solutions.                                                            &lt;br /&gt;
* Figure out what &amp;quot;that thing&amp;quot; you can do actually is, and tell someone about it : Apply &amp;quot;Just Fucking Do It&amp;quot; judiciously and always remember to be excellent. If you are motivated to help out and know how to do something well, even if you have reservations about JDFI&#039;ing something, let someone know about it, post to the google groups, have a discussion; know there will always be opponents to any idea, compromise is key. &lt;br /&gt;
* Future plans: Anything that says stay tuned needs a champion to get that thing recurring. If you are interested post on the group.&lt;br /&gt;
* Area host meeting : The area hosts try to have a meeting every other week on Tuesdays at 8, offset from the board meeting, this is a great place to get involved, and meet the area hosts and members. &lt;br /&gt;
* Wikignome sessions : For those interested in helping out and bettering the wiki. Stay tuned for an upcoming date. &lt;br /&gt;
* Machine maintenance authorizations : Expecially in CNC, the machines need to be tuned up and repaired from time to time. These machines are complicated, and having people be on the same page when they need to get fixed is important. Stay tuned for an upcoming date. &lt;br /&gt;
* Weekend work days : There is still much to be done to finish with the expansion. CNC, Hot Metals, and Wood all need a hand.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Things needed by area===&lt;br /&gt;
====CNC Area====&lt;br /&gt;
                                                    &lt;br /&gt;
* CNC plasma cutter : We finally have all the parts and it needs to be assembled. Water table system needs to be designed. If you are interested in helping out let me know.&lt;br /&gt;
                                         &lt;br /&gt;
* 150W Laser : This machine lives in the CNC room. The room needs to  be painted, finish doors installation, and the machine needs ventilation and compressed air supply, before it can be hooked up and run.&lt;br /&gt;
&lt;br /&gt;
* Epilog Laser : Currently working, but it needs some more TLC. Will be down periodically. Want to be an authorized fixer? Let me know.&lt;br /&gt;
     &lt;br /&gt;
* DLP printer : A donated machine that is getting hacked back into use, all parts are present, needs to be assembled and tested.&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Pumping_Station_One&amp;diff=30022</id>
		<title>Pumping Station One</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Pumping_Station_One&amp;diff=30022"/>
		<updated>2016-11-09T15:13:45Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* Member Information */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== [http://pumpingstationone.org Pumping Station: One] - Chicago&#039;s Hackerspace ==&lt;br /&gt;
*Address: 3519 N. Elston Ave, Chicago, IL 60618-5617&lt;br /&gt;
*General Contact: info@pumpingstationone.org&lt;br /&gt;
*[[visiting|How do I visit?]] - We have an Open House every Tuesday at 8pm, with our [[:Category:Meetings| Member Meetings]], and are open to the public. It&#039;s the best time to get a guided tour and catch a couple board members.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width:100%; margin-bottom:2px;&amp;quot; cellpadding=&amp;quot;5&amp;quot;&lt;br /&gt;
!width=&amp;quot;49%&amp;quot;|&lt;br /&gt;
!width=&amp;quot;49%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== About PS:One ==&lt;br /&gt;
&lt;br /&gt;
* [[Frequently Asked Questions]]&lt;br /&gt;
* [[What is Pumping Station: One]]&lt;br /&gt;
* [[Contact Information]]&lt;br /&gt;
* [[Neighborhood Information]]&lt;br /&gt;
&lt;br /&gt;
== Member Information ==&lt;br /&gt;
&lt;br /&gt;
====New Members Start Here!====&lt;br /&gt;
&lt;br /&gt;
* [[New Member Orientation]]&lt;br /&gt;
* [https://members.pumpingstationone.org Member Web Site (activate your username)]&lt;br /&gt;
* [[Member Manual]]&lt;br /&gt;
* [[Guest Building Access]]&lt;br /&gt;
* [[Administration|How do things get done around here?]]&lt;br /&gt;
* [[How Do I Get Authorized?|How do I get authorized?]]&lt;br /&gt;
&lt;br /&gt;
====Want to help?====&lt;br /&gt;
* [[How can I help?]]&lt;br /&gt;
&lt;br /&gt;
====Need help?====&lt;br /&gt;
* [[Do you need help]]&lt;br /&gt;
&lt;br /&gt;
== Community ==&lt;br /&gt;
&lt;br /&gt;
Who are the members of PS:One? How do they communicate? What do they know about this whole social interwebs thing?&lt;br /&gt;
&lt;br /&gt;
====[[Administration]]====&lt;br /&gt;
&lt;br /&gt;
* [[The Board|Board of Directors]] - The points of contact for day-to-day corporate operations, but not for most tools, equipment and space utilization.&lt;br /&gt;
* [[:Category:Hosted Areas|Area Hosts]] - The main points of contact for the (currently 10) different areas of the space.&lt;br /&gt;
* [[Volunteer Positions|Volunteer Authorizers]] - contact info for the Volunteer Positions established by the Board.&lt;br /&gt;
* [https://members.pumpingstationone.org/ The Membership] - Here PS1 members can see the complete PS1 membership list.&lt;br /&gt;
&lt;br /&gt;
==== Communication ====&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Meetings| Member Meetings]]&lt;br /&gt;
* [[Contact Points#Email Lists|Email Lists]]&lt;br /&gt;
* [[Contact Points#Social Networks|Social Networking]]&lt;br /&gt;
* [[Contact Points#Links|Other PS:One sites and online spaces]]&lt;br /&gt;
* [[Systems#Request Tracker|Request Tracker]] - A support tracker that we use to track membership issues.&lt;br /&gt;
* [[Votes|Member Votes]] - How we do/buy/decide big things&lt;br /&gt;
* [[:Category:Policy|Policies]]&lt;br /&gt;
&lt;br /&gt;
== [[Events]] ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.google.com/calendar/embed?src=hhlp4gcgvdmifq5lcbk7e27om4%40group.calendar.google.com&amp;amp;ctz=America/Chicago PS:One Google Calendar]&lt;br /&gt;
* [http://www.meetup.com/Pumping-Station-One/ PS:One Meetup Group]&lt;br /&gt;
* [[New events|How do I create an event?]]&lt;br /&gt;
&lt;br /&gt;
==== Area Calendars ====&lt;br /&gt;
* [http://www.google.com/calendar/render?cid=hkgq1nkid9up5e4oe9uacqdlic@group.calendar.google.com&amp;amp;ctz=America/Chicago PS:One Electronics Lab Reservation Calendar]&lt;br /&gt;
* [http://www.google.com/calendar/embed?src=tomjudge.com_cl3vcokea3rl5gfflp5d9putlo%40group.calendar.google.com&amp;amp;ctz=America/Chicago PS:One Hot Metals Calendar]&lt;br /&gt;
&lt;br /&gt;
|valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== Things We Have ==&lt;br /&gt;
&lt;br /&gt;
How to do things, where to get things, what&#039;s in the area, and other general reference stuff you feel like sharing.&lt;br /&gt;
&lt;br /&gt;
==== Hardware ====&lt;br /&gt;
&lt;br /&gt;
* [[Facilities]]: A list of what has been made available, and what should soon be made available to members. &lt;br /&gt;
* [[:Category:Equipment|Tools and Equipment]] : All PS:One equipment, tools, certification, safety, and repair information goes here.&lt;br /&gt;
* [[Sources]]: Where to get stuff: from Depots to dumpsters.&lt;br /&gt;
* [[:Category:Facilities|Building Facilities]]: How our building works.&lt;br /&gt;
&lt;br /&gt;
==== Other ====&lt;br /&gt;
&lt;br /&gt;
* [[Resources]]&lt;br /&gt;
* [[Administration#Important Documents|Important Documents and Files]]&lt;br /&gt;
* [[Systems#Workstations|Software]]&lt;br /&gt;
* [[Supplies]] and other things purchased for day-to-day space needs&lt;br /&gt;
&lt;br /&gt;
== What We Do ==&lt;br /&gt;
PS:One is a [[Do-ocracy]]. Here is some of what we do:&lt;br /&gt;
&lt;br /&gt;
==== Current Projects ====&lt;br /&gt;
* Fixing and mapping the building&#039;s [[Electrical]] systems...&lt;br /&gt;
* [[Gathering Materials]]&lt;br /&gt;
* [[Tool Crib Wishlist]]&lt;br /&gt;
* [[Laser Shopping]]&lt;br /&gt;
* [[Classes]]&lt;br /&gt;
&lt;br /&gt;
==== Interest Groups ====&lt;br /&gt;
* [[NERP]] (Not Exclusively Raspberry Pi): Embedded Systems (biweekly)&lt;br /&gt;
* [[Beer Church]] (and Brewing Station: One): Beer appreciation and home brewing&lt;br /&gt;
* [[CNC Build Club]]: A monthly meeting for building CNC machines&lt;br /&gt;
* [[TOOOL Chicago]]: A monthly meetup about locks and lockpicking&lt;br /&gt;
* [[Python Office Hours]]: A biweekly meetup about python programming&lt;br /&gt;
* [[Systems Group]]&lt;br /&gt;
* [[Knitting Machines]]: A page for participants in the Knitting Machine Workshops&lt;br /&gt;
* [[Applied Sciences]]: A page for persons interested in applications of science&lt;br /&gt;
* [[Electronics Office Hours]]: For all your basic (and not-so-basic) electronics questions&lt;br /&gt;
* [[SIGBOT]]: A monthly meetup for building and talking about robots.&lt;br /&gt;
* [[Pumping Station:Yum]]: Cooking and Hacking food&lt;br /&gt;
* [[ELMER Monthly]]:  Ham Radio Office Hours for licensed Ops and those working toward their licenses.  All are welcome.&lt;br /&gt;
* [[Chicago tDCS]]: Transcranial Direct Current Stimulation.&lt;br /&gt;
* [[Wiki Maintenance]]: Maintaining the wiki and teach people how to help.&lt;br /&gt;
&lt;br /&gt;
==== Space Automation ====&lt;br /&gt;
&lt;br /&gt;
[[IRC]] integration:&lt;br /&gt;
&lt;br /&gt;
* [[Spacemon]] - what rooms are busy, and are the lights on?&lt;br /&gt;
* [[Peoplemon]] - who is at the space?&lt;br /&gt;
* [[Schedmon]] - who will be at the space?&lt;br /&gt;
* [[Chillmon]] - what&#039;s the temperature in the shop?&lt;br /&gt;
&lt;br /&gt;
Network services:&lt;br /&gt;
* [[Printers]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30020</id>
		<title>Do you need help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30020"/>
		<updated>2016-11-09T15:05:58Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====In case of emergency====&lt;br /&gt;
* Poison center: 800-222-1222&lt;br /&gt;
====Personal support hotlines====&lt;br /&gt;
* Suicide Hotline: 800-273-8255&lt;br /&gt;
* Trans Crisis Hotline: 877-565-8860&lt;br /&gt;
* LGBTQ+ Hotline: 866-488-7386&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30019</id>
		<title>Do you need help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30019"/>
		<updated>2016-11-09T15:05:43Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====In case of emergency====&lt;br /&gt;
- Poison center: 800-222-1222&lt;br /&gt;
====Personal support hotlines====&lt;br /&gt;
- Suicide Hotline: 800-273-8255&lt;br /&gt;
- Trans Crisis Hotline: 877-565-8860&lt;br /&gt;
- LGBTQ+ Hotline: 866-488-7386&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30018</id>
		<title>Do you need help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Do_you_need_help&amp;diff=30018"/>
		<updated>2016-11-09T15:05:29Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: Created page with &amp;quot;====In case of emergency==== Poison center: 800-222-1222 ====Personal support hotlines==== Suicide Hotline: 800-273-8255 Trans Crisis Hotline: 877-565-8860 LGBTQ+ Hotline: 866...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====In case of emergency====&lt;br /&gt;
Poison center: 800-222-1222&lt;br /&gt;
====Personal support hotlines====&lt;br /&gt;
Suicide Hotline: 800-273-8255&lt;br /&gt;
Trans Crisis Hotline: 877-565-8860&lt;br /&gt;
LGBTQ+ Hotline: 866-488-7386&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Pumping_Station_One&amp;diff=30017</id>
		<title>Pumping Station One</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=Pumping_Station_One&amp;diff=30017"/>
		<updated>2016-11-09T15:04:21Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* Member Information */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== [http://pumpingstationone.org Pumping Station: One] - Chicago&#039;s Hackerspace ==&lt;br /&gt;
*Address: 3519 N. Elston Ave, Chicago, IL 60618-5617&lt;br /&gt;
*General Contact: info@pumpingstationone.org&lt;br /&gt;
*[[visiting|How do I visit?]] - We have an Open House every Tuesday at 8pm, with our [[:Category:Meetings| Member Meetings]], and are open to the public. It&#039;s the best time to get a guided tour and catch a couple board members.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width:100%; margin-bottom:2px;&amp;quot; cellpadding=&amp;quot;5&amp;quot;&lt;br /&gt;
!width=&amp;quot;49%&amp;quot;|&lt;br /&gt;
!width=&amp;quot;49%&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== About PS:One ==&lt;br /&gt;
&lt;br /&gt;
* [[Frequently Asked Questions]]&lt;br /&gt;
* [[What is Pumping Station: One]]&lt;br /&gt;
* [[Contact Information]]&lt;br /&gt;
* [[Neighborhood Information]]&lt;br /&gt;
&lt;br /&gt;
== Member Information ==&lt;br /&gt;
&lt;br /&gt;
====New Members Start Here!====&lt;br /&gt;
&lt;br /&gt;
* [[New Member Orientation]]&lt;br /&gt;
* [https://members.pumpingstationone.org Member Web Site (activate your username)]&lt;br /&gt;
* [[Member Manual]]&lt;br /&gt;
* [[Guest Building Access]]&lt;br /&gt;
* [[Administration|How do things get done around here?]]&lt;br /&gt;
* [[How Do I Get Authorized?|How do I get authorized?]]&lt;br /&gt;
&lt;br /&gt;
====Want to help?====&lt;br /&gt;
* [[How can I help?]]&lt;br /&gt;
&lt;br /&gt;
====Need help?====&lt;br /&gt;
* [[Do you need help?]]&lt;br /&gt;
&lt;br /&gt;
== Community ==&lt;br /&gt;
&lt;br /&gt;
Who are the members of PS:One? How do they communicate? What do they know about this whole social interwebs thing?&lt;br /&gt;
&lt;br /&gt;
====[[Administration]]====&lt;br /&gt;
&lt;br /&gt;
* [[The Board|Board of Directors]] - The points of contact for day-to-day corporate operations, but not for most tools, equipment and space utilization.&lt;br /&gt;
* [[:Category:Hosted Areas|Area Hosts]] - The main points of contact for the (currently 10) different areas of the space.&lt;br /&gt;
* [[Volunteer Positions|Volunteer Authorizers]] - contact info for the Volunteer Positions established by the Board.&lt;br /&gt;
* [https://members.pumpingstationone.org/ The Membership] - Here PS1 members can see the complete PS1 membership list.&lt;br /&gt;
&lt;br /&gt;
==== Communication ====&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Meetings| Member Meetings]]&lt;br /&gt;
* [[Contact Points#Email Lists|Email Lists]]&lt;br /&gt;
* [[Contact Points#Social Networks|Social Networking]]&lt;br /&gt;
* [[Contact Points#Links|Other PS:One sites and online spaces]]&lt;br /&gt;
* [[Systems#Request Tracker|Request Tracker]] - A support tracker that we use to track membership issues.&lt;br /&gt;
* [[Votes|Member Votes]] - How we do/buy/decide big things&lt;br /&gt;
* [[:Category:Policy|Policies]]&lt;br /&gt;
&lt;br /&gt;
== [[Events]] ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.google.com/calendar/embed?src=hhlp4gcgvdmifq5lcbk7e27om4%40group.calendar.google.com&amp;amp;ctz=America/Chicago PS:One Google Calendar]&lt;br /&gt;
* [http://www.meetup.com/Pumping-Station-One/ PS:One Meetup Group]&lt;br /&gt;
* [[New events|How do I create an event?]]&lt;br /&gt;
&lt;br /&gt;
==== Area Calendars ====&lt;br /&gt;
* [http://www.google.com/calendar/render?cid=hkgq1nkid9up5e4oe9uacqdlic@group.calendar.google.com&amp;amp;ctz=America/Chicago PS:One Electronics Lab Reservation Calendar]&lt;br /&gt;
* [http://www.google.com/calendar/embed?src=tomjudge.com_cl3vcokea3rl5gfflp5d9putlo%40group.calendar.google.com&amp;amp;ctz=America/Chicago PS:One Hot Metals Calendar]&lt;br /&gt;
&lt;br /&gt;
|valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
== Things We Have ==&lt;br /&gt;
&lt;br /&gt;
How to do things, where to get things, what&#039;s in the area, and other general reference stuff you feel like sharing.&lt;br /&gt;
&lt;br /&gt;
==== Hardware ====&lt;br /&gt;
&lt;br /&gt;
* [[Facilities]]: A list of what has been made available, and what should soon be made available to members. &lt;br /&gt;
* [[:Category:Equipment|Tools and Equipment]] : All PS:One equipment, tools, certification, safety, and repair information goes here.&lt;br /&gt;
* [[Sources]]: Where to get stuff: from Depots to dumpsters.&lt;br /&gt;
* [[:Category:Facilities|Building Facilities]]: How our building works.&lt;br /&gt;
&lt;br /&gt;
==== Other ====&lt;br /&gt;
&lt;br /&gt;
* [[Resources]]&lt;br /&gt;
* [[Administration#Important Documents|Important Documents and Files]]&lt;br /&gt;
* [[Systems#Workstations|Software]]&lt;br /&gt;
* [[Supplies]] and other things purchased for day-to-day space needs&lt;br /&gt;
&lt;br /&gt;
== What We Do ==&lt;br /&gt;
PS:One is a [[Do-ocracy]]. Here is some of what we do:&lt;br /&gt;
&lt;br /&gt;
==== Current Projects ====&lt;br /&gt;
* Fixing and mapping the building&#039;s [[Electrical]] systems...&lt;br /&gt;
* [[Gathering Materials]]&lt;br /&gt;
* [[Tool Crib Wishlist]]&lt;br /&gt;
* [[Laser Shopping]]&lt;br /&gt;
* [[Classes]]&lt;br /&gt;
&lt;br /&gt;
==== Interest Groups ====&lt;br /&gt;
* [[NERP]] (Not Exclusively Raspberry Pi): Embedded Systems (biweekly)&lt;br /&gt;
* [[Beer Church]] (and Brewing Station: One): Beer appreciation and home brewing&lt;br /&gt;
* [[CNC Build Club]]: A monthly meeting for building CNC machines&lt;br /&gt;
* [[TOOOL Chicago]]: A monthly meetup about locks and lockpicking&lt;br /&gt;
* [[Python Office Hours]]: A biweekly meetup about python programming&lt;br /&gt;
* [[Systems Group]]&lt;br /&gt;
* [[Knitting Machines]]: A page for participants in the Knitting Machine Workshops&lt;br /&gt;
* [[Applied Sciences]]: A page for persons interested in applications of science&lt;br /&gt;
* [[Electronics Office Hours]]: For all your basic (and not-so-basic) electronics questions&lt;br /&gt;
* [[SIGBOT]]: A monthly meetup for building and talking about robots.&lt;br /&gt;
* [[Pumping Station:Yum]]: Cooking and Hacking food&lt;br /&gt;
* [[ELMER Monthly]]:  Ham Radio Office Hours for licensed Ops and those working toward their licenses.  All are welcome.&lt;br /&gt;
* [[Chicago tDCS]]: Transcranial Direct Current Stimulation.&lt;br /&gt;
* [[Wiki Maintenance]]: Maintaining the wiki and teach people how to help.&lt;br /&gt;
&lt;br /&gt;
==== Space Automation ====&lt;br /&gt;
&lt;br /&gt;
[[IRC]] integration:&lt;br /&gt;
&lt;br /&gt;
* [[Spacemon]] - what rooms are busy, and are the lights on?&lt;br /&gt;
* [[Peoplemon]] - who is at the space?&lt;br /&gt;
* [[Schedmon]] - who will be at the space?&lt;br /&gt;
* [[Chillmon]] - what&#039;s the temperature in the shop?&lt;br /&gt;
&lt;br /&gt;
Network services:&lt;br /&gt;
* [[Printers]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=How_can_I_help&amp;diff=29987</id>
		<title>How can I help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=How_can_I_help&amp;diff=29987"/>
		<updated>2016-11-07T03:49:15Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(The original of this page came from a mail from Andrew on 2016-11-06T21:12:00)&lt;br /&gt;
&lt;br /&gt;
TLDR; YES! PS1 would love your help and I look forward to seeing you around. Pick something you are passionate about, champion it, have solid discussions, and JFDI (be excellent - tools, space and humans alike).&lt;br /&gt;
&lt;br /&gt;
What can you do? Well, that&#039;s a trickier question...Read on&lt;br /&gt;
===Task project===&lt;br /&gt;
I&#039;ve been getting lots of questions aimed at helping out in general, trying to help get the Epilog fixed when it&#039;s down, get the big laser up and running, and CNC preparations (but applies in general). All of these things are happening (at their own hacker-pace [see what I did there?]), and the more help we can get to accomplish those tasks the better. BUT there are lots of decisions that go into actually doing all of those things so it requires a bit of coordination. I don&#039;t have a box of 100 well defined 30-min tasks spelled out in enough detail anyone can do them, but I&#039;d appreciate the help in creating any semblance of that.&lt;br /&gt;
                                                                 &lt;br /&gt;
If you are still encouraged and motivated to help out awesome, here are some...&lt;br /&gt;
&lt;br /&gt;
===Suggestions===&lt;br /&gt;
*Read, post, be active on the google groups* - You have to sign up because it&#039;s not automatic. I highly recommend getting the daily digest version (check out the second-to-the-right hand column of your subscription page &amp;lt;https://groups.google.com/forum/#!myforums&amp;gt;) of the google groups. This is where events and such get posted, since PS1 generally does not sent out mass emails.&lt;br /&gt;
&lt;br /&gt;
- https://groups.google.com/forum/?utm_source=digest&amp;amp;utm_medium=email#!forum/pumping-station-one                                                                                                                                   &lt;br /&gt;
&lt;br /&gt;
*Sign up for the Area host google group* - the area host google group has been around for a long time, and was recently revived to handle space planning stuff. It&#039;s not super active because there aren&#039;t a ton of people on it. The purpose is for planning though, and to keep the topics on point in both groups.&lt;br /&gt;
&lt;br /&gt;
                                                               &lt;br /&gt;
*Sign up to the PS1 task list - * I started a task list people could sign up to &amp;lt;https://airtable.com/shrcJKNAiCcyBfvZC&amp;gt;, to post tasks and get things done around the space &amp;lt;https://airtable.com/shrBdMFFDzwfb3TS9&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
You have to sign up because it&#039;s not linked to the member database, but once you&#039;re in you can create tasks and help fill in things that need doing around the space. &lt;br /&gt;
&lt;br /&gt;
*Read, update, discuss, fix errors on the wiki - *You don&#039;t have to be a wiki wizard to edit it. You have to mainly pay attention to syntax, but the benefit is that you can look at other pages and copy parts of them and change the content around. Fear not - the wiki is designed to have things &amp;quot;undone&amp;quot; so if you mess something up it&#039;s easy to fix. &lt;br /&gt;
&lt;br /&gt;
*Get a group of people together for an authorization -* Area hosts and volunteer authorizers love to help people make cool stuff. If you want to get authorized on something and there isn&#039;t anything on the calendar, post a request on the google groups (with a time and date that works for you) so other people can join in. Authorizations help transmitting necessary and important information about dangerous, expensive or complicated tools; &lt;br /&gt;
&lt;br /&gt;
batching it for several people makes it more efficient and you get to meet other members.                                                                                                                                                                                                                   &lt;br /&gt;
                                                                                                                                                                                                                                   &lt;br /&gt;
* Tell someone if something breaks or isn&#039;t working the way you&#039;d expect: A big time suck at the space is fixing broken things. No worries, breaking things happens to everyone, but it is super useful if what you were doing and how the thing broke is communicated to someone that can help out or the google groups, even if you are the one to fix it, or it gets fixed on the spot. The more detail about how something breaks (or doesn&#039;t work quite right) the better; it helps us figure out why it broke, how to repair it, weak points in the device or auth, and avoids someone getting hurt or breaking things further.&lt;br /&gt;
* Clean up the area you are working in : Leave it cleaner than you found it. Even if you didn&#039;t make the mess going a little further helps everyone out.&lt;br /&gt;
* Come to work/cleanup days - *Sometimes we have work/cleanup days, sometimes they are scheduled poorly or aren&#039;t convenient for you. BUT if you&#039;ve ever been somewhere in PS1 and said &amp;quot;hey this could use a bunch of people to clean this up and get it right&amp;quot;, organize your own cleaning day, you don&#039;t need to wait for someone to organize it for you; post on the google groups or calendar, get Area Host buy-in, get deputized and follow Tidy-Space policy &amp;lt;https://wiki.pumpingstationone.org/Tidy_Space_Policy&amp;gt;.                                                  &lt;br /&gt;
* Get familiar with the area / be a champion for something you are interested in : If you are interested in a specific tool or area get to know that area and the people in it well; fellow members are an invaluable resource and often willing to help! Got some ideas on how to improve the space, get to know the area and see if you can implement those solutions.                                                            &lt;br /&gt;
* Figure out what &amp;quot;that thing&amp;quot; you can do actually is, and tell someone about it : Apply &amp;quot;Just Fucking Do It&amp;quot; judiciously and always remember to be excellent. If you are motivated to help out and know how to do something well, even if you have reservations about JDFI&#039;ing something, let someone know about it, post to the google groups, have a discussion; know there will always be opponents to any idea, compromise is key. &lt;br /&gt;
* Future plans: Anything that says stay tuned needs a champion to get that thing recurring. If you are interested post on the group.&lt;br /&gt;
* Area host meeting : The area hosts try to have a meeting every other week on Tuesdays at 8, offset from the board meeting, this is a great place to get involved, and meet the area hosts and members. &lt;br /&gt;
* Wikignome sessions : For those interested in helping out and bettering the wiki. Stay tuned for an upcoming date. &lt;br /&gt;
* Machine maintenance authorizations : Expecially in CNC, the machines need to be tuned up and repaired from time to time. These machines are complicated, and having people be on the same page when they need to get fixed is important. Stay tuned for an upcoming date. &lt;br /&gt;
* Weekend work days : There is still much to be done to finish with the expansion. CNC, Hot Metals, and Wood all need a hand.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Things needed by area===&lt;br /&gt;
====CNC Area====&lt;br /&gt;
                                                    &lt;br /&gt;
* CNC plasma cutter : We finally have all the parts and it needs to be assembled. Water table system needs to be designed. If you are interested in helping out let me know.&lt;br /&gt;
                                         &lt;br /&gt;
* 150W Laser : This machine lives in the CNC room. The room needs to  be painted, finish doors installation, and the machine needs ventilation and compressed air supply, before it can be hooked up and run.&lt;br /&gt;
&lt;br /&gt;
* Epilog Laser : Currently working, but it needs some more TLC. Will be down periodically. Want to be an authorized fixer? Let me know.&lt;br /&gt;
     &lt;br /&gt;
* DLP printer : A donated machine that is getting hacked back into use, all parts are present, needs to be assembled and tested.&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
	<entry>
		<id>https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=How_can_I_help&amp;diff=29986</id>
		<title>How can I help</title>
		<link rel="alternate" type="text/html" href="https://wiki-dev.pumpingstationone.org/mediawiki/index.php?title=How_can_I_help&amp;diff=29986"/>
		<updated>2016-11-07T03:48:08Z</updated>

		<summary type="html">&lt;p&gt;Bjonnh: /* CNC Area */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(The original of this page came from a mail from Andrew on 2016-11-06T21:12:00)&lt;br /&gt;
&lt;br /&gt;
TLDR; YES! PS1 would love your help and I look forward to seeing you around. Pick something you are passionate about, champion it, have solid discussions, and JFDI (be excellent - tools, space and humans alike).&lt;br /&gt;
&lt;br /&gt;
What can you do? Well, that&#039;s a trickier question...Read on&lt;br /&gt;
===Task project===&lt;br /&gt;
I&#039;ve been getting lots of questions aimed at helping out in general, trying to help get the Epilog fixed when it&#039;s down, get the big laser up and running, and CNC preparations (but applies in general). All of these things are happening (at their own hacker-pace [see what I did there?]), and the more help we can get to accomplish those tasks the better. BUT there are lots of decisions that go into actually doing all of those things so it requires a bit of coordination. I don&#039;t have a box of 100 well defined 30-min tasks spelled out in enough detail anyone can do them, but I&#039;d appreciate the help in creating any semblance of that.&lt;br /&gt;
                                                                 &lt;br /&gt;
If you are still encouraged and motivated to help out awesome, here are some...&lt;br /&gt;
&lt;br /&gt;
===Suggestions===&lt;br /&gt;
*Read, post, be active on the google groups* - You have to sign up because it&#039;s not automatic. I highly recommend getting the daily digest version (check out the second-to-the-right hand column of your subscription page &amp;lt;https://groups.google.com/forum/#!myforums&amp;gt;) of the google groups. This is where events and such get posted, since PS1 generally does not sent out mass emails.&lt;br /&gt;
&lt;br /&gt;
- https://groups.google.com/forum/?utm_source=digest&amp;amp;utm_medium=email#!forum/pumping-station-one                                                                                                                                   &lt;br /&gt;
&lt;br /&gt;
*Sign up for the Area host google group* - the area host google group has been around for a long time, and was recently revived to handle space planning stuff. It&#039;s not super active because there aren&#039;t a ton of people on it. The purpose is for planning though, and to keep the topics on point in both groups.&lt;br /&gt;
&lt;br /&gt;
                                                               &lt;br /&gt;
*Sign up to the PS1 task list - * I started a task list people could sign up to &amp;lt;https://airtable.com/shrcJKNAiCcyBfvZC&amp;gt;, to post tasks and get things done around the space &amp;lt;https://airtable.com/shrBdMFFDzwfb3TS9&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
You have to sign up because it&#039;s not linked to the member database, but once you&#039;re in you can create tasks and help fill in things that need doing around the space. &lt;br /&gt;
&lt;br /&gt;
*Read, update, discuss, fix errors on the wiki - *You don&#039;t have to be a wiki wizard to edit it. You have to mainly pay attention to syntax, but the benefit is that you can look at other pages and copy parts of them and change the content around. Fear not - the wiki is designed to have things &amp;quot;undone&amp;quot; so if you mess something up it&#039;s easy to fix. &lt;br /&gt;
&lt;br /&gt;
*Get a group of people together for an authorization -* Area hosts and volunteer authorizers love to help people make cool stuff. If you want to get authorized on something and there isn&#039;t anything on the calendar, post a request on the google groups (with a time and date that works for you) so other people can join in. Authorizations help transmitting necessary and important information about dangerous, expensive or complicated tools; &lt;br /&gt;
&lt;br /&gt;
batching it for several people makes it more efficient and you get to meet other members.                                                                                                                                                                                                                   &lt;br /&gt;
                                                                                                                                                                                                                                   &lt;br /&gt;
* Tell someone if something breaks or isn&#039;t working the way you&#039;d expect: A big time suck at the space is fixing broken things. No worries, breaking things happens to everyone, but it is super useful if what you were doing and how the thing broke is communicated to someone that can help out or the google groups, even if you are the one to fix it, or it gets fixed on the spot. The more detail about how something breaks (or doesn&#039;t work quite right) the better; it helps us figure out why it broke, how to repair it, weak points in the device or auth, and avoids someone getting hurt or breaking things further.&lt;br /&gt;
* Clean up the area you are working in : Leave it cleaner than you found it. Even if you didn&#039;t make the mess going a little further helps everyone out.&lt;br /&gt;
* Come to work/cleanup days - *Sometimes we have work/cleanup days, sometimes they are scheduled poorly or aren&#039;t convenient for you. BUT if you&#039;ve ever been somewhere in PS1 and said &amp;quot;hey this could use a bunch of people to clean this up and get it right&amp;quot;, organize your own cleaning day, you don&#039;t need to wait for someone to organize it for you; post on the google groups or calendar, get Area Host buy-in, get deputized and follow Tidy-Space policy &amp;lt;https://wiki.pumpingstationone.org/Tidy_Space_Policy&amp;gt;.                                                  &lt;br /&gt;
* Get familiar with the area / be a champion for something you are interested in : If you are interested in a specific tool or area get to know that area and the people in it well; fellow members are an invaluable resource and often willing to help! Got some ideas on how to improve the space, get to know the area and see if you can implement those solutions.                                                            &lt;br /&gt;
* Figure out what &amp;quot;that thing&amp;quot; you can do actually is, and tell someone about it : Apply &amp;quot;Just Fucking Do It&amp;quot; judiciously and always remember to be excellent. If you are motivated to help out and know how to do something well, even if you have reservations about JDFI&#039;ing something, let someone know about it, post to the google groups, have a discussion; know there will always be opponents to any idea, compromise is key. &lt;br /&gt;
* Future plans: Anything that says stay tuned needs a champion to get that thing recurring. If you are interested post on the group.&lt;br /&gt;
* Area host meeting : The area hosts try to have a meeting every other week on Tuesdays at 8, offset from the board meeting, this is a great place to get involved, and meet the area hosts and members. &lt;br /&gt;
* Wikignome sessions : For those interested in helping out and bettering the wiki. Stay tuned for an upcoming date. &lt;br /&gt;
* Machine maintenance authorizations : Expecially in CNC, the machines need to be tuned up and repaired from time to time. These machines are complicated, and having people be on the same page when they need to get fixed is important. Stay tuned for an upcoming date. &lt;br /&gt;
* Weekend work days : There is still much to be done to finish with the expansion. CNC, Hot Metals, and Wood all need a hand.&lt;br /&gt;
&lt;br /&gt;
                                                                                                                                                        ===Things needed by area===&lt;br /&gt;
====CNC Area====&lt;br /&gt;
                                                    &lt;br /&gt;
* CNC plasma cutter : We finally have all the parts and it needs to be assembled. Water table system needs to be designed. If you are interested in helping out let me know.&lt;br /&gt;
                                         &lt;br /&gt;
* 150W Laser : This machine lives in the CNC room. The room needs to  be painted, finish doors installation, and the machine needs ventilation and compressed air supply, before it can be hooked up and run.&lt;br /&gt;
&lt;br /&gt;
* Epilog Laser : Currently working, but it needs some more TLC. Will be down periodically. Want to be an authorized fixer? Let me know.&lt;br /&gt;
     &lt;br /&gt;
* DLP printer : A donated machine that is getting hacked back into use, all parts are present, needs to be assembled and tested.&lt;/div&gt;</summary>
		<author><name>Bjonnh</name></author>
	</entry>
</feed>