Get Your Demo On…In Guelph

Brydon

I work on 20Skaters, ThreeFortyNine, Ontario Startup Train and a few others. My vanity site is brydon.me.

One week from today is our 24th rendering of DemoCampGuelph. It’s cool that this event is old enough to drink but we’re creeping up on 30 now. I’m not sure how I feel about that. If you haven’t been, here are a few key points about the event….

534872012_e8ccac2459_zFree to Attend

It’s free and you do NOT have to demo to attend. Ultimately this is a chance for all of us in the Guelph, and surrounding, tech scene to get together, meet, share a pint and maybe even work together.

Demo!

Having said that, you really should apply to demo! You do not have to demo something that you built, it can simply be something that you think the crowd needs to know about.

Stay for music…

Live music is a big part of Guelph. We do our best to have a local musician play some live music after we wrap up. If you have some friends who are not in tech, have them stop by just for the tunes! We’re very luck to have Nathan Coles playing for us next week.

The Rewards of Failure

Brydon

I work on 20Skaters, ThreeFortyNine, Ontario Startup Train and a few others. My vanity site is brydon.me.

Failure. It seems we talk about it more than success in the startup world. Mark Evans suggested that in “Canada, unfortunately, failure is a four-letter word”. Our fear of failing here prevents us from reaching, from leaping, from succeeding.

Some other guy suggests that safety nets are for failing. The idea that allowing yourself the space for failure becomes a self fulfilling prophecy.

So which is it? We’re too skeered of failing or we’re too prepared to fail?

3564244382_cb57a92511_mHere’s the rub. Until you accept that failure is a possibility, you’ll get nothing started but until you decide that failure is no longer an option, you’ll never succeed.

Step 1: Accept that failure is a likely and very real possibility. Focus on squeezing every last drip of learning out of every misstep.

Step 2: Decide that failure is no longer an option.

Another rub. There are very real rewards to failing that are attractive and appealing. Yes, rewards. Their appeal is strong, Dorthea Brande calls it the Will to Fail. For starters, having tried and failed allows to spend the rest of your days saying you tried…

“I had that idea”…..”Ya I had a startup but the timing wasn’t quite right”…..”I took a shot at it but I had the wrong cofounder”

Trying and failing keeps you from having to see what your idea looks like when executed on. Executing on a idea is ugly. It’s no longer a pretty, puffy dream with dollar signs, friendly customers and investors. It’s a real business that you had to white knuckle into submission. Chances are it was not pretty and it changed you as a person, not always in a good way. The difference between the finished work and that idea you had is often massive. Not having to ever see that difference is appealing. Leave me to my dreams please!

There are other rewards to failing, the point is that failure isn’t necessarily this ugly endpoint that you naturally navigate away from. It’s important that you consider what’s appealing to you in failing and what may actually attract you to it. You will never succeed until you choose that failure is impossible. Yes, it often is just that simple.

Red, Green, Refactor

Eric

I work at Boltmade and 20Skaters. I mostly write Ruby, HTML, CSS, and JavaScript. I hate timezones. Find me on Twitter: @eroberts

red-green-refactor

Ever since DHH’s keynote at Railsconf 2014 and his subsequent blog post TDD is dead. Long live testing., the development world (or at least the Ruby community) has been abuzz with thoughts on Test Driven Development (TDD). Uncle Bob, as well as a number of other influential members of the community, have jumped in to give their thoughts on the topic. I’ve listed some of these other posts at the bottom for further reading. I figured I may as well jump on the bandwagon myself, because hey, bandwagons are fun right?

One thing I’ve noticed about all of these posts, forum discussions, and tweets, is that there is a lot of focus on the speed of testing and the importance of decoupling. I must admit to being confused by this focus. TDD, as it was explained to me, is pretty simple:

  1. Write a failing test
  2. Write some code that passes the test
  3. Refactor

Red, green, refactor. Notice how it doesn’t say anything about speed? Or whether the tests end up hitting the database? It doesn’t talk about loading Rails in order to run your tests, or the difference between stubs, fakes, and mocks. It just says three simple things: write a test for some new functionality, write some code to pass that test, and then refactor that code.

While many discussions have revolved around speed, DHH seems to also not agree with the test-first approach in general, because in Test induced design damage he criticizes BDD for being such an approach:

At this point BDD proponents might well argue that, yes, testing units is not what we should be doing. We should be going outside-in. But as long as that’s also done under the test-first regime, I don’t think it generally help matters much. It still leads down a road of excessive mocking and artificial boundary installations.

