I have been using Orgzly for managing tasks and taking notes on my mobile device. Sometimes, I need notes taken in Orgzly app on my laptop. Hence I was looking for different methods to synchronize org files from Orgzly to my laptop. Orgzly has provided an option to create repository to sync files to it.
Yesterday, I was trying move Windows OS from the old disk to a new. At first I thought of installing Windows on a new disk and then setup all software that were already installed on old disk. But this seems tedious and time consuming task, so while looking for other alternatives, I come across know about Clonezilla tool.
gRPC is a Remote Procedure Call (RPC) framework defined on grpc.io as:
gRPC is a modern open source high performance Remote Procedure Call (RPC) framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking and authentication.
Here is an example of slice passed as value to a function:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 func main() { dirs := []string{"up", "down", "left", "right"} up(dirs) // dirs => []string{"UP", "DOWN", "LEFT", "RIGHT"} } func up(list []string) { // slice pointer points to a reference // even if they passed in a function.