Explore >> Select a destination


You are here

schadokar.dev
| | dusted.codes
2.1 parsecs away

Travel
| | Building a secure note sharing service in Go
| | www.codeproject.com
2.0 parsecs away

Travel
| | In this article, we break down some most asked interview questions on Security part in ASP.NET MVC.
| | golangbot.com
1.9 parsecs away

Travel
| | Learn how the WebSocket protocol works and how to create a simple WebSocket server using Go.
| | masnun.com
18.9 parsecs away

Travel
| 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. [...]