Recent Posts
Example of building portal site for Business Central using Blazor
Hello. I spent little time to put together Business Central and Blazor Server App. Feel free to use it if you find it useful.
This is just a example of how these two technologies work together and is production ready completed application.
How it works:
Business Central publishes custom Odata API Blazor is using connected service to discover this Odata API All models and services for the Odata API are created automatically Blazor Server application is just a thin client getting data and posting data to the Odata API Blazor application doesn’t have its own DB at the moment and its not needed for this to work Currently the app allows to list all Assembly orders, create new item tracking for Lots in Business Central for the assembly orders, post quantities etc.
read more
How to use forked package in golang
I recently had to fork one of the packages that I was using in my golang project and it wasn’t so straight forward as you might think.
So heres the steps to make it work:
Fork the package Make your changes and push them run go mod edit -replace github.com/original/gopackage=github.com/you/go-git@branch for my example I had issues with package github.com/google/go-github
So first I forked the project and then did my changes.
read more
Showcase: A web app to create Request For Quotations For Quickbooks users
I had booked a trip to Portugal for two weeks in beginning of April 2020 but then corona came and the trip was cancelled. I still had the vacation from my main job and I didn’t want to cancel the it.
Since everything was in lockdown I used that time to build gosourcingwise - a web application that allows businesses to ask Quotations from their vendors. It is meant for companies already using Quickbooks accounting software.
read more