#golangtips Suchergebnisse

🚀 Dive into #Golang: Why it's not a traditional OOP language! 🧵👇 #GoLangTips #Programming

Chand1012Dev's tweet image. 🚀 Dive into #Golang: Why it's not a traditional OOP language! 🧵👇 #GoLangTips #Programming

A non-blocking way to do send operation on unbuffered channel with a goroutine #golang #golangtips

thehardikjoshi's tweet image. A non-blocking way to do send operation on unbuffered channel with a goroutine #golang #golangtips

Diving deeper into #golang, I stumbled upon the surprising nuances of nil 🤯. It tripped me up for a bit, so here's a quick tip that might help someone else! #golangtips

loribeanl's tweet image. Diving deeper into #golang, I stumbled upon the surprising nuances of nil 🤯. It tripped me up for a bit, so here's a quick tip that might help someone else! #golangtips

😩 Drowning in if err != nil? In 2025, Go error handling doesn’t have to bury your business logic. Meet try — a tiny library that cuts the noise, keeps clarity, and still plays nice with panics. My fresh use-cases + code 👉blog.devgenius.io/cut-the-noise-… #Golang #GoLangTips #CleanCode


🚀 Built a Go API with Gorilla Mux — love how it feels like net/http but with extras like subrouters & middleware. 🦍💡 Also got graceful shutdown working — super clean and easy to implement! 🧹✅ #Golang #BackendDev #GoLangTips

Orutu_AW's tweet image. 🚀 Built a Go API with Gorilla Mux — love how it feels like net/http but with extras like subrouters & middleware. 🦍💡
Also got graceful shutdown working — super clean and easy to implement! 🧹✅
#Golang #BackendDev #GoLangTips

🦾 Build a type‑safe DSL in Go — no codegen, no fancy GADTs. Just interfaces, generics & continuations for compiler‑checked domain logic. From arithmetic rules to safe filtering — step‑by‑step. 👉 levelup.gitconnected.com/building-a-str… #Golang #DSL #GoLangTips #Programming


Go Conditionals in 4 swipes! 🐹👋 Learn the basics, short declarations, and common gotchas in the final post of our Go series. #LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning

chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning
chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning
chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning
chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning

🔁 Functions r values in #Go You can pass them as arguments, return them, and store them in variables. Elegant func square(x int) int { return x * x } func apply(f func(int) int, val int) int { return f(val) } #Golang #GoLangTips #FunctionalProgramming #DevTips #CleanCode

techieMeIndian's tweet image. 🔁 Functions r values in #Go
You can pass them as arguments, return them, and store them in variables. Elegant

func square(x int) int { return x * x }

func apply(f func(int) int, val int) int {
    return f(val)
}
#Golang #GoLangTips #FunctionalProgramming #DevTips #CleanCode

2/8: Why Use Reflection in Go? Reflection powers JSON decoding, dependency injection, and reusable libraries. It’s perfect for dynamic data handling when types are unknown at runtime! 💡 #GoLangTips #Coding

DistributedSyst's tweet image. 2/8: Why Use Reflection in Go?
Reflection powers JSON decoding, dependency injection, and reusable libraries. It’s perfect for dynamic data handling when types are unknown at runtime! 💡 #GoLangTips #Coding

Day 29 of #100DaysOfCode 🧵 Today in #Golang: 🔹 Learned about buffered vs unbuffered channels 🔹 Unbuffered channels block until both sender & receiver are ready 🔹 Buffered channels allow some async behavior up to the buffer limit #GoLangTips #100DaysLearning

arunkumarsde's tweet image. Day 29 of #100DaysOfCode
🧵 Today in #Golang:
🔹 Learned about buffered vs unbuffered channels
🔹 Unbuffered channels block until both sender & receiver are ready
🔹 Buffered channels allow some async behavior up to the buffer limit
#GoLangTips #100DaysLearning

