Explore >> Select a destination


You are here

enterprisecraftsmanship.com
| | anthonysciamanna.com
1.6 parsecs away

Travel
| | Code katas provide an opportunity to practice our software development skills, recognize patterns, and learn how to apply techniques. In general, we pro...
| | codedrivendevelopment.com
2.6 parsecs away

Travel
| |
| | johannesbrodwall.com
2.2 parsecs away

Travel
| | [AI summary] This blog post discusses a method for planning software development by imagining a future demonstration of a feature, allowing teams to focus on goals and uncover hidden assumptions.
| | masnun.com
33.8 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. [...]