47 ~ Better than Week 46
Contents
Note of the Week
Challenges are what make life interesting and overcoming them is what makes life meaningful
– Joshua J. Marine
Software
- AES Encryption golang and python (stackoverflow.com)
Beware when using encryption between golang and python, they use different type of segments, python uses 8-bit segments while Go uses 128-bit segments. - Typesense (typesense.org)
Small and fast open source Search, support batching insert, in data-set of 1 million data the searching can be done in 2ms, amazing. - Git-Flow (jeffkreeftmeijer.com)
Jeff Kreeftmeijer shares how to automate git branching workflow, old tools but powerfull - Orchestrator (github.com/openark)
Use this for MySQL HA and replication management tools, here sample of use case from percona - I write about Golang json encode / decode issue on MongoDB, it’s for handle intermitten unstructure data in Document of MongoDB
- Paralel processing in Go (go.dev)
Sample of code which handle parallel pipeline processing of file in Golang - VsCode Issue on debugging set breakpoints (github.com/go-delve)
Beware the path, in my experience can’t set breakpoint because the workspace is in symlink mode (I’m using Linux btw), just using the REAL PATH. - Maximize Golang Countainer GC process (riverphillips.dev)
River Phillips shares how to increase GC cycle Golang app in container - Old ways for batching Updates in MySQL (stackoverflow.com)
Updating data in batching with MySQL styles