Hugo

How to Install Hugo with Docker

The purpose of this article is to help you setup a personal blog as quickly as possible using hugo and docker. These are the instructions and notes I’ve written down when setting up my site that I’d like to share. ...

July 15, 2022 · 5 min · 1011 words · Bartlomiej Mika
Docker

How to Containerize a Golang App With Docker for Development and Production

Do you want to write a Golang app which is containerized with Docker? The purpose of this article is to help you quickly get your Golang App containerized for development (with hot-reload) and production purposes. ...

July 2, 2022 · 6 min · 1079 words · Bartlomiej Mika
Raspberry Pi

How to Write a Golang App Remotely on a Raspberry Pi Using Atom

Wouldn’t it be cool to remotely program a Golang app on a Raspberry Pi? In this post, I write how to do that if you are using Atom. TL;DR; Setup a Raspberry Pi Device Setup Golang on that Device Install remote-ftp on your Machine Connect from your Atom Write a Golang Application ...

March 13, 2022 · 6 min · 1189 words · Bartlomiej Mika
RSA Encryption

How to Perform RSA Encryption in Javascript (React.js) and Golang

Do you want your React.js (web) frontend app talking to your Golang backend server? In this post, I’ll explain how I got cross-devices RSA encryption working in JavaScript and Golang. ...

February 7, 2022 · 6 min · 1256 words · Bartlomiej Mika
IPFS

Quickstart to Building Golang Apps using IPFS

Do you want to write a Golang app which will use IPFS? The purpose of this post is to get you up and running IPFS as quickly as possible so you can see what’s involved. ...

September 26, 2021 · 6 min · 1265 words · Bartlomiej Mika
Docker

Docker Learning Resources for Absolute Beginners Programming With Golang

Recently I was working on an open-source project which I wanted to dockerize - problem is I had no idea experience. In this post I’ll list all the resources I used to learn docker. ...

August 28, 2021 · 2 min · 316 words · Bartlomiej Mika
Cover photo by [Harrison Broadbent](https://unsplash.com/@harrisonbroadbent) on [Unsplash](https://unsplash.com).

How to Build a gRPC Server over tstorage to create tstorage-server

Did you just finish reading the gRPC Basics tutorial and you don’t know where to begin with using it? In this post I’ll explain how to take a fast time-series database called tstorage and write a gRPC server and client with it. ...

July 9, 2021 · 19 min · 4032 words · Bartlomiej Mika

How to Build a gRPC Server for a SparkFun Weather Shield

We will take what we learned in the previous post and rewrite it to support interprocess communication of our SparkFun Weather Shield from other applications using the gRPC. ...

July 9, 2021 · 15 min · 2996 words · Bartlomiej Mika

How to Read Data From a SparkFun Weather Shield (DEV-13956) in Golang

SparkFun Weather Shield monitoring dutifully a red mulberry seedling, the code is powered by what you will learn in this blog post. The purpose of blog post is to explain how to write a Golang application which can poll time-series data from a SparkFun Weather Shield (DEV-13956). ...

July 9, 2021 · 10 min · 2081 words · Bartlomiej Mika
Go

How to do Dynamic Filtering in Golang using only the Database SQL Package like in Django

Recently I had to do some advanced filtering using the database/sql package found in the Golang standard library. In this article I share how I handled advanced filtering. If you are a beginner in Golang wanting to learn how to improve your understanding of querying the database, this article is for you. ...

May 7, 2021 · 14 min · 2978 words · Bartlomiej Mika