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
+28.9k Golang : Get first few and last few characters from string
+8k Golang : Tell color name with OpenCV example
+6.4k Golang : Combine slices of complex numbers and operation example
+4.6k Golang : How to pass data between controllers with JSON Web Token
+11.2k Golang : Post data with url.Values{}
+12k Golang : Pagination with go-paginator configuration example
+10.5k Golang : How to delete element(data) from map ?
+13.4k Golang : Strings comparison
+5.3k Swift : Convert string array to array example
+7.6k Golang : How to execute code at certain day, hour and minute?