|
You are here |
schadokar.dev | ||
| | | | |
dusted.codes
|
|
| | | | | Building a secure note sharing service in Go | |
| | | | |
www.codeproject.com
|
|
| | | | | In this article, we break down some most asked interview questions on Security part in ASP.NET MVC. | |
| | | | |
golangbot.com
|
|
| | | | | Learn how the WebSocket protocol works and how to create a simple WebSocket server using Go. | |
| | | | |
masnun.com
|
|
| | | In Go or Golang, declaring an interface is pretty simple and easy. type Printer interface { Print(string) } We just defined an interface named Printerthat required an implementer to have a method named Printwhich takes a stringparameter and returns nothing. Interfaces are implemented implicitly in Go. Any type that has the Print(string)method implements the interface. [...] | ||