I don’t agree that the simple act of testing first needs to lead to excessive mocking. By itself, test-first says nothing about how I write my test, just when I write my test.

The point of testing first is to focus on the task at hand. What functionality am I implementing? Perhaps more importantly, what am I not implementing? Once I’ve figured out what I’m trying to do, I get there the quickest way I know how, and finally, refactor that code to something I’m happy with. It’s not unlike writing. Create an outline, write your first draft, and then polish it until you’re happy with it.

So where did all this preoccupation with speed and decoupling come from? Nothing in the steps I’ve talked about so far says whether 4.5 minutes for your test suite is too long or if times over one second are too slow.

However, Wikipedia does have a fuller outline of the steps than what I’ve presented in theirTest-driven development article. Let’s take a look (emphasis mine):

  1. Add a test
  2. Run all tests and see if the new one fails
  3. Write some code
  4. Run all tests
  5. Refactor code

If you want to run all your tests every time you add a new one, you want them to be fast, otherwise they will just slow you down. But the fixation on what is the right amount of time is damaging the discussion. If DHH is fine with waiting 4.5 minutes for his test suite to run, who cares? I think it’s pretty awesome that he has thousands of assertions; most projects I see don’t have anything close to that.

DHH also makes a point in his post Slow database test fallacy about not running all your tests everytime you add a new one, and it is an approach I find reasonable:

I still wouldn’t want to wait 80 seconds every time I make a single change to my model, and want to test that. Of course not! Why on earth would you run your entire test harness for every single line change in a particular model? If you have so little confidence in the locality of your changes, the tests are indeed telling you that the system has overly high coupling.

Speed is important. If your tests are too slow to be useful, what’s the point of having them? What entails “fast enough” though, is something that is a matter of individual preference. It is also dependent on whether or not you agree with DHH about not running all of your tests all of the time. Faster is better, but I don’t believe in pursuing that at the expense of more important concerns, like writing the code that passes the tests.

Red, green, refactor is, to me, the core of TDD. Decoupled logic in my application is also good idea. If TDD helps me to get there, and decoupling also increases the speed of my tests, those are just bonuses on top of a process I already follow.

So why all the fighting and confusion over TDD? Well, Test Driven Development is just a name. Names are pretty useful things; they help us have discussions about rather complicated topics. If you know what Object Oriented Programming is, and I know what Object Oriented Programming is, we can have a discussion about it without having to stop to define every detail along the way*.

But names can also be harmful. If you “know” what Object Oriented Programming is, and I “know” what Object Oriented Programming is, but our understanding of those two things differs greatly, our discussion will be rather difficult and confusing to follow. We’re both assuming that the other has the same ideas in their head, which makes it hard to communicate effectively.

While reading Sandi Metz’s book Practical Objected Oriented Design in Ruby, I noticed something interesting about the way she writes. She doesn’t tell you what things are called until after she’s already shown you how to do it. You don’t have a chance to let your previous knowledge of those concepts get in the way. It’s a great way of explaining ideas that ensures everyone is on the same page.

So what does this have to do with TDD? Well, Test Driven Development is a name that means a lot of things to a lot of people. To me, it means red, green, refactor. Everything else just helps me do that better.

Maybe when we have discussions about TDD, we should be stating what our definition of TDD is. If we are all arguing about different ideas, perhaps we could find some common understanding and begin our discussion there. Our first test might fail, but we can figure out how to make it pass and refactor from there.

*Growing a language can be fun. If you haven’t already watched Growing a Language by Guy Steele, you should! It’s a great talk.

A Train Filled with Entrepreneurs

Brydon

I work on 20Skaters, ThreeFortyNine, Ontario Startup Train and a few others. My vanity site is brydon.me.

Public tickets sales are now available for this year’s Ontario Startup Train! You can purchase your ticket here, if you don’t already have one.

For the third year in a row, we’re chartering our own private VIA Rails cars to pack them with Ontario entrepreneurs, investors and other startup junkies. We’re travelling to Montreal to attend the International Startup Festival. Along the way you’ll have a chance to get one on one mentoring and meet and mingle with other folks in the startup scene. We have media, startup rookies, experienced veterans, startup lawyers, you name it!pycon

“Their efforts resulted in an incredible environment for collaboration and networking. I would do it again in a heart beat!”, Katherine Hague, Cofounder Shoplocket

