Matt Daubneys Blog

Author Archive

Ubuntu UK Support

by Matt on Aug.07, 2010, under Uncategorized, ubuntu

OK Ladies and Gents, having been away for a little bit for various reasons, it’s time to get the support ball rolling. First things First, a date for your diaries.

On the 26th of August I’m organising a meeting to formally create the group from those interested parties and to set out some priorities. Initially we need to focus on some given areas where people ask for support. Once we have one or two of these running we can then branch out into other areas and help improve things where necessary.

I’ll stick a formal agenda on the UK Wiki, but if people want to start thinking about the following things it would be appreciated.

  • How to report (issues/progress/problems fixed) for statistical purposes
  • Initial Targets (UK Section of the Forums/IRC/Stack Exchange/Mailing Lists?)
  • Blogging problems and resolutions
  • Training
    • How
    • Where
    • What to train on (problem solving techniques/diagnosis howto/?)
    • What materials do the training team have for this
    • Mentoring?
  • How to put people in contact with the correct person to solve their issue

This is not a comprehensive list of the issues we’ll need to cover, but gives a good starting point to mull over. If you want to do a mini implimentation of something yourself, have a go and let us know how it goes at the meeting.

If people want to get hold of me individually to go through any issues, you can get me in jabber (daubers at REMOVE THIS jabber dot org) or on irc.freenode.net in #ubuntu-uk (nick of daubers) or by email on (matt at REMOVE THIS TOO daubers dot co dot uk)

Leave a Comment :, , more...

Community Roulette

by Matt on Jul.17, 2010, under ubuntu

Alan Bell of The Open Learning Centre has set up an Ubuntu-UK Community Member Profile Roulette . This stemmed from the Ubuntu Irish Teams Profile of the Day, which is part of a masters project by a Dublin student to get people within the Irish community to get to know each other better. Both of these projects are fantastic ideas, and will hopefully help get more people to create Lanchpad profiles and wiki pages!

Oh, also, todays entry of the profile roulette was me!

Leave a Comment :, , , , , , , more...

What Drives You to Support Others

by Matt on May.25, 2010, under ubuntu

If anyone doesn’t already know, I’m on a push to see if community support can be improved. When I gave a talk at Oggcamp on this, someone suggested that the solution might become more apparent if I could understand what drove people to help support others.

I’ve sat and thought about this for a couple of weeks now, and as I sit here with a mug of tea mulling this over a bit more I think this is actually a very hard question to answer. I think it boils down to the following.

I help other people because I dislike feeling useless, and the people I look up to in the community helped me feel less useless by providing that support when I was learning.

I have a terrible habit of projecting my own feelings onto others. If I feel useless about something, then without thinking, I believe that other people would feel the same way. Due to the way I felt in that position, and how I that was solved. It seems fair to me that I do the same for others as others had done for me.

Now, that is my view, what I really need to know is why other people support new users. What is it that drives you and what could be done to help encourage people to improve the way in which they support others.

Please, please let me know. The more data I can collect, the better the solution I hope I can present back to the community to help improve things.

Leave a Comment :, , more...

Improving Community Support

by Matt on Apr.10, 2010, under ubuntu

For a little while now I’ve noticed that the community based support for Ubuntu is a little patchy. Admittedly, this is largely in reference to IRC, but I think there are some simple things that could be done to improve this situation. In consultation with the Ubuntu-UK Loco and a few other groups, an etherpad session was started and some discussion has gone on around that. What has come from this exercise is a general set of guidelines for supporting new users. At the last Loco meeting I was actioned to create this into a wiki page to see if some more discussion can be formed, and then a vote will be taken at the next meeting to see if the Loco should adopt them.

Now, to me these seem fairly sensible guidelines, but what would be better is if people took just a few minutes to read over them and comment on whether or not they think they are feasible. The more eyeballs that see this document, the better it can be and the more consistent support we can offer new users. Having something like this would also help set users expectations of community support, which should help us to get users expecting an instant solution from volunteers.

So, please just spend a few minutes looking these over and let me know what you think.

Leave a Comment :, , , more...

Acer Aspire Revo R3600 and Mythbuntu

by Matt on Feb.27, 2010, under linux, ubuntu

Having had MythTV running on a monitor for a little while, complete with it’s scheduling fantasticness, I finally caved to getting a machine to play it out to the big TV. An obvious candidate for this was the, very affordable, Acer Aspire Revo.

The spec of the machine itself is not that impressive when compared to modern desktops, a 1.6GHz single core Intel Atom, a lonely GB of RAM, a 1Gb LAN connection, an atheros 802.11n wireless chipset and no real expansion capabilities. The saving grace of all this is he Nvidia ION chipset inside the box. Using a media player that can utilise libvdpau this means that using the onboard hdmi port it can play HD video quite happily at 1080p \o/

