Good writeup from the Buccaneer on inmate education.
http://peninsulabuccaneer.com/campus-life/article.exm/2013-06-06_learning_to_leave_prison_behind
Written By: Ray Pulsipher
Good writeup from the Buccaneer on inmate education.
http://peninsulabuccaneer.com/campus-life/article.exm/2013-06-06_learning_to_leave_prison_behind
Written By: Ray Pulsipher
This one gets lots of links. Mr. Walsh at the award ceremony. A national award is kind of a big deal around here.
The Award Presentation – http://www.whitehouse.gov/photos-and-video/video/2013/11/21/president-obama-speaks-connected-champions-change
Bio – http://www.whitehouse.gov/champions/connected/brian-walsh
Peninsula Daily News Writeup – http://www.peninsuladailynews.com/article/20131122/NEWS/311229979/peninsula-colleges-instructor-for-prisons-hailed-as-champion-of
Peninsula College Writeup – http://www.pencol.edu/news/white-house-honors-brian-walsh-peninsula-college
Department of Corrections Writeup – http://www.doc.wa.gov/news/pressreleases/2013/112113walshhonoredatwhitehouse.asp
Washington State Board for Community and Technical Colleges Writeup – http://sbctc.edu/general/documents/corrections-award.pdf
Q13 Fox – http://q13fox.com/2013/11/22/port-angeles-educator-named-a-champion-of-change/
Written By: Ray Pulsipher
Mr. Walsh participated in a webinar where he presented education models in use a CBCC and OCC.
http://www.ed.gov/edblogs/ovae/2013/05/08/webinar-follow-up-correctional-ed-technology-resources/
Link to the resource file provided by Mr. Walsh.
http://www.pencol.edu/sites/default/files/Useful_Tech_Resources_Corrections_Education.pdf
Written By: Ray Pulsipher
Slides from our presentation at the Serious Games Summit Sept. 2013
Games Behind Bars: Serious Play for those Doing Serious Time
Nearly two million people are incarcerated each year, many with severe educational and emotional needs. Learn how Peninsula College in Port Angeles, Wash. is using game design and development to prepare offenders at Clallam Bay Corrections Center for life after prison. Discover the challenges of providing high-tech education in a non-internet connected world and how the instructors have overcome it. Find out how you can be involved in serving this unique population.
Written By: Ray Pulsipher
Another good article highlighting the many good programs offered at CBCC and OCC.
Beyond License Plates: New Tech Skills for Prisoners
Written By: Ray Pulsipher
Inspiring confidence at Clallam Bay Corrections Center using KA Lite
Written By: Ray Pulsipher
KALite is a great tool if you want to bring the resources available to an offline environment.
We run a virtual server with KALite. We point a DNS name at it an everything, but we don’t like that it runs on port 8008 rather than port 80. Here is a recipe to make it work on a Debian 7 server without having to change configuration of the KALite script.
Problem: You can change KALite to run on port 80, but you have to run it as the root user, which it doesn’t want to do.
Solution: The firewall can automatically forward all traffic from port 80 to port 8008. KALite doesn’t know anything has changed.
Step 1 – Create a file on the debian server:
nano /etc/network/if-pre-up.d/iptables
Step 2 – In that file paste this code:
#!/bin/sh #Redirect all traffic from port 80 to port 8008 # (khan port) iptables -A PREROUTING -t nat -p tcp --dport 80 -j REDIRECT --to-port 8008
NOTE: The iptables command wraps here and it should be all one line when you paste it.
Step 3 – Chown file so it is owned by root:
chown root:root /etc/network/if-pre-up.d/iptables
Step 4 – Chmod file so it can be run:
chmod +x /etc/network/if-pre-up.d/iptables
Step 5 – Reboot:
Assuming you have KALite starting on reboot, you should be able to access it without the :8008 at the end now.
Written By: Ray Pulsipher
A nice writeup from last year when we were just getting things rolling. Students have really come a long way since then.
Convicts to coders: Maximum security prison teaches inmates computer science
Written By: Ray Pulsipher