Golang : Display advertisement images or strings on random order
This is a Golang add on for my previous tutorial on how to display random advertisements with PHP by shuffling technique. If you are looking to display different content, images or strings each time a page load or refresh with Golang, use this example :
package main
import (
"fmt"
"math/rand"
"time"
)
func shuffle(src []string) []string {
final := make([]string, len(src))
rand.Seed(time.Now().UTC().UnixNano())
perm := rand.Perm(len(src))
for i, v := range perm {
final[v] = src[i]
}
return final
}
func main() {
ads := []string{
"<a href=\"http://www.edu.joshuatly.com\"><img src=\"https://www.hometuitionjob.com/public/images/ads/edujoshuatly250x250.gif\"></a>",
"<a href=\"http://www.guru-app.com\"><img src=\"https://www.hometuitionjob.com/public/images/ads/guru-app250x250.jpg\"></a>",
}
toDisplay := shuffle(ads)
// we only want to display 1st item, therefore use toDisplay[0]
fmt.Printf("Advertisement HTML code : \n %v\n", toDisplay[0])
}
Sample output :
Sweets-Mac-Pro:~ sweetlogic$ go run shuffleads.go
Advertisement HTML code :
<a href="http://www.guru-app.com">
<img src="https://www.hometuitionjob.com/public/images/ads/guru-app250x250.jpg">
</a>
Sweets-Mac-Pro:~ sweetlogic$ go run shuffleads.go
Advertisement HTML code :
<a href="http://www.edu.joshuatly.com">
<img src="https://www.hometuitionjob.com/public/images/ads/edujoshuatly250x250.gif">
</a>
Sweets-Mac-Pro:~ sweetlogic$ go run shuffleads.go
Advertisement HTML code :
<a href="http://www.edu.joshuatly.com">
<img src="https://www.hometuitionjob.com/public/images/ads/edujoshuatly250x250.gif">
</a>
Sweets-Mac-Pro:~ sweetlogic$ go run shuffleads.go
Advertisement HTML code :
<a href="http://www.edu.joshuatly.com">
<img src="https://www.hometuitionjob.com/public/images/ads/edujoshuatly250x250.gif">
</a>
Sweets-Mac-Pro:~ sweetlogic$ go run shuffleads.go
Advertisement HTML code :
<a href="http://www.guru-app.com">
<img src="https://www.hometuitionjob.com/public/images/ads/guru-app250x250.jpg">
</a>
See also : PHP : Shuffle to display different content or advertisement
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+13.3k Generate salted password with OpenSSL example
+12.8k Golang : Handle or parse date string with Z suffix(RFC3339) example
+19.2k Golang : Get current URL example
+8.2k Golang : How to check if input string is a word?
+33.3k Golang : All update packages with go get command
+13.8k Golang : Google Drive API upload and rename example
+6.5k Golang : Find the longest line of text example
+7k Golang : Of hash table and hash map
+12.6k Golang : http.Get example
+9.2k Golang : Accessing content anonymously with Tor
+11.8k Golang : Decompress zlib file example