The machine I purchased supposedly came with Linux pre-installed, but when I first switched it on all it did was through a screen full of “99″‘s . This didn’t bother me overmuch as I’d already intended to stick Mythbuntu on it. Sticking Mythbuntu on a bootable USB stick and then installing it took about an hour in total using the fast connection in my office. Once installed, I plugged it into my TV at home, booted it up and …. nothing. It just didn’t appear on the TV. A little reading around the interwebs and it appears that the HDMI connection is not discovered unless the TV is switched on before the machine is booted. So switch on the telle, stick it on the correct channel, reboot and it just works!

After connecting it to the wireless network and letting the mythtv frontend find the already running backend. Turns out the onboard wireless doesn’t play nice with my existing router. While playing back SD stuff was fine, there just wasn’t the bandwidth stable enough to stream HD stuff across the network. A little research and a touch of thought later, I had my hands on 2 Devolo 200Mbps ethernet over powerline adapters. These have allowed me to watch HD content I can get from the BBC iPlayer on the big TV!

How cool is that \o/

1 Comment :, , , , , , more...

Arduino and Easy Radios

by Matt on Feb.04, 2010, under EasyRadio, arduino, programming, ubuntu

A few days ago I received a pair of Easy Radios to help with a project I’m working on. Since I’ve never used these before (having only got my first arduino a couple of weeks ago) I had a dig on the net for information on how to use them. Since this information was quite sparse, I thought I’d put up my experimental rig to show it working. This setup requires 2 arduinos, an easy radio transmitter and an easy radio receiver.  First, the transmitter layout.

Transmitter Layout

Transmitter Layout

Now the receiver layout.

Receiver Layout

Receiver Layout

and finally the code.

#reciever code

void setup() {
    Serial.begin(19200);
}
void loop() {
    if (Serial.available()){
        Serial.print(Serial.read(), BYTE);
    }
}
#transmitter code
void setup() {
    Serial.begin(19200);
}

void loop() {
    Serial.write("Hello\n");
    delay(1000);
}

This should result in the receiver outputting “Hello” over and over across the USB serial in the arduino environments serial monitor. If you have any problems, feel free to give me a shout! Oh, make sure you unplug the easy radio receiver from the arduino before flashing it, it’ll throw nasty errors otherwise. (Simply unplug digital 0 pin on the arduino board)

Leave a Comment :, , , , more...

Chillis!

by Matt on Jan.31, 2010, under Fun, learning, life, ubuntu

Having seen other peoples success of growing chillis from seed (specifically theopensourcerer) I thought this year I’d have a go. So in what could possibly be said to be a familiar style…..

Packets of Chilli Seeds

Packets of Chilli Seeds

I’m only attempting three types of chillis this year, cayenne long hot, navaho and scotch bonnet. In the interest of science I’m trying theopensourcers method of germinating the seeds, and tomorrow evening will be attempting some in plain pots with compost in a heated propagator. This may mean I end up with an absolutley enormous glut of chillis, but I’ll burn that bridge when I come to it.

Here are the seeds ready for the airing cupboard.

Seeds in trays

Seeds Ready for the airing cupboard

I’m also in the process of building an automated watering system for these once they’re in the greenhouse using arduinos, and hopefully connecting to a server in the house using an easy radio link to report the conditions in the greenhouse :) Many thanks to theopensourcerer for the information he’s posted on his blog.

Leave a Comment :, , , , more...

Packard Bell Easynote TJ65

by Matt on Jan.16, 2010, under linux, ubuntu

A couple of weeks ago now I bought myself a new laptop. My poor Dell had been battered too much and was finally giving in to it’s poor treatment. Dead pixels, missing keys, noisy fans, it just had to be put out of it’s misery. So now I have a shiny new Packard Bell.

I’d actually been in the market for a Thinkpad, based on their reputation of being practically indestructible. I soon chaged my mind after being promised deliveries that never arrived by a few online retailers. I ended up going to PC World, pretty much ignoring the sales staff and wandering around with my Pre checking compatibility and pricing on the interwebs. I’ve been a bit skeptical of the build quality of Packard Bell for a little while, but this seems quite a solid machine. Time will tell whether it remains that way or so I must admit, but one can hope!

