Just tried go1.2.1. Hashmap iteration order was not random, it was same every time. Same happens with Go playground: (http://play.golang.org/p/px7C_lCn6d).
I got this output by running same locally (go1.2.1.darwin-amd64-osx10.8.pkg):
$ go run test.go
There are 500 views for unix
There are 300 views for python
There are 100 views for go
There are 4000 views for javascript
There are 800 views for testing
There are 500 views for unix
There are 300 views for python
There are 100 views for go
There are 4000 views for javascript
... same order is repeated forever.