Philippe Charrièrek33g.hashnode.dev·18 hours ago"Tool Calling" and OllamaPrerequisites You should have read the previous article, Developing Generative AI Applications in Go with Ollama, to understand the basics of using Ollama and baby LLMs. For this new article, we'll use this LLM, qwen2.5:1.5b. So run the following com...1 like·274 readsOllama, Tiny Language Models & Golangollama
unidoclibunidoclib.hashnode.dev·19 hours agoExploring the Role of Golang in Excel File CreationExcel files are integral to modern data management and analysis. Whether you're dealing with financial reports, inventory tracking, or project management, the ability to generate Excel files programmatically can save time and ensure consistency. With...Excel File Creation
FlareXesflarexes.com·Dec 22, 2024How to Dockerize a Go Application with Multi-Stage Builds | Smaller Than 30MBIf you’re containerizing your Go app and losing sleep over the image size even for a simple project. Then you’re probably overlooking Docker’s multi-stage builds feature. This technique lets you separate the build environment from the production envi...Docker
Dhadve Yashnimbusnotes.hashnode.dev·Dec 22, 2024Scaling websockets to million connectionsUnderstanding how to scale Scaling a websocket is a hard task compared to http, as the connections are persistent in websocket and we cannot share the same connection between 2 different servers. Like in http we can just create many instances of our ...chat app based on microservicesgolang
William Cheong Weelaudivineforge.com·Dec 21, 2024December Issue 2024.1221this week reading, and compilation of the news that I come across I’ve been thinking how to get macOS on Linux I love running Linux, and have been a fan of Fedora Linux in the year of 2024, at the same time, I missed the goodness from macOS which has...scylladb
Dhadve Yashnimbusnotes.hashnode.dev·Dec 20, 2024Create Your Own Chat App with GolangIn this blog we will get straight to building chat app using websockets in golang and react. If you want to learn about web sockets and how to use it in golang then read this beginners guide to ws Building chat server Main function var upgrader = web...1 likechat app based on microservicesgolang
Anurag Sharmadeveducate.hashnode.dev·Dec 20, 2024Dev EducateChapter 1: Introduction 1.1 Brief of the Project In the ever-evolving world of education and career advancement, having access to quality learning resources and real-time professional opportunities is crucial. The Educational Platform was designed wi...golang
Khue Quang Nguyenvuadivuacode.hashnode.dev·Dec 19, 2024Giới thiệu series học lập trình GolangTổng quan về Go (Golang) Go là ngôn ngữ gì vậy? Go, thường hay được biết đến với nickname là Golang, là một ngôn ngữ lập trình mã nguồn mở hiện đại được Google phát triển từ năm 2007 và được phát hành công khai vào năm 2009. Nó được tạo ra bởi các nh...golang
Ademola Thompsonsuperhero.hashnode.dev·Dec 18, 2024Understanding Arrays and Slices in GolangIn Golang (Go, for short), arrays and slices are fundamental data structures that allow developers to efficiently store and manage collections of data. Although, both data structures have many similarities, it is important to understand their differe...3 likesGo Language
Dhadve Yashnimbusnotes.hashnode.dev·Dec 18, 2024Beginner's Guide to websockets with GolangWhat are Web Sockets? Well in simple terms its just a persistent (continuous) connection between a server and client. Unlike http connection which gets closed as soon as the query is complete. Also in websocket a communication is realtime and bidirec...1 likechat app based on microserviceswebsockets