The Waikato Times just came and went, an interview should be posted in a paper soonish. In the meantime, heres a picture (taken by Beverley) of the photographer taking a picture of us. Awesome eh!

The Waikato Times just came and went, an interview should be posted in a paper soonish. In the meantime, heres a picture (taken by Beverley) of the photographer taking a picture of us. Awesome eh!

The Dos and Don’ts of international skype meetings.
Do:
Don’t
Right. Back to rendering.
Apart from a minor spelling mistake of our team name, an interview we did for Geekzone is now live here. Woohoo, first interview up!
So, any feedback from you guys who just came here via the link would be awesome! If not, I’ll try to get more regular posts going.
Thats right, thanks to a good 3 hour effort, comments now work! You can now tell me directly how much dribble and crap my site is! All I have left to do now is a photo gallery and admin page (I’m currently doing most tasks via phpMyAdmin), and I can finally call this… ‘thing’ decent.
Now, if only those bloody people in town would stop making so much noise, I could actually get to sleep…
Jed’s note: I forced the team to start coming up with posts. First up is Paul, the hardware engineer of the group, and his tips
While working on the hardware/firmware of Gary’s e.point, I came across a few problems (Mostly in the early hours of the morning)
Oh, BTW, I learnt how to make XHTML-compliant Mootools Tooltip enabled image maps a post back. Its actually simpler than I thought;
<img src="http://" mce_src="http://" usemap="#mapname" alt="My Image" /> <map name="mapname" id="mapname"><area alt="" title="Your text here" class="imgtip" shape="rect" coords="0,0,100,100" /></map>
(You can browse the page source if you are still stuck)
Here are two quick things before I go back to working through the night. First up is a picture of the team that I sneakily took of them busily working. I should say for clarification, Beverley is on an exchange in Canada (until 2 days before the NZ finals!!!), and joins in on meetings via webcam. My laptop often fills this purpose (on the days that I can remember to bring the power pack), and I have great fun spinning and swiveling her around the room.

Second, heres a quick video showing the operation of our device. Paul increased reliability over power-line today, and to demonstrate he scripted toggling it quickly. Look at it go!
So, Ryan wants us to write a blog based on our experiences. Check back often (yes, there is a RSS feed) for updates!
So, we’re all busy working in the lab, re-writing a lot of code to bring it up to scratch. One of my major focuses is security testing, as they’ll undoubtedly be a few questions. Thankfully, we covered a lot of ground with the security of last year’s project, and apart from a few things that need re-factoring (like my nice array of structs…. testing shows that isn’t the least processor intensive) we should be alright.
By the way, a big thanks to competing teams from Victoria and AUT for helping us test the security on our project wiki! Its good to know our trade secrets are safe!
So, Team Waikato is going to the Imagine Cup NZ finals in Auckland!
Having 4 teams instead of 3 will make it interesting though, more of a challenge.
Once I get these damned tests out of the way… and practice the presentation all over again…. and finish these assignments…. It’ll be awesome!
4th post of the day… this is what happens when you’re anxiously waiting for news
So, when writing code for the Imagine Cup entry, I hit a brick wall trying to serialise an ArrayList of Structs over a Web Service. Here is the way that I found works best:
using System.Xml.Serialization;
public struct Device
{
public int id;
public string fname, room, type;
public bool is_controllable, status;
}
[WebMethod]
[XmlInclude(typeof(Device))]
public ArrayList GetDevices()
{
ArrayList devices = new ArrayList();
//Logic here
return devices;
}