1. Help Bri find a cool job in Vancouver this summer…

    Posted on: June 28, 2011
    Help Brianna find a cool job!

    Hello internet.

    I don’t know if I ever bothered the About me section of this blog but here’s a few tidbits. I live in Vancouver and am a web/software developer. I’m originally from Thunder Bay, Ontario as is my girlfriend Brianna. She moved to Vancouver with me but has had a hard time finding a good job. She’s never had trouble with this before. From talking to people I get the sense that the job market isn’t so hot in Vancouver if you’re not part of certain in-demand professions. There are, however, jobs out there but it seems you just might need to be as loud as possible to stand out from the crowd.

    In an attempt to help I did the only thing I know how to do: make a website. I enjoyed designing this as I haven’t done much design lately. Hopefully he helps!


  2. iPhone app reviews

    Posted on: April 18, 2011

    My buddy and I are posting some quick iphone app reviews at quickappreviews.com. Lots of screenshots for every app. Check ‘em out!


  3. Pintail Longboard Video

    Posted on: March 23, 2011

    As summer starts to creep in in Vancouver we’re seeing more sunny days and more dry pavement. That means longboarding. I decided to look that up on YouTube and found this cheerful video. I really like the song too.


  4. Javascript: Count duplicates in an array

    Posted on: February 2, 2011

    Problem:

    You have a javascript array that likely has some duplicate values and you would like a count of those values.

    Solution:

    Try this schnippet out.
    (more…)

  5. Calling namespaced Javascript from Flash with ExternalInterface…

    Posted on: January 28, 2011

    Edit: This just seemed to eventually start working for me out nowhere. I hate when that happens. If you’re having the same problem I recommend you go have a beer and come back to it later.

    This is pissing me off. I have some Javascript that looks like this:

    var boz = {
          thing: function(val) { alert(val); }
    }

    I want to call it from Flash using ExternalInterface like this:

    ExternalInterface.call("boz.thing", "what the shit!?");

    …but that doesn’t work.

    Somebody asked about this on StackOverflow (here) and in the accepted answer the guy says the code is basically just eval’d so it’ll work just fine. He has an example like this:

    ExternalInterface.call("function (foo) { alert(foo); return true; }","test");

    That doesn’t work either. I can only seem to get it to work with global function calls. Am I missing something? There certainly doesn’t seem to any examples of calling namespaced Javascript from Flash out there.

    I’ll post back if I find out what’s going on.

    Piece.


  6. “Format CSS Online” helped me out, so here’s a shoutout

    Posted on: January 24, 2011

    I know the “standard” way to write CSS is like this:

    #container
    {
        width: 960px;
        height: auto;
        font-size: 14px;
    }

    I find this way takes a lot of space and that stylesheets get long quickly making the file hard to navigate. With widescreen monitors I think this makes more sense:

    #container { width: 960px;  height: auto;  font-size: 14px; }

    However, often times I’m working on an inherited project or using a snippet I found and the CSS isn’t laid out the way I like. I found a site that helped me out with this. The design is wacky but it did the trick. There is a fair amount you can customize so you should be able to mass convert any CSS to the way you like it. On a downside, I think it strips out all comments…

    Check out “Format CSS Online“.


  7. Mono, GTK, C# – Working with the clipboard (quick example)

    Posted on: December 16, 2010

    Mono screenshot

    I have a button that calls this function, grabs what’s in the clipboard and sticks it in a label. Currently it just works for text. The hard part for me was figuring out how to make an instance of the clipboard object. I thought I’d post it quickly here.

    protected virtual void click (object sender, System.EventArgs e)
    {
    	Clipboard clippy = GetClipboard(Gdk.Atom.Intern("CLIPBOARD", false));
    	label1.Text = clippy.WaitForText();
    }

  8. What would it be like to walk thirty dogs?

    Posted on: November 14, 2010

    Ruff!

    I’ve been working on this site, thirtydogs.com, for some time now. Thirtydogs is basically a place where you can find and share ideas for somewhat unconventional things to do with your time.

    Ideas on thirtydogs.com can range from Start an ant farm to Roast wieners or marshmallows over the stovetop element.

    I built Thirtydogs using the PHP framework Codeigniter. It’s a great, lightweight framework. It had what I needed without a bunch of extra crap.

    Anyways, go check it out and make sure to check back often. There’s a lot of features sitting at the 90% mark that I should be rolling out over the next couple of months. We’re also planning on tightening up the design. I think the most interesting thing will be to see what this site evolves into as a community develops around it. Hopefully some creative people dig the site and we can build a nice big database of ridiculous ideas.

    Remember, waste your time creatively.


  9. Introducing ham-bread. One part ham two part bread.

    Posted on: November 11, 2010



    I just found this in my drafts. I have no idea what I was doing. Drunk most likely.


  10. El Guitaro

    Posted on: November 7, 2010