Dart and Flutter Dart The first gRPC server and client with timestamp Let's try to define the first gRPC functions and implement it in both server and client side. This is the good start point of gRPC. 2023.07.21 Dart and Flutter
Dart and Flutter Dart How to setup devcontainer for gRPC The official side shows examples but you might run into some problems to setup the environment in devcontainer. Let's setup the env with me to save your time. 2023.07.19 Dart and Flutter
Golang Golang Mock File System for unit testing by afero It's often problematic to create a test directory or file on the actual file system because they are need to be deleted after each test. Don't stop it. Let's use afero package to do it on the memory. 2023.07.17 Golang
Python Python Find the fastest way to access a property for performance Which structure is the fastest way to access a property? Let's compare the different structures and choose the fastest one for performance tuning. 2023.07.10 Python
Other techs How to copy files from Windows to Linux running in Virtual Box I struggled to copy files from Windows Host to Linux running in VM.Setup the shared folderSet up a folder path where we ... 2023.07.03 Other techs
Golang Golang How to define gRPC message to contain mixed data type in an array Check the following post first if you have not prepared a dev-env for gRPC in Go lang.In this post, we will go through t... 2023.06.26 Golang
Golang Golang gRPC unary, stream, bidirectional RPC examples gRPC has 4 types of functions. This post covers all the functions to explain how to implement them. Let's a 2023.06.05 Golang
Golang Golang How to filter a Slice with Generics Golang doesn't provide utility functions for Slice. It's easy to implement filter to filter the element but it should be implemented with Generics. Let's check how to do it. 2023.06.02 Golang
Golang Golang Generics type constraints with interface and Tilda How can we implement if an extended type (Type Definition) needs to be covered by interface for Generics? Let's define an interface with Tilda! 2023.05.31 Golang
Golang Golang How to start using gRPC in devcontainer gRPC is one of the nice tools when two applications need to be communicated with each other. It's not hard to implement ... 2023.05.24 Golang