Day 28 of #100DaysOfCode Today in #Golang: 🔄 Learned how to use channels to send & receive data between goroutines ⚠️ Experienced my first deadlock — when all goroutines are asleep & waiting 😅 Concurrency is exciting, but unforgiving! #GoLangTips #Concurrency #100DaysLearning

arunkumarsde's tweet image. Day 28 of #100DaysOfCode
Today in #Golang:
🔄 Learned how to use channels to send & receive data between goroutines
⚠️ Experienced my first deadlock — when all goroutines are asleep & waiting 😅
Concurrency is exciting, but unforgiving!
#GoLangTips #Concurrency #100DaysLearning

How do slices work in Go? Each slice has: 🔹 A pointer to an array. 🔹 A length (number of elements in use). 🔹 A capacity (max elements before resizing). Dynamic and efficient! 🚀 #GoLangTips

DistributedSyst's tweet image. How do slices work in Go?
Each slice has:
🔹 A pointer to an array.
🔹 A length (number of elements in use).
🔹 A capacity (max elements before resizing).
Dynamic and efficient! 🚀 #GoLangTips

🪞 Reflection in Go: inspect & tweak structs, auto‑register routes, build SQL & more — without boilerplate. In my 2025 guide: 4 practical examples, pitfalls to avoid, and when reflection is worth it. 👉levelup.gitconnected.com/mastering-refl… #Golang #Coding #GoLangTips


⚙️ Tired of “40-argument constructors” in Go? In 2025, the functional options pattern keeps configs clean, safe & extensible — no refactor pain. Here’s my step-by-step guide with fresh examples 👉 blog.devgenius.io/clean-configur… #Golang #CleanCode #GoLangTips #SoftwareEngineering


Run godoc -http :8000 on your local machine. If you go to localhost:8000/pkg you will see all the packages installed on your system. #Golang #GolangTips


Want your Go codebase to scale cleanly? 🧩 This guide lays down the *industry-standard project layout*, from cmd → internal → pkg and beyond. Read it here 👉 ctrix.pro/blog/mastering… #Golang #GoLangTips #CleanCode #DevCommunity #GoProgramming


Want your Go codebase to scale cleanly? 🧩 This guide lays down the *industry-standard project layout*, from cmd → internal → pkg and beyond. Read it here 👉 ctrix.pro/blog/mastering… #Golang #GoLangTips #CleanCode #DevCommunity #GoProgramming


Go Conditionals in 4 swipes! 🐹👋 Learn the basics, short declarations, and common gotchas in the final post of our Go series. #LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning

chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning
chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning
chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning
chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning

😩 Drowning in if err != nil? In 2025, Go error handling doesn’t have to bury your business logic. Meet try — a tiny library that cuts the noise, keeps clarity, and still plays nice with panics. My fresh use-cases + code 👉blog.devgenius.io/cut-the-noise-… #Golang #GoLangTips #CleanCode


⚙️ Tired of “40-argument constructors” in Go? In 2025, the functional options pattern keeps configs clean, safe & extensible — no refactor pain. Here’s my step-by-step guide with fresh examples 👉 blog.devgenius.io/clean-configur… #Golang #CleanCode #GoLangTips #SoftwareEngineering


Go Concurrency Puzzle for i := 0; i < 5; i++ { go fmt.Println(i) } 👉 Will it always print 0 1 2 3 4? (Hint: race conditions 👀) #GolangTips


🦾 Build a type‑safe DSL in Go — no codegen, no fancy GADTs. Just interfaces, generics & continuations for compiler‑checked domain logic. From arithmetic rules to safe filtering — step‑by‑step. 👉 levelup.gitconnected.com/building-a-str… #Golang #DSL #GoLangTips #Programming


🪞 Reflection in Go: inspect & tweak structs, auto‑register routes, build SQL & more — without boilerplate. In my 2025 guide: 4 practical examples, pitfalls to avoid, and when reflection is worth it. 👉levelup.gitconnected.com/mastering-refl… #Golang #Coding #GoLangTips


