Is webstreaming public meetings worth the effort?
In 2007, the Port of Tacoma discussed the idea of televising and webstreaming its public Commission meetings. I had the staff lead in researching the issue, and developing options and recommendations.
In December 2007, the Port Commission approved the project. The Port started webstreaming its meetings on March 20, 2008.
This presentation highlights some of the issues, and lessons learned.
Is webstreaming public meetings worth the effort?
In 2007, the Port of Tacoma discussed the idea of televising and webstreaming its public Commission meetings. I had the staff lead in researching the issue, and developing options and recommendations.
In December 2007, the Port Commission approved the project. The Port started webstreaming its meetings on March 20, 2008.
This presentation highlights some of the issues, and lessons learned.
Giving feedback in instruction may be affected by the constraints of cognitive load as well as presentation of instruction is. We have begun a research project to explore this.
Choosing Collaborative Systems Ingram Parkeraingram
油
This document discusses online collaborative systems and their use in higher education. It explores how different technologies can facilitate or hinder collaboration in online courses. The document analyzes data from a study comparing the collaborative technologies WebCT and Groove. The findings show that Groove users were more likely to read discussion boards, post to boards, and chat compared to WebCT users. However, both groups reported similar satisfaction levels with the tools. The document concludes by discussing considerations for choosing collaborative systems and the potential effects of new technologies on online collaboration.
The document lists the 5 coolest Muppets of all time, with Count VonCount ranked as the coolest for his hilarious laugh counting habit. Beaker comes in at #5 as the hapless lab assistant to Dr. Bunsen Honeydew. Skekis are ranked #4 as not all Muppets are cute. Sir Didymus, whose dog Max rides another dog, is #3. Pilot, the grumpy pilot Muppet who threatens to pull the plane over if the kids misbehave, is #2.
This document discusses using Python and SQLite3 to interact with a SQLite database. It shows how to connect to a database using sqlite3.connect(), get a cursor object using conn.cursor(), execute SQL statements like CREATE TABLE and INSERT using the cursor's execute method, and retrieve data using fetch methods. The goal is to demonstrate basic SQLite database operations in Python like creating tables, inserting data, and querying data.
This document discusses regular expressions (re) in Python. It provides examples of common regex patterns like \d, \s, ., *, +, ?, etc. It also demonstrates how to compile patterns, perform matches, searches, and find all occurrences using functions like re.compile(), re.match(), re.search(), and re.findall(). The document ends by asking if there are any questions.
The document discusses various methods for dictionaries in Python including:
- dict() to create an empty dictionary or initialize with key-value pairs
- clear() to remove all items from a dictionary
- copy() to make a shallow copy of a dictionary
- get() to return a value for a given key or a default if the key does not exist
- has_key() to check if a dictionary contains a given key
- items() to return a list of all key-value pairs as tuples
- iteritems() to iterate over key-value pairs
This document discusses various string methods in Python including capitalize(), lower(), upper(), find(), split(), join(), lstrip(), rstrip(), and strip(). It provides examples of how to use each method on a string and describes what each method does. For example, capitalize() converts the first character to upper case, find() returns the index of the first matched character, and split() returns a list of substrings split on a specified separator.
This document discusses the File class in Java and methods for working with files and directories. It describes the File class's constructors and methods for getting file attributes, checking permissions, renaming, deleting and creating files/directories. It also introduces the FileFilter and FilenameFilter interfaces for filtering files, and provides examples of their use. Finally, it discusses working with dates using the Date and GregorianCalendar classes.
This document discusses Java classes for working with archives and compression. It describes GZIPInputStream and GZIPOutputStream for reading and writing gzip-compressed streams. ZipInputStream, ZipOutputStream, and ZipEntry are covered for reading, writing, and working with entries in zip archives. Examples are provided for compressing/decompressing files using gzip and creating/reading zip archives.
The document discusses input/output streams in Java. It describes common stream classes like FileInputStream, FileOutputStream, BufferedInputStream, BufferedOutputStream, InputStreamReader, OutputStreamWriter, FileReader, FileWriter, BufferedReader and BufferedWriter. It provides examples of reading/writing data to files using methods like read(), write(), readLine() on these classes.