All posts by Zachary

Landscape Decision [Informed] Making Wizard/Quiz

Being a recent home owner, I thought it would be nice to have the ability to find the perfect landscaping based on certain criteria. I did a quick search on the web and couldn’t find one that worked as nicely as the ones I had found for dog breeds (e.g. SelectorSmart.com’s Dog).

SelectSmart.com does have a lawn quiz that can be helpful when choosing a lawn type, but not for landscaping in general.

Now I just need to find some metadata online regarding plant types and we might be all set.

If you come across a tool that allows you to choose various criteria (shaded, flowering, native, etc.), please comment!

Meaningful Feedback for Students, Teachers, Administrators, and Parents

Bill gates

A friend of mine, Brent Brewington, sent a link to Bill Gates’ latest talk, Teachers need real feedback, at TED. It was nice to hear some of the same ideas we discuss in our own department, being articulated in a similar fashion.

The basic thesis of Gates’ talk was that teachers can only improve themselves via feedback. Gates suggests student surveys and video recording analysis (gathered and analyzed by the teacher) as two methods for gathering this data. Once areas that can be improved are identified, a to-be-created network could be used by the teacher to watch other teachers who have mastered a particular lesson or concept to continue the improvement process.

I agree that self-reflection is perhaps the most powerful tool to improve oneself. The questions I anticipate coming from teachers regarding these two systems are:

  • Will the student surveys be used in any formal evaluation process and therefore affecting rating?
  • Who will have access to the student survey information?
  • Will anyone besides the teacher have access to the recorded video content?
  • How do we change the current school culture to include feedback as part of the daily routine?

A question of my own: How do we expand these types of feedback systems to the students, administrators, and parents? All parties involved in the educational process would be better served by meaningful feedback and periodic moments self-reflection. Maybe would could expand the already State mandated moment of silence to include such personal insight?

I know we have proposed using a student survey system similar to those found in universities, but now we have a reference of Bill Gates supporting our idea.  The next steps for us will be to try and identify some teachers who would be willing to participate in a pilot of both these types systems.

Looping Timer Bash Script

Here is a simple looping timer bash script that plays a nice singing bowl sound using mplayer.  You run the script as follows:

timer.sh TIME

Where time is specified according to the sleep manual. For example, a 5 minute timer would be:

timer.sh 5m

function timer(){
#!/bin/bash
while sleep $1; do
 mplayer -af volume=20:0 /home/user/2166__suburban-grilla__bowl-struck.wav
done
timer
}

timer $1

Make sure you update the script to the location of the singing bowl, or whatever else sound you want to hear at each interval.

It currently does not display the remaining time. For a future release.