Best of GolangJuly 2023

  1. 1
    Article
    Avatar of devtoDEV·3y

    All your ssh and database servers accessible directly from your Browser

    New Border0 client portal allows users to quickly and easily discover all servers they have access to. The dashboard features app cards for each service, with easily distinguishable icons and details. We offer both a card and a list view and the choice between dark or light mode. The search box at the top of the screen supports fuzzy search capabilities.

  2. 2
    Article
    Avatar of vercelVercel·3y

    How Turborepo is porting from Go to Rust – Vercel

    How Turborepo is porting from Go to Rust - Vercel Engineering Friday, July 21st 2023. Our strategy for making updates and maintaining stability while we migrate languages is in full swing. The goal for the chunk of code being moved is to keep the behavior exactly the same as before it was ported.

  3. 3
    Article
    Avatar of dzDZone·3y

    Docker Alternatives

    DZone will explore the Docker alternatives to your SaaS application. Join the DZone community and get the full member experience. Join For Free Docker technology has revolutionized the infrastructure management landscape in such a way that Docker has now become a synonym for containers.

  4. 4
    Article
    Avatar of communityCommunity Picks·3y

    The Go Memory Model

    Go approaches its memory model in much the same way as the rest of the language, aiming to keep the semantics simple, understandable, and useful. In the absence of data races, Go programs behave as if all the goroutines were multiplexed onto a single processor.

  5. 5
    Article
    Avatar of spaceliftSpacelift·3y

    Pulumi vs. Terraform : Key Differences and Comparison

    Terraform and Pulumi are both software tools that automate the management of cloud computing infrastructure using code and templates. Pulumi is an IaC tool that uses a declarative format to deploy infrastructure. Terraform is cloud-agnostic and allows automating infrastructure stacks from multiple cloud service providers simultaneously.

  6. 6
    Article
    Avatar of pointerPointer·3y

    alipay/fury: A blazing fast multi-language serialization framework powered by jit and zero-copy

    Fury is a blazing fast multi-language serialization framework powered by jit(just-in-time compilation) and zero-copy. Fury provides up to 170x performance and ultimate ease of use. Drop-in replace Java serialization frameworks such as JDK/Kryo/Hessian without modifying any code, but 100x faster.

  7. 7
    Article
    Avatar of devtoDEV·3y

    Learning Go by examples: part 11 - Generate a Go SDK (API client library) from your Go REST API

    The OpenAPI Generator is open sourced and has a GitHub repository. In this article we will use the generator that will allow us to generate a Go SDK with the parameters we will define. In order for our SDK to be generated with the right information, we must be careful to define certain elements of the swagger file.

  8. 8
    Article
    Avatar of communityCommunity Picks·3y

    Ten Years of “Go: The Good, the Bad, and the Meh”

    Ten years ago, I wrote Go: The Good, the Bad, and the Meh. I wrote it with three sections for what I thought was “good”, “bad” and “meh” about Go at that time. The biggest change to the language in the last ten years has obviously been the addition of generics.