Day 29 of #100DaysOfCode 🧵 Today in #Golang: 🔹 Learned about buffered vs unbuffered channels 🔹 Unbuffered channels block until both sender & receiver are ready 🔹 Buffered channels allow some async behavior up to the buffer limit #GoLangTips #100DaysLearning

arunkumarsde's tweet image. Day 29 of #100DaysOfCode
🧵 Today in #Golang:
🔹 Learned about buffered vs unbuffered channels
🔹 Unbuffered channels block until both sender &amp;amp; receiver are ready
🔹 Buffered channels allow some async behavior up to the buffer limit
#GoLangTips #100DaysLearning

Day 28 of #100DaysOfCode Today in #Golang: 🔄 Learned how to use channels to send & receive data between goroutines ⚠️ Experienced my first deadlock — when all goroutines are asleep & waiting 😅 Concurrency is exciting, but unforgiving! #GoLangTips #Concurrency #100DaysLearning

arunkumarsde's tweet image. Day 28 of #100DaysOfCode
Today in #Golang:
🔄 Learned how to use channels to send &amp;amp; receive data between goroutines
⚠️ Experienced my first deadlock — when all goroutines are asleep &amp;amp; waiting 😅
Concurrency is exciting, but unforgiving!
#GoLangTips #Concurrency #100DaysLearning

🧵 Ever wondered why your tiny Go app spawns 5 threads? From GOMAXPROCS myths to sysmon, blocking syscalls, and cgo surprises — here’s a deep dive into Go’s thread model in 2025. levelup.gitconnected.com/understanding-… #Golang #GoLangTips #Concurrency #Programming #DevOps #WebDev


Still serving HTTP/1.1 in 2025? 🚨 Switch to HTTP/2 in Go with one line — and get: ✅ Multiplexing ✅ Header compression ✅ Fewer sockets ✅ Lower latency 🔧 Bonus: real-world h2c example included. 📖 Upgrade guide: levelup.gitconnected.com/upgrade-your-g… #Golang #GoLangTips #Backend #HTTP2


Keine Ergebnisse für "#golangtips"

Wolfram Notebook Assistant: ImageSynthesize["White cat, blue glasses, red hat, a green forest background, photo realistic", 3] reference.wolfram.com/language/ref/I… #llm #code #dev #wolframlanguage

danielscarvalho's tweet image. Wolfram Notebook Assistant:

ImageSynthesize[&quot;White cat, blue glasses, red hat, a green forest background, photo realistic&quot;, 3]

reference.wolfram.com/language/ref/I… #llm #code #dev #wolframlanguage

You can use <image onerror=alert() src> and firefox will normalize this to <img onerror=alert() src> which will help you to bypass certain XSS filters. #bugbounty #XSS #bugbountytip

_xploiterr's tweet image. You can use &amp;lt;image onerror=alert() src&amp;gt; and firefox will normalize this to &amp;lt;img onerror=alert() src&amp;gt; which will help you to bypass certain XSS filters.
#bugbounty #XSS #bugbountytip

LOS FOTÓGRAFOS ODIAN A GEMINI DE GOOGLE ¡Y entendí por qué al generar mis propias sesiones de fotos con Nano Banana! Descubre 12 ejemplos brutales con los prompts listos para copiar y pegar👇

ecommartinez's tweet image. LOS FOTÓGRAFOS ODIAN A GEMINI DE GOOGLE

¡Y entendí por qué al generar mis propias sesiones de fotos con Nano Banana!

Descubre 12 ejemplos brutales con los prompts listos para copiar y pegar👇
ecommartinez's tweet image. LOS FOTÓGRAFOS ODIAN A GEMINI DE GOOGLE

¡Y entendí por qué al generar mis propias sesiones de fotos con Nano Banana!

Descubre 12 ejemplos brutales con los prompts listos para copiar y pegar👇
ecommartinez's tweet image. LOS FOTÓGRAFOS ODIAN A GEMINI DE GOOGLE

