Building an Affordable Education Robot

A while back I heard about the affordable education robot. I thought it was a very interesting approach and I wanted to build one and see if I could get my daughter interested in it. I tried to buy one but my search for it turned out nothing, so I contacted Justinjustin, who is listed as the contact on the bottom of the page about getting my hands on one.

Continue Reading

Introducing ResumeChef

I’d like to introduce you to a project I’ve been working on over the past year. It’s called ResumeChef and it’s meant to help you create customized Resumes with a few clicks. You can view the marketing site or try the application out. Why Build ResumeChef? There are several reasons why I went down the path of building ResumeChef.

Continue Reading

Quartz.Net 3.0

I went poking around the Quartz.Net repository while trying to answer some related questions on StackOverflow. I noticed that there is now a quartznet-3 branch present (although it’s apparently been there for a couple of months). I pulled the branch but I was unable to build it. It was interesting to see that some things have changed, so you should expect to hear more about those in the form of blog posts.

Continue Reading

Running Windows 10 IoT on a Raspberry Pi

I’ve been working with Raspberry Pi hardware for a while now, but mostly using the tools that are more common in the space. That means that my devices have all been running Raspbian as the OS and that the programs I’ve written for them have all been written in Python. Now that the official release of Windows 10 for IoT is out, I thought I’d give it a whirl and talk about my experience.

Continue Reading

Setting up Visual Studio Online and Hipchat Integration

While searching for a way to add TFS integration to Hipchat, I came across a bunch of posts that were not particularly useful. In my particular case, I was looking to integrate Visual Studio Online’s TFS with Hipchat, so using a separate service to manage this integration seemed like unnecessary pain.

Continue Reading

Introducing the Quartz.Net Feature Pack

I’d like to introduce the [Quartz.Net feature pack][qnfp] project to you. It’s hosted on GitHub and it’s main purpose is to provide some features that are not currently part of Quartz.Net. Traditionally, Quartz.Net has been a direct port of the Java implementation of Quartz and so it doesn’t typically add new functionality that might be useful if it is not part of the Java version.

Continue Reading

Quartz.Net Built-In Listeners

This is the fifth post in the Quartz.Net Listener Tutorial series. In this post we’ll be looking at the listeners that are shipped with the Quartz.Net distribution. Scheduler Listeners If we search through the Quartz.Net codebase we’ll find two classes that implement the ISchedulerListener interface: SchedulerListenerSupport and BroadcastSchedulerListener. Let’s look at these guys in detail now.

Continue Reading

Quartz.Net Trigger Listeners, Part 4 of Quartz.Net Listeners in Detail

This is the fourth post in the Quartz.Net Listener Tutorial series. It’s also the fourth part of the introduction to listeners overview series. You can find Part 1 here, Part 2 here and Part 3 here. Today we’ll be looking at trigger listeners and how to implement one. As we mentioned in Part 1, trigger listeners get notified of trigger level events.

Continue Reading