Spec wise, the machine is a 2.2GHz Core2Duo (T6600), it comes with 4GB of RAM, a 320GB HDD and an nvidia Geforce G210M card with 512MB of dedicated graphics memory. It’s got a broadcom wireless chipset (b/g/n) and a gigabit ethernet port. All of this works out of the box with Ubuntu bar one. The driver for the NVIDIA card has a nasty bug. It doesn’t seem to detect the EDID information correctly for the monitor, so some hackery is required in the xorg.conf to prevent you getting 6 miniscreens instead of 1, or for getting a horribly fuzzy screen. Nvidia has recognised this bug, so hopefully it’ll get fixed soon. The open source nv driver doesn’t have this bug, but you lose a lot of the shiny 3d effects and so on, which is a bit of a downside.

The webcam in he lid also works out of the box.

All in all, it seems quite an able machine, but time will tell if I made the right decision or not!

2 Comments :, , , , , more...

New Years Whatsits

by Matt on Dec.30, 2009, under life, linux, ubuntu

Friday marks the beggining of a new year under the gregorian calender, so it’s a good time to reflect on various things from the last year, and suggest some changes for the next.

Last year was, for 6 months at least, a rubbish year. With Uni going rapidly down hill, being diagnosed with depression, and everything generally going wrong, I’d rather forget most of it. The last few months have been significantly better. Acquired myself a CCNA, and a job doing things that I enjoy.

So what needs to change next year? Well, in no particular order:

  1. One of the downsides of having a job that is largely programming is that I don’t get that much exercise any more which has led to me putting on some weight. Ideally I’d like to turn this around, but would initially be happy for it to be stemmed. Hopefully a bit of Wii fit every other night will help this while it’s dark in the evenings, and as it lightens up I’ll try and start doing some walking or some such.
  2. Start putting away more moneys, now my debts have gone (hooray) I can start to put away some pennies for the future.
  3. I intend to increase my participation with Ubuntu community in the coming year as well. Hopefully culminating in gaining Ubuntu membership. In order to achieve this, one evening a week will be dedicated to contributing to Ubuntu, be it through support, bug squashing, testing or whatever. This will probably be aimed at Wednesday evenings, but will shift around a little as real life things will undoubtedly get in the way.

I think 3 is enough to be getting on with. Hopefully this year will be better than the last :)

Leave a Comment :, , , more...

On Life

by Matt on Dec.07, 2009, under FOSS, learning, life, linux, programming, python, ubuntu

For the past few weeks life has been busy, and when I say busy I mean hectic beyond belief. In that time I’ve had a few OSS revelations I’d like to share.

As an experiment at work I thought I’d try using eclipse as an IDE instead of my normal vim+terminator job. Scary as it is, I find myself actually quite liking eclipse. It may be that my work machine has 4GB of RAM, and so copes better than the machines I’ve used in the past, or it may be that I’m starting to lose my qualms about what tools I use to do a job, as long as a job gets done. The PHP and Python tools inside eclipse have made my life a lot easier, and I really do find little things, like it reading out the docstring I’d put in a function when I hover over that function when it’s called, useful. Has eclipse evolved to where it’s useable or has affordable technology caught up with eclipse? A bit of a quandry for me that one.

The other small revelation I’ve had recently is that KDE4 is now inherently useable, and quite shiny to boot. when I’ve tried it in the past I quickly got fed up with things that didn’t quite fit or where missing completely, but now time has passed, and like KDE4 I believe I’ve changed a bit, and actually quite like it. I won’t be using it at home for a while, as the 7″ screen on this tiny little netbook certainly won’t make it very use-able compared to the  20″ odd monitor I have at work. The one big thing annoying me with it at the moment though is that konquerer doesn’t seem to fit with the default theme. Niggly annoyance I know, but surely that should be a papercut?

The last revelation I’ve had, though it’s not really a revelation, is a pang of guilt. I’m inherently a consumer in the whole Linux ecosphere. I consume by far more than I give back, and at the moment I simply don’t have the time to give back as much as I’d like. So this is my decree, and a proclamation that as of next year (with certain exceptions) I intend to deem one night a week free software night. On that night I will help to squish bugs, I’ll sit on IRC and be patient with people trying to help them through problems, I shall try and get involved in the various mailing list debates I sit and read, and I shall attempt to stop consuming quite so much and start giving back as much as I can.

In order to do this I will need a little help. The whole software workflow thing is a bit of a mystery to me. I’ve had little formal training in such things and as such tend to wing it more than I’d like. Can people point me in the direction of some good literature to help mend this? I’m quite willing to get my hands dirty if people are willing to be patient with me as I learn how the OSS developer crowd works so I can learn and adjust. In a way I’m hoping that this will flow back and help me at work as much as it’ll help me contribute back to the community in general.

If anyone also has a project they might want a hand with one evening a week from the of the month, feel free to drop me a line by your favourite communications method :)

1 Comment :, , , , , , , more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Visit our friends!

A few highly recommended friends...