Our trip includes first class travel to Montreal as well as your ticket to Startup Festival. We meet at Union Station’s Panorama Lounge on July 9th. You’ll have a chance to meet and get connected with our other passengers. Then we board the train where we fire up all our on-train events. The star of the show is of course our very own bar car!

What Your RFP Process Really Delivers

Brydon

I work on 20Skaters, ThreeFortyNine, Ontario Startup Train and a few others. My vanity site is brydon.me.

Personally I’ve had a long standing policy to not respond to unsolicited Requests For Proposals, known as RFP’s. In the early days, I couldn’t give you a sound reason for my avoidance. I’m sure my main reason was that I didn’t feel confident I could craft a worthy response to your 64 page fancy-pants RFP with its budgets, timelines, stakeholders and other terms that had me reaching to wikipedia. Or maybe my gut was telling me to steer clear?

Eventually we tried responding to a few in earnest. While we’ve only done that a few times, the results have been consistent. We’ve earned 0% return on all our RFP work to date.

My policy to date remains that I don’t respond to unsolicited RFP’s unless I’m able to have direct conversations with the key stakeholders in the RFP process. Why? Simple, in some cases RFP’s are not what they appear to be. They are rarely a level playing field. Often decisions have already been made, or the vendors have been narrowed, and the RFP process is a corporate requirement intended to present the illusion of an unbiased process. That means you’re lucky if anyone even reads that response your team spent weeks or months crafting.

Even in the case of a truly open, democratic RFP process, it’s very premise is in direct contrast to how I tend to work. All of my best clients over the years have been relationship based. That means we courted each other first, we put time in, met each other, talked about our world views etc, maybe had a few drinks, shared some meals. Only after all that did we end up at “hey, we should work together”.

I’m not alone. Alan Armstrong of Eigenworks writes that “unsolicited RFPs can consume precious team energy, and our win rate is essentially zero.  I made the tough decision a long time ago to focus my team’s efforts on clients where our relationships are more direct”.

So here’s the rub. If your company is currently relying on RFP’s to find your vendors, you need to reconsider that approach. I can’t imagine that your company does NOT want strong vendor relationships. By choosing the RFP route to find and select vendors, you are immediately eliminating myself, Alan and a glut of other potential vendors who have all come to the conclusion that RFP’s are a waste of their team’s time.

How DemoCampGuelph Saved My Business

Nathan Snelgrove

Nathan Snelgrove is the founder of Wildfire Studios, a creative firm in Guelph focused on everything from graphic/print design and brand development to photography. He loves movies, music, and fine whiskey.

Last December, I was in a rut.

I own a creative firm called Wildfire Studios, and I was pretty sure it was going under. Not because I was out of money, but because I was out of clients.

I had a half-decent roster of clients that I enjoyed working with. They liked me. They were all international and under one conglomerate client. The problem was, the conglomerate decided to shut down all my clients on January 1st, 2014.

I knew I shouldn’t have had all my eggs in one basket, so to speak, but I couldn’t escape that rut either. I knew I needed local clients, but I also knew that local clients are a chicken and egg problem: unless you have one, you’ll always need one. Firms with international clients often smell like scams — even if you’re running a perfectly legitimate business, there aren’t many ways for professional clients to verify that claim.

dcgIn our world, it’s not about what you can do, but iwho you know. In that sense, DemoCampGuelph is a godsend.

I attended DemoCampGuelph 22 in October, and walked away having met a ton of cool people from a bunch of amazing startups. What struck me the most about the event is its lack of pretence and pretension: everybody was there to learn from each other and get to know one another. We all wanted to broaden our support system.

I followed one woman I met that night on Twitter. She had her own development company, and she worked on mobile apps. When she retweeted a tweet about one local firm looking for an outside designer to do some app prep work, I quickly sent off an email.

I really needed anything to get by, and this gig was perfect for the short time period. It was enough for me to get through January. The design work was really some short-term marketing work for a multinational corporation called ProMinent Fluid Controls Ltd, which in itself was an amazing opportunity. The Canadian division of the company has an office located in Guelph, which means my local client roster can develop.

One opportunity leads to another, though, and ProMinent started hinting that they were looking for some long-term marketing help. They didn’t want full-time, but they wanted client services they could depend on to produce results. I went through about a month of getting to know the people and prepare my work, and I got a contract to handle their advertising. We’re putting together the first of this year’s six product campaigns this month.

