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
+7.2k Golang : Create zip/ePub file without compression(use Store algorithm)
+10.8k How to test Facebook App on localhost ?
+48.3k Golang : Upload file from web browser to server
+22.3k Golang : Set and Get HTTP request headers example
+22.3k Generate checksum for a file in Go
+7.4k Golang : Mapping Iban to Dunging alphabets
+5.3k Golang : Stop goroutine without channel
+11.1k Golang : Delay or limit HTTP requests example
+21.2k Golang : Encrypt and decrypt data with TripleDES
+5.2k Golang : What is StructTag and how to get StructTag's value?
+18.9k Golang : Get host name or domain name from IP address