Browsing Category

Implementations


VIEW POST

View more
Implementations

How to sell your SaaS offer through Microsoft

By on 15/12/2020

Sell your SaaS offer in Microsoft Marketplace or AppSource

Perhaps you already published your service in the Microsoft Marketplace or AppSource. Now you want to implement the Transact option — so people can purchase your service directly.

I published this article on Medium, including a high-level view of the interaction…


VIEW POST

View more
Implementations

Tag your Infusionsoft contacts with .NET Core

By on 04/10/2018

Putting my OpenSource implementation for the Infusionsoft API into action. Basically it’s about authorizing the hosted web application to access your Infusionsoft account. And then you can read all tags, and assign a tag to a contact. If the contact doesn’t exist, it’s created automatically.

You can see and try…


VIEW POST

View more
Implementations

Open Source: infusionsoft.netstandard

By on 30/07/2018

A project of mine that ended, but the results contain quite some application code that could be useful to you perhaps. The first part that I want to publish is an implementation for the Infusionsoft API with .NET Standard.

I refactored the code so it becomes a separate package, just…


VIEW POST

View more
Implementations

SQL Server with .NET Core and EntityFramework on Mac

By on 14/03/2018

I completely updated this article on Medium, implementing a full example on GitHub and using just Visual Studio Code. Please follow this link.

These technologies are used in this tutorial.

So I wanted to create the backend for a platform, and I wanted…

a cross platform solution, to be able to host…


VIEW POST

View more
Implementations

Debuggable and refreshing Adobe Extension with Angular and Typescript

By on 02/03/2018

What??

Let’s start from the beginning. I’m working on an Adobe Extension (Illustrator in this case). I want to do it ‘right’ – so I want to use Angular and Typescript. But I’m experiencing the same problems than many others – according to the Community:

The typescript files are not available…


VIEW POST

View more
Concepts Implementations

One week serverless with Azure Functions and Slack

By on 26/01/2018

Together with some colleagues, I’ve spent this week studying serverless architecture, with focus on Azure Functions. And I can tell you – it was real fun!! 
What is it
In my own words…

Serverless architecture doesn’t mean there’s no server anymore. It’s just that as a developer and architect, you don’t have…


VIEW POST

View more
Implementations

Resthooks with ASP .NET Core on the example of Infusionsoft

By on 07/10/2017

Many platforms and networks support a technique called RestHooks, which is basically just an event or trigger from that platform when certain actions or changes took place. It is mainly meant for reducing polling and avoiding the implementation of more complex solutions like RabbitMQ or SignalR. Also, it works…


VIEW POST

View more
Implementations

Data for the Xamarin Forms Previewer with Prism

By on 05/09/2017

Live preview with design time data is a very important tool in UI development. The Xamarin previewer is pretty nice, but there are some issues when you want to bind ViewModels. The tutorial from James Montemagno post last year gives you a good start for setting a BindingContext for the…


VIEW POST

View more
Implementations

Garden Management, Part 3 – Azure Blob Storage

By on 10/05/2017

This is the next step of the implementation of the sample application for Garden Management. In part one and two, we already solved the circles for

SQL database and an Azure WebApp including TableController for database access
MobileClient implementation with offline synchronization of the sql database

So, in this third…


VIEW POST

View more
Implementations

Garden management with Azure, Part 2

By on 13/04/2017

In the first part of the ‘Garden management’ application, we created the SQL database and the web service in Azure, using Microsoft’s Azure Mobile SDKs. The functionality consisted mainly in a http controller allowing CRUD operations on the gardens. And the database scheme management using Entity Framework. To ensure this works, we created…