[go-nuts] What are your thoughts on json v2?

2025-05-08 Thread Alex Pliutau
Have you already tried it? https://www.youtube.com/watch?v=Vxv6VpeojZY -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com.

[go-nuts] Comparing error handling in Zig and Go

2025-04-28 Thread Alex Pliutau
I personally find that both Go and Zig have the best error handling compared to other languages. wdyt? https://www.youtube.com/watch?v=E8LgbxC8vHs -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receivin

[go-nuts] What is your experience with new go tool directive?

2025-04-23 Thread Alex Pliutau
Just made a video about the new "go tool" directive. I like it! What about you? https://www.youtube.com/watch?v=_5J0YthCpn4 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send a

[go-nuts] ORM or not to ORM in Go?

2025-03-09 Thread Alex Pliutau
Is sqlc the BEST Golang package to work with SQL? https://www.youtube.com/watch?v=4E4d6anFz2Y -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubs

[go-nuts] OpenAPI and Go

2025-03-03 Thread Alex Pliutau
Are you folks using OpenAPI when developing API in Go? What generators do you use? https://www.youtube.com/watch?v=87au30fl5e4 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, sen

[go-nuts] Practical OpenAPI in Go

2025-02-12 Thread Alex Pliutau
Curious to know how many of you are using it in your projects. https://packagemain.tech/p/practical-openapi-in-golang -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email

[go-nuts] Random Art Algorithm

2025-01-12 Thread Alex Pliutau
Implementing Random Art algorithm in Go. https://youtu.be/TgftD-xrNeo -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. T

[go-nuts] Share your TUIs built with Go

2024-11-18 Thread Alex Pliutau
I personally love Bubble Tea for building interactive TUIs. Have you used it, or something else? Here is the video I made about building a note-taking app with Bubble Tea - https://www.youtube.com/watch?v=_gzypL-Qv-g -- You received this message because you are subscribed to the Google Groups

[go-nuts] Are you actively using fuzz testing?

2024-10-28 Thread Alex Pliutau
Do you use fuzz testing, and if yes, what are you testing with it? Our latest article shows how to do fuzz testing in Go, specifically for HTTP services. https://packagemain.tech/p/fuzzing-http-services-golang -- You received this message because you are subscribed to the Google Groups "golang

Re: [go-nuts] How to Implement Server-Sent Events in Go

2024-10-23 Thread Alex Pliutau
Yes, I prefer SSE when only server to client comm is needed. Really easy and works well on a single HTTP connection. On Wednesday, October 23, 2024 at 4:45:07 PM UTC+2 Zane Attahri wrote: > Second this, and go ever further. > > If you don’t need bi-directional communication, SSE are almost alwa

[go-nuts] How to Implement Server-Sent Events in Go

2024-10-23 Thread Alex Pliutau
Does anyone use Server-Sent Events in their projects? If yes, for which use cases? https://youtu.be/nvijc5J-JAQ -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[go-nuts] Have you built desktop apps in Go?

2024-10-21 Thread Alex Pliutau
Have you built desktop apps in Go? For example using something like Wails? Share if you have any. My old but still relevant video about Wails - https://www.youtube.com/watch?v=Dg9rUXxNV-c -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsu

[go-nuts] What are your use cases for Fuzz Testing?

2024-10-20 Thread Alex Pliutau
Hey folks, do you use Fuzz Testing in Go? And if yes for which use cases. p.s. I made this video a while back on this topic - https://www.youtube.com/watch?v=w8STTZWdG9Y -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this

[go-nuts] How to work with GitHub API in Go

2024-10-14 Thread Alex Pliutau
Just published a new video on working with GitHub API in Go. Let me know what you think - https://youtu.be/Dnyu0JkKSQc -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an emai

[go-nuts] Re: Map with expiration

2024-10-08 Thread Alex Pliutau
s the example: https://go.dev/play/p/rba6HCJe-4X > > Thanks. > > > Em segunda-feira, 7 de outubro de 2024 às 16:37:53 UTC-3, Alex Pliutau > escreveu: > >> In some cases your application doesn’t need Redis, and internal in-memory >> map with locks and expiration will suff

[go-nuts] Re: Map with expiration

2024-10-08 Thread Alex Pliutau
on to make sure old >> stuff is freed up, eventually. >> >> On Monday 7 October 2024 at 21:37:53 UTC+2 Alex Pliutau wrote: >> >>> In some cases your application doesn’t need Redis, and internal >>> in-memory map with locks and expiration will suffice

[go-nuts] Go projects for Hactoberfest

2024-10-07 Thread Alex Pliutau
With Hacktoberfest approaching I prepared a few repositories for people to contribute to. It's mostly Go, but other no-code contributions are welcome as well. - https://github.com/plutov/formulosity - https://github.com/plutov/ultrafocus - https://github.com/plutov/paypal - https://g

[go-nuts] Map with expiration

2024-10-07 Thread Alex Pliutau
In some cases your application doesn’t need Redis, and internal in-memory map with locks and expiration will suffice. For example you already know the size of the map and you don’t need to store a lot of data. Use cases could be IP rate limiting, or any other short-lived data. Here is how you

[go-nuts] Fuzz Testing in Go 1.18

2022-02-21 Thread Alex Pliutau
Hi, I recently made a video on fuzzing support in Go 1.18. I'd like to hear your feedback if that's possible - https://youtu.be/w8STTZWdG9Y Best, Alex -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop rece