Home

Hi, I’m Andy, and I’m the creator of The SDK Café.  As a software engineer, when I research various software development kits (SDK’s), I usually keep a notebook of links, samples, references and gotchas as I dig around and discover how things work.  In this blog, I hope to catalog and share those things with you.

  • IndyMicro.NET open source plan March 17, 2020
    Check out my first pass at the documentation for IndyMicro.NET out on GitHub … I decided to go ahead and release this source code that I have been using on a project recently as open source. I have been considering doing this for quite awhile now so I went ahead and wrote some documentation on ...
  • Designing a WebRTC video component for Vue.js July 18, 2018
    One of my favorite things to do when exploring SDK’s is to mash two of them together to create something new.  In this post, I would like to create a live video web component for you by mashing up Vue.js and WebRTC.  This should result in a component that you can easily install with npm ...
  • .NET Core and T4 Templates for generating code May 12, 2018
    I’m working on a project where I need to take a JPG image and then generate some code that is based on the image.  So for this project I would like to: Create a console application Parse in an image file as input Export a formatted text file based on the image using a code template In this post, ...