Best of GolangJune 2023

  1. 1
    Article
    Avatar of awsplainenglishAWS in Plain English·3y

    All your servers accessible directly and securely from your Browser

    All your servers are accessible directly and securely from your Browser. Border0 client portal is a beautiful and efficient web interface that allows your 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.

  2. 2
    Article
    Avatar of developercomDeveloper.com·3y

    Java versus Go

    Java, for its part, is similar to the C-family of languages, which include C# and C++. Go is a programming language created by Google back in 2007, making it a relatively new language when compared to its contemporaries. Go uses Goroutines and channels to perform concurrent execution.

  3. 3
    Article
    Avatar of javacodegeeksJava Code Geeks·3y

    PHP Development in Internet Of Things

    PHP Development in Internet Of Things - Java Code Geeks - 2023 Internet of Things (IoT) is a concept that refers to the interconnection of everyday objects and devices to the internet. These objects can include a wide range of physical devices, sensors, appliances, vehicles, and more.

  4. 4
    Article
    Avatar of last9Last9·3y

    Graphite vs Prometheus

    Graphite, on the other hand, was developed by Orbitz Worldwide, and it is now a fully open-source project. Unlike Prometheus, Graphite uses a push-based mechanism for gathering data, meaning the target system sends (or pushes) data to the Graphite server.

  5. 5
    Article
    Avatar of dzDZone·3y

    API Gateway in Microservices Architecture

    API gateway simplifies managing microservices spread over multiple Kubernetes clusters and clouds. API gateway is a server (or L7 proxy) between a client and microservices that acts as a centralized entry point for all clients into the system. It is a reverse proxy that accepts client API calls and forwards them to the appropriate microservice.

  6. 6
    Article
    Avatar of kdnuggetsKDnuggets·3y

    Ten Years of AI in Review

    The last decade has been a thrilling and eventful ride for the field of artificial intelligence (AI). Modest explorations of the potential of deep learning turned into an explosive proliferation of a field that now includes everything from recommender systems in e-commerce to object detection for autonomous vehicles and generative models.

  7. 7
    Article
    Avatar of hackernoonHacker Noon·3y

    209 Stories To Learn About Website Development

    The Best Way to Create a Web Admin Dashboard for Your Projects is to opt for a CMS: there are many of them, the most popular being for example Wordpress. How to Block Traffic to Your Website from Russia and Belarus to show support for the Ukrainian people. How to update your website without tanking your search results.

  8. 8
    Article
    Avatar of dockerDocker·3y

    Docker Voted #1 Most-Used Developer Tool

    Stack Overflow’s annual 2023 Developer Survey engaged nearly 80,000 developers to learn about their work, the technologies they use, their likes and dislikes, and much, much more. Docker Voted #1 Most-used Developer Tool.

  9. 9
    Article
    Avatar of itnextITNEXT·3y

    Observer Pattern in Go

    Observer Pattern in Go is a software design pattern that defines a one-to-many dependency between objects. When an object changes its state, all its dependents are notified and updated automatically. The Observer pattern was introduced as one of the 23 design patterns by the Gang of Four (GoF) in 1994.

  10. 10
    Article
    Avatar of communityCommunity Picks·3y

    Getting Started with Go: Beginner's Guide to Powerful Programming

    Go is an exciting programming language that offers, among several features, simplicity, performance, and concurrency. In this article, we'll guide you through the process of getting started with Go. Go comes with a built-in command-line interface, so you can use your favourite text editor or IDE to write code.

  11. 11
    Article
    Avatar of codemioCodemio·3y

    Detecting Memory Leaks in a Golang Application: Best Practices and Tools

    Memory leaks happen when allocated memory is not properly released or deallocated. In Golang, the garbage collector (GC) manages memory allocation and reclaims unused memory automatically. Memory leaks can still occur due to incorrect usage patterns, reference cycles, or external resources not being properly freed.