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
+14.3k Golang : Execute function at intervals or after some delay
+18.6k Golang : How to make function callback or pass value from function as parameter?
+10.8k Golang : Calculate Relative Strength Index(RSI) example
+22.4k Golang : Round float to precision example
+19.7k Golang : Convert seconds to human readable time format example
+6.6k Mac OSX : Find large files by size
+4k Golang : Converting individual Jawi alphabet to Rumi(Romanized) alphabet example
+7.6k Golang : Regular Expression find string example
+4.8k Golang : micron to centimeter example
+18.8k Golang : Get host name or domain name from IP address
+5.8k Golang : Missing Subversion command
+8.3k Golang : Another camera capture GUI application with GTK and OpenCV