← Blog

Software Development

Communicate with your IoT device using SMS

Andreas, 02.09.2016

We demonstrate an easy setup that allows anyone to send commands to your Internet of Things (IoT) device and get feedback. Our device of choice is Particle's Internet Button and we use an Android phone as SMS gateway. IFTTT's simple if-this-then-that recipes connect the Internet Button and the gateway phone.

Software Development

Query Sitecore Items in Web API

Jeff, 15.04.2016

Building client-side web apps is the new trend, which means a lot of XHR requests to the back-end. Luckily, Sitecore provides a highly configurable Item Web API to help you with querying items from the client-side. But if you want results that are bound to your models and end-points not containing your query, then you will resort to querying items against the context database using ASP.Net Web API... only that... it doesn't work out of the box.

Sitecore Software Development

Mocking Sitecore using MS Fakes

Jeff, 10.12.2015

Mocking Sitecore has been a tough nut to crack since Sitecore lacks the necessary interfaces that common mocking frameworks need, which really screws up automated testing for a lot of us. For that we turn to isolation frameworks like TypeMock and Justmock which unfortunately come with a huge price tag.

Sitecore Software Development

Build-sync your local ASP.Net site the fast way

Jeff, 19.11.2015

With Visual Studio's publish functionality you can conveniently preview how your web project behaves and looks like on your local IIS web server. With that said, I believe publishing makes sense only if you've done significant changes since, depending on how big your project is, it may take some time to sync your deployable project files with the web site root folder, and deploying new DLLs and config files will definitely restart your website and flush your caches. But what if you just did a tiny update and just wanted to sync the changed file(s)?

DevOps & Hosting Software Development