<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.extremist.software/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=208.90.212.135</id>
	<title>Noisebridge - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.extremist.software/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=208.90.212.135"/>
	<link rel="alternate" type="text/html" href="https://wiki.extremist.software/wiki/Special:Contributions/208.90.212.135"/>
	<updated>2026-04-08T10:02:13Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.13</generator>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=PyClass&amp;diff=44182</id>
		<title>PyClass</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=PyClass&amp;diff=44182"/>
		<updated>2014-08-28T01:56:02Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* Course List */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PSAs and Events ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; PSA 8-19-14: &#039;&#039;&#039; The [https://noisebridge.net/wiki/PyClass noisebridge wiki] and [https://github.com/PyClass/PyClass-lesson-plans github readme] files now have parity to each other.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; PSA 8-16-14: &#039;&#039;&#039;  The new curriculum for the Noisebridge PyClass is a crash course in the Python standard library, also touching on modules that are popular but not quite part of the standard modules.   Scroll down to see the course list.&lt;br /&gt;
&lt;br /&gt;
== Scheduled Weekly Meeting Times ==&lt;br /&gt;
* Tuesday 7:00 - 9:00 PM PST - &#039;Turing&#039; Classroom&lt;br /&gt;
* Wednesday 7:00 - 9:00 PM PST - &#039;Church&#039; Classroom&lt;br /&gt;
&lt;br /&gt;
== Mailing List ==&lt;br /&gt;
Sign up for this to hear updates and conversations regarding the course!&lt;br /&gt;
* [http://groups.google.com/group/pyclass Pyclass-Discussion]&lt;br /&gt;
&lt;br /&gt;
== Class Description, Goals, and Ideal Student ==&lt;br /&gt;
&lt;br /&gt;
The pace of the courses will be fast, and the materials will be available online 24/7 and we plan to frequently repeat modules that are in high demand with new twists as we iterate over the course materials.&lt;br /&gt;
&lt;br /&gt;
A primary goal of the course is to break down the materials into independent units. In other words, if you miss a week then you won&#039;t fall behind. Sounds good, right?&lt;br /&gt;
&lt;br /&gt;
To best experience the course, spend a short time studying the course materials before you come in. If you wish to know this week&#039;s courses, please send an email out to PyClass@googlegroups.com&lt;br /&gt;
&lt;br /&gt;
The ideal student for this course can understand the following code (it&#039;s fine to use Google to look up the built in functions, and we use tons of web resources throughout the course materials):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
word_frequency_dict = {}&lt;br /&gt;
word = &amp;quot;noisebridge&amp;quot;&lt;br /&gt;
&lt;br /&gt;
for letter in word:&lt;br /&gt;
    times = word_frequency_dict.get(letter, 0)&lt;br /&gt;
    times += 1&lt;br /&gt;
    word_frequency_dict.update( {letter : times} )&lt;br /&gt;
    &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Course List ==&lt;br /&gt;
&lt;br /&gt;
The order of the following courses has not yet been determined.  &lt;br /&gt;
&lt;br /&gt;
Please [http://groups.google.com/group/pyclass ask on the mailing list] if you want to know what courses are coming this week!&lt;br /&gt;
&lt;br /&gt;
# [https://github.com/PyClass/PyClass-lesson-plans/blob/master/1_json_module.md JSON format, Python Types, and the JSON Module]&lt;br /&gt;
# [https://github.com/PyClass/PyClass-lesson-plans/blob/master/5_control_statements.md Control Flow and Exceptions]&lt;br /&gt;
# [https://github.com/PyClass/PyClass-lesson-plans/blob/master/3_functional_and_control.md Itertools and Functional Programming]&lt;br /&gt;
# [https://github.com/PyClass/PyClass-lesson-plans/blob/master/4_builtintypes_stringservices.md Built-in Types and String Services]&lt;br /&gt;
# Numeric and Mathematical Modules, and Operators&lt;br /&gt;
# argparse, ConfigParser, and more - configuring your applications&lt;br /&gt;
# pip, virtualenv, packaging, versions, and inspect.&lt;br /&gt;
# Logging your applications: logging, logging.config, logging.handlers&lt;br /&gt;
# Exceptions and Debugging: Exception behavior, custom exceptions, pdb, cProfile, timeit, time, trace.&lt;br /&gt;
# os, sys, and io (Caution, here be Python 3, inside the io module)&lt;br /&gt;
# (potential for a unittest course)&lt;br /&gt;
# Built-in Functions&lt;br /&gt;
&lt;br /&gt;
== OS / Environment / Versions ==&lt;br /&gt;
&lt;br /&gt;
This section is under development.&lt;br /&gt;
&lt;br /&gt;
For the sake of our sanity we use Python 2.7.1+ for this course.&lt;br /&gt;
&lt;br /&gt;
Emergency Python Command Line: http://repl.it/languages/Python&lt;br /&gt;
&lt;br /&gt;
Installing Python with [http://docs.python-guide.org/en/latest/ The Hitchhiker’s Guide to Python!]&lt;br /&gt;
&lt;br /&gt;
We accept refugees using all operating systems. You will be politely prodded in the direction of solutions that are closer to posix standards: http://en.wikipedia.org/wiki/POSIX#Mostly_POSIX-compliant&lt;br /&gt;
&lt;br /&gt;
Emergency Python Command Line: http://repl.it/languages/Python&lt;br /&gt;
&lt;br /&gt;
Some routes:&lt;br /&gt;
# Install a linux virtual machine on another computer using virtualbox.&lt;br /&gt;
# Use the command line in your apple machine.&lt;br /&gt;
# Explore POSIX for windows: http://en.wikipedia.org/wiki/POSIX#POSIX_for_Windows&lt;br /&gt;
&lt;br /&gt;
Another critical tool is git:&lt;br /&gt;
* Windows: http://git-scm.com/download/win&lt;br /&gt;
* Mac: http://git-scm.com/download/mac&lt;br /&gt;
* Linux: (use your package manager)&lt;br /&gt;
&lt;br /&gt;
== Legacy Materials 2011-2014 (Liz &amp;amp; Kellan&#039;s Class) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; The following material is old material from Kellan and Liz&#039;s long-running PyClass: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Come learn [http://www.python.org/ Python]&#039;&#039;&#039;!!&amp;lt;br&amp;gt;&lt;br /&gt;
See our awesome website for both PyClasses at [http://pycourse.com/ Noisebridge Learning Python]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After 9pm Tuesdays, we&#039;ll have open hacking time and time for questions for those that are kicking so much ass they just can&#039;t go home yet, or even for those that may have gone to Mondays&#039; Front-end Web Development class and want to come back for more. If you have problems from work or home, feel free to bring them after 9 and everyone can help each other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Semi-Official Intro to Python Class Texts &#039;&#039;&#039;&lt;br /&gt;
* [http://www.greenteapress.com/thinkpython/ Think Python: How to Think Like a Computer Scientist]&lt;br /&gt;
* [http://learnpythonthehardway.org/ Learn Python The Hard Way] - A good introductory text with lots of exercises written by prolific programmer [http://zedshaw.com/ Zed Shaw]&lt;br /&gt;
* [http://www.python.org/dev/peps/pep-0008/ PEP 8 -- The &#039;&#039;&#039;highly&#039;&#039;&#039; recommended Style Guide for Python Code]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Other Intro to Python Texts &#039;&#039;&#039;&lt;br /&gt;
* [http://www.swaroopch.com/notes/python A Byte of Python]&lt;br /&gt;
* [http://www.learnpython.org/ Learn Python - Free Interactive Python Tutorial]&lt;br /&gt;
* [http://www.openbookproject.net/thinkcs/python/english2e/ How to Think Like a Computer Scientist: Learning with Python 2nd Edition]&lt;br /&gt;
* [https://docs.python.org/2/tutorial/ The Python Tutorial] - written by Guido van Rossum, creator of the Python programming language &lt;br /&gt;
** [https://docs.python.org/2/download.html Python 2.x.x Documentation download] - Contains Python Tutorial &amp;amp; other docs in various readable formats&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; PyClass Githubs &#039;&#039;&#039;&lt;br /&gt;
* [https://github.com/PythonNinjas PyClass Organization]&lt;br /&gt;
* [https://github.com/PythonNinjas/InventWithPython  Invent with Python Textbook Code] &amp;lt;404 Error&amp;gt;&lt;br /&gt;
* https://github.com/noisebridge/Intro-Python   / Kellan Jacobs Notes&lt;br /&gt;
* https://github.com/noisebridge/web2py-noiselist&lt;br /&gt;
* https://github.com/noisebridge/flask-noiselist   / E Leddy&lt;br /&gt;
* https://github.com/tachang/django_noiselist&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;  [Old] Class Slides &#039;&#039;&#039;&lt;br /&gt;
* [http://egonschiele.github.com/pyclass Slides on Github]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Other Helpful PyClass links &#039;&#039;&#039;&lt;br /&gt;
* [https://www.python.org/ Main Python.org site]&lt;br /&gt;
* [http://oreilly.com/catalog/9780596100469/ Python in a Nutshell] - an older but handy reference&lt;br /&gt;
* [http://www.pygame.org Pygame]&lt;br /&gt;
* [http://inventwithpython.com Invent Your Own Computer Games with Python] - written by Noisebridger [[User:AlSweigart|Al Sweigart]], free to download [http://inventwithpython.com/IYOCGwP_book1.pdf here] or [https://dl.dropbox.com/u/11076239/IYOCGwP_book1.pdf here]&lt;br /&gt;
&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
[[Category:Pages with a Noisebridge Tiny URL]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=Template:ManualPage&amp;diff=44045</id>
		<title>Template:ManualPage</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=Template:ManualPage&amp;diff=44045"/>
		<updated>2014-08-22T04:13:00Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(This [[Template:ManualPage]] document is just a placeholder until full wikipedia navbox templates are imported. [[User:tdfischer|Torrie]] has plans to do so ASAP!)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;[[Category:Manual]]&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=Manual&amp;diff=44039</id>
		<title>Manual</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=Manual&amp;diff=44039"/>
		<updated>2014-08-22T03:17:50Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Herein lies the Noisebridge &#039;&#039;Manual&#039;&#039;. It is an ever-changing tome that strives to answer an unanswerable question: &#039;&#039;&#039;How the heck does Noisebridge really work?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not&#039;&#039;&#039; general advice for fixing things. If something at Noisebridge isn&#039;t working and it needs fixing, then &#039;&#039;&#039;check out [[Help]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
= The Prologue =&lt;br /&gt;
&lt;br /&gt;
Are you new to Noisebridge? Have you been coming here for years?&lt;br /&gt;
&lt;br /&gt;
Either way, you should really read up on what we&#039;re all about.&lt;br /&gt;
&lt;br /&gt;
* [[Noisebridge Vision]] - What&#039;s it all about?&lt;br /&gt;
* [[About]] - An incredibly broad description of some of our more grandiose mechanisms&lt;br /&gt;
* [[Testimonials]] - In your own words, what is Noisebridge?&lt;br /&gt;
* [[Oral histories]] about Noisebridge&lt;br /&gt;
&lt;br /&gt;
= Visitors and Guests =&lt;br /&gt;
&lt;br /&gt;
* [[Getting Here]] - How to actually find the space...&lt;br /&gt;
* [[Getting In]] - And what to do when you arrive &lt;br /&gt;
* [[Visitor advice]] - Some advice on what you&#039;re getting into&lt;br /&gt;
* [[Community Standards]] - What we expect from each other&lt;br /&gt;
* [[The Neighborhood]] - What&#039;s in the neighborhood around 2169 Mission&lt;br /&gt;
* [[Docents]] - What it means to greet a newbie at the space&lt;br /&gt;
&lt;br /&gt;
= Getting along =&lt;br /&gt;
* [[Do-ocracy]] - One of our guiding principles&lt;br /&gt;
* [[Consensus Process]] - How decisions are made within the community&lt;br /&gt;
* [[Membership]] - How membership works at Noisebridge&lt;br /&gt;
** [[How to join Noisebridge]] - Another view on how membership works&lt;br /&gt;
* [[FractalWorkingGroup]] - Our pattern for getting things done without dragging it to the [[Meeting|Tuesday Meeting]]&lt;br /&gt;
* [[Community Standards]] - How to not fuck up at Noisebridge&lt;br /&gt;
** [[Conflict Resolution]] - What to do if you fuck up at Noisebridge&lt;br /&gt;
** [[AskedToLeave]] - People who have fucked up and have been asked to leave for a while&lt;br /&gt;
** [[86]] - People who have fucked up and are not welcome at Noisebridge at all&lt;br /&gt;
** [[FERT]] - Harassers, predators, and the like who everyone should keep an eye out for&lt;br /&gt;
* [[CommunityWorkingGroup]] - Bringing the Noisebridge community together to create a better space for all.&lt;br /&gt;
&lt;br /&gt;
= Staying in touch =&lt;br /&gt;
* [[IRC]] - Its full of bad jokes and robots that go quack&lt;br /&gt;
** [[Noisebot]] - Quack&lt;br /&gt;
** [[Quotes]] - &amp;quot;Quack&amp;quot;&lt;br /&gt;
* [[Slack]] - IRC on steroids. Invite only.&lt;br /&gt;
* [[Mailing list]] - A lot of e-mails and stuff. They&#039;ve got a trove of historical archives!&lt;br /&gt;
** [[Noisebridge-discuss-faq]] - How to not fuck up on noisebridge-discuss&lt;br /&gt;
&lt;br /&gt;
= Day to Day operations =&lt;br /&gt;
* [[Safety]] - Preventing those old school hardhat accidents.&lt;br /&gt;
* [[Resources/House Keeping|House keeping]] - Weekly chores and other vitals&lt;br /&gt;
* [[Access Control]] - Discussion about how physical access is handled&lt;br /&gt;
** [[SecWG]] - Security Working Group&lt;br /&gt;
** [[AccessControlModeling]] - Draft discussion about access control&lt;br /&gt;
* [[Meeting]] - Noisebridge meets every Tuesday evening&lt;br /&gt;
** [[Meeting instructions]] - How to run a Noisebridge meeting&lt;br /&gt;
** The [[Meeting Notes Template]]&lt;br /&gt;
* [[Hosting an Event]]&lt;br /&gt;
** [[:Category:Events|List of events and classes]]&lt;br /&gt;
* [[Stickers]] - The ubiquitous stickers and how to restock our supply&lt;br /&gt;
&lt;br /&gt;
= [[Infrastructure]] =&lt;br /&gt;
* [[Resources]] - An overview of the resources, equipment and projects in the space&lt;br /&gt;
* [[Network]] - Our IP transmission infrastructure (&#039;&#039;&#039;I&#039;&#039;&#039;nternet &#039;&#039;&#039;P&#039;&#039;&#039;rotocol here of course; &#039;&#039;&#039;not&#039;&#039;&#039; Intellectual Property!)&lt;br /&gt;
** [[Network Troubleshooting]] - How to approach the problem if it &#039;&#039;&#039;does&#039;&#039;&#039; seem to be broken&lt;br /&gt;
*** See also: &#039;&#039;&#039;[[Help]]&#039;&#039;&#039;&lt;br /&gt;
** [[New Network]] - Draft discussion about building the next iteration of the Noisebridge networking&lt;br /&gt;
** [[Pony]]&lt;br /&gt;
** [[Stallion2]]&lt;br /&gt;
** [[Quagga]]&lt;br /&gt;
* [[Kitchen]]&lt;br /&gt;
** [[KitchenWorkingGroup]]&lt;br /&gt;
&lt;br /&gt;
= Inner Mechanizations =&lt;br /&gt;
&lt;br /&gt;
* [[Secretaribot]] - Used to do some secretary things for us but then died&lt;br /&gt;
** [[User:Phong]] - The new sheriff in town&lt;br /&gt;
&lt;br /&gt;
= Things we do =&lt;br /&gt;
* [[Reboot]] - The current reboot process of Noisebridge&lt;br /&gt;
* [[PGP]]&lt;br /&gt;
&lt;br /&gt;
= Lore =&lt;br /&gt;
* [[83c]] - Noisebridge&#039;s first location&lt;br /&gt;
* [[FloorFinishing]] - How our floor was finished in 2009&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=Manual&amp;diff=44038</id>
		<title>Manual</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=Manual&amp;diff=44038"/>
		<updated>2014-08-22T03:14:37Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* Visitors and Guests */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Herein lies the Noisebridge &#039;&#039;Manual&#039;&#039;. It is an ever-changing tome that strives to answer an unanswerable question: &#039;&#039;&#039;How the heck does Noisebridge really work?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This is &#039;&#039;&#039;not&#039;&#039;&#039; general advice for fixing things. If something at Noisebridge isn&#039;t working and it needs fixing, then &#039;&#039;&#039;check out [[Help]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
= The Prologue =&lt;br /&gt;
&lt;br /&gt;
Are you new to Noisebridge? Have you been coming here for years?&lt;br /&gt;
&lt;br /&gt;
Either way, you should really read up on what we&#039;re all about.&lt;br /&gt;
&lt;br /&gt;
* [[Noisebridge Vision]] - What&#039;s it all about?&lt;br /&gt;
* [[About]] - An incredibly broad description of some of our more grandiose mechanisms&lt;br /&gt;
* [[Testimonials]] - In your own words, what is Noisebridge?&lt;br /&gt;
* [[Oral histories]] about Noisebridge&lt;br /&gt;
&lt;br /&gt;
= Visitors and Guests =&lt;br /&gt;
&lt;br /&gt;
* [[Getting Here]] - How to actually find the space...&lt;br /&gt;
* [[Getting In]] - And what to do when you arrive &lt;br /&gt;
* [[Visitor advice]] - Some advice on what you&#039;re getting into&lt;br /&gt;
* [[Community Standards]] - What we expect from each other&lt;br /&gt;
* [[The Neighborhood]] - What&#039;s in the neighborhood around 2169 Mission&lt;br /&gt;
* [[Docents]] - What it means to greet a newbie at the space&lt;br /&gt;
&lt;br /&gt;
= Getting along =&lt;br /&gt;
* [[Do-ocracy]] - One of our guiding principles&lt;br /&gt;
* [[Consensus Process]] - How decisions are made within the community&lt;br /&gt;
* [[Membership]] - How membership works at Noisebridge&lt;br /&gt;
** [[How to join Noisebridge]] - Another view on how membership works&lt;br /&gt;
* [[FractalWorkingGroup]] - Our pattern for getting things done without dragging it to the [[Meeting|Tuesday Meeting]]&lt;br /&gt;
* [[Community Standards]] - How to not fuck up at Noisebridge&lt;br /&gt;
** [[Conflict Resolution]] - What to do if you fuck up at Noisebridge&lt;br /&gt;
** [[AskedToLeave]] - People who have fucked up and have been asked to leave for a while&lt;br /&gt;
** [[86]] - People who have fucked up and are not welcome at Noisebridge at all&lt;br /&gt;
** [[FERT]] - Harassers, predators, and the like who everyone should keep an eye out for&lt;br /&gt;
* [[CommunityWorkingGroup]] - Bringing the Noisebridge community together to create a better space for all.&lt;br /&gt;
&lt;br /&gt;
= Staying in touch =&lt;br /&gt;
* [[IRC]] - Its full of bad jokes and robots that go quack&lt;br /&gt;
** [[Noisebot]] - Quack&lt;br /&gt;
** [[Quotes]] - &amp;quot;Quack&amp;quot;&lt;br /&gt;
* [[Slack]] - IRC on steroids. Invite only.&lt;br /&gt;
* [[Mailing list]] - A lot of e-mails and stuff. They&#039;ve got a trove of historical archives!&lt;br /&gt;
** [[Noisebridge-discuss-faq]] - How to not fuck up on noisebridge-discuss&lt;br /&gt;
&lt;br /&gt;
= Day to Day operations =&lt;br /&gt;
* [[Safety]] - Preventing those old school hardhat accidents.&lt;br /&gt;
* [[Resources/House Keeping|House keeping]] - Weekly chores and other vitals&lt;br /&gt;
* [[Access Control]] - Discussion about how physical access is handled&lt;br /&gt;
** [[SecWG]] - Security Working Group&lt;br /&gt;
** [[AccessControlModeling]] - Draft discussion about access control&lt;br /&gt;
* [[Meeting]] - Noisebridge meets every Tuesday evening&lt;br /&gt;
** [[Meeting instructions]] - How to run a Noisebridge meeting&lt;br /&gt;
** The [[Meeting Notes Template]]&lt;br /&gt;
* [[Hosting an Event]]&lt;br /&gt;
** [[:Category:Events|List of events and classes]]&lt;br /&gt;
* [[Stickers]] - The ubiquitous stickers and how to restock our supply&lt;br /&gt;
&lt;br /&gt;
= [[Infrastructure]] =&lt;br /&gt;
* [[Resources]] - An overview of the resources, equipment and projects in the space&lt;br /&gt;
* [[Network]] - Our IP transmission infrastructure (&#039;&#039;&#039;I&#039;&#039;&#039;nternet &#039;&#039;&#039;P&#039;&#039;&#039;rotocol here of course; &#039;&#039;&#039;not&#039;&#039;&#039; Intellectual Property!)&lt;br /&gt;
** [[Network Troubleshooting]] - How to approach the problem if it &#039;&#039;&#039;does&#039;&#039;&#039; seem to be broken&lt;br /&gt;
*** See also: &#039;&#039;&#039;[[Help]]&#039;&#039;&#039;&lt;br /&gt;
** [[New Network]] - Draft discussion about building the next iteration of the Noisebridge networking&lt;br /&gt;
** [[Pony]]&lt;br /&gt;
** [[Stallion2]]&lt;br /&gt;
** [[Quagga]]&lt;br /&gt;
* [[Kitchen]]&lt;br /&gt;
** [[KitchenWorkingGroup]]&lt;br /&gt;
&lt;br /&gt;
= Things we do =&lt;br /&gt;
* [[Reboot]] - The current reboot process of Noisebridge&lt;br /&gt;
* [[PGP]]&lt;br /&gt;
&lt;br /&gt;
= Lore =&lt;br /&gt;
* [[83c]] - Noisebridge&#039;s first location&lt;br /&gt;
* [[FloorFinishing]] - How our floor was finished in 2009&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=BAHT&amp;diff=44027</id>
		<title>BAHT</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=BAHT&amp;diff=44027"/>
		<updated>2014-08-21T01:23:39Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;An EXPERIMENTAL extension of BART&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;font size=&amp;quot;4&amp;quot;&amp;gt;&#039;&#039;Eat my shorts!&#039;&#039;&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;20&amp;quot;&lt;br /&gt;
| __TOC__&lt;br /&gt;
| [[File:800px-BAHT-logo.png|400px]]&lt;br /&gt;
|&lt;br /&gt;
  {| border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; align=&amp;quot;left&amp;quot;&lt;br /&gt;
  |-&lt;br /&gt;
  | &amp;lt;font size=&amp;quot;7&amp;quot;&amp;gt;B&amp;lt;/font&amp;gt;&lt;br /&gt;
  | &amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;ay&amp;lt;/font&amp;gt;&lt;br /&gt;
  |-&lt;br /&gt;
  | &amp;lt;font size=&amp;quot;7&amp;quot;&amp;gt;A&amp;lt;/font&amp;gt;&lt;br /&gt;
  | &amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;rea&amp;lt;/font&amp;gt;&lt;br /&gt;
  |-&lt;br /&gt;
  | &amp;lt;font size=&amp;quot;7&amp;quot;&amp;gt;H&amp;lt;/font&amp;gt;&lt;br /&gt;
  | &amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;acker&amp;lt;/font&amp;gt;&lt;br /&gt;
  |}&lt;br /&gt;
|}&lt;br /&gt;
==Schedule==&lt;br /&gt;
==Fleet==&lt;br /&gt;
==Environmental==&lt;br /&gt;
==Pilots==&lt;br /&gt;
==Maintenance==&lt;br /&gt;
==Legal==&lt;br /&gt;
==API==&lt;br /&gt;
http://www.bart.gov/schedules/developers/api&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=MAUD&amp;diff=44026</id>
		<title>MAUD</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=MAUD&amp;diff=44026"/>
		<updated>2014-08-21T00:05:25Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* Maintenance &amp;amp; Upkeep Log */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Maraudin&#039; Maud &#039;twis here...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:MAUD-NONE.jpg|450px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
   ___    _  _     ___     ___     ___   &lt;br /&gt;
  / __|  | || |   /   \   / _ \   / __|  &lt;br /&gt;
 | (__   | __ |   | - |  | (_) |  \__ \  &lt;br /&gt;
  \___|  |_||_|   |_|_|   \___/   |___/  &lt;br /&gt;
_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;| &lt;br /&gt;
&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&lt;br /&gt;
&lt;br /&gt;
w00t!!! w00t!! CHAOS train a come&#039;n!?!?!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;https://noisebridge.net/wiki/CHAOS&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Fuel Log == &lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-6-30&#039;&#039;&#039; &lt;br /&gt;
** +4.9gal diesel no. 2 (@ $4.09 = $20.00 total) ; odometer reading = 349912 miles. &lt;br /&gt;
&lt;br /&gt;
== Maintenance &amp;amp; Upkeep Log ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-8-18&#039;&#039;&#039;&lt;br /&gt;
** Brake fluid added from min to max&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-7-1&#039;&#039;&#039;&lt;br /&gt;
** Engine oil added, 1 qt 15W-40 Rotella T (Shell) &lt;br /&gt;
** Brake fluid added&lt;br /&gt;
** Coolant level checked&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-7-28 &#039;&#039;&#039;&lt;br /&gt;
** Patched outboard port rear tire&lt;br /&gt;
*** Tube replaced with spare 750R16&lt;br /&gt;
** Added air to all tires (80 PSI)&lt;br /&gt;
&lt;br /&gt;
== Scheduled Maintenance &amp;amp; Upkeep ==&lt;br /&gt;
&lt;br /&gt;
* Oil and oil filter change, asap&lt;br /&gt;
* Fuel filter change&lt;br /&gt;
* Tire pressure&lt;br /&gt;
** New tire pressure gauge&lt;br /&gt;
* Insurance payment Aug.&lt;br /&gt;
&lt;br /&gt;
=== Batteries ===&lt;br /&gt;
* Two 12 volt 31-MHD / CCA 950 / RC195&lt;br /&gt;
&lt;br /&gt;
== Seats ==&lt;br /&gt;
&lt;br /&gt;
=== 0 ===&lt;br /&gt;
* &#039;&#039;&#039;Capt&#039;n X||[[User:Six26]]&#039;&#039;&#039;&lt;br /&gt;
=== 1 ===&lt;br /&gt;
* &#039;&#039;Reserved||h4x0r&#039;&#039;&lt;br /&gt;
=== 2 ===&lt;br /&gt;
* &#039;&#039;Reserved||h4x0r&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Last Sync ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;9.66 Mpbs Down / 20.98 Mbps Up&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(208.90.212.135)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;45.15 Mbps Down / 11.69 Mbps Up&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(24.23.222.237)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Last Locale ==&lt;br /&gt;
* noisebridge (orange)&lt;br /&gt;
* omni (red)&lt;br /&gt;
* noisebridge reboot party (blue)&lt;br /&gt;
* &#039;&#039;&#039;omni&#039;&#039;&#039;&lt;br /&gt;
* art foundry&lt;br /&gt;
* J&amp;amp;O&#039;s&lt;br /&gt;
* d&#039;s garage&lt;br /&gt;
* dump(s)&lt;br /&gt;
* Red: Fermentation Station @ Omni&lt;br /&gt;
* Yellow: Dorkbot Special @ Dorkbridge&lt;br /&gt;
* &#039;&#039;&#039;sudo room&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;noisebridge&#039;&#039;&#039; &#039;&#039;(orange)&#039;&#039;&lt;br /&gt;
* Bush-Mercey Park&lt;br /&gt;
** http://www.yelp.com/biz/mercy-bush-park-mountain-view&lt;br /&gt;
* &#039;&#039;&#039;http://www.bart.gov/stations/frmt&#039;&#039;&#039;&lt;br /&gt;
* http://hackerspaces.org/wiki/M0usePad&lt;br /&gt;
&lt;br /&gt;
== Next Locale ==&lt;br /&gt;
* noisebridge 5MoF (green)&lt;br /&gt;
* west oak&lt;br /&gt;
* sudo room&lt;br /&gt;
* noisebridge&lt;br /&gt;
&lt;br /&gt;
[[File:GRAY-MAUD.png]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=MAUD&amp;diff=44025</id>
		<title>MAUD</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=MAUD&amp;diff=44025"/>
		<updated>2014-08-21T00:04:35Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* Next Locale */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Maraudin&#039; Maud &#039;twis here...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:MAUD-NONE.jpg|450px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
   ___    _  _     ___     ___     ___   &lt;br /&gt;
  / __|  | || |   /   \   / _ \   / __|  &lt;br /&gt;
 | (__   | __ |   | - |  | (_) |  \__ \  &lt;br /&gt;
  \___|  |_||_|   |_|_|   \___/   |___/  &lt;br /&gt;
_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;| &lt;br /&gt;
&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&lt;br /&gt;
&lt;br /&gt;
w00t!!! w00t!! CHAOS train a come&#039;n!?!?!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;https://noisebridge.net/wiki/CHAOS&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Fuel Log == &lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-6-30&#039;&#039;&#039; &lt;br /&gt;
** +4.9gal diesel no. 2 (@ $4.09 = $20.00 total) ; odometer reading = 349912 miles. &lt;br /&gt;
&lt;br /&gt;
== Maintenance &amp;amp; Upkeep Log ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-7-1&#039;&#039;&#039;&lt;br /&gt;
** Engine oil added, 1 qt 15W-40 Rotella T (Shell) &lt;br /&gt;
** Brake fluid added&lt;br /&gt;
** Coolant level checked&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-7-28 &#039;&#039;&#039;&lt;br /&gt;
** Patched outboard port rear tire&lt;br /&gt;
*** Tube replaced with spare 750R16&lt;br /&gt;
** Added air to all tires (80 PSI)&lt;br /&gt;
&lt;br /&gt;
== Scheduled Maintenance &amp;amp; Upkeep ==&lt;br /&gt;
&lt;br /&gt;
* Oil and oil filter change, asap&lt;br /&gt;
* Fuel filter change&lt;br /&gt;
* Tire pressure&lt;br /&gt;
** New tire pressure gauge&lt;br /&gt;
* Insurance payment Aug.&lt;br /&gt;
&lt;br /&gt;
=== Batteries ===&lt;br /&gt;
* Two 12 volt 31-MHD / CCA 950 / RC195&lt;br /&gt;
&lt;br /&gt;
== Seats ==&lt;br /&gt;
&lt;br /&gt;
=== 0 ===&lt;br /&gt;
* &#039;&#039;&#039;Capt&#039;n X||[[User:Six26]]&#039;&#039;&#039;&lt;br /&gt;
=== 1 ===&lt;br /&gt;
* &#039;&#039;Reserved||h4x0r&#039;&#039;&lt;br /&gt;
=== 2 ===&lt;br /&gt;
* &#039;&#039;Reserved||h4x0r&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Last Sync ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;9.66 Mpbs Down / 20.98 Mbps Up&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(208.90.212.135)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;45.15 Mbps Down / 11.69 Mbps Up&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(24.23.222.237)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Last Locale ==&lt;br /&gt;
* noisebridge (orange)&lt;br /&gt;
* omni (red)&lt;br /&gt;
* noisebridge reboot party (blue)&lt;br /&gt;
* &#039;&#039;&#039;omni&#039;&#039;&#039;&lt;br /&gt;
* art foundry&lt;br /&gt;
* J&amp;amp;O&#039;s&lt;br /&gt;
* d&#039;s garage&lt;br /&gt;
* dump(s)&lt;br /&gt;
* Red: Fermentation Station @ Omni&lt;br /&gt;
* Yellow: Dorkbot Special @ Dorkbridge&lt;br /&gt;
* &#039;&#039;&#039;sudo room&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;noisebridge&#039;&#039;&#039; &#039;&#039;(orange)&#039;&#039;&lt;br /&gt;
* Bush-Mercey Park&lt;br /&gt;
** http://www.yelp.com/biz/mercy-bush-park-mountain-view&lt;br /&gt;
* &#039;&#039;&#039;http://www.bart.gov/stations/frmt&#039;&#039;&#039;&lt;br /&gt;
* http://hackerspaces.org/wiki/M0usePad&lt;br /&gt;
&lt;br /&gt;
== Next Locale ==&lt;br /&gt;
* noisebridge 5MoF (green)&lt;br /&gt;
* west oak&lt;br /&gt;
* sudo room&lt;br /&gt;
* noisebridge&lt;br /&gt;
&lt;br /&gt;
[[File:GRAY-MAUD.png]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=MAUD&amp;diff=44024</id>
		<title>MAUD</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=MAUD&amp;diff=44024"/>
		<updated>2014-08-21T00:04:15Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* Last Locale */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Maraudin&#039; Maud &#039;twis here...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:MAUD-NONE.jpg|450px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
   ___    _  _     ___     ___     ___   &lt;br /&gt;
  / __|  | || |   /   \   / _ \   / __|  &lt;br /&gt;
 | (__   | __ |   | - |  | (_) |  \__ \  &lt;br /&gt;
  \___|  |_||_|   |_|_|   \___/   |___/  &lt;br /&gt;
_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;| &lt;br /&gt;
&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&lt;br /&gt;
&lt;br /&gt;
w00t!!! w00t!! CHAOS train a come&#039;n!?!?!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;https://noisebridge.net/wiki/CHAOS&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Fuel Log == &lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-6-30&#039;&#039;&#039; &lt;br /&gt;
** +4.9gal diesel no. 2 (@ $4.09 = $20.00 total) ; odometer reading = 349912 miles. &lt;br /&gt;
&lt;br /&gt;
== Maintenance &amp;amp; Upkeep Log ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-7-1&#039;&#039;&#039;&lt;br /&gt;
** Engine oil added, 1 qt 15W-40 Rotella T (Shell) &lt;br /&gt;
** Brake fluid added&lt;br /&gt;
** Coolant level checked&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-7-28 &#039;&#039;&#039;&lt;br /&gt;
** Patched outboard port rear tire&lt;br /&gt;
*** Tube replaced with spare 750R16&lt;br /&gt;
** Added air to all tires (80 PSI)&lt;br /&gt;
&lt;br /&gt;
== Scheduled Maintenance &amp;amp; Upkeep ==&lt;br /&gt;
&lt;br /&gt;
* Oil and oil filter change, asap&lt;br /&gt;
* Fuel filter change&lt;br /&gt;
* Tire pressure&lt;br /&gt;
** New tire pressure gauge&lt;br /&gt;
* Insurance payment Aug.&lt;br /&gt;
&lt;br /&gt;
=== Batteries ===&lt;br /&gt;
* Two 12 volt 31-MHD / CCA 950 / RC195&lt;br /&gt;
&lt;br /&gt;
== Seats ==&lt;br /&gt;
&lt;br /&gt;
=== 0 ===&lt;br /&gt;
* &#039;&#039;&#039;Capt&#039;n X||[[User:Six26]]&#039;&#039;&#039;&lt;br /&gt;
=== 1 ===&lt;br /&gt;
* &#039;&#039;Reserved||h4x0r&#039;&#039;&lt;br /&gt;
=== 2 ===&lt;br /&gt;
* &#039;&#039;Reserved||h4x0r&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Last Sync ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;9.66 Mpbs Down / 20.98 Mbps Up&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(208.90.212.135)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;45.15 Mbps Down / 11.69 Mbps Up&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(24.23.222.237)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Last Locale ==&lt;br /&gt;
* noisebridge (orange)&lt;br /&gt;
* omni (red)&lt;br /&gt;
* noisebridge reboot party (blue)&lt;br /&gt;
* &#039;&#039;&#039;omni&#039;&#039;&#039;&lt;br /&gt;
* art foundry&lt;br /&gt;
* J&amp;amp;O&#039;s&lt;br /&gt;
* d&#039;s garage&lt;br /&gt;
* dump(s)&lt;br /&gt;
* Red: Fermentation Station @ Omni&lt;br /&gt;
* Yellow: Dorkbot Special @ Dorkbridge&lt;br /&gt;
* &#039;&#039;&#039;sudo room&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;noisebridge&#039;&#039;&#039; &#039;&#039;(orange)&#039;&#039;&lt;br /&gt;
* Bush-Mercey Park&lt;br /&gt;
** http://www.yelp.com/biz/mercy-bush-park-mountain-view&lt;br /&gt;
* &#039;&#039;&#039;http://www.bart.gov/stations/frmt&#039;&#039;&#039;&lt;br /&gt;
* http://hackerspaces.org/wiki/M0usePad&lt;br /&gt;
&lt;br /&gt;
== Next Locale ==&lt;br /&gt;
* west oak&lt;br /&gt;
* sudo room&lt;br /&gt;
* noisebridge&lt;br /&gt;
&lt;br /&gt;
[[File:GRAY-MAUD.png]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=MAUD&amp;diff=44023</id>
		<title>MAUD</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=MAUD&amp;diff=44023"/>
		<updated>2014-08-21T00:02:57Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* Last Sync */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Maraudin&#039; Maud &#039;twis here...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:MAUD-NONE.jpg|450px|center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
   ___    _  _     ___     ___     ___   &lt;br /&gt;
  / __|  | || |   /   \   / _ \   / __|  &lt;br /&gt;
 | (__   | __ |   | - |  | (_) |  \__ \  &lt;br /&gt;
  \___|  |_||_|   |_|_|   \___/   |___/  &lt;br /&gt;
_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;|_|&amp;quot;&amp;quot;&amp;quot;&amp;quot;&amp;quot;| &lt;br /&gt;
&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&amp;quot;`-0-0-&#039;&lt;br /&gt;
&lt;br /&gt;
w00t!!! w00t!! CHAOS train a come&#039;n!?!?!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;https://noisebridge.net/wiki/CHAOS&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Fuel Log == &lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-6-30&#039;&#039;&#039; &lt;br /&gt;
** +4.9gal diesel no. 2 (@ $4.09 = $20.00 total) ; odometer reading = 349912 miles. &lt;br /&gt;
&lt;br /&gt;
== Maintenance &amp;amp; Upkeep Log ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-7-1&#039;&#039;&#039;&lt;br /&gt;
** Engine oil added, 1 qt 15W-40 Rotella T (Shell) &lt;br /&gt;
** Brake fluid added&lt;br /&gt;
** Coolant level checked&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;2014-7-28 &#039;&#039;&#039;&lt;br /&gt;
** Patched outboard port rear tire&lt;br /&gt;
*** Tube replaced with spare 750R16&lt;br /&gt;
** Added air to all tires (80 PSI)&lt;br /&gt;
&lt;br /&gt;
== Scheduled Maintenance &amp;amp; Upkeep ==&lt;br /&gt;
&lt;br /&gt;
* Oil and oil filter change, asap&lt;br /&gt;
* Fuel filter change&lt;br /&gt;
* Tire pressure&lt;br /&gt;
** New tire pressure gauge&lt;br /&gt;
* Insurance payment Aug.&lt;br /&gt;
&lt;br /&gt;
=== Batteries ===&lt;br /&gt;
* Two 12 volt 31-MHD / CCA 950 / RC195&lt;br /&gt;
&lt;br /&gt;
== Seats ==&lt;br /&gt;
&lt;br /&gt;
=== 0 ===&lt;br /&gt;
* &#039;&#039;&#039;Capt&#039;n X||[[User:Six26]]&#039;&#039;&#039;&lt;br /&gt;
=== 1 ===&lt;br /&gt;
* &#039;&#039;Reserved||h4x0r&#039;&#039;&lt;br /&gt;
=== 2 ===&lt;br /&gt;
* &#039;&#039;Reserved||h4x0r&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Last Sync ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;9.66 Mpbs Down / 20.98 Mbps Up&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(208.90.212.135)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;45.15 Mbps Down / 11.69 Mbps Up&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;(24.23.222.237)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Last Locale ==&lt;br /&gt;
* &#039;&#039;&#039;omni&#039;&#039;&#039;&lt;br /&gt;
* art foundry&lt;br /&gt;
* J&amp;amp;O&#039;s&lt;br /&gt;
* d&#039;s garage&lt;br /&gt;
* dump(s)&lt;br /&gt;
* Red: Fermentation Station @ Omni&lt;br /&gt;
* Yellow: Dorkbot Special @ Dorkbridge&lt;br /&gt;
* &#039;&#039;&#039;sudo room&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;noisebridge&#039;&#039;&#039; &#039;&#039;(orange)&#039;&#039;&lt;br /&gt;
* Bush-Mercey Park&lt;br /&gt;
** http://www.yelp.com/biz/mercy-bush-park-mountain-view&lt;br /&gt;
* &#039;&#039;&#039;http://www.bart.gov/stations/frmt&#039;&#039;&#039;&lt;br /&gt;
* http://hackerspaces.org/wiki/M0usePad&lt;br /&gt;
&lt;br /&gt;
== Next Locale ==&lt;br /&gt;
* west oak&lt;br /&gt;
* sudo room&lt;br /&gt;
* noisebridge&lt;br /&gt;
&lt;br /&gt;
[[File:GRAY-MAUD.png]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=PyClass&amp;diff=44017</id>
		<title>PyClass</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=PyClass&amp;diff=44017"/>
		<updated>2014-08-20T04:30:40Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* PSAs and Events */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PSAs and Events ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; PSA 8-19-14: &#039;&#039;&#039; The [https://noisebridge.net/wiki/PyClass noisebridge wiki] and [https://github.com/PyClass/PyClass-lesson-plans github readme] files now have parity to each other.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; PSA 8-16-14: &#039;&#039;&#039;  The new curriculum for the Noisebridge PyClass is a crash course in the Python standard library, also touching on modules that are popular but not quite part of the standard modules.   Scroll down to see the course list.&lt;br /&gt;
&lt;br /&gt;
== Scheduled Weekly Meeting Times ==&lt;br /&gt;
* Tuesday 7:00 - 9:00 PM PST - &#039;Turing&#039; Classroom&lt;br /&gt;
* Wednesday 7:00 - 9:00 PM PST - &#039;Church&#039; Classroom&lt;br /&gt;
&lt;br /&gt;
== Mailing List ==&lt;br /&gt;
Sign up for this to hear updates and conversations regarding the course!&lt;br /&gt;
* [http://groups.google.com/group/pyclass Pyclass-Discussion]&lt;br /&gt;
&lt;br /&gt;
== Class Description, Goals, and Ideal Student ==&lt;br /&gt;
&lt;br /&gt;
The pace of the courses will be fast, and the materials will be available online 24/7 and we plan to frequently repeat modules that are in high demand with new twists as we iterate over the course materials.&lt;br /&gt;
&lt;br /&gt;
A primary goal of the course is to break down the materials into independent units. In other words, if you miss a week then you won&#039;t fall behind. Sounds good, right?&lt;br /&gt;
&lt;br /&gt;
To best experience the course, spend a short time studying the course materials before you come in. If you wish to know this week&#039;s courses, please send an email out to PyClass@googlegroups.com&lt;br /&gt;
&lt;br /&gt;
The ideal student for this course can understand the following code (it&#039;s fine to use Google to look up the built in functions, and we use tons of web resources throughout the course materials):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
word_frequency_dict = {}&lt;br /&gt;
word = &amp;quot;noisebridge&amp;quot;&lt;br /&gt;
&lt;br /&gt;
for letter in word:&lt;br /&gt;
    times = word_frequency_dict.get(letter, 0)&lt;br /&gt;
    times += 1&lt;br /&gt;
    word_frequency_dict.update( {letter : times} )&lt;br /&gt;
    &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Course List ==&lt;br /&gt;
&lt;br /&gt;
The order of the following courses has not yet been determined.  &lt;br /&gt;
&lt;br /&gt;
Please [http://groups.google.com/group/pyclass ask on the mailing list] if you want to know what courses are coming this week!&lt;br /&gt;
&lt;br /&gt;
# JSON format, Python Types, and the JSON Module&lt;br /&gt;
# Control Flow, itertools, and Functional Programming&lt;br /&gt;
# Built-in Functions&lt;br /&gt;
# Built-in Types and String Services&lt;br /&gt;
# Numeric and Mathematical Modules, and Operators&lt;br /&gt;
# argparse, ConfigParser, and more - configuring your applications&lt;br /&gt;
# pip, virtualenv, packaging, versions, and inspect.&lt;br /&gt;
# Logging your applications: logging, logging.config, logging.handlers&lt;br /&gt;
# Exceptions and Debugging: Exception behavior, custom exceptions, pdb, cProfile, timeit, time, trace.&lt;br /&gt;
# os, sys, and io (Caution, here be Python 3, inside the io module)&lt;br /&gt;
# (potential for a unittest course)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OS / Environment / Versions ==&lt;br /&gt;
&lt;br /&gt;
This section is under development.&lt;br /&gt;
&lt;br /&gt;
For the sake of our sanity we use Python 2.7.1+ for this course.&lt;br /&gt;
&lt;br /&gt;
Emergency Python Command Line: http://repl.it/languages/Python&lt;br /&gt;
&lt;br /&gt;
Installing Python with [http://docs.python-guide.org/en/latest/ The Hitchhiker’s Guide to Python!]&lt;br /&gt;
&lt;br /&gt;
We accept refugees using all operating systems. You will be politely prodded in the direction of solutions that are closer to posix standards: http://en.wikipedia.org/wiki/POSIX#Mostly_POSIX-compliant&lt;br /&gt;
&lt;br /&gt;
Emergency Python Command Line: http://repl.it/languages/Python&lt;br /&gt;
&lt;br /&gt;
Some routes:&lt;br /&gt;
# Install a linux virtual machine on another computer using virtualbox.&lt;br /&gt;
# Use the command line in your apple machine.&lt;br /&gt;
# Explore POSIX for windows: http://en.wikipedia.org/wiki/POSIX#POSIX_for_Windows&lt;br /&gt;
&lt;br /&gt;
Another critical tool is git:&lt;br /&gt;
* Windows: http://git-scm.com/download/win&lt;br /&gt;
* Mac: http://git-scm.com/download/mac&lt;br /&gt;
* Linux: (use your package manager)&lt;br /&gt;
&lt;br /&gt;
== Legacy Materials 2011-2014 (Liz &amp;amp; Kellan&#039;s Class) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; The following material is old material from Kellan and Liz&#039;s long-running PyClass: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Come learn [http://www.python.org/ Python]&#039;&#039;&#039;!!&amp;lt;br&amp;gt;&lt;br /&gt;
See our awesome website for both PyClasses at [http://pycourse.com/ Noisebridge Learning Python]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After 9pm Tuesdays, we&#039;ll have open hacking time and time for questions for those that are kicking so much ass they just can&#039;t go home yet, or even for those that may have gone to Mondays&#039; Front-end Web Development class and want to come back for more. If you have problems from work or home, feel free to bring them after 9 and everyone can help each other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Semi-Official Intro to Python Class Texts &#039;&#039;&#039;&lt;br /&gt;
* [http://www.greenteapress.com/thinkpython/ Think Python: How to Think Like a Computer Scientist]&lt;br /&gt;
* [http://learnpythonthehardway.org/ Learn Python The Hard Way] - A good introductory text with lots of exercises written by prolific programmer [http://zedshaw.com/ Zed Shaw]&lt;br /&gt;
* [http://www.python.org/dev/peps/pep-0008/ PEP 8 -- The &#039;&#039;&#039;highly&#039;&#039;&#039; recommended Style Guide for Python Code]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Other Intro to Python Texts &#039;&#039;&#039;&lt;br /&gt;
* [http://www.swaroopch.com/notes/python A Byte of Python]&lt;br /&gt;
* [http://www.learnpython.org/ Learn Python - Free Interactive Python Tutorial]&lt;br /&gt;
* [http://www.openbookproject.net/thinkcs/python/english2e/ How to Think Like a Computer Scientist: Learning with Python 2nd Edition]&lt;br /&gt;
* [https://docs.python.org/2/tutorial/ The Python Tutorial] - written by Guido van Rossum, creator of the Python programming language &lt;br /&gt;
** [https://docs.python.org/2/download.html Python 2.x.x Documentation download] - Contains Python Tutorial &amp;amp; other docs in various readable formats&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; PyClass Githubs &#039;&#039;&#039;&lt;br /&gt;
* [https://github.com/PythonNinjas PyClass Organization]&lt;br /&gt;
* [https://github.com/PythonNinjas/InventWithPython  Invent with Python Textbook Code] &amp;lt;404 Error&amp;gt;&lt;br /&gt;
* https://github.com/noisebridge/Intro-Python   / Kellan Jacobs Notes&lt;br /&gt;
* https://github.com/noisebridge/web2py-noiselist&lt;br /&gt;
* https://github.com/noisebridge/flask-noiselist   / E Leddy&lt;br /&gt;
* https://github.com/tachang/django_noiselist&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;  [Old] Class Slides &#039;&#039;&#039;&lt;br /&gt;
* [http://egonschiele.github.com/pyclass Slides on Github]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Other Helpful PyClass links &#039;&#039;&#039;&lt;br /&gt;
* [https://www.python.org/ Main Python.org site]&lt;br /&gt;
* [http://oreilly.com/catalog/9780596100469/ Python in a Nutshell] - an older but handy reference&lt;br /&gt;
* [http://www.pygame.org Pygame]&lt;br /&gt;
* [http://inventwithpython.com Invent Your Own Computer Games with Python] - written by Noisebridger [[User:AlSweigart|Al Sweigart]], free to download [http://inventwithpython.com/IYOCGwP_book1.pdf here] or [https://dl.dropbox.com/u/11076239/IYOCGwP_book1.pdf here]&lt;br /&gt;
&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
[[Category:Pages with a Noisebridge Tiny URL]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=PyClass&amp;diff=44016</id>
		<title>PyClass</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=PyClass&amp;diff=44016"/>
		<updated>2014-08-20T04:30:14Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* PSAs and Events */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== PSAs and Events ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; PSA 8-19-14: &#039;&#039;&#039; The [noisebridge wiki] and [https://github.com/PyClass/PyClass-lesson-plans github readme] files now have parity to each other.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; PSA 8-16-14: &#039;&#039;&#039;  The new curriculum for the Noisebridge PyClass is a crash course in the Python standard library, also touching on modules that are popular but not quite part of the standard modules.   Scroll down to see the course list.&lt;br /&gt;
&lt;br /&gt;
== Scheduled Weekly Meeting Times ==&lt;br /&gt;
* Tuesday 7:00 - 9:00 PM PST - &#039;Turing&#039; Classroom&lt;br /&gt;
* Wednesday 7:00 - 9:00 PM PST - &#039;Church&#039; Classroom&lt;br /&gt;
&lt;br /&gt;
== Mailing List ==&lt;br /&gt;
Sign up for this to hear updates and conversations regarding the course!&lt;br /&gt;
* [http://groups.google.com/group/pyclass Pyclass-Discussion]&lt;br /&gt;
&lt;br /&gt;
== Class Description, Goals, and Ideal Student ==&lt;br /&gt;
&lt;br /&gt;
The pace of the courses will be fast, and the materials will be available online 24/7 and we plan to frequently repeat modules that are in high demand with new twists as we iterate over the course materials.&lt;br /&gt;
&lt;br /&gt;
A primary goal of the course is to break down the materials into independent units. In other words, if you miss a week then you won&#039;t fall behind. Sounds good, right?&lt;br /&gt;
&lt;br /&gt;
To best experience the course, spend a short time studying the course materials before you come in. If you wish to know this week&#039;s courses, please send an email out to PyClass@googlegroups.com&lt;br /&gt;
&lt;br /&gt;
The ideal student for this course can understand the following code (it&#039;s fine to use Google to look up the built in functions, and we use tons of web resources throughout the course materials):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
word_frequency_dict = {}&lt;br /&gt;
word = &amp;quot;noisebridge&amp;quot;&lt;br /&gt;
&lt;br /&gt;
for letter in word:&lt;br /&gt;
    times = word_frequency_dict.get(letter, 0)&lt;br /&gt;
    times += 1&lt;br /&gt;
    word_frequency_dict.update( {letter : times} )&lt;br /&gt;
    &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Course List ==&lt;br /&gt;
&lt;br /&gt;
The order of the following courses has not yet been determined.  &lt;br /&gt;
&lt;br /&gt;
Please [http://groups.google.com/group/pyclass ask on the mailing list] if you want to know what courses are coming this week!&lt;br /&gt;
&lt;br /&gt;
# JSON format, Python Types, and the JSON Module&lt;br /&gt;
# Control Flow, itertools, and Functional Programming&lt;br /&gt;
# Built-in Functions&lt;br /&gt;
# Built-in Types and String Services&lt;br /&gt;
# Numeric and Mathematical Modules, and Operators&lt;br /&gt;
# argparse, ConfigParser, and more - configuring your applications&lt;br /&gt;
# pip, virtualenv, packaging, versions, and inspect.&lt;br /&gt;
# Logging your applications: logging, logging.config, logging.handlers&lt;br /&gt;
# Exceptions and Debugging: Exception behavior, custom exceptions, pdb, cProfile, timeit, time, trace.&lt;br /&gt;
# os, sys, and io (Caution, here be Python 3, inside the io module)&lt;br /&gt;
# (potential for a unittest course)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OS / Environment / Versions ==&lt;br /&gt;
&lt;br /&gt;
This section is under development.&lt;br /&gt;
&lt;br /&gt;
For the sake of our sanity we use Python 2.7.1+ for this course.&lt;br /&gt;
&lt;br /&gt;
Emergency Python Command Line: http://repl.it/languages/Python&lt;br /&gt;
&lt;br /&gt;
Installing Python with [http://docs.python-guide.org/en/latest/ The Hitchhiker’s Guide to Python!]&lt;br /&gt;
&lt;br /&gt;
We accept refugees using all operating systems. You will be politely prodded in the direction of solutions that are closer to posix standards: http://en.wikipedia.org/wiki/POSIX#Mostly_POSIX-compliant&lt;br /&gt;
&lt;br /&gt;
Emergency Python Command Line: http://repl.it/languages/Python&lt;br /&gt;
&lt;br /&gt;
Some routes:&lt;br /&gt;
# Install a linux virtual machine on another computer using virtualbox.&lt;br /&gt;
# Use the command line in your apple machine.&lt;br /&gt;
# Explore POSIX for windows: http://en.wikipedia.org/wiki/POSIX#POSIX_for_Windows&lt;br /&gt;
&lt;br /&gt;
Another critical tool is git:&lt;br /&gt;
* Windows: http://git-scm.com/download/win&lt;br /&gt;
* Mac: http://git-scm.com/download/mac&lt;br /&gt;
* Linux: (use your package manager)&lt;br /&gt;
&lt;br /&gt;
== Legacy Materials 2011-2014 (Liz &amp;amp; Kellan&#039;s Class) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; The following material is old material from Kellan and Liz&#039;s long-running PyClass: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Come learn [http://www.python.org/ Python]&#039;&#039;&#039;!!&amp;lt;br&amp;gt;&lt;br /&gt;
See our awesome website for both PyClasses at [http://pycourse.com/ Noisebridge Learning Python]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After 9pm Tuesdays, we&#039;ll have open hacking time and time for questions for those that are kicking so much ass they just can&#039;t go home yet, or even for those that may have gone to Mondays&#039; Front-end Web Development class and want to come back for more. If you have problems from work or home, feel free to bring them after 9 and everyone can help each other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Semi-Official Intro to Python Class Texts &#039;&#039;&#039;&lt;br /&gt;
* [http://www.greenteapress.com/thinkpython/ Think Python: How to Think Like a Computer Scientist]&lt;br /&gt;
* [http://learnpythonthehardway.org/ Learn Python The Hard Way] - A good introductory text with lots of exercises written by prolific programmer [http://zedshaw.com/ Zed Shaw]&lt;br /&gt;
* [http://www.python.org/dev/peps/pep-0008/ PEP 8 -- The &#039;&#039;&#039;highly&#039;&#039;&#039; recommended Style Guide for Python Code]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Other Intro to Python Texts &#039;&#039;&#039;&lt;br /&gt;
* [http://www.swaroopch.com/notes/python A Byte of Python]&lt;br /&gt;
* [http://www.learnpython.org/ Learn Python - Free Interactive Python Tutorial]&lt;br /&gt;
* [http://www.openbookproject.net/thinkcs/python/english2e/ How to Think Like a Computer Scientist: Learning with Python 2nd Edition]&lt;br /&gt;
* [https://docs.python.org/2/tutorial/ The Python Tutorial] - written by Guido van Rossum, creator of the Python programming language &lt;br /&gt;
** [https://docs.python.org/2/download.html Python 2.x.x Documentation download] - Contains Python Tutorial &amp;amp; other docs in various readable formats&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; PyClass Githubs &#039;&#039;&#039;&lt;br /&gt;
* [https://github.com/PythonNinjas PyClass Organization]&lt;br /&gt;
* [https://github.com/PythonNinjas/InventWithPython  Invent with Python Textbook Code] &amp;lt;404 Error&amp;gt;&lt;br /&gt;
* https://github.com/noisebridge/Intro-Python   / Kellan Jacobs Notes&lt;br /&gt;
* https://github.com/noisebridge/web2py-noiselist&lt;br /&gt;
* https://github.com/noisebridge/flask-noiselist   / E Leddy&lt;br /&gt;
* https://github.com/tachang/django_noiselist&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;  [Old] Class Slides &#039;&#039;&#039;&lt;br /&gt;
* [http://egonschiele.github.com/pyclass Slides on Github]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Other Helpful PyClass links &#039;&#039;&#039;&lt;br /&gt;
* [https://www.python.org/ Main Python.org site]&lt;br /&gt;
* [http://oreilly.com/catalog/9780596100469/ Python in a Nutshell] - an older but handy reference&lt;br /&gt;
* [http://www.pygame.org Pygame]&lt;br /&gt;
* [http://inventwithpython.com Invent Your Own Computer Games with Python] - written by Noisebridger [[User:AlSweigart|Al Sweigart]], free to download [http://inventwithpython.com/IYOCGwP_book1.pdf here] or [https://dl.dropbox.com/u/11076239/IYOCGwP_book1.pdf here]&lt;br /&gt;
&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
[[Category:Pages with a Noisebridge Tiny URL]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=Kinect&amp;diff=43864</id>
		<title>Kinect</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=Kinect&amp;diff=43864"/>
		<updated>2014-08-12T00:53:24Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* Hacking */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
Grey donated a Kinect to Noisebridge under the terms that it never be used with an Xbox. Eventually this device was incorporated into the &amp;quot;MC Hawking&amp;quot; robot-controlled wheelchair, which is now at sudo room.&lt;br /&gt;
&lt;br /&gt;
dmolnar donated two &amp;quot;Kinect for Windows v1&amp;quot; and one &amp;quot;Kinect for Windows V2&amp;quot; devices, with no restrictions. &lt;br /&gt;
&lt;br /&gt;
Let the 3D vision hackfest begin!&lt;br /&gt;
&lt;br /&gt;
= Hacking =&lt;br /&gt;
&lt;br /&gt;
== Kinect for Windows SDK == &lt;br /&gt;
&lt;br /&gt;
This is the &amp;quot;official&amp;quot; development kit. Version 1.8 works with the &amp;quot;V1&amp;quot; sensor and works with Windows 7, 8, and 8.1 . Version 2.0 is still in alpha, but you must use it to work with the &amp;quot;V2&amp;quot; sensor. Version 2 works only with Windows 8 and 8.1 . The V2 sensor also requires USB 3.0 with a &amp;quot;Renesas&amp;quot; chipset.  &lt;br /&gt;
&lt;br /&gt;
Both SDK versions will give you access to raw depth data, color RGB, skeleton tracking, audio localization, and voice commands. Both include code samples in C++, C#, and even a few in HTML/JS.&lt;br /&gt;
&lt;br /&gt;
Version 1.8, in addition, includes 3D scanning (under the name &amp;quot;Kinect Fusion&amp;quot;) and a face tracking library. The scanning samples output STL files. Download the SDK here&lt;br /&gt;
http://go.microsoft.com/fwlink/?LinkID=323588&lt;br /&gt;
and the code samples here&lt;br /&gt;
http://www.microsoft.com/en-us/download/details.aspx?id=40277&lt;br /&gt;
&lt;br /&gt;
Version 2 doesn&#039;t have the 3D scanning or face tracking in the current alpha release, but check back. Version 2 does come with the &amp;quot;Visual Gesture Builder&amp;quot; tool for making your own gesture recognizers. Download it here:&lt;br /&gt;
http://www.microsoft.com/en-us/download/details.aspx?id=43661&lt;br /&gt;
&lt;br /&gt;
Both versions need Visual Studio. You can get a free (as in beer) version of Visual Studio here. You will want the &amp;quot;Windows Desktop&amp;quot; version. &lt;br /&gt;
http://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx&lt;br /&gt;
&lt;br /&gt;
== Mobile Robotic Programming Toolkit (MRPT) ==&lt;br /&gt;
&lt;br /&gt;
Joachim was demoing some impressive stuff with the Kinect using MRPT running under Debian.  Running it in Ubuntu and Fedora seems well supported as well, however, running it on Mac OS X is &amp;quot;not yet working 100%&amp;quot;.  From what I saw on Tuesday, this is best way to play with the Kinect of those listed here.&lt;br /&gt;
&lt;br /&gt;
== OpenKinect ==&lt;br /&gt;
&lt;br /&gt;
This looks really easy on Ubuntu and other linux flavors.  Windows looks like a nightmare as usual but is supported.  Jared got it working for Mac OS X during a manual build but it was really unstable on his Leopard MacBookPro.  Glview is useful for confirming that you have the drivers for Kinect working but not much else.  Basically it just shows you the input to the IR camera and the Visual spectrum camera, but doesn&#039;t do anything fancy for showing you a 3D representation of the data like MRPT can.&lt;br /&gt;
&lt;br /&gt;
http://openkinect.org/wiki/Getting_Started&lt;br /&gt;
&lt;br /&gt;
The Libfreenect code has ben checked out and compiles on the Dell Inspiron 1 public linux machine (see below). &lt;br /&gt;
&lt;br /&gt;
== OpenNI ==&lt;br /&gt;
&lt;br /&gt;
For the longterm this seems very promising.  This is a open source project released by PrimeSense, whose technology was licensed to Microsoft for the Kinect.  They released this in December and it sounds like it will provide some higher level apis for processing Kinect&#039;s data.  Currently Linux and Windows are supported but Mac OS X is left out in the cold.&lt;br /&gt;
&lt;br /&gt;
https://github.com/OpenNI/OpenNI&lt;br /&gt;
&lt;br /&gt;
== Kinect 3D Viewer ==&lt;br /&gt;
&lt;br /&gt;
This there is allegedly a free app for Snow Leopard in the Mac App Store, but unconfirmed.  It seems to just be for viewing the data not providing an API.&lt;br /&gt;
&lt;br /&gt;
http://downloadsquad.switched.com/2011/01/18/kinect-3d-viewer-now-available-in-mac-app-store-but-dont-get-t/&lt;br /&gt;
&lt;br /&gt;
= Where they live =&lt;br /&gt;
&lt;br /&gt;
Two Kinect V1s are now plugged in to the public Dell Inspiron 1 computer. Libfreenect has been installed on the computer, but it doesn&#039;t yet see the Kinects properly. You can find the libfreenect source at /home/noisebridge/freenect/libfreenect !&lt;br /&gt;
&lt;br /&gt;
The Kinect V2 is in its box inside the desk holding the public Dell Inspiron 1 computer. &lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
Update -- MC Hawking now lives at Sudo Room&lt;br /&gt;
&lt;br /&gt;
The kinect is mounted on [[Noise-Bot|MC Hawking -- The Wheelchair Robot]], using hot-glue to hold it onto a piece of plywood.  The plywood is screwed to the frame of the LCD monitor which is part of the robot.&lt;br /&gt;
&lt;br /&gt;
For people wanting to use the kinect for things like 3D scanning of objects or pretty much anything else, they are encouraged to try to use it without removing it from the robot.  The robot has a linux machine for a brain and much open-source kinect software is installed, but if folks want to use the kinect on their own machine they can just unplug the kinect from the robot brain and plug it into their machine.  The robot can also be moved to wherever is convenient for these tasks.&lt;br /&gt;
&lt;br /&gt;
Leaving the kinect on the robot is a good way to keep it from disappearing.  If it needs to be removed for whatever reason, the screws can be taken out of the wood, but the wood piece should remain stuck to the kinect (indeed it may be very difficult to get it off without breaking it) -jake&lt;br /&gt;
&lt;br /&gt;
== Kinect Hacking Linux Box ==&lt;br /&gt;
&lt;br /&gt;
Andy was working on setting up a desktop/shuttle box in the space that can be more or less dedicated for Kinect use.  The idea being that if we focus our efforts on getting tons of Kinect hacking tools in place on that box (once complete), then folks can hack and play with the Kinect without having to install all the tools from scratch on their laptop.&lt;br /&gt;
&lt;br /&gt;
[[Category:Pages with a Noisebridge Tiny URL]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=Kinect&amp;diff=43863</id>
		<title>Kinect</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=Kinect&amp;diff=43863"/>
		<updated>2014-08-12T00:52:17Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* Where it lives */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
Grey donated a Kinect to Noisebridge under the terms that it never be used with an Xbox. Eventually this device was incorporated into the &amp;quot;MC Hawking&amp;quot; robot-controlled wheelchair, which is now at sudo room.&lt;br /&gt;
&lt;br /&gt;
dmolnar donated two &amp;quot;Kinect for Windows v1&amp;quot; and one &amp;quot;Kinect for Windows V2&amp;quot; devices, with no restrictions. &lt;br /&gt;
&lt;br /&gt;
Let the 3D vision hackfest begin!&lt;br /&gt;
&lt;br /&gt;
= Hacking =&lt;br /&gt;
&lt;br /&gt;
== Kinect for Windows SDK == &lt;br /&gt;
&lt;br /&gt;
This is the &amp;quot;official&amp;quot; development kit. Version 1.8 works with the &amp;quot;V1&amp;quot; sensor and works with Windows 7, 8, and 8.1 . Version 2.0 is still in alpha, but you must use it to work with the &amp;quot;V2&amp;quot; sensor. Version 2 works only with Windows 8 and 8.1 . The V2 sensor also requires USB 3.0 with a &amp;quot;Renesas&amp;quot; chipset.  &lt;br /&gt;
&lt;br /&gt;
Both SDK versions will give you access to raw depth data, color RGB, skeleton tracking, audio localization, and voice commands. Both include code samples in C++, C#, and even a few in HTML/JS.&lt;br /&gt;
&lt;br /&gt;
Version 1.8, in addition, includes 3D scanning (under the name &amp;quot;Kinect Fusion&amp;quot;) and a face tracking library. The scanning samples output STL files. Download the SDK here&lt;br /&gt;
http://go.microsoft.com/fwlink/?LinkID=323588&lt;br /&gt;
and the code samples here&lt;br /&gt;
http://www.microsoft.com/en-us/download/details.aspx?id=40277&lt;br /&gt;
&lt;br /&gt;
Version 2 doesn&#039;t have the 3D scanning or face tracking in the current alpha release, but check back. Version 2 does come with the &amp;quot;Visual Gesture Builder&amp;quot; tool for making your own gesture recognizers. Download it here:&lt;br /&gt;
http://www.microsoft.com/en-us/download/details.aspx?id=43661&lt;br /&gt;
&lt;br /&gt;
Both versions need Visual Studio. You can get a free (as in beer) version of Visual Studio here. You will want the &amp;quot;Windows Desktop&amp;quot; version. &lt;br /&gt;
http://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx&lt;br /&gt;
&lt;br /&gt;
== Mobile Robotic Programming Toolkit (MRPT) ==&lt;br /&gt;
&lt;br /&gt;
Joachim was demoing some impressive stuff with the Kinect using MRPT running under Debian.  Running it in Ubuntu and Fedora seems well supported as well, however, running it on Mac OS X is &amp;quot;not yet working 100%&amp;quot;.  From what I saw on Tuesday, this is best way to play with the Kinect of those listed here.&lt;br /&gt;
&lt;br /&gt;
== OpenKinect ==&lt;br /&gt;
&lt;br /&gt;
This looks really easy on Ubuntu and other linux flavors.  Windows looks like a nightmare as usual but is supported.  Jared got it working for Mac OS X during a manual build but it was really unstable on his Leopard MacBookPro.  Glview is useful for confirming that you have the drivers for Kinect working but not much else.  Basically it just shows you the input to the IR camera and the Visual spectrum camera, but doesn&#039;t do anything fancy for showing you a 3D representation of the data like MRPT can.&lt;br /&gt;
&lt;br /&gt;
http://openkinect.org/wiki/Getting_Started&lt;br /&gt;
&lt;br /&gt;
== OpenNI ==&lt;br /&gt;
&lt;br /&gt;
For the longterm this seems very promising.  This is a open source project released by PrimeSense, whose technology was licensed to Microsoft for the Kinect.  They released this in December and it sounds like it will provide some higher level apis for processing Kinect&#039;s data.  Currently Linux and Windows are supported but Mac OS X is left out in the cold.&lt;br /&gt;
&lt;br /&gt;
https://github.com/OpenNI/OpenNI&lt;br /&gt;
&lt;br /&gt;
== Kinect 3D Viewer ==&lt;br /&gt;
&lt;br /&gt;
This there is allegedly a free app for Snow Leopard in the Mac App Store, but unconfirmed.  It seems to just be for viewing the data not providing an API.&lt;br /&gt;
&lt;br /&gt;
http://downloadsquad.switched.com/2011/01/18/kinect-3d-viewer-now-available-in-mac-app-store-but-dont-get-t/&lt;br /&gt;
&lt;br /&gt;
= Where they live =&lt;br /&gt;
&lt;br /&gt;
Two Kinect V1s are now plugged in to the public Dell Inspiron 1 computer. Libfreenect has been installed on the computer, but it doesn&#039;t yet see the Kinects properly. You can find the libfreenect source at /home/noisebridge/freenect/libfreenect !&lt;br /&gt;
&lt;br /&gt;
The Kinect V2 is in its box inside the desk holding the public Dell Inspiron 1 computer. &lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
Update -- MC Hawking now lives at Sudo Room&lt;br /&gt;
&lt;br /&gt;
The kinect is mounted on [[Noise-Bot|MC Hawking -- The Wheelchair Robot]], using hot-glue to hold it onto a piece of plywood.  The plywood is screwed to the frame of the LCD monitor which is part of the robot.&lt;br /&gt;
&lt;br /&gt;
For people wanting to use the kinect for things like 3D scanning of objects or pretty much anything else, they are encouraged to try to use it without removing it from the robot.  The robot has a linux machine for a brain and much open-source kinect software is installed, but if folks want to use the kinect on their own machine they can just unplug the kinect from the robot brain and plug it into their machine.  The robot can also be moved to wherever is convenient for these tasks.&lt;br /&gt;
&lt;br /&gt;
Leaving the kinect on the robot is a good way to keep it from disappearing.  If it needs to be removed for whatever reason, the screws can be taken out of the wood, but the wood piece should remain stuck to the kinect (indeed it may be very difficult to get it off without breaking it) -jake&lt;br /&gt;
&lt;br /&gt;
== Kinect Hacking Linux Box ==&lt;br /&gt;
&lt;br /&gt;
Andy was working on setting up a desktop/shuttle box in the space that can be more or less dedicated for Kinect use.  The idea being that if we focus our efforts on getting tons of Kinect hacking tools in place on that box (once complete), then folks can hack and play with the Kinect without having to install all the tools from scratch on their laptop.&lt;br /&gt;
&lt;br /&gt;
[[Category:Pages with a Noisebridge Tiny URL]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
	<entry>
		<id>https://wiki.extremist.software/index.php?title=Kinect&amp;diff=43862</id>
		<title>Kinect</title>
		<link rel="alternate" type="text/html" href="https://wiki.extremist.software/index.php?title=Kinect&amp;diff=43862"/>
		<updated>2014-08-12T00:51:55Z</updated>

		<summary type="html">&lt;p&gt;208.90.212.135: /* Where it lives */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Overview =&lt;br /&gt;
Grey donated a Kinect to Noisebridge under the terms that it never be used with an Xbox. Eventually this device was incorporated into the &amp;quot;MC Hawking&amp;quot; robot-controlled wheelchair, which is now at sudo room.&lt;br /&gt;
&lt;br /&gt;
dmolnar donated two &amp;quot;Kinect for Windows v1&amp;quot; and one &amp;quot;Kinect for Windows V2&amp;quot; devices, with no restrictions. &lt;br /&gt;
&lt;br /&gt;
Let the 3D vision hackfest begin!&lt;br /&gt;
&lt;br /&gt;
= Hacking =&lt;br /&gt;
&lt;br /&gt;
== Kinect for Windows SDK == &lt;br /&gt;
&lt;br /&gt;
This is the &amp;quot;official&amp;quot; development kit. Version 1.8 works with the &amp;quot;V1&amp;quot; sensor and works with Windows 7, 8, and 8.1 . Version 2.0 is still in alpha, but you must use it to work with the &amp;quot;V2&amp;quot; sensor. Version 2 works only with Windows 8 and 8.1 . The V2 sensor also requires USB 3.0 with a &amp;quot;Renesas&amp;quot; chipset.  &lt;br /&gt;
&lt;br /&gt;
Both SDK versions will give you access to raw depth data, color RGB, skeleton tracking, audio localization, and voice commands. Both include code samples in C++, C#, and even a few in HTML/JS.&lt;br /&gt;
&lt;br /&gt;
Version 1.8, in addition, includes 3D scanning (under the name &amp;quot;Kinect Fusion&amp;quot;) and a face tracking library. The scanning samples output STL files. Download the SDK here&lt;br /&gt;
http://go.microsoft.com/fwlink/?LinkID=323588&lt;br /&gt;
and the code samples here&lt;br /&gt;
http://www.microsoft.com/en-us/download/details.aspx?id=40277&lt;br /&gt;
&lt;br /&gt;
Version 2 doesn&#039;t have the 3D scanning or face tracking in the current alpha release, but check back. Version 2 does come with the &amp;quot;Visual Gesture Builder&amp;quot; tool for making your own gesture recognizers. Download it here:&lt;br /&gt;
http://www.microsoft.com/en-us/download/details.aspx?id=43661&lt;br /&gt;
&lt;br /&gt;
Both versions need Visual Studio. You can get a free (as in beer) version of Visual Studio here. You will want the &amp;quot;Windows Desktop&amp;quot; version. &lt;br /&gt;
http://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx&lt;br /&gt;
&lt;br /&gt;
== Mobile Robotic Programming Toolkit (MRPT) ==&lt;br /&gt;
&lt;br /&gt;
Joachim was demoing some impressive stuff with the Kinect using MRPT running under Debian.  Running it in Ubuntu and Fedora seems well supported as well, however, running it on Mac OS X is &amp;quot;not yet working 100%&amp;quot;.  From what I saw on Tuesday, this is best way to play with the Kinect of those listed here.&lt;br /&gt;
&lt;br /&gt;
== OpenKinect ==&lt;br /&gt;
&lt;br /&gt;
This looks really easy on Ubuntu and other linux flavors.  Windows looks like a nightmare as usual but is supported.  Jared got it working for Mac OS X during a manual build but it was really unstable on his Leopard MacBookPro.  Glview is useful for confirming that you have the drivers for Kinect working but not much else.  Basically it just shows you the input to the IR camera and the Visual spectrum camera, but doesn&#039;t do anything fancy for showing you a 3D representation of the data like MRPT can.&lt;br /&gt;
&lt;br /&gt;
http://openkinect.org/wiki/Getting_Started&lt;br /&gt;
&lt;br /&gt;
== OpenNI ==&lt;br /&gt;
&lt;br /&gt;
For the longterm this seems very promising.  This is a open source project released by PrimeSense, whose technology was licensed to Microsoft for the Kinect.  They released this in December and it sounds like it will provide some higher level apis for processing Kinect&#039;s data.  Currently Linux and Windows are supported but Mac OS X is left out in the cold.&lt;br /&gt;
&lt;br /&gt;
https://github.com/OpenNI/OpenNI&lt;br /&gt;
&lt;br /&gt;
== Kinect 3D Viewer ==&lt;br /&gt;
&lt;br /&gt;
This there is allegedly a free app for Snow Leopard in the Mac App Store, but unconfirmed.  It seems to just be for viewing the data not providing an API.&lt;br /&gt;
&lt;br /&gt;
http://downloadsquad.switched.com/2011/01/18/kinect-3d-viewer-now-available-in-mac-app-store-but-dont-get-t/&lt;br /&gt;
&lt;br /&gt;
= Where it lives =&lt;br /&gt;
&lt;br /&gt;
Two Kinect V1s are now plugged in to the public Dell Inspiron 1 computer. Libfreenect has been installed on the computer, but it doesn&#039;t yet see the Kinects properly. You can find the libfreenect source at /home/noisebridge/freenect/libfreenect !&lt;br /&gt;
&lt;br /&gt;
The Kinect V2 is in its box inside the desk holding the public Dell Inspiron 1 computer. &lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
&lt;br /&gt;
Update -- MC Hawking now lives at Sudo Room&lt;br /&gt;
&lt;br /&gt;
The kinect is mounted on [[Noise-Bot|MC Hawking -- The Wheelchair Robot]], using hot-glue to hold it onto a piece of plywood.  The plywood is screwed to the frame of the LCD monitor which is part of the robot.&lt;br /&gt;
&lt;br /&gt;
For people wanting to use the kinect for things like 3D scanning of objects or pretty much anything else, they are encouraged to try to use it without removing it from the robot.  The robot has a linux machine for a brain and much open-source kinect software is installed, but if folks want to use the kinect on their own machine they can just unplug the kinect from the robot brain and plug it into their machine.  The robot can also be moved to wherever is convenient for these tasks.&lt;br /&gt;
&lt;br /&gt;
Leaving the kinect on the robot is a good way to keep it from disappearing.  If it needs to be removed for whatever reason, the screws can be taken out of the wood, but the wood piece should remain stuck to the kinect (indeed it may be very difficult to get it off without breaking it) -jake&lt;br /&gt;
&lt;br /&gt;
== Kinect Hacking Linux Box ==&lt;br /&gt;
&lt;br /&gt;
Andy was working on setting up a desktop/shuttle box in the space that can be more or less dedicated for Kinect use.  The idea being that if we focus our efforts on getting tons of Kinect hacking tools in place on that box (once complete), then folks can hack and play with the Kinect without having to install all the tools from scratch on their laptop.&lt;br /&gt;
&lt;br /&gt;
[[Category:Pages with a Noisebridge Tiny URL]]&lt;/div&gt;</summary>
		<author><name>208.90.212.135</name></author>
	</entry>
</feed>