/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

www.csrhymes.com
| | philipwalton.com
3.3 parsecs away

Travel
| | Thoughts on web development, open source, software architecture, and the future.
| | www.alfredo.motta.name
3.3 parsecs away

Travel
| | [AI summary] Alfredo Motta shares details about upcoming coding workshops in London covering Ruby, Rails, and Javascript to help attendees learn programming and enter the tech industry.
| | www.bennadel.com
3.2 parsecs away

Travel
| | Read all articles that Ben Nadel has evern written on web development, 2006 through 2025. Topics range from ColdFusion and CFML to HTML and CSS to SQL and database performance.
| | hjr265.me
21.1 parsecs away

Travel
| Concurrency is one of the central features of Go. And, to build concurrent programs in Go, you need goroutines. A goroutine is like a thread, but lighter. Much lighter. And, like any other built-in feature of Go, using it is dead simple: 1 2 3 4 5 6 7 package main func main() { go func() { println("Hello World") // Print "Hello World" from a different goroutine. }() } Wait. That didn't print anything.