/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

dave.cheney.net
| | golangtutorials.blogspot.com
7.6 parsecs away

Travel
| | Other topics in this series - Table of Contents Good code should also be maintainable. If code follows a standard format for writing it be...
| | luketic.de
7.6 parsecs away

Travel
| | Dart vs Go Dartlang vs Golang HTTP performance A simple test server.dart import 'dart:io'; void main() { HttpServer.bind('localhost', 8080).then((server) { server.listen((request) { request.response.write('Hello World'); request.response.close(); }); }); } 1 2 3 4 5 6 7 8 9 10 import 'dart:io' ; void main ( ) { HttpServer . bind ( 'localhost' , 8080 ...
| | masnun.com
9.6 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. [...]
| | markphelps.me
38.7 parsecs away

Travel
| Mark Phelps' blog