Thanks to DemoCampGuelph, my firm is more than just a creative firm. Wildfire Studios isn’t just about graphic design, photography, or creative copywriting. I’m now handling the advertising for the Canadian division of a multinational. To me, this is the new start that I desperately needed.

Thanks to DemoCampGuelph, not only do I still have a job and a business to call my own, but I have one of the best jobs in the world. And for that, I couldn’t be more grateful.

DemoCampGuelph 24 will be held on May 28th, please register if you’re joining us.

Let’s Reinvent The NDA, For Entrepreneurs.

Brydon

I work on 20Skaters, ThreeFortyNine, Ontario Startup Train and a few others. My vanity site is brydon.me.

Do you sign Non Disclosure Agreements(NDAs)? In general, I’m told most funding folks do not. I have signed many but I do so cautiously. There are many opinions on signing and not signing.

I tend to view it as a red flag when early stage projects request that I sign an NDA before we’ve met, or even decided to work together. My concern being that they are over valuing their ideas. The red flag isn’t that their ideas aren’t amazing, it’s that in over valuing them, they are likely failing to knuckle down on customer discovery, pre-sales, idea extraction and all the other important parts to validate the business opportunity.

When people say ideas are worthless, it’s because they are. Otherwise you could post your idea on eBay and sell it. It’s also why I correct people when they say things like “20Skaters is a great idea”. I respond that it’s no longer an idea, it has customers, revenue….

To be clear, no one is saying that you don’t require awesome ideas. What they’re saying is that ideas are worthless without execution! A great idea is table stakes, so ante up and get executing!

If you have the choice between an ok idea that you can execute on versus a killer idea you can’t get to a market, always take the ok idea. As you execute, the core idea will shift, grow, and morph. You don’t want to be known as an ideas person, you want to be known for your ability to execute!

What I always say is please steal my idea, provided you can deliver on execution! I’ll happily move onto the next item on my list. How about this for the new NDA?

In taking on this idea, I promise to do everything in my power to execute on this. I will not bask in the glow of the idea, I will take it to market. I will grab it by the collar and drag it across the finish line. I am the person best suited to execute on this idea in the fashion it deserves, not let it languish and die a slow, lonely death protected away from the world.

Signee:

Title:

Signature:

Bug Free Software

Eric

I work at Boltmade and 20Skaters. I mostly write Ruby, HTML, CSS, and JavaScript. I hate timezones. Find me on Twitter: @eroberts

Recently the company I work at, Boltmade, was undergoing a rebranding. Naturally we looked at the websites of other software development companies to see what they were saying about themselves. To me, one site stood out. 8th Light says in their company principles that, “we take responsibility for the correctness of our code by testing it thoroughly. We do not tolerate preventable defects”. Going further, the blog post that accompanies this says, “if we make a mistake, we’ll fix it quickly—for free. It’s that simple”.

What strikes me most about this is that it’s surprising at all. Why shouldn’t this just be how software development is done? Why do we just accept that all software will have bugs? It is true that is technically impossible to remove all possible bugs from a piece of software. But an over acceptance of this is leading us to create software with far more defects than should be acceptable.

It may be impossible to remove every final last bug, but if I’m doing my job correctly, I can guarantee that the things I know about will work. An article I read recently (Bug Free Software? Dream on) stresses the impossibility of getting rid of all bugs. In particular one phrase bothered me. The article says that “developers play whack-a-mole” with bugs. This bothers me because in that game, the moles come back out of the same hole some undetermined time after you knocked them down in the first place. In a way, it’s a perfect description of the experience of many developers. They fix one bug over here, rush to put out a fire over there, and when they come back they find that somehow the first bug has come back again. However, there is no reason developers should have to play this game. Proper testing should ensure that when you fix a bug it stays fixed.

The only way someone can deliver on their promise of bug free software is to test it thoroughly. I don’t really care if that means you clicked every path through the system, and tried every use case. If you’d rather do that over writing tests, be my guest. Just remember you’ll be doing it every time you change anything. As for me, I’ll write the tests once and have them catch things for me from then on.

So why don’t more people do this? Well, testing is hard. It takes time to learn how to test, it takes time to setup the tools to test, and it takes time to run the tests (much less time than it would to click through every path in the system, although I would argue that almost nobody actually does this when they say they tested it manually). But that doesn’t mean it’s not worth it. Investing the time in this area will pay off. But if you don’t make testing a priority, figure out how to set it up, and ensure that everyone is running the tests, you won’t see any benefit. It takes buy in from everyone. If one person is over in their corner diligently writing tests and nobody else does, you will still end up with a fragile application.