¡Y entendí por qué al generar mis propias sesiones de fotos con Nano Banana!

Descubre 12 ejemplos brutales con los prompts listos para copiar y pegar👇
ecommartinez's tweet image. LOS FOTÓGRAFOS ODIAN A GEMINI DE GOOGLE

¡Y entendí por qué al generar mis propias sesiones de fotos con Nano Banana!

Descubre 12 ejemplos brutales con los prompts listos para copiar y pegar👇

Visualize the Call Graph of your Go program: github.com/TrueFurby/go-c…

golangweekly's tweet image. Visualize the Call Graph of your Go program: github.com/TrueFurby/go-c…

Ne copiez pas et ne collez pas les réponses de ChatGPT. Il est facile de repérer un texte écrit par ChatGPT. Voici une astuce secrète pour humaniser votre texte : [ Ajoutez en signet🔖 pour ne pas perdre ! ]

KaitoEtLIA's tweet image. Ne copiez pas et ne collez pas les réponses de ChatGPT.

Il est facile de repérer un texte écrit par ChatGPT.

Voici une astuce secrète pour humaniser votre texte :

[ Ajoutez en signet🔖 pour ne pas perdre ! ]

Gemini Nano Banana Prompt: { "directive": "Replicate this image as a cinematic photomontage album cover, preserving the user's identity. The scene features the subject on a chain swing suspended in outer space above Earth's curved horizon, capturing a dreamy, weightless vibe.…

rovvmut_'s tweet image. Gemini Nano Banana Prompt:

{
  &quot;directive&quot;: &quot;Replicate this image as a cinematic photomontage album cover, preserving the user&apos;s identity. The scene features the subject on a chain swing suspended in outer space above Earth&apos;s curved horizon, capturing a dreamy, weightless vibe.…
rovvmut_'s tweet image. Gemini Nano Banana Prompt:

{
  &quot;directive&quot;: &quot;Replicate this image as a cinematic photomontage album cover, preserving the user&apos;s identity. The scene features the subject on a chain swing suspended in outer space above Earth&apos;s curved horizon, capturing a dreamy, weightless vibe.…

🚀 Dive into #Golang: Why it's not a traditional OOP language! 🧵👇 #GoLangTips #Programming

Chand1012Dev's tweet image. 🚀 Dive into #Golang: Why it&apos;s not a traditional OOP language! 🧵👇 #GoLangTips #Programming

What is the output of the below golang program?

iraunit's tweet image. What is the output of the below golang program?

Diving deeper into #golang, I stumbled upon the surprising nuances of nil 🤯. It tripped me up for a bit, so here's a quick tip that might help someone else! #golangtips

loribeanl's tweet image. Diving deeper into #golang, I stumbled upon the surprising nuances of nil 🤯. It tripped me up for a bit, so here&apos;s a quick tip that might help someone else! #golangtips

I've been coding a lot in Golang and thought I'll write down which resources I use to learn Golang

0xi4o's tweet image. I&apos;ve been coding a lot in Golang and thought I&apos;ll write down which resources I use to learn Golang

sort.Slice in #golang 1.8 is really useful 😂

deeeet's tweet image. sort.Slice in #golang 1.8 is really useful 😂

Avec les extensions FrankenPHP qui permettent d’utiliser du Go arrivent les custom workers

davlgd's tweet image. Avec les extensions FrankenPHP qui permettent d’utiliser du Go arrivent les custom workers
davlgd's tweet image. Avec les extensions FrankenPHP qui permettent d’utiliser du Go arrivent les custom workers
davlgd's tweet image. Avec les extensions FrankenPHP qui permettent d’utiliser du Go arrivent les custom workers
davlgd's tweet image. Avec les extensions FrankenPHP qui permettent d’utiliser du Go arrivent les custom workers

Go Conditionals in 4 swipes! 🐹👋 Learn the basics, short declarations, and common gotchas in the final post of our Go series. #LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning

chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning
chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning
chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning
chainacademy_'s tweet image. Go Conditionals in 4 swipes! 🐹👋
Learn the basics, short declarations, and common gotchas in the final post of our Go series. 

#LearnGo #GoLangBasics #GolangTips #ChainAcademy #LimitlessLearning

A non-blocking way to do send operation on unbuffered channel with a goroutine #golang #golangtips

thehardikjoshi's tweet image. A non-blocking way to do send operation on unbuffered channel with a goroutine #golang #golangtips

이미지 도트화 간단 팁. 1.FilterGallery-Poster Edge로 외곽선 강조. 2. Filter-Cutout으로 색과 모양 단순화. 3. Image Size - Resample(Nearest Neighbor)로 픽셀화 효과.

madumpa's tweet image. 이미지 도트화 간단 팁. 1.FilterGallery-Poster Edge로 외곽선 강조. 2. Filter-Cutout으로 색과 모양 단순화. 3. Image Size - Resample(Nearest Neighbor)로 픽셀화 효과.
madumpa's tweet image. 이미지 도트화 간단 팁. 1.FilterGallery-Poster Edge로 외곽선 강조. 2. Filter-Cutout으로 색과 모양 단순화. 3. Image Size - Resample(Nearest Neighbor)로 픽셀화 효과.
madumpa's tweet image. 이미지 도트화 간단 팁. 1.FilterGallery-Poster Edge로 외곽선 강조. 2. Filter-Cutout으로 색과 모양 단순화. 3. Image Size - Resample(Nearest Neighbor)로 픽셀화 효과.
madumpa's tweet image. 이미지 도트화 간단 팁. 1.FilterGallery-Poster Edge로 외곽선 강조. 2. Filter-Cutout으로 색과 모양 단순화. 3. Image Size - Resample(Nearest Neighbor)로 픽셀화 효과.

🧵Common Slice Mistakes in Go and How to Avoid Them 🧵

adukv's tweet image. 🧵Common Slice Mistakes in Go and How to Avoid Them 🧵

#golang #gem: You can use generics to check in compile time that a pointer is passed.

tebeka's tweet image. #golang #gem: You can use generics to check in compile time that a pointer is passed.

🚀 #golang Optimization Tip: Convert []byte to string without allocation. Only do this in a hot spot after careful consideration.

inancgumus's tweet image. 🚀 #golang Optimization Tip:

Convert []byte to string without allocation.

Only do this in a hot spot after careful consideration.

🚀 Built a Go API with Gorilla Mux — love how it feels like net/http but with extras like subrouters & middleware. 🦍💡 Also got graceful shutdown working — super clean and easy to implement! 🧹✅ #Golang #BackendDev #GoLangTips

Orutu_AW's tweet image. 🚀 Built a Go API with Gorilla Mux — love how it feels like net/http but with extras like subrouters &amp;amp; middleware. 🦍💡
Also got graceful shutdown working — super clean and easy to implement! 🧹✅
#Golang #BackendDev #GoLangTips

115 KiB of our binary is #golang compiler-generated equality funcs for structs used as value types. Make it all go away with this one dirty trick: Make your struct types not comparable by adding an unnamed 0-sized array of func pointers. Now it can't ==: _ [0]func() 🤮 🤷‍♂️

bradfitz's tweet image. 115 KiB of our binary is #golang compiler-generated equality funcs for structs used as value types.

Make it all go away with this one dirty trick:

Make your struct types not comparable by adding an unnamed 0-sized array of func pointers. Now it can&apos;t ==:

   _ [0]func()

🤮 🤷‍♂️
bradfitz's tweet image. 115 KiB of our binary is #golang compiler-generated equality funcs for structs used as value types.

Make it all go away with this one dirty trick:

Make your struct types not comparable by adding an unnamed 0-sized array of func pointers. Now it can&apos;t ==:

   _ [0]func()

🤮 🤷‍♂️

Loading...

Something went wrong.


Something went wrong.


United States Trends