AirBnB just posted a great article about how they went from, in their words, “a handful of brittle tests to a large, resilient suite”. There are some good pointers in that post on how to achieve the same thing. To me, there were a few important things that stood out:

  1. Change your culture to “make testing a first-class citizen”. As I mentioned, if nobody believes in it, it’s not going to happen.
  2. Avoid the pattern of “we know tests are important, but we’re too busy to do it right now”. If it’s important, it’s important. Do it.
  3. Make “the bar to writing tests…so low you can trip over it”. Make things easy and people will do them.
  4. And finally: “The important thing is to test all the f***ing time. Even when it’s hard. Especially when it’s hard.”

So how do you know if you should be thinking about tests? To me, the test for if you need tests (or more tests), is how comfortable you feel pushing a new build to production. Does it make you hesitate? Do you cross your fingers hoping things will be ok? Do you always do it early in the day so you can be around in case something goes wrong? If so, then maybe considering getting some more tests in there. Deploying shouldn’t be a scary process.

I’m happy to hear your thoughts, please leave comments below! I could ramble on this topic for a while but I don’t want to write a huge wall of text. I’m happy to continue the discussion in the comments or write a follow up post.

Hijacking the Pycon train

Chris Charles

I'm a software developer. I like to learn things. I run the ThreeFortyNine Beer Club, which is pretty fun. I recently built BeerTime, an Untappd client for the Pebble smartwatch.

In less than two weeks a bunch of Ontarians are heading to Montreal for Pycon, and they’re doing it in style. How much style, you ask? The most style. They have two dedicated train cars, one of which contains a bar.

I’m not going to Pycon, but I am going to be on the train.

See, Montreal’s not just for conferences. It’s a pretty cool town! With museums and culture and stuff! It also has a great pub scene, and I happen to be a bit of a beer nerd.

Beer taster at Dieu du Ciel!

Courtesy of Paul Joseph http://www.flickr.com/photos/sashafatcat/4052075222/ CC BY 2.0

So I’m going to Montreal with some people from my Beer Club, and we’ve decided to ride the rails with the Pycon folks. Many of us have tech backgrounds, and the opportunity to unconference with other tech people is too hard to resist. I’ll get much more out of the trip this way.

Here’s a short list of things I remember from my trip on the Startup Train two years ago:

  • I met a bunch of really cool people with whom I had great discussions about technology, business, and the environment.
  • I saw some pretty good presentations.
  • I found out why so many people love to travel by train.
  • I laughed a lot.

I expect to have an equally good experience this time around.

Do you love beer too? Food? Live music? Art? Fashion? Comedy? Do you have a background or an interest in technology? Maybe you should join us. You don’t have to go to Pycon. Ride the rails, spend a day (or two, or a week) in Montreal doing something you love, and come back.

It’s going to be a blast!

Software Developers….On A Train

Brydon

I work on 20Skaters, ThreeFortyNine, Ontario Startup Train and a few others. My vanity site is brydon.me.

Our upcoming Python On Rails is having a bit of an identity crisis.

Is it a peer-based, on-train, mini conference for software developers, that happens to arrive in Montreal at the start of PyCon? Or is it a means of travel exclusively for PyCon attendees?

On The StartupTrain 2013

On The StartupTrain 2013

Our previous StartupTrains have proven that our on-train events have their own value, their own identity. We always have people on board who literally fly home the same evening we arrive in Montreal. They’re on the train just to attend our on train events.

For our Python On Rails train, we’ve already sold tickets to people NOT attending PyCon. We’ve also sold tickets to people who are travelling from Montreal, just to turn around and take the train back home with us.

Why would someone want to come on this trip and not attend PyCon?

  • You already know some other passengers taking the train and based on that, you know this train is going to be a blast.
  • You’re one of the folks we’ve talked to who intend to spend a few nights exploring Montreal’s brewpub scene. Yes you’re also involved in software so the train is just an awesome way to get to Montreal.
  • You’re looking for one of those unicorns they call a technical cofounder for your new startup. The chance to be locked on a train with awesome software folks is too good to pass up.

We’re in the heart of planning out our on-train events for this trip. There’s talk of xboxes and DemoCamp/Ignite style talks so we can learn what projects we’re working on while getting to know each other.

Get your ticket here, did I mention